Compare commits

..
1619 changed files with 65498 additions and 132040 deletions
+1 -1
View File
@@ -1 +1 @@
custom: "https://veracrypt.jp/en/Donation.html"
custom: "https://www.veracrypt.fr/en/Donation.html"
+1 -1
View File
@@ -20,6 +20,6 @@ closeComment: >
or it has been fixed in a newer version. If its an enhancement
and hasn't been taken on for so long, then it seems no one has
the time to implement this.
Please reopen if you still encounter this issue with the [latest stable version](https://veracrypt.jp/en/Downloads.html).
Please reopen if you still encounter this issue with the [latest stable version](https://www.veracrypt.fr/en/Downloads.html).
You can also contribute directly by providing a pull request.
Thank you!
-213
View File
@@ -1,213 +0,0 @@
name: Build and test Linux
on:
push:
branches: [ "master" ]
paths:
- 'src/Build/Include/Makefile.inc'
- 'src/Build/CMakeLists.txt'
- 'src/Build/build_cmake_deb.sh'
- 'src/Common/*.h'
- 'src/Common/*.cpp'
- 'src/Common/*.c'
- 'src/Core/**'
- 'src/Crypto/**'
- 'src/Driver/Fuse/**'
- 'src/Main/**'
- 'src/PKCS11/**'
- 'src/Platform/**'
- 'src/Resources/**'
- 'src/Setup/Linux/**'
- 'src/Volume/**'
- 'src/Makefile'
- '.github/workflows/build-linux.yml'
pull_request:
branches: [ "master" ]
paths:
- 'src/Build/Include/Makefile.inc'
- 'src/Build/CMakeLists.txt'
- 'src/Build/build_cmake_deb.sh'
- 'src/Common/*.h'
- 'src/Common/*.cpp'
- 'src/Common/*.c'
- 'src/Core/**'
- 'src/Crypto/**'
- 'src/Driver/Fuse/**'
- 'src/Main/**'
- 'src/PKCS11/**'
- 'src/Platform/**'
- 'src/Resources/**'
- 'src/Setup/Linux/**'
- 'src/Volume/**'
- 'src/Makefile'
- '.github/workflows/build-linux.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
WXWIDGETS_VERSION: 3.2.5
jobs:
ubuntu-build:
runs-on: ubuntu-22.04
timeout-minutes: 30
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Generate cache key
id: cache-key
run: |
echo "cache_key=$(echo ${{ env.WXWIDGETS_VERSION }}-$(sha256sum src/Makefile .github/workflows/build-linux.yml | awk '{print $1}'))" >> $GITHUB_OUTPUT
- name: Cache wxBuildConsole
uses: actions/cache@v3
id: cache-wxbuildconsole
with:
path: /tmp/wxBuildConsole
key: wxBuildConsole-${{ steps.cache-key.outputs.cache_key }}
- name: Cache wxBuildGUI
uses: actions/cache@v3
id: cache-wxbuildgui
with:
path: /tmp/wxBuildGUI
key: wxBuildGUI-${{ steps.cache-key.outputs.cache_key }}
- name: Cache wxWidgets
uses: actions/cache@v3
id: cache-wxwidgets
with:
path: /tmp/wxWidgets-${{ env.WXWIDGETS_VERSION }}
key: wxWidgets-${{ steps.cache-key.outputs.cache_key }}
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y wget tar libpcsclite-dev libfuse-dev yasm libgtk-3-dev libayatana-appindicator3-dev cmake debhelper
- name: Download and extract wxWidgets to /tmp if build folders are missing
if: steps.cache-wxbuildconsole.outputs.cache-hit != 'true' || steps.cache-wxbuildgui.outputs.cache-hit != 'true' || steps.cache-wxwidgets.outputs.cache-hit != 'true'
run: |
wget https://github.com/wxWidgets/wxWidgets/releases/download/v${{ env.WXWIDGETS_VERSION }}/wxWidgets-${{ env.WXWIDGETS_VERSION }}.tar.bz2 -O /tmp/wxWidgets-${{ env.WXWIDGETS_VERSION }}.tar.bz2
mkdir -p /tmp/wxWidgets-${{ env.WXWIDGETS_VERSION }}
tar -xjf /tmp/wxWidgets-${{ env.WXWIDGETS_VERSION }}.tar.bz2 -C /tmp/wxWidgets-${{ env.WXWIDGETS_VERSION }} --strip-components=1
- name: Build VeraCrypt .deb packages
run: |
chmod +x src/Build/build_cmake_deb.sh
src/Build/build_cmake_deb.sh WXSTATIC INDICATOR
- name: Upload GUI .deb packages
uses: actions/upload-artifact@v4
with:
name: veracrypt-gui-debs
path: /tmp/VeraCrypt_Packaging/GUI/Packaging/veracrypt-*.*
- name: Upload Console .deb packages
uses: actions/upload-artifact@v4
with:
name: veracrypt-console-debs
path: /tmp/VeraCrypt_Packaging/Console/Packaging/veracrypt-console-*.*
- name: Install and test VeraCrypt GUI .deb packages
run: |
sudo apt install -y /tmp/VeraCrypt_Packaging/GUI/Packaging/veracrypt-*.deb
veracrypt --text --test && veracrypt --text --version
sudo veracrypt --text --non-interactive Tests/test.sha256.hc --hash sha256 --slot 1 --password test --mount-options=ro
sudo veracrypt --text --non-interactive Tests/test.sha512.hc --hash sha512 --slot 2 --password test --mount-options=ro
sudo veracrypt --text --non-interactive Tests/test.streebog.hc --hash streebog --slot 3 --password test --mount-options=ro
sudo veracrypt --text --non-interactive Tests/test.whirlpool.hc --hash whirlpool --slot 4 --password test --mount-options=ro
sudo veracrypt --text --list
echo -n "Dummy" > /tmp/expected_content.txt
if cmp -s /media/veracrypt1/Dummy.txt /tmp/expected_content.txt; then
echo "Content of test.sha256.hc is valid."
else
echo "Content of test.sha256.hc is invalid!"
exit 1
fi
if cmp -s /media/veracrypt2/Dummy.txt /tmp/expected_content.txt; then
echo "Content of test.sha512.hc is valid."
else
echo "Content of test.sha512.hc is invalid!"
exit 1
fi
if cmp -s /media/veracrypt3/Dummy.txt /tmp/expected_content.txt; then
echo "Content of test.streebog.hc is valid."
else
echo "Content of test.streebog.hc is invalid!"
exit 1
fi
if cmp -s /media/veracrypt4/Dummy.txt /tmp/expected_content.txt; then
echo "Content of test.whirlpool.hc is valid."
else
echo "Content of test.whirlpool.hc is invalid!"
exit 1
fi
sudo veracrypt -d
sudo apt remove -y veracrypt
- name: Install and test VeraCrypt Console .deb packages
run: |
sudo apt install -y /tmp/VeraCrypt_Packaging/Console/Packaging/veracrypt-console-*.deb
veracrypt --test && veracrypt --version
sudo veracrypt --non-interactive Tests/test.sha256.hc --hash sha256 --slot 1 --password test --mount-options=ro
sudo veracrypt --non-interactive Tests/test.sha512.hc --hash sha512 --slot 2 --password test --mount-options=ro
sudo veracrypt --non-interactive Tests/test.streebog.hc --hash streebog --slot 3 --password test --mount-options=ro
sudo veracrypt --non-interactive Tests/test.whirlpool.hc --hash whirlpool --slot 4 --password test --mount-options=ro
sudo veracrypt --list
echo -n "Dummy" > /tmp/expected_content.txt
if cmp -s /media/veracrypt1/dummy.txt /tmp/expected_content.txt; then
echo "Content of test.sha256.hc is valid."
else
echo "Content of test.sha256.hc is invalid!"
exit 1
fi
if cmp -s /media/veracrypt2/dummy.txt /tmp/expected_content.txt; then
echo "Content of test.sha512.hc is valid."
else
echo "Content of test.sha512.hc is invalid!"
exit 1
fi
if cmp -s /media/veracrypt3/dummy.txt /tmp/expected_content.txt; then
echo "Content of test.streebog.hc is valid."
else
echo "Content of test.streebog.hc is invalid!"
exit 1
fi
if cmp -s /media/veracrypt4/dummy.txt /tmp/expected_content.txt; then
echo "Content of test.whirlpool.hc is valid."
else
echo "Content of test.whirlpool.hc is invalid!"
exit 1
fi
sudo veracrypt -d
sudo apt remove -y veracrypt-console
- name: Cleanup old caches
uses: actions/github-script@v6
if: ${{ always() && github.event_name == 'push' && github.ref == 'refs/heads/master' }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const caches = await github.rest.actions.getActionsCacheList({
owner: context.repo.owner,
repo: context.repo.repo,
})
for (const cache of caches.data.actions_caches) {
if (cache.key.startsWith('wxBuildConsole-') || cache.key.startsWith('wxBuildGUI-') || cache.key.startsWith('wxWidgets-')) {
if (cache.key !== `wxBuildConsole-${{ steps.cache-key.outputs.cache_key }}` &&
cache.key !== `wxBuildGUI-${{ steps.cache-key.outputs.cache_key }}` &&
cache.key !== `wxWidgets-${{ steps.cache-key.outputs.cache_key }}`) {
console.log(`Deleting cache with key: ${cache.key}`)
await github.rest.actions.deleteActionsCacheById({
owner: context.repo.owner,
repo: context.repo.repo,
cache_id: cache.id,
})
}
}
}
-196
View File
@@ -1,196 +0,0 @@
#!/bin/bash
set -euo pipefail # Exit on error, undefined variable, or pipe failure
# --- Configuration ---
SCRIPT_NAME=$(basename "$0")
FAIL_FLAG=false
# --- Colors ---
COLOR_RED='\033[0;31m'
COLOR_GREEN='\033[0;32m'
COLOR_YELLOW='\033[0;33m'
COLOR_CYAN='\033[0;36m'
COLOR_MAGENTA='\033[0;35m'
COLOR_RESET='\033[0m' # No Color
# --- Helper Functions for Output ---
log_info() { echo -e "${COLOR_CYAN}$1${COLOR_RESET}"; }
log_success() { echo -e "${COLOR_GREEN}$1${COLOR_RESET}"; }
log_warning() { echo -e "${COLOR_YELLOW}Warning: $1${COLOR_RESET}"; }
log_error() { echo -e "${COLOR_RED}Error: $1${COLOR_RESET}" >&2; }
log_detail() { echo -e " $1"; }
log_detail_success() { echo -e " ${COLOR_GREEN}$1${COLOR_RESET}"; }
log_detail_error() { echo -e " ${COLOR_RED}$1${COLOR_RESET}"; }
log_detail_warning() { echo -e " ${COLOR_YELLOW}$1${COLOR_RESET}"; }
log_detail_magenta() { echo -e " ${COLOR_MAGENTA}$1${COLOR_RESET}"; }
# --- Parameter Validation ---
if [ "$#" -ne 1 ]; then
log_error "Usage: $SCRIPT_NAME <Path_To_VeraCrypt_Root>"
log_error "Example: $SCRIPT_NAME /path/to/VeraCrypt"
exit 1
fi
ROOT_PATH="$1"
if [ ! -d "$ROOT_PATH" ]; then
log_error "Root path '$ROOT_PATH' not found or is not a directory."
exit 1
fi
# Define the path to the common Language.xml
COMMON_FILE="$ROOT_PATH/src/Common/Language.xml"
# Check if the common Language.xml exists
if [ ! -f "$COMMON_FILE" ]; then
log_error "Common Language.xml not found or is not a file at path: $COMMON_FILE"
exit 1
fi
log_info "Extracting keys from $COMMON_FILE"
# Define regex pattern to extract 'key' attributes from <entry> elements
KEY_EXTRACTION_PATTERN='<entry\s+lang="[^"]+"\s+key="([^"]+)"'
# Extract all keys using grep with PCRE (-P) and only outputting the captured group (-o)
# Use process substitution and readarray to populate the KEYS array
# Ensure grep returns 0 even if no match, or handle non-zero for no match
KEYS_STRING=$(grep -oP "$KEY_EXTRACTION_PATTERN" "$COMMON_FILE" | sed -E 's/.*key="([^"]+)".*/\1/' || true)
if [ -z "$KEYS_STRING" ]; then
KEYS=()
else
readarray -t KEYS < <(echo "$KEYS_STRING")
fi
if [ ${#KEYS[@]} -eq 0 ]; then
log_warning "No keys found in $COMMON_FILE using pattern: $KEY_EXTRACTION_PATTERN"
# If this should be an error, uncomment next lines:
# log_error "No keys found in $COMMON_FILE."
# exit 1
else
log_info "Found ${#KEYS[@]} keys."
fi
# Define the regex for finding invalid escape sequences.
# Valid sequences: \n, \r, \t, \\, \"
INVALID_ESCAPE_REGEX='(?<!\\)(?:\\\\)*\\([^nrt\\"])' # This is better
ALLOWED_ESCAPES_MESSAGE="Allowed sequences are: \\n, \\r, \\t, \\\\ (for literal backslash), \\\" (for literal quote)"
# Retrieve all translation XML files in the Translations folder
TRANSLATION_FOLDER="$ROOT_PATH/Translations"
FILES_TO_PROCESS=()
# Add common file first
FILES_TO_PROCESS+=("$COMMON_FILE")
if [ ! -d "$TRANSLATION_FOLDER" ]; then
log_warning "Translations folder not found at path: $TRANSLATION_FOLDER. Skipping translation files."
else
# Use find to get translation files. nullglob helps avoid errors if no files match.
shopt -s nullglob
for lang_file in "$TRANSLATION_FOLDER"/Language.*.xml; do
FILES_TO_PROCESS+=("$lang_file")
done
shopt -u nullglob # Reset nullglob
if [ ${#FILES_TO_PROCESS[@]} -eq 1 ]; then # Only common file was added
log_warning "No Language.*.xml files found in $TRANSLATION_FOLDER."
fi
fi
if [ ${#FILES_TO_PROCESS[@]} -eq 0 ]; then
log_warning "No files found to process."
exit 0 # Or 1 if this is an error condition
fi
# Iterate through each file and perform validations
for file in "${FILES_TO_PROCESS[@]}"; do
if [ ! -f "$file" ]; then
log_warning "File not found or is not a file, skipping: $file"
continue
fi
echo # Newline for readability
log_info "Processing file: $file"
CURRENT_FILE_PASSES=true
# 1. Validate XML using fxparser
log_detail "Validating XML structure..."
# Capture stdout and stderr, get exit code
FXPARSER_OUTPUT=$(fxparser -V "$file" 2>&1)
FXPARSER_EXIT_CODE=$?
if [ "$FXPARSER_EXIT_CODE" -ne 0 ]; then
CURRENT_FILE_PASSES=false
FAIL_FLAG=true
log_detail_error "XML Validation Failed for $file (fxparser exit code: $FXPARSER_EXIT_CODE):"
while IFS= read -r line; do
log_detail_error " $line"
done <<< "$FXPARSER_OUTPUT"
else
log_detail_success "XML structure is valid."
fi
# 2. Check for invalid backslash escape sequences
log_detail "Checking for invalid escape sequences..."
# Use grep -P for PCRE, -n for line numbers. --color=never to avoid grep's own coloring here.
# We check grep's exit code: 0 if found, 1 if not found, >1 for error.
INVALID_ESCAPE_MATCHES=$(grep -P -n --color=never "$INVALID_ESCAPE_REGEX" "$file" || true)
if [ -n "$INVALID_ESCAPE_MATCHES" ]; then
log_detail_error "File '$file' contains potentially invalid backslash escape sequences."
log_detail_error "$ALLOWED_ESCAPES_MESSAGE"
log_detail_error "Instances found:"
while IFS= read -r line_match; do
# Extract line number and the line content from grep's output (e.g., "123:content")
LINE_NUMBER=$(echo "$line_match" | cut -d: -f1)
LINE_CONTENT=$(echo "$line_match" | cut -d: -f2-)
# Trim whitespace (optional, but PowerShell did it)
TRIMMED_LINE_CONTENT=$(echo "$LINE_CONTENT" | sed 's/^[[:space:]]*//;s/[[:space:]]*$//')
log_detail_magenta "Line $LINE_NUMBER: $TRIMMED_LINE_CONTENT"
done <<< "$INVALID_ESCAPE_MATCHES"
CURRENT_FILE_PASSES=false
FAIL_FLAG=true
else
log_detail_success "No invalid escape sequences found."
fi
# 3. Check for the presence of each key in the current file (if keys were found)
if [ ${#KEYS[@]} -gt 0 ]; then
log_detail "Checking for key completeness..."
KEYS_MISSING_IN_CURRENT_FILE=0
for key_entry in "${KEYS[@]}"; do
# Search for key="KEY_NAME"
SEARCH_PATTERN_FOR_KEY="key=\"$key_entry\""
if ! grep -q "$SEARCH_PATTERN_FOR_KEY" "$file"; then
log_detail_error "Key '$key_entry' (from $COMMON_FILE) not found in $file"
CURRENT_FILE_PASSES=false
FAIL_FLAG=true
((KEYS_MISSING_IN_CURRENT_FILE++))
fi
done
if [ "$KEYS_MISSING_IN_CURRENT_FILE" -eq 0 ]; then
log_detail_success "All keys from $COMMON_FILE are present."
else
log_detail_error "$KEYS_MISSING_IN_CURRENT_FILE key(s) missing."
fi
else
log_detail_warning "Skipping key completeness check as no keys were extracted from $COMMON_FILE."
fi
# Output the result for the current file
if [ "$CURRENT_FILE_PASSES" = true ]; then
log_success "$file PASSED all checks."
else
log_error "$file FAILED one or more checks."
fi
done
# Exit with appropriate status code
echo # Newline for readability
if [ "$FAIL_FLAG" = true ]; then
log_error "Overall Result: One or more files failed validation."
exit 1
else
log_success "Overall Result: All processed files passed all checks successfully."
exit 0
fi
-36
View File
@@ -1,36 +0,0 @@
name: Validate XML
on:
push:
branches: [ "master" ]
paths:
- 'Translations/*'
- 'src/Common/Language.xml'
- '.github/workflows/xmlvalidate.*'
pull_request:
branches: [ "master" ]
paths:
- 'Translations/*'
- 'src/Common/Language.xml'
- '.github/workflows/xmlvalidate.*'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
validate:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'latest'
- name: Install fast-xml-parser
run: npm install fast-xml-parser@4.5.2 -g
- name: Run XML validator script
run: ${{ github.workspace }}/.github/workflows/xmlvalidate.sh "${{ github.workspace }}"
+1 -23
View File
@@ -1,9 +1,6 @@
# For those using Visual Studio Code for development
.vscode/
# CLion
.idea/
# VC Linux build artifacts
*.o
*.o0
@@ -14,18 +11,6 @@
*.txt.h
*.h.gch
src/Main/veracrypt
*.osse41
*.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
@@ -41,13 +26,6 @@ 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
@@ -124,4 +102,4 @@ src/Setup/Release
src/Setup/PortableRelease
src/SetupDLL/Debug
src/SetupDLL/Release
src/SetupDLL/Release
+4 -16
View File
@@ -14,7 +14,7 @@ licenses can be found below.
This license does not grant you rights to use any
contributors' name, logo, or trademarks, including IDRIX,
AM Crypto, VeraCrypt and all derivative names.
VeraCrypt and all derivative names.
For example, the following names are not allowed: VeraCrypt,
VeraCrypt+, VeraCrypt Professional, iVeraCrypt, etc. Nor any
other names confusingly similar to the name VeraCrypt (e.g.,
@@ -679,7 +679,7 @@ warranties in respect of its properties, including, but not
limited to, correctness and/or fitness for purpose.
____________________________________________________________
Copyright (C) 1995-2023 Jean-loup Gailly and Mark Adler
Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
@@ -700,7 +700,7 @@ Copyright (C) 1995-2023 Jean-loup Gailly and Mark Adler
Jean-loup Gailly Mark Adler
jloup@gzip.org madler@alumni.caltech.edu
____________________________________________________________
Copyright (C) 1999-2023 Dieter Baron and Thomas Klausner
Copyright (C) 1999-2017 Dieter Baron and Thomas Klausner
The authors can be contacted at <libzip@nih.at>
@@ -770,7 +770,7 @@ IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
____________________________________________________________
Copyright (c) 2013-2019 Stephan Mueller <smueller@chronox.de>
Copyright (c) 2013-2018 Stephan Mueller <smueller@chronox.de>
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
@@ -807,15 +807,3 @@ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
____________________________________________________________
Copyright (c) 1999-2023 Igor Pavlov
LZMA SDK is written and placed in the public domain by Igor Pavlov.
Some code in LZMA SDK is based on public domain code from another developers:
1) PPMd var.H (2001): Dmitry Shkarin
2) SHA-256: Wei Dai (Crypto++ library)
Anyone is free to copy, modify, publish, use, compile, sell, or distribute the
original LZMA SDK code, either in source code form or as a compiled binary, for
any purpose, commercial or non-commercial, and by any means.
____________________________________________________________
+151 -112
View File
@@ -1,7 +1,9 @@
This archive contains the source code of VeraCrypt.
It is based on the original TrueCrypt 7.1a with security enhancements and modifications.
It is based on original TrueCrypt 7.1a with security enhancements and modifications.
# Important
Important
=========
You may use the source code contained in this archive only if you accept and
agree to the license terms contained in the file 'License.txt', which is
@@ -10,113 +12,168 @@ included in this archive.
Note that the license specifies, for example, that a derived work must not be
called 'TrueCrypt' or 'VeraCrypt'
# Contents
[I. Windows](#i-windows)
[II. Linux and Mac OS X](#ii-linux-and-mac-os-x)
Contents
========
[III. FreeBSD](#iii-freebsd)
I. Windows
Requirements for Building VeraCrypt for Windows.
Instructions for Building VeraCrypt for Windows.
Instructions for Signing and Packaging VeraCrypt for Windows.
[IV. Third-Party Developers (Contributors)](#iv-third-party-developers-contributors)
II. Linux and Mac OS X
Requirements for Building VeraCrypt for Linux and Mac OS X.
Instructions for Building VeraCrypt for Linux and Mac OS X.
Mac OS X specifics
[V. Legal Information](#v-legal-information)
III. FreeBSD
[VI. Further Information](#vi-further-information)
IV. Third-Party Developers (Contributors)
# I. Windows
V. Legal Information
## Requirements for Building VeraCrypt for Windows:
VI. Further Information
A detailed guide on how to build VeraCrypt on Windows can be found in
the [documentation](./doc/html/en/CompilingGuidelineWin.html) in the repository and
it is also available [online](https://veracrypt.jp/en/CompilingGuidelineWin.html) or on the [mirror](https://veracrypt.io/en/CompilingGuidelineWin.html).
I. Windows
==========
Requirements for Building VeraCrypt for Windows:
------------------------------------------------
- Microsoft Visual C++ 2010 SP1 (Professional Edition or compatible)
- Microsoft Visual C++ 2019
- Microsoft Visual C++ 1.52 (available from MSDN Subscriber Downloads)
- Microsoft Windows SDK for Windows 7.1 (configured for Visual C++ 2010)
- Microsoft Windows SDK for Windows 8.1 (needed for SHA-256 code signing)
- Microsoft Windows Driver Kit 7.1.0 (build 7600.16385.1)
- NASM assembler 2.08 or compatible
- YASM 1.3.0 or newer.
- gzip compressor
- upx packer (available at https://upx.github.io/)
IMPORTANT:
The 64-bit editions of Windows Vista and later versions of Windows, and in
some cases (e.g. playback of HD DVD content) also the 32-bit editions do not
some cases (e.g. playback of HD DVD content) also the 32-bit editions, do not
allow the VeraCrypt driver to run without an appropriate digital signature.
Therefore, all .sys files in official VeraCrypt binary packages are digitally
signed with the digital certificate of the IDRIX, which was issued by
signed with the digital certificate of the IDRIX, which was issued by
GlobalSign certification authority. At the end of each official .exe and
.sys file, there are embedded digital signatures and all related certificates
(i.e. all certificates in the relevant certification chain, such as the
certification authority certificates, CA-MS cross-certificate, and the
IDRIX certificate).
Keep this in mind if you compile VeraCrypt and compare your binaries with the
official binaries. If your binaries are unsigned, the sizes of the official
binaries will usually be approximately 10 KiB greater than the sizes of your
binaries will usually be approximately 10 KiB greater than sizes of your
binaries (there may be further differences if you use a different version of
the compiler, or if you install a different or no service pack for Visual
Studio, or different hotfixes for it, or if you use different versions of
the required SDKs).
## Instructions for Signing and Packaging VeraCrypt for Windows:
Instructions for Building VeraCrypt for Windows:
------------------------------------------------
1) Create an environment variable 'MSVC16_ROOT' pointing to the folder 'MSVC15'
extracted from the Visual C++ 1.52 self-extracting package.
Note: The 16-bit installer MSVC15\SETUP.EXE cannot be run on 64-bit Windows,
but it is actually not necessary to run it. You only need to extract the
folder 'MSVC15', which contains the 32-bit binaries required to build the
VeraCrypt Boot Loader.
2) If you have installed the Windows Driver Development Kit in another
directory than '%SYSTEMDRIVE%\WinDDK', create an environment variable
'WINDDK_ROOT' pointing to the DDK installation directory.
3) Open the solution file 'VeraCrypt.sln' in Microsoft Visual Studio 2010.
4) Select 'All' as the active solution configuration and WIN32 as the active
platform.
5) Build the solution.
6) Select x64 as the active platform and build the solution again.
7) Open the solution file 'VeraCrypt_vs2019.sln' in Microsoft Visual Studio 2019.
8) Select 'All' as the active solution configuration and ARM64 as the active
platform.
9) Build the solution.
6) If successful, there should be newly built VeraCrypt binaries in the
'Release\Setup Files' folder.
Instructions for Signing and Packaging VeraCrypt for Windows:
-------------------------------------------------------------
First, create an environment variable 'WSDK81' pointing to the Windows SDK
for Windows 8.1 installation directory.
The folder "Signing" contains a batch file (sign.bat) that will sign all
VeraCrypt components using a code signing certificate present on the
certificate store and build the final installation setup and MSI package.
The batch file assumes that the code signing certificate is issued by
certificate store and also build the final installation setup and MSI package.
The batch file suppose that the code signing certificate is issued by
GlobalSign. This is the case for IDRIX's certificate. If yours is issued by
another CA, then you should put its intermediate certificates in the "Signing"
folder and modify sign.bat accordingly.
To generate MSI packages, WiX Toolset v3.11 must be installed.
In order to generate MSI packages, WiX Toolset v3.11 must be installed.
## VeraCrypt EFI Boot Loader:
VeraCrypt EFI Boot Loader:
--------------------------
VeraCrypt source code contains pre-built EFI binaries under src\Boot\EFI.
The source code of VeraCrypt EFI Boot Loader is licensed under LGPL and
it is available at https://github.com/veracrypt/VeraCrypt-DCS.
For build instructions, please refer to the file src\Boot\EFI\Readme.txt.
# II. Linux and Mac OS X
A detailed guide on how to build VeraCrypt on Linux can be found in
the [documentation](./doc/html/en/CompilingGuidelineLinux.html) in the repository and
it is also available [online](https://veracrypt.jp/en/CompilingGuidelineLinux.html) or on the [mirror](https://veracrypt.io/en/CompilingGuidelineLinux.html).
II. Linux and Mac OS X
======================
## Requirements for Building VeraCrypt for Linux and Mac OS X:
Requirements for Building VeraCrypt for Linux and Mac OS X:
-----------------------------------------------------------
- GNU Make
- GNU C++ Compiler 4.0 or compatible
- Apple Xcode or Xcode command line tools (Mac OS X only)
- Apple Xcode (Mac OS X only)
- YASM 1.3.0 or newer (Linux only, x86/x64 architecture only)
- pkg-config
- wxWidgets 3.0 shared library and header files installed or
wxWidgets 3.0 library source code (available at https://www.wxwidgets.org)
- FUSE library and header files (available at https://github.com/libfuse/libfuse
and https://macfuse.github.io/)
- PCSC-lite library and header files (available at https://github.com/LudovicRousseau/PCSC)
and https://osxfuse.github.io/)
## Instructions for Building VeraCrypt for Linux and Mac OS X:
1. Change the current directory to the root of the VeraCrypt source code.
Instructions for Building VeraCrypt for Linux and Mac OS X:
-----------------------------------------------------------
2. If you have no wxWidgets shared library installed, run the following
1) Change the current directory to the root of the VeraCrypt source code.
2) If you have no wxWidgets shared library installed, run the following
command to configure the wxWidgets static library for VeraCrypt and to
build it:
`$ make WXSTATIC=1 WX_ROOT=/usr/src/wxWidgets wxbuild`
$ make WXSTATIC=1 WX_ROOT=/usr/src/wxWidgets wxbuild
The variable `WX_ROOT` must point to the location of the source code of the
The variable WX_ROOT must point to the location of the source code of the
wxWidgets library. Output files will be placed in the './wxrelease/'
directory.
3. To build VeraCrypt, run the following command:
3) To build VeraCrypt, run the following command:
`$ make`
$ make
or if you have no wxWidgets shared library installed:
`$ make WXSTATIC=1`
$ make WXSTATIC=1
4. If successful, the VeraCrypt executable should be located in the directory
4) If successful, the VeraCrypt executable should be located in the directory
'Main'.
By default, a universal executable supporting both graphical and text user
@@ -124,124 +181,106 @@ interface (through the switch --text) is built.
On Linux, a console-only executable, which requires no GUI library, can be
built using the 'NOGUI' parameter:
`$ make NOGUI=1 WXSTATIC=1 WX_ROOT=/usr/src/wxWidgets wxbuild`
`$ 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`
$ make NOGUI=1 WXSTATIC=1 WX_ROOT=/usr/src/wxWidgets wxbuild
$ make NOGUI=1 WXSTATIC=1
On MacOSX, building a console-only executable is not supported.
## Mac OS X specifics:
Mac OS X specifics:
-----------------------------------------------------------
Under MacOSX, the latest installed SDK is used by default. To use a different version
of the SDK when building using make, you can export the environment variable VC_OSX_SDK:
Under MacOSX, the SDK for OSX 11.3 is used by default. To use another version
of the SDK (i.e. 10.15), you can export the environment variable VC_OSX_TARGET:
`$ export VC_OSX_SDK=13.0`
$ export VC_OSX_TARGET=10.15
For development dependencies management, you can use [homebrew](https://brew.sh).
`$ brew install pkg-config yasm wxwidgets`
Before building under MacOSX, pkg-config must be installed if not yet available.
Get it from https://pkgconfig.freedesktop.org/releases/pkg-config-0.28.tar.gz and
compile using the following commands :
You also need system dependencies
$ ./configure --with-internal-glib
$ make
$ sudo make install
`$ brew install --cask macfuse packages`
After making sure pkg-config is available, download and install OSXFuse from
https://osxfuse.github.io/
After installing dependencies via brew, you can build a local development build
`$ ./src/Build/build_veracrypt_macosx.sh -b`
If you want to build the package, you must pass `-p` to the build script above. The built
executable will be in `.src/Main`
If you prefer to build from sources, or without homebrew, pkg-config and packages must be installed.
Get pkg-config from https://pkgconfig.freedesktop.org/releases/pkg-config-0.29.2.tar.gz and
compile using the following commands:
`$ CFLAGS="-Wno-int-conversion" CXXFLAGS="-Wno-int-conversion" ./configure --with-internal-glib`
`$ make`
`$ sudo make install`
After making sure pkg-config is available, download and install macFUSE from
https://macfuse.github.io/
The [build_veracrypt_macosx.sh](./src/Build/build_veracrypt_macosx.sh) script performs the
The script build_veracrypt_macosx.sh available under "src/Build" performs the
full build of VeraCrypt including the creation of the installer pkg. It expects
to find the wxWidgets 3.2.5 sources at the same level as where you put
to find the wxWidgets 3.1.2 sources at the same level as where you put
VeraCrypt sources (i.e. if "src" path is "/Users/joe/Projects/VeraCrypt/src"
then wxWidgets should be at "/Users/joe/Projects/wxWidgets-3.2.5")
then wxWidgets should be at "/Users/joe/Projects/wxWidgets-3.1.2")
The make build process uses Code Signing certificates whose ID is specified in
The build process uses Code Signing certificates whose ID is specified in
src/Main/Main.make (look for lines containing "Developer ID Application" and
"Developer ID Installer"). You'll have to modify these lines to put the ID of
your Code Signing certificates or comment them out if you don't have one.
your Code Signing certificates or comment them if you don't have one.
Because of incompatibility issues with macFUSE, the SDK 10.9 generates a
VeraCrypt binary that has issues communicating with the macFUSE kernel extension.
Thus, we recommend using a different macOS SDK version for building VeraCrypt.
Because of incompatibility issues with OSXFUSE, the SDK 10.9 generates a
VeraCrypt binary that has issues communicating with the OSXFUSE kernel extension.
Thus, we recommend using a different OSX SDK version for building VeraCrypt.
The Packages installer that is used for the VeraCrypt official build has been notarized by IDRIX and it is available at
https://github.com/idrassi/packages/releases
# III. FreeBSD
III. FreeBSD
============================
FreeBSD is supported starting from version 11.
The build requirements and instructions are the same as Linux except that gmake
should be used instead of make.
# IV. Third-Party Developers (Contributors)
IV. Third-Party Developers (Contributors)
=========================================
If you intend to implement a feature, please contact us first to make sure:
1. That the feature has not been implemented (we may have already implemented
1) That the feature has not been implemented (we may have already implemented
it, but haven't released the code yet).
2. That the feature is acceptable.
3. Whether we need the help of third-party developers with implementing the feature.
2) That the feature is acceptable.
3) Whether we need help of third-party developers with implementing the feature.
Information on how to contact us can be found at:
https://veracrypt.jp/
https://veracrypt.io/ (mirror)
https://www.veracrypt.fr/
# V. Legal Information
## Copyright Information
V. Legal Information
====================
Copyright Information
---------------------
This software as a whole:
Copyright (c) 2025 AM Crypto. All rights reserved.
Copyright (c) 2013-2022 IDRIX. All rights reserved.
Portions of this software:
Copyright (c) 2025 AM Crypto. All rights reserved.
Copyright (c) 2013-2025 IDRIX. All rights reserved.
Copyright (c) 2013-2022 IDRIX. All rights reserved.
Copyright (c) 2003-2012 TrueCrypt Developers Association. All rights reserved.
Copyright (c) 1998-2000 Paul Le Roux. All rights reserved.
Copyright (c) 1998-2008 Brian Gladman, Worcester, UK. All rights reserved.
Copyright (c) 1995-2023 Jean-loup Gailly and Mark Adler.
Copyright (c) 1995-2017 Jean-loup Gailly and Mark Adler.
Copyright (c) 2016 Disk Cryptography Services for EFI (DCS), Alex Kolotnikov
Copyright (c) 1999-2023 Dieter Baron and Thomas Klausner.
Copyright (c) 1999-2017 Dieter Baron and Thomas Klausner.
Copyright (c) 2013, Alexey Degtyarev. All rights reserved.
Copyright (c) 1999-2016 Jack Lloyd. All rights reserved.
Copyright (c) 2013-2019 Stephan Mueller <smueller@chronox.de>
Copyright (c) 1999-2023 Igor Pavlov
Copyright (c) 2013-2019 Stephan Mueller <smueller@chronox.de>
Copyright (c) 1999-2021 Igor Pavlov
For more information, please see the legal notices attached to parts of the
source code.
## Trademark Information
Trademark Information
---------------------
Any trademarks contained in the source code, binaries, and/or in the
documentation, are the sole property of their respective owners.
# VI. Further Information
https://veracrypt.jp
https://veracrypt.io (mirror)
VI. Further Information
=======================
https://www.veracrypt.fr
+311 -71
View File
@@ -1,90 +1,331 @@
@echo off
setlocal EnableDelayedExpansion
:: Define constants
set "VERACRYPT_PATH=c:\Program Files\VeraCrypt\veracrypt.exe"
set "PASSWORD=test"
set "HIDDEN_PASSWORD=testhidden"
setlocal
:: Find a free drive letter
call :freedrive mydriveletter || (
echo ERROR: No free drive letter found.
goto :exit
)
echo Using drive letter !mydriveletter!: for our tests
echo.
:: Define an array of hash algorithms and their corresponding container files
set "algorithms[0]=sha512,test.sha512.hc"
set "algorithms[1]=whirlpool,test.whirlpool.hc"
set "algorithms[2]=sha256,test.sha256.hc"
set "algorithms[3]=blake2s,test.blake2s.hc"
set "algorithms[4]=streebog,test.streebog.hc"
:: Loop through each algorithm
for /L %%i in (0,1,4) do (
for /F "tokens=1,2 delims=," %%a in ("!algorithms[%%i]!") do (
set "hash=%%a"
set "container=%%b"
if exist "!container!" (
call :mount_and_measure "!hash!" "!container!" "Normal" "!PASSWORD!"
call :mount_and_measure "!hash!" "!container!" "Hidden" "!HIDDEN_PASSWORD!"
echo.
)
)
)
:: Autodetect test
call :availablevolume testvolume || goto :exit
call :measure_time "Wrong Password (PRF Auto-detection)" ^
"/volume !testvolume! /l !mydriveletter! /password wrongpassword /q /silent /m ro"
echo.
call :freedrive mydriveletter && goto :cont
echo ERROR: No free drive letter found.
goto :exit
:cont
:: Subroutine to mount a volume and measure the time taken
:mount_and_measure
setlocal
set "hash=%~1"
set "container=%~2"
set "type=%~3"
set "volumepassword=%~4"
echo Using drive letter %mydriveletter%: for our tests
echo.
call :measure_time "%hash% (%type%)" ^
"/volume !container! /hash !hash! /l !mydriveletter! /password !volumepassword! /q /silent /m ro"
IF NOT EXIST test.sha512.hc GOTO :whirlpool
if not exist !mydriveletter!:\ (
echo ERROR: Drive letter !mydriveletter!: does not exist after mount operation.
goto :exit
rem Get start time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "start=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
"!VERACRYPT_PATH!" /unmount !mydriveletter! /silent /q
exit /b
rem Mount SHA-512 container (Normal)
"c:\Program Files\VeraCrypt\veracrypt.exe" /volume test.sha512.hc /hash sha512 /l %mydriveletter% /password test /q /silent /m ro
:: Subroutine to measure the time taken for a command to execute
:measure_time
setlocal
set "oper=%~1"
set "command=%~2"
for /F "tokens=1-4 delims=:.," %%a in ("!time!") do set /A "start=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
"!VERACRYPT_PATH!" %command%
for /F "tokens=1-4 delims=:.," %%a in ("!time!") do set /A "end=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
rem Get end time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "end=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
rem Get elapsed time:
set /A elapsed=end-start
rem Show elapsed time:
set /A hh=elapsed/(60*60*100), rest=elapsed%%(60*60*100), mm=rest/(60*100), rest%%=60*100, ss=rest/100, cc=rest%%100
if %hh% lss 10 set hh=0%hh%
if %mm% lss 10 set mm=0%mm%
if %ss% lss 10 set ss=0%ss%
if %cc% lss 10 set cc=0%cc%
echo SHA-512 (Normal) = %hh%:%mm%:%ss%,%cc%
echo %oper% = %hh%:%mm%:%ss%,%cc%
exit /b
"c:\Program Files\VeraCrypt\veracrypt.exe" /dismount %mydriveletter% /silent /q
rem Get start time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "start=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
rem Mount SHA-512 container (Hidden)
"c:\Program Files\VeraCrypt\veracrypt.exe" /volume test.sha512.hc /hash sha512 /l %mydriveletter% /password testhidden /q /silent /m ro
rem Get end time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "end=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
rem Get elapsed time:
set /A elapsed=end-start
rem Show elapsed time:
set /A hh=elapsed/(60*60*100), rest=elapsed%%(60*60*100), mm=rest/(60*100), rest%%=60*100, ss=rest/100, cc=rest%%100
if %hh% lss 10 set hh=0%hh%
if %mm% lss 10 set mm=0%mm%
if %ss% lss 10 set ss=0%ss%
if %cc% lss 10 set cc=0%cc%
echo SHA-512 (Hidden) = %hh%:%mm%:%ss%,%cc%
echo.
"c:\Program Files\VeraCrypt\veracrypt.exe" /dismount %mydriveletter% /silent /q
:whirlpool
IF NOT EXIST test.whirlpool.hc GOTO :sha256
rem Get start time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "start=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
rem Mount Whirlpool container (Normal).
"c:\Program Files\VeraCrypt\veracrypt.exe" /volume test.whirlpool.hc /hash whirlpool /l %mydriveletter% /password test /q /silent /m ro
rem Get end time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "end=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
rem Get elapsed time:
set /A elapsed=end-start
rem Show elapsed time:
set /A hh=elapsed/(60*60*100), rest=elapsed%%(60*60*100), mm=rest/(60*100), rest%%=60*100, ss=rest/100, cc=rest%%100
if %hh% lss 10 set hh=0%hh%
if %mm% lss 10 set mm=0%mm%
if %ss% lss 10 set ss=0%ss%
if %cc% lss 10 set cc=0%cc%
echo Whirlpool (Normal) = %hh%:%mm%:%ss%,%cc%
"c:\Program Files\VeraCrypt\veracrypt.exe" /dismount %mydriveletter% /silent /q
rem Get start time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "start=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
rem Mount Whirlpool container (Hidden).
"c:\Program Files\VeraCrypt\veracrypt.exe" /volume test.whirlpool.hc /hash whirlpool /l %mydriveletter% /password testhidden /q /silent /m ro
rem Get end time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "end=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
rem Get elapsed time:
set /A elapsed=end-start
rem Show elapsed time:
set /A hh=elapsed/(60*60*100), rest=elapsed%%(60*60*100), mm=rest/(60*100), rest%%=60*100, ss=rest/100, cc=rest%%100
if %hh% lss 10 set hh=0%hh%
if %mm% lss 10 set mm=0%mm%
if %ss% lss 10 set ss=0%ss%
if %cc% lss 10 set cc=0%cc%
echo Whirlpool (Hidden) = %hh%:%mm%:%ss%,%cc%
echo.
"c:\Program Files\VeraCrypt\veracrypt.exe" /dismount %mydriveletter% /silent /q
:sha256
IF NOT EXIST test.sha256.hc GOTO :ripemd160
rem Get start time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "start=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
rem Mount SHA-256 container (Normal)
"c:\Program Files\VeraCrypt\veracrypt.exe" /volume test.sha256.hc /hash sha256 /l %mydriveletter% /password test /q /silent /m ro
rem Get end time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "end=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
rem Get elapsed time:
set /A elapsed=end-start
rem Show elapsed time:
set /A hh=elapsed/(60*60*100), rest=elapsed%%(60*60*100), mm=rest/(60*100), rest%%=60*100, ss=rest/100, cc=rest%%100
if %hh% lss 10 set hh=0%hh%
if %mm% lss 10 set mm=0%mm%
if %ss% lss 10 set ss=0%ss%
if %cc% lss 10 set cc=0%cc%
echo SHA-256 (Normal) = %hh%:%mm%:%ss%,%cc%
"c:\Program Files\VeraCrypt\veracrypt.exe" /dismount %mydriveletter% /silent /q
rem Get start time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "start=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
rem Mount SHA-256 container (Hidden)
"c:\Program Files\VeraCrypt\veracrypt.exe" /volume test.sha256.hc /hash sha256 /l %mydriveletter% /password testhidden /q /silent /m ro
rem Get end time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "end=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
rem Get elapsed time:
set /A elapsed=end-start
rem Show elapsed time:
set /A hh=elapsed/(60*60*100), rest=elapsed%%(60*60*100), mm=rest/(60*100), rest%%=60*100, ss=rest/100, cc=rest%%100
if %hh% lss 10 set hh=0%hh%
if %mm% lss 10 set mm=0%mm%
if %ss% lss 10 set ss=0%ss%
if %cc% lss 10 set cc=0%cc%
echo SHA-256 (Hidden) = %hh%:%mm%:%ss%,%cc%
echo.
"c:\Program Files\VeraCrypt\veracrypt.exe" /dismount %mydriveletter% /silent /q
:ripemd160
IF NOT EXIST test.ripemd160.hc GOTO :streebog
rem Get start time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "start=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
rem Mount RIPEMD-160 container (Normal)
"c:\Program Files\VeraCrypt\veracrypt.exe" /volume test.ripemd160.hc /hash ripemd160 /l %mydriveletter% /password test /q /silent /m ro
rem Get end time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "end=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
rem Get elapsed time:
set /A elapsed=end-start
rem Show elapsed time:
set /A hh=elapsed/(60*60*100), rest=elapsed%%(60*60*100), mm=rest/(60*100), rest%%=60*100, ss=rest/100, cc=rest%%100
if %hh% lss 10 set hh=0%hh%
if %mm% lss 10 set mm=0%mm%
if %ss% lss 10 set ss=0%ss%
if %cc% lss 10 set cc=0%cc%
echo RIPEMD-160 (Normal) = %hh%:%mm%:%ss%,%cc%
"c:\Program Files\VeraCrypt\veracrypt.exe" /dismount %mydriveletter% /silent /q
rem Get start time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "start=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
rem Mount RIPEMD-160 container (Hidden)
"c:\Program Files\VeraCrypt\veracrypt.exe" /volume test.ripemd160.hc /hash ripemd160 /l %mydriveletter% /password testhidden /q /silent /m ro
rem Get end time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "end=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
rem Get elapsed time:
set /A elapsed=end-start
rem Show elapsed time:
set /A hh=elapsed/(60*60*100), rest=elapsed%%(60*60*100), mm=rest/(60*100), rest%%=60*100, ss=rest/100, cc=rest%%100
if %hh% lss 10 set hh=0%hh%
if %mm% lss 10 set mm=0%mm%
if %ss% lss 10 set ss=0%ss%
if %cc% lss 10 set cc=0%cc%
echo RIPEMD-160 (Hidden) = %hh%:%mm%:%ss%,%cc%
echo.
"c:\Program Files\VeraCrypt\veracrypt.exe" /dismount %mydriveletter% /silent /q
:streebog
IF NOT EXIST test.streebog.hc GOTO :autodetect
rem Get start time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "start=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
rem Mount Streebog container (Normal)
"c:\Program Files\VeraCrypt\veracrypt.exe" /volume test.streebog.hc /hash streebog /l %mydriveletter% /password test /q /silent /m ro
rem Get end time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "end=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
rem Get elapsed time:
set /A elapsed=end-start
rem Show elapsed time:
set /A hh=elapsed/(60*60*100), rest=elapsed%%(60*60*100), mm=rest/(60*100), rest%%=60*100, ss=rest/100, cc=rest%%100
if %hh% lss 10 set hh=0%hh%
if %mm% lss 10 set mm=0%mm%
if %ss% lss 10 set ss=0%ss%
if %cc% lss 10 set cc=0%cc%
echo Streebog (Normal) = %hh%:%mm%:%ss%,%cc%
"c:\Program Files\VeraCrypt\veracrypt.exe" /dismount %mydriveletter% /silent /q
rem Get start time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "start=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
rem Mount Streebog container (Hidden)
"c:\Program Files\VeraCrypt\veracrypt.exe" /volume test.streebog.hc /hash streebog /l %mydriveletter% /password testhidden /q /silent /m ro
rem Get end time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "end=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
rem Get elapsed time:
set /A elapsed=end-start
rem Show elapsed time:
set /A hh=elapsed/(60*60*100), rest=elapsed%%(60*60*100), mm=rest/(60*100), rest%%=60*100, ss=rest/100, cc=rest%%100
if %hh% lss 10 set hh=0%hh%
if %mm% lss 10 set mm=0%mm%
if %ss% lss 10 set ss=0%ss%
if %cc% lss 10 set cc=0%cc%
echo Streebog (Hidden) = %hh%:%mm%:%ss%,%cc%
echo.
"c:\Program Files\VeraCrypt\veracrypt.exe" /dismount %mydriveletter% /silent /q
:autodetect
call :availablevolume testvolume && goto :contautodetect
goto :exit
:contautodetect
rem Get start time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "start=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
rem Try to mount with a wrong password and PRF autodetection
"c:\Program Files\VeraCrypt\veracrypt.exe" /volume %testvolume% /l %mydriveletter% /password wrongpassword /q /silent /m ro
rem Get end time:
for /F "tokens=1-4 delims=:.," %%a in ("%time%") do (
set /A "end=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100"
)
rem Get elapsed time:
set /A elapsed=end-start
rem Show elapsed time:
set /A hh=elapsed/(60*60*100), rest=elapsed%%(60*60*100), mm=rest/(60*100), rest%%=60*100, ss=rest/100, cc=rest%%100
if %hh% lss 10 set hh=0%hh%
if %mm% lss 10 set mm=0%mm%
if %ss% lss 10 set ss=0%ss%
if %cc% lss 10 set cc=0%cc%
echo Wrong Password (PRF Auto-detection)= %hh%:%mm%:%ss%,%cc%
echo.
goto :exit
rem Finds a free drive letter.
rem
@@ -119,12 +360,11 @@ set drive=
:freedrive0
endlocal & set "%output_var%=%drive%" & exit /b %exitcode%
:: Subroutine to find an available volume
:availablevolume
setlocal EnableDelayedExpansion
set exitcode=0
set "output_var=%~1"
for %%i in (test.sha512.hc,test.sha256.hc,test.whirlpool.hc,test.blake2s.hc) do (
for %%i in (test.sha512.hc,test.sha256.hc,test.whirlpool.hc,test.ripemd160.hc) do (
if exist %%i (
set "volume=%%i"
goto :availablevolume0
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+171 -292
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
@@ -135,8 +135,8 @@
<entry lang="ar" key="IDC_FAVORITE_REMOVE">قم بإزالة</entry>
<entry lang="ar" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">استخدم الوسم المفضل كوسم لمستكشف الملفات</entry>
<entry lang="ar" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">إعدادات عامة</entry>
<entry lang="ar" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP"> عقب التنزيل السريع، أعرض الكتابة في بالون</entry>
<entry lang="ar" key="IDC_HK_UNMOUNT_PLAY_SOUND">عقب التنزيل السريع، شغل نغمة تنبيهات النظام</entry>
<entry lang="ar" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP"> عقب التنزيل السريع، أعرض الكتابة في بالون</entry>
<entry lang="ar" key="IDC_HK_DISMOUNT_PLAY_SOUND">عقب التنزيل السريع، شغل نغمة تنبيهات النظام</entry>
<entry lang="ar" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="ar" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="ar" key="IDC_HK_MOD_SHIFT">Shift</entry>
@@ -156,12 +156,12 @@
<entry lang="ar" key="IDC_PIM_HELP">(عدد الدورات الافتراضي صفر أو قيمة فارغة)</entry>
<entry lang="ar" key="IDC_PREF_BKG_TASK_ENABLE">‮مُفعّل</entry>
<entry lang="ar" key="IDC_PREF_CACHE_PASSWORDS">‮خزّن كلمات السرّ مؤقتا في ذاكرة المُشغِّل</entry>
<entry lang="ar" key="IDC_PREF_UNMOUNT_INACTIVE">‮افصل المجلد تلقائيا عندما لا تُكتب/تُقرأ بيانات منه</entry>
<entry lang="ar" key="IDC_PREF_UNMOUNT_LOGOFF">‮خروج المستخدم</entry>
<entry lang="ar" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">أغلقت الجلسة التشغيلية للمستخدم</entry>
<entry lang="ar" key="IDC_PREF_UNMOUNT_POWERSAVING">‮الدخول في طور حِفظ الطاقة</entry>
<entry lang="ar" key="IDC_PREF_UNMOUNT_SCREENSAVER">‮اشتغال حافظة الشاشة</entry>
<entry lang="ar" key="IDC_PREF_FORCE_AUTO_UNMOUNT">‮أجبر الفصل التلقائي حتى إن وجدت ملفات أو أدلّة مفتوحة في المجلد</entry>
<entry lang="ar" key="IDC_PREF_DISMOUNT_INACTIVE">‮افصل المجلد تلقائيا عندما لا تُكتب/تُقرأ بيانات منه</entry>
<entry lang="ar" key="IDC_PREF_DISMOUNT_LOGOFF">‮خروج المستخدم</entry>
<entry lang="ar" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">أغلقت الجلسة التشغيلية للمستخدم</entry>
<entry lang="ar" key="IDC_PREF_DISMOUNT_POWERSAVING">‮الدخول في طور حِفظ الطاقة</entry>
<entry lang="ar" key="IDC_PREF_DISMOUNT_SCREENSAVER">‮اشتغال حافظة الشاشة</entry>
<entry lang="ar" key="IDC_PREF_FORCE_AUTO_DISMOUNT">‮أجبر الفصل التلقائي حتى إن وجدت ملفات أو أدلّة مفتوحة في المجلد</entry>
<entry lang="ar" key="IDC_PREF_LOGON_MOUNT_DEVICES">‮أوصل كل مجلدات ڤيراكربت المستضافة في نبائط</entry>
<entry lang="ar" key="IDC_PREF_LOGON_START">‮شغِّل مهمة ڤيراكربت التي في الخلفية</entry>
<entry lang="ar" key="IDC_PREF_MOUNT_READONLY">‮أوصل المجلدات للقراءة فقط</entry>
@@ -169,7 +169,7 @@
<entry lang="ar" key="IDC_PREF_OPEN_EXPLORER">‮افتح نافذة إكسبلورر للمجلدات التي نجح وصلها</entry>
<entry lang="ar" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">كلمة السر المؤقتة للمخبأ خلال عمل "تحميل الأقراص المفضلة"</entry>
<entry lang="ar" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">قم باستخدام أيقونة مختلفة في شريط الأوامر عند وجود أقراص محملة</entry>
<entry lang="ar" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">‮امحُ كلمات السر المخزّنة مؤقتا عند الفصل التلقائي</entry>
<entry lang="ar" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">‮امحُ كلمات السر المخزّنة مؤقتا عند الفصل التلقائي</entry>
<entry lang="ar" key="IDC_PREF_WIPE_CACHE_ON_EXIT">‮امحُ كلمات السر المخزّنة مؤقتا عند الخروج</entry>
<entry lang="ar" key="IDC_PRESERVE_TIMESTAMPS">قم بحفظ ختم الوقت عند تعديل ملفات الحاويات</entry>
<entry lang="ar" key="IDC_RESET_HOTKEYS">‮صفّر</entry>
@@ -269,14 +269,14 @@
<entry lang="ar" key="IDT_ACCELERATION_OPTIONS">تسريع العتاد</entry>
<entry lang="ar" key="IDT_ASSIGN_HOTKEY">‮اختصار</entry>
<entry lang="ar" key="IDT_AUTORUN">‮تضبيطات التشغيل التلقائي (autorun.inf)</entry>
<entry lang="ar" key="IDT_AUTO_UNMOUNT">‮افصل تلقائيًا</entry>
<entry lang="ar" key="IDT_AUTO_UNMOUNT_ON">‮افصل الكل عندما:</entry>
<entry lang="ar" key="IDT_AUTO_DISMOUNT">‮افصل تلقائيًا</entry>
<entry lang="ar" key="IDT_AUTO_DISMOUNT_ON">‮افصل الكل عندما:</entry>
<entry lang="ar" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">‮خيارات شاشة مُحمِّل الإقلاع</entry>
<entry lang="ar" key="IDT_CONFIRM_PASSWORD">‮أكّد كلمة السرّ:</entry>
<entry lang="ar" key="IDT_CURRENT">‮الحالي</entry>
<entry lang="ar" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">‮اعرض هذه الرسالة في شاشة استيثاق ما قبل الإقلاع (بحد أقصى 24 حرفا):</entry>
<entry lang="ar" key="IDT_DEFAULT_MOUNT_OPTIONS">‮خيارات الوصل المبدئية</entry>
<entry lang="ar" key="IDT_UNMOUNT_ACTION">‮خيارات أزرار الاختصار</entry>
<entry lang="ar" key="IDT_DISMOUNT_ACTION">‮خيارات أزرار الاختصار</entry>
<entry lang="ar" key="IDT_DRIVER_OPTIONS">تهيئة المحرك</entry>
<entry lang="ar" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">فعل دعم أكواد تحكم الأقراص</entry>
<entry lang="ar" key="IDT_FAVORITE_LABEL">وسم القرص المعين</entry>
@@ -291,11 +291,10 @@
<entry lang="ar" key="IDT_NEW_PASSWORD">‮كلمة السر:</entry>
<entry lang="ar" key="IDT_PARALLELIZATION_OPTIONS">الأوامر البرمجية المصغرة بالتوازي</entry>
<entry lang="ar" key="IDT_PKCS11_LIB_PATH">‮مسار مكتبة ‪PKCS #11‬</entry>
<entry lang="ar" key="IDT_KDF">KDF:</entry>
<entry lang="ar" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="ar" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="ar" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="ar" key="IDT_PW_CACHE_OPTIONS">‮ذاكرة كلمات السّر</entry>
<entry lang="ar" key="IDT_SECURITY_OPTIONS">‮خيارات الأمان</entry>
<entry lang="ar" key="IDT_EMV_OPTIONS">خيارات EMV</entry>
<entry lang="ar" key="IDT_TASKBAR_ICON">‮مهمّة الخلفية لڤيراكربت</entry>
<entry lang="ar" key="IDT_TRAVELER_MOUNT">‮مجلد ڤيراكربت لوصله (نسبة إلى جذر قرص الجوّال):</entry>
<entry lang="ar" key="IDT_TRAVEL_INSERTION">‮عند إدخال قرص الجوال: </entry>
@@ -357,7 +356,7 @@
<entry lang="ar" key="IDT_KEYFILE_WARNING">‮تحذير: إذا فَقدّت الملف المفتاح أو تغيرت أي بتة من أوّل ‪1024‬ كيلوبايت منه فسيكون من المستحيل وصل المجلدات التي تستخدم ذلك المفتاح!</entry>
<entry lang="ar" key="IDT_KEY_UNIT">‮بتات</entry>
<entry lang="ar" key="IDT_NUMBER_KEYFILES">عدد ملفات المفتاح</entry>
<entry lang="ar" key="IDT_KEYFILES_SIZE">حجم ملفات المفتاح:</entry>
<entry lang="ar" key="IDT_KEYFILES_SIZE">حجم ملفات المفتاح (بايت):</entry>
<entry lang="ar" key="IDT_KEYFILES_BASE_NAME">اسم قاعدة ملفات المفتاح:</entry>
<entry lang="ar" key="IDT_LANGPACK_AUTHORS">‮ترجمه:</entry>
<entry lang="ar" key="IDT_PLAINTEXT">‮حجم النص الصريح:</entry>
@@ -390,7 +389,6 @@
<entry lang="ar" key="ADMINISTRATOR">المستخدم المدير</entry>
<entry lang="ar" key="ADMIN_PRIVILEGES_DRIVER">‮لتُحمّل مشغّل ڤيراكربت تحتاج للولوج إلى حساب له صلاحيات المدير.</entry>
<entry lang="ar" key="ADMIN_PRIVILEGES_WARN_DEVICES">‮لاحظ أنه لكي تعمي/تُهيئ قسما/نبيطة فإنه يتوجب عليك الولوج إلى حساب له صلاحيات المدير. ‮ ‮ هذا لا ينطبق على المجلدات المستضافة في ملفات.</entry>
<entry lang="ar" key="ADMIN_PRIVILEGES_WARN_MANAGE_VOLUME">تعذر تفعيل إنشاء الملفات السريعة: يلزم وجود امتيازات المسؤول.\nيرجى إعادة تشغيل البرنامج كمسؤول لتمكين هذه الميزة.\n\nهل ترغب في المتابعة دون إنشاء الملفات السريعة؟</entry>
<entry lang="ar" key="ADMIN_PRIVILEGES_WARN_HIDVOL">‮لإنشاء مجلد مخفي يجب الولوج إلى حساب له صلاحيات المدير. ‮ ‮أأتابع؟</entry>
<entry lang="ar" key="ADMIN_PRIVILEGES_WARN_NTFS">‮رجاءً لاحظ أنه يجب عليك الولوج إلى حساب له صلاحيات المدير لتتمكّن من تهيئة المجلد بنظام‍ ‪NTFS‬. ‮ ‮ يمكنك أن تُهيء المجلد بنظام ‪FAT‬ دون صلاحيات المدير.</entry>
<entry lang="ar" key="AES_HELP">‮شفرة مقبولة لدى ‪FIPS‬ (‪Rijndael المنشورة في ‪1998‬) يمكن لوكالات و إدارات حكومة الولايات المتحدة الأمريكية استخدامها لحماية المعلومات المصنفة حتى مستوى 'سري للغاية'. ‮مفتاح بطول ‪256‬ بتة؛ كتلة ‪128‬ بتة؛ ‪14 دورة (‪AES‬ ‪256‬)؛ تعمل في طور ‪XTS‬.</entry>
@@ -423,8 +421,8 @@
<entry lang="ar" key="DEVICE_FREE_PB">‮حجم ‪%s‬ هو ‪%.2f‬ ب.بايت</entry>
<entry lang="ar" key="DEVICE_IN_USE_FORMAT">‮تحذير: النبيطة\\القسم قيد الاستخدام بواسطة نظام التشغيل أو تطبيق ما. قد تسبب تهيئة النبيطة\\القسم فساد البيانات وعدم استقرار النظام. ‮ ‮أأواصل؟</entry>
<entry lang="ar" key="DEVICE_IN_USE_INPLACE_ENC">‮تحذير: هذا القسم قيد الاستخدام بواسطة نظام التشغيل أو تطبيق ما. ينبغي أن تغلق كل التطبيقات التي يمكن أن تكون مستخدمة القسم (بما في ذلك مضادات الفيروسات). ‮ ‮أأواصل؟</entry>
<entry lang="ar" key="FORMAT_CANT_UNMOUNT_FILESYS">‮عُطل: تحتوي النبيطة\\القسم على نظام ملفات تعذَّر فصله. ربما يستخدم نظامُ التشغيل نظامَ الملفات. ستسبب تهيئة النبيطة\\القسم تلف البيانات وعدم استقرار النظام. ‮ ‮ لحل هذه المشكلة ننصحك بأن تحذف القسم أولًا ثم تعيد إنشاءه دون تهيئة. لفعل هذا اتبع الخطوات التالية: 1) انقر باليمين أيقونة 'الحاسوب' (أو 'حاسوبي') في 'قائمة ابدأ' واختر 'أدر'. ستظهر نافذة 'إدارة الحاسوب'. 2) من نافذة 'إدارة الحاسوب' اختر 'تخزين' &gt; 'إدارة القرص'. 3) انقر باليمين على القسم الذي تريد تعميته واختر إمَّا 'احذف القسم' أو 'احذف المجلد'، أو'احذف المجلد المنطقي'. 4) انقر 'نعم'. إذا سألك ويندوز إعادة تشغيل الحاسوب فافعل ذلك. ثم أعد الخطوتين 1 و 2 وواصل من الخطوة 5. 5) انقر باليمين على المساحة غير المخصصة\\الشاغرة ثم اختر إما 'قسم جديد'، أو 'مجلد جديد بسيط' أو 'مجلد منطقي جديد'. 6) ستظهر الآن نافذة 'مرشد القسم الجديد' أو 'مرشد المجلد البسيط الجديد'، اتبع التعليمات. في صفحة المعالج المعنونة 'هيّء القسم'، اختر إما 'لا تهيء هذا القسم' أو 'لا تهيء هذا المجلد'. في المرشد ذاته انقر 'اللاحق' ثم 'أنه'. 7) لاحظ أن مسار النبيطة التي كنت قد اخترتها في المرشد ربما أضحى غير صحيح الآن. لذا اخرج من مرشد إنشاء مجلد ڤيراكربت (إذا كان لا يزال يعمل) ثم ابدأه مجددا. 8) جرب تعمية النبيطة\\القسم مجددا. ‮ ‮ إذا تكرر فشل ڤيراكربت في تعمية المجلد فقد ترى إنشاء ملفٍ حاوٍ بدلا من هذا.</entry>
<entry lang="ar" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">‮عطل: تعذّر قفل نظام الملفات و\\أو فصله. قد يكون قيد الاستخدام بواسطة نظام التشغيل أو تطبيق ما (كمضاد فيروسات مثلا). مواصلة تعمية القسم قد تسبب تلف البيانات و عدم استقرار النظام. ‮ ‮أغلق كل التطبيقات التي يمكن أن تكون مستخدمة نظام الملفات (بما في ذلك مضادات الفيروسات) و حاول مجددا.. إن لم تنحل المشكلة فاتّبع الخطوات التالية.</entry>
<entry lang="ar" key="FORMAT_CANT_DISMOUNT_FILESYS">‮عُطل: تحتوي النبيطة\\القسم على نظام ملفات تعذَّر فصله. ربما يستخدم نظامُ التشغيل نظامَ الملفات. ستسبب تهيئة النبيطة\\القسم تلف البيانات وعدم استقرار النظام. ‮ ‮ لحل هذه المشكلة ننصحك بأن تحذف القسم أولًا ثم تعيد إنشاءه دون تهيئة. لفعل هذا اتبع الخطوات التالية: 1) انقر باليمين أيقونة 'الحاسوب' (أو 'حاسوبي') في 'قائمة ابدأ' واختر 'أدر'. ستظهر نافذة 'إدارة الحاسوب'. 2) من نافذة 'إدارة الحاسوب' اختر 'تخزين' &gt; 'إدارة القرص'. 3) انقر باليمين على القسم الذي تريد تعميته واختر إمَّا 'احذف القسم' أو 'احذف المجلد'، أو'احذف المجلد المنطقي'. 4) انقر 'نعم'. إذا سألك ويندوز إعادة تشغيل الحاسوب فافعل ذلك. ثم أعد الخطوتين 1 و 2 وواصل من الخطوة 5. 5) انقر باليمين على المساحة غير المخصصة\\الشاغرة ثم اختر إما 'قسم جديد'، أو 'مجلد جديد بسيط' أو 'مجلد منطقي جديد'. 6) ستظهر الآن نافذة 'مرشد القسم الجديد' أو 'مرشد المجلد البسيط الجديد'، اتبع التعليمات. في صفحة المعالج المعنونة 'هيّء القسم'، اختر إما 'لا تهيء هذا القسم' أو 'لا تهيء هذا المجلد'. في المرشد ذاته انقر 'اللاحق' ثم 'أنه'. 7) لاحظ أن مسار النبيطة التي كنت قد اخترتها في المرشد ربما أضحى غير صحيح الآن. لذا اخرج من مرشد إنشاء مجلد ڤيراكربت (إذا كان لا يزال يعمل) ثم ابدأه مجددا. 8) جرب تعمية النبيطة\\القسم مجددا. ‮ ‮ إذا تكرر فشل ڤيراكربت في تعمية المجلد فقد ترى إنشاء ملفٍ حاوٍ بدلا من هذا.</entry>
<entry lang="ar" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">‮عطل: تعذّر قفل نظام الملفات و\\أو فصله. قد يكون قيد الاستخدام بواسطة نظام التشغيل أو تطبيق ما (كمضاد فيروسات مثلا). مواصلة تعمية القسم قد تسبب تلف البيانات و عدم استقرار النظام. ‮ ‮أغلق كل التطبيقات التي يمكن أن تكون مستخدمة نظام الملفات (بما في ذلك مضادات الفيروسات) و حاول مجددا.. إن لم تنحل المشكلة فاتّبع الخطوات التالية.</entry>
<entry lang="ar" key="DEVICE_IN_USE_INFO">‮تحذير: بعض النبائط\\الأقسام الموصولة قيد الاستخدام! ‮ ‮ سيسبب تجاهل هذا نتائج غير مرغوبة تشمل عدم استقرار النظام. ‮ ‮ ننصح بشدة بغلق أي تطبيق يستخدم النبائط\\الأقسام.</entry>
<entry lang="ar" key="DEVICE_PARTITIONS_ERR">‮النبيطة المختارة تحوي أقساما. ‮ ‮ ربما تسبب تهيئة تلك النبيطة عدم استقرار النظام و/أو تلف البيانات. عليك إمَّا أن تختار قسما على النبيطة، أو أن تحذف كل الأقسام لتمكن ڤيراكربت من تهيئتها بأمان.</entry>
<entry lang="ar" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">‮النبيطة المختارة لا تحوي نظام تشغيل و تحوي أقساما. ‮ ‮مجلدات ڤيراكربت المعماة المستضافة في نبائط يمكن إنشاؤها حصرا في نبائط لا تحوي أية أقسام مسبقا (بما في ذلك الاقراص الصلبة و شرائح الذاكرة). لا يمكن تعمية نبيطة تحوي أقساما في موضعها (باستخدام مفتاح واحد رئيسي) إلا إن كانت السواقة المنصب فيها ويندوز و منها يقلع. ‮ ‮إن أردت تعمية النبيطة المختارة باستخدام مفتاح واحد رئيسي فتنبغي إزالة كل الأقسام من النبيطة أولا لتمكين ڤيراكربت من تهيئتها بأمان (تهيئة نبيطة تحوي أقساما قد تؤدي إلى عدم استقرار النظام و\\أو تلف البيانات). عوضا عن هذا يمكنك تعمية كل قسم على النبيطة على حدى (و سيكون لكل منها مفتاح). ‮ ‮ملاحظة:إن أردت إزالة كل الأقسام من قرص ‪GPT‬ فقد تضطر إلى تحويله إلى قرص ‪MBR‬ (مثلا باستخدام أداة إدارة الوسائط) لكي تتمكن من إزالة الأقسام المخفية منه.</entry>
@@ -590,7 +588,7 @@
<entry lang="ar" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">‮عطل: الملفات التي نسختها إلى المجلد الخارجي تشغل حيزا أكبر من اللازم، لذا لا توجد مساحة شاغرة كافية فيه للمجلد المخفي. ‮ ‮لاحظ أن المجلد المخفي ينبغي أن يكون بحجم قسم النظام (القسم المنصب فيه نظام التشغيل العامل حاليا). السبب هو أن نظام التشغيل المخفي سينشأ بنسخ محتوى قسم النظام إلى المجلد المخفي. ‮ ‮لا يمكن مواصلة صيرورة إنشاء نظام التشغيل المخفي.</entry>
<entry lang="ar" key="OPENFILES_DRIVER">‮لا يستطيع المشغل فصل المجلد. يحتمل أن تكون بعض الملفات الموجودة على المجلد لا تزال مفتوحة.</entry>
<entry lang="ar" key="OPENFILES_LOCK">‮تعذَّر قفل المجلد. ما زالت بعض الملفات على المجلد مفتوحة. لذا لا يمكن فصله.</entry>
<entry lang="ar" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">‮تعذَّر على ڤيراكربت قفل المجلد لأنه قيد الاستخدام بواسطة النظام أو تطبيقات (ربما توجد ملفات مفتوحة على المجلد). ‮ ‮أتريد إجبار فصل المجلد؟</entry>
<entry lang="ar" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">‮تعذَّر على ڤيراكربت قفل المجلد لأنه قيد الاستخدام بواسطة النظام أو تطبيقات (ربما توجد ملفات مفتوحة على المجلد). ‮ ‮أتريد إجبار فصل المجلد؟</entry>
<entry lang="ar" key="OPEN_VOL_TITLE">‮اختر مجلد ڤيراكربت</entry>
<entry lang="ar" key="OPEN_TITLE">‮عيِّن المسار و اسم الملف</entry>
<entry lang="ar" key="SELECT_PKCS11_MODULE">‮اختر مكتبة ‪PKCS #11‬</entry>
@@ -613,7 +611,7 @@
<entry lang="ar" key="FAVORITE_PIM_CHANGED">هذا القرص تم تسجيله في مفضلات النظام وهويته تغيرت.\nهل ترغب أن يقوم فيراكربت بتحديث تهيئة مفضلات النظام تلقائيا (يتطلب صلاحيات مدير نظام)?\n\nالرجاء إذا تمت الإجابة بلا, أنه يتحتم عليك تحديث مفضلات النظام يدويا.</entry>
<entry lang="ar" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">‮هام: إذا لم تدمر قرص إنقاذ ڤيراكربت فإنه يمكن تظهير قسم\\نبيطة النظام باستخدام كلمة السر العتيقة (بإقلاع قرص إنقاذ ڤيراكربت و إدخال كلمة السر العتيقة). لذا ينبغي إنشاء قرص إنقاذ ڤيراكربت حديث ثم إتلاف العتيق. ‮ ‮أتريد إنشاء قرص ڤيراكربت حديث؟</entry>
<entry lang="ar" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">‮لاحظ أن قرص ڤيراكربت لازال يستخدم الخوارزمية السابقة. إن كنت تعد الخوارزمية السابقة غير آمنة فينبغي لك أن تنشئ قرص إنقاذ ڤيراكربت جديد ثم تدمر العتيق. ‮ ‮أتريد إنشاء قرص إنقاذ ڤيراكربت جديد؟</entry>
<entry lang="ar" key="KEYFILES_NOTE"> لاحظ أن فيراكربت لا يقوم بتغيير محتوى ملف المفتاح. يمكنك اختيار أكثر من ملف مفتاح (التريتب غير مؤثر). إذا أضفت مجلدا, كل الملفات غير المخفية سيتم اعتبارها ملفات مفاتيح. اضغط 'Add Token Files' لاختيار ملفات مفاتيح مخزنة على كرت ذكي أو توكن آمن (أو قم باستيرادهما).</entry>
<entry lang="ar" key="KEYFILES_NOTE">أي نوع من هذه الملفات (for example, .mp3, .jpg, .zip, .avi) يمكن استخدامه لملف مفتاح في فيراكربت. لاحظ أن فيراكربت لا يقوم بتغيير محتوى ملف المفتاح. يمكنك اختيار أكثر من ملف مفتاح (التريتب غير مؤثر). إذا أضفت مجلدا, كل الملفات غير المخفية سيتم اعتبارها ملفات مفاتيح. اضغط 'Add Token Files' لاختيار ملفات مفاتيح مخزنة على كرت ذكي أو توكن آمن (أو قم باستيرادهما).</entry>
<entry lang="ar" key="KEYFILE_CHANGED">‮أضيفت/أزيلت الملفات المفاتيح بنجاح.</entry>
<entry lang="ar" key="KEYFILE_EXPORTED">‮تم تصدير الملف المفتاح.</entry>
<entry lang="ar" key="PKCS5_PRF_CHANGED">‮تم ضبط خوارزمية اشتقاق مفتاح الترويسة بنجاح.</entry>
@@ -729,7 +727,7 @@
<entry lang="ar" key="DLL_FILES">‮وحدات المكتبات</entry>
<entry lang="ar" key="FORMAT_NTFS_STOP">‮تعذَّر إتمام تهيئة ‪NTFS‬.</entry>
<entry lang="ar" key="CANT_MOUNT_VOLUME">‮تعذَّر وصل المجلد.</entry>
<entry lang="ar" key="CANT_UNMOUNT_VOLUME">‮تعذَّر فصل المجلد.</entry>
<entry lang="ar" key="CANT_DISMOUNT_VOLUME">‮تعذَّر فصل المجلد.</entry>
<entry lang="ar" key="FORMAT_NTFS_FAILED">‮فشل ويندوز في تهيئة المجلد بنظام ‪NTFS‬. ‮ ‮اختر نظام ملفات مختلف (إن أمكن) وحاول مجددا. أو يمكنك ترك المجلد دون تهيئة (اختر نوع نظام الملفات 'لا شيء') واخرج من هذا المرشد ثم أوصل المجلد واستخدم أداة النظام أو أداة أخرى لتهيئة المجلد الموصول (سيبقى المجلد معمّى).</entry>
<entry lang="ar" key="FORMAT_NTFS_FAILED_ASK_FAT">‮فشل ويندوز في تهيئة المجلد في هيئة ‪NTFS‬. ‮ ‮أتريد تهيئة المجلد على هيئة ‪FAT‬ بدلا من هذا؟</entry>
<entry lang="ar" key="DEFAULT">‮المبدئيّ</entry>
@@ -771,7 +769,7 @@
<entry lang="ar" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">‮منع عطلٌ تروركبت من تعمية القسم. حاول إصلاح الأعطال المقررة مسبقا ثم حاول مجدا. إن تكررت المشكلة يفيد اتِّباع الخطوات التالية.</entry>
<entry lang="ar" key="INPLACE_ENC_GENERIC_ERR_RESUME">‮منع عطلُ ڤيراكربت من معاودة صيرورة تعمية القسم. ‮ ‮حاول إصلاح المشكلات المقررة مسبقا ثم حاول مجددا معاودة الصيرورة. لاحظ أن المجلد لا يمكن وصله حتى تمام تعميته.</entry>
<entry lang="ar" key="INPLACE_DEC_GENERIC_ERR">خطأ تسبب في عدم تمكن فيراكربت من فك تشفير القرص. يرجى إصلاح أي خلل سابق ثم معاودة المحاولة إذا أمكن.</entry>
<entry lang="ar" key="CANT_UNMOUNT_OUTER_VOL">‮عُطل: تعذَّر فصل المجلد الخارجي! ‮ ‮لا يمكن فصل المجلد إذا حوى ملفات أو أدلة يستخدمها تطبيق أو النظام. ‮ ‮أغلق كل البرمجيات التي قد تكون مستخدمة ملفات أو أدلة على المجلد ثم انقر 'حاول مجددا'.</entry>
<entry lang="ar" key="CANT_DISMOUNT_OUTER_VOL">‮عُطل: تعذَّر فصل المجلد الخارجي! ‮ ‮لا يمكن فصل المجلد إذا حوى ملفات أو أدلة يستخدمها تطبيق أو النظام. ‮ ‮أغلق كل البرمجيات التي قد تكون مستخدمة ملفات أو أدلة على المجلد ثم انقر 'حاول مجددا'.</entry>
<entry lang="ar" key="CANT_GET_OUTER_VOL_INFO">‮عطل: تعذّر جلب معلومات عن المجلد الخارجي! لا تمكن مواصلة إنشاء المجلد.</entry>
<entry lang="ar" key="CANT_ACCESS_OUTER_VOL">‮عُطل: تعذَّر النفاذ للمجلد الخارجي! لا يمكن متابعة إنشاء المجلد.</entry>
<entry lang="ar" key="CANT_MOUNT_OUTER_VOL">‮عُطل: تعذَّر وصل المجلد الخارجي! لا يمكن متابعة إنشاء المجلد.</entry>
@@ -813,7 +811,7 @@
<entry lang="ar" key="SECONDARY_KEY_SIZE_LRW">‮ضبط حجم المفتاح (طور ‪LRW‬)</entry>
<entry lang="ar" key="BITS">‮بتات</entry>
<entry lang="ar" key="BLOCK_SIZE">‮حجم الكتلة</entry>
<entry lang="ar" key="KDF">KDF</entry>
<entry lang="ar" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="ar" key="PKCS5_ITERATIONS">‮عدد دورات PKCS-5</entry>
<entry lang="ar" key="VOLUME_CREATE_DATE">‮أُنشئ المجلد</entry>
<entry lang="ar" key="VOLUME_HEADER_DATE">‮آخر تعديل للترويسة</entry>
@@ -855,7 +853,7 @@
<entry lang="ar" key="TC_INSTALLER_IS_RUNNING">‮أداة تنصيب ڤيراكربت عاملة حاليا في هذا النظام و تجري أو تهيئ تنصيبا أو تحديثا. قبل المواصلة انتظر حتى تتم عملها أو أغلقها. إن تعذّر إغلاقها فأعد تشغيل النظام.</entry>
<entry lang="ar" key="INSTALL_FAILED">‮فشل التنصيب.</entry>
<entry lang="ar" key="UNINSTALL_FAILED">‮فشلت الإزالة.</entry>
<entry lang="ar" key="DIST_PACKAGE_CORRUPTED">‮حزمة التوزيع هذه معطوبة. حاول تنزيلها مجددا (يستحسن من موقع ڤيراكربت الرسمي في https://veracrypt.jp).</entry>
<entry lang="ar" key="DIST_PACKAGE_CORRUPTED">‮حزمة التوزيع هذه معطوبة. حاول تنزيلها مجددا (يستحسن من موقع ڤيراكربت الرسمي في ‪https://www.veracrypt.fr).</entry>
<entry lang="ar" key="CANNOT_WRITE_FILE_X">‮تعذّرت كتابة الملف ‪%s‬</entry>
<entry lang="ar" key="EXTRACTING_VERB">‮يجري الاستحراج</entry>
<entry lang="ar" key="CANNOT_READ_FROM_PACKAGE">‮تعذّرت قراءة البيانات من الحزمة.</entry>
@@ -882,7 +880,7 @@
<entry lang="ar" key="INSTALL_COMPLETED">‮تم التنصيب.</entry>
<entry lang="ar" key="CANT_CREATE_FOLDER">‮تعذَّر إنشاء الدليل '‪%s'</entry>
<entry lang="ar" key="CLOSE_TC_FIRST">‮تعذَّر إفراغ مُشغِّل ڤيراكربت. ‮ ‮أغلق كل نوافذ ڤيراكربت المفتوحة أولا. إذا لم ينجح هذا أعد تشغيل ويندوز و حاول مجددا.</entry>
<entry lang="ar" key="UNMOUNT_ALL_FIRST">‮يجب أن تُفصل كل مجلدات ڤيراكربت قبل تنصيب ‌أو إزالة ڤيراكربت.</entry>
<entry lang="ar" key="DISMOUNT_ALL_FIRST">‮يجب أن تُفصل كل مجلدات ڤيراكربت قبل تنصيب ‌أو إزالة ڤيراكربت.</entry>
<entry lang="ar" key="UNINSTALL_OLD_VERSION_FIRST">نسخة منتهية الصلاحية من فيراكربت مثبتة حاليا على هذا النظام. لابد من إزالة هذه النسخة قبل أن تتمكن من تثبيت النسخة الجديدة من فيراكربت.\n\nفور إقفالك لهذه الرسالة, سوف يبدأ برنامج إزالة التثبيت في العمل. لاحظ أنه لن يتم فك تشفير أي قرص أثناء عملية الإزالة. بعد عملية الإزالة للنسخة القديمة من فيراكربت, قم بتثبيت النسخة الجديدة من فيراكر.</entry>
<entry lang="ar" key="REG_INSTALL_FAILED">‮فشل تنصيب مدخلات التسجيل</entry>
<entry lang="ar" key="DRIVER_INSTALL_FAILED">‮فشل تنصيب مشغل النبيطة. أعد تشغيل ويندوز ثم حاول تنصيب ڤيراكربت مجددًا.</entry>
@@ -903,7 +901,7 @@
<entry lang="ar" key="MINUTES">‮دقائق</entry>
<entry lang="ar" key="SECONDS">‮ث</entry>
<entry lang="ar" key="OPEN">‮افتح</entry>
<entry lang="ar" key="UNMOUNT">‮افصل</entry>
<entry lang="ar" key="DISMOUNT">‮افصل</entry>
<entry lang="ar" key="SHOW_TC">‮أظهر ڤيراكربت</entry>
<entry lang="ar" key="HIDE_TC">‮اخفِ ڤيراكربت</entry>
<entry lang="ar" key="TOTAL_DATA_READ">‮البيانات التي قُرأت منذ الوصل</entry>
@@ -940,7 +938,7 @@
<entry lang="ar" key="ENTER_HEADER_BACKUP_PASSWORD">‮أدخل كلمة سر الترويسة المحفوظة في الملف</entry>
<entry lang="ar" key="KEYFILE_CREATED">‮أُنشئ ملف المفتاح بنجاح.</entry>
<entry lang="ar" key="KEYFILE_INCORRECT_NUMBER">عدد ملفات المفتاح المدخل غير صحيح.</entry>
<entry lang="ar" key="KEYFILE_INCORRECT_SIZE">حجم ملف المفتاح يجب أن يكون على الأقل 64 بايت.</entry>
<entry lang="ar" key="KEYFILE_INCORRECT_SIZE">حجم ملف المفتاح يجب أن يكون بين 64 و 1048576 بايت.</entry>
<entry lang="ar" key="KEYFILE_EMPTY_BASE_NAME">الرجاء إدخال إسم لملف/ملفات المفاتيح المراد توليدها</entry>
<entry lang="ar" key="KEYFILE_INVALID_BASE_NAME">إسم ملف/ملفات المفتاح غير صحيح</entry>
<entry lang="ar" key="KEYFILE_ALREADY_EXISTS">ملف المفتاح '%s' موجود من قبل.\nهل تريد استبداله? عملية التوليد ستتوقف لو كانت الإجابة بلا.</entry>
@@ -975,7 +973,7 @@
<entry lang="ar" key="SYSTEM_FAVORITES_DLG_TITLE">فيراكربت - أقراص النظام المفضلة</entry>
<entry lang="ar" key="SYS_FAVORITES_HELP_LINK">ما هي أقراص النظام المفضلة?</entry>
<entry lang="ar" key="SYS_FAVORITES_REQUIRE_PBA">قرص النظام لا يبدو أنه مشفر.\n\nأقراص النظام المفضلة يمكن استخدامها فقط بكلمة سر قبل الإقلاع . لذلك, لتفعيل استخدام أقراص النظام المفضلة, تحتاج إلى تشفير قرص النظام أو جزء النظام أولا.</entry>
<entry lang="ar" key="UNMOUNT_FIRST">‮افصل المجلد قبل الاستمرار.</entry>
<entry lang="ar" key="DISMOUNT_FIRST">‮افصل المجلد قبل الاستمرار.</entry>
<entry lang="ar" key="CANNOT_SET_TIMER">‮عطل: تعذّر شبط المؤقِّت.</entry>
<entry lang="ar" key="IDPM_CHECK_FILESYS">‮افحص نظام الملفات</entry>
<entry lang="ar" key="IDPM_REPAIR_FILESYS">‮أصلح نظام الملفات</entry>
@@ -1009,11 +1007,11 @@
<entry lang="ar" key="NO_SYSENC_PARTITION_SELECTED">‮لم يُختر أي قسم. ‮ ‮انقر 'اختر نبيطة' لتختار قسما مفصولا يتطلب عادة استيثاق ما قبل الإقلاع (مثل قسمٍ على سواقة النظام المعمّاة لنظام تشغيل آخر غير عامل أو قسم النظام لنظام تشغيل آخر). ‮ ‮ملاحظة: القسم المختار سيوصل كمجلد ڤيراكربت عادي دون استيثاق ما قبل الإقلاع. هذا مفيد للنسخ الاحتياطي أو لعمليات الإصلاح.</entry>
<entry lang="ar" key="CONFIRM_SAVE_DEFAULT_KEYFILES">‮تنبيه: إن كانت ملفات مفاتيح مبدئية قد ضُبطت و فُعلِّت فإن المجلدات التي لا تستخدم تلك الملفات المفاتيح لن يمكن وصلها. لذا فبعد أن تفعِّل الملفات المفاتيح المبدئية خذ في الاعتبار أن تزيل تأشير 'استخدم الملفات المفاتيح' (أسفل حقل إدخال كلمة السر) كلما عزمت وصل مثل تلك المجلدات. ‮ ‮ أمتأكد أنك تريد حفظ الملفات المفاتيح\\المسارات المختارة كمبدئية؟</entry>
<entry lang="ar" key="HK_AUTOMOUNT_DEVICES">‮أوصل النبائط تلقائيا</entry>
<entry lang="ar" key="HK_UNMOUNT_ALL">‮افصل الكل</entry>
<entry lang="ar" key="HK_DISMOUNT_ALL">‮افصل الكل</entry>
<entry lang="ar" key="HK_WIPE_CACHE">‮امحُ الذّاكرة المخبئية</entry>
<entry lang="ar" key="HK_UNMOUNT_ALL_AND_WIPE">تنزيل الجميع &amp; تدمير الكاش</entry>
<entry lang="ar" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">‮أجبر فصل الكل و امحُ الذّاكرة المخبئية</entry>
<entry lang="ar" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">‮أجبر فصل الكل و امحُ الذّاكرة المخبئية و اخرج</entry>
<entry lang="ar" key="HK_DISMOUNT_ALL_AND_WIPE">تنزيل الجميع &amp; تدمير الكاش</entry>
<entry lang="ar" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">‮أجبر فصل الكل و امحُ الذّاكرة المخبئية</entry>
<entry lang="ar" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">‮أجبر فصل الكل و امحُ الذّاكرة المخبئية و اخرج</entry>
<entry lang="ar" key="HK_MOUNT_FAVORITE_VOLUMES">‮أوصل المجلدات المفضّلة</entry>
<entry lang="ar" key="HK_SHOW_HIDE_MAIN_WINDOW">‮أظهر/اخف نافذة ڤيراكربت الرئيسية</entry>
<entry lang="ar" key="PRESS_A_KEY_TO_ASSIGN">‮(انقر هنا و اضغط زرا)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="ar" key="PAGING_FILE_CREATION_PREVENTED">تم منع ملفات الترحيل.\n\nالرجاء ملاحظة أنه, طبقا لإشكالات في ويندوز, لا يمكن تعيين ملفات الترحيل على قرص فيراكربت غير نظامي (بما في ذلك الأقراص المفضلة). فيراكربت يدعم ملفات الترحيل على أقراص/أجزاء نظامية فقط.</entry>
<entry lang="ar" key="SYS_ENC_HIBERNATION_PREVENTED">‮منع عُطلٌ أو عدمُ توافقية ڤيراكربت من تعمية ملف السبات، لذا فقد عُطل السبات. ‮ ‮ملاحظة: عندما يسبت حاسوب (أو يدخل طور توفير الطاقة) فإن محتويات ذاكرة النظام تحفظ في ملف تخزين للسبات يوجد على سواقة النظام. لا يمكن لتروكربيت أن يحول دون حفظ مفاتيح التعمية و محتويات الملفات الحساسة المفتوحة في الذاكرة إلى ملف السبات غير معماة.</entry>
<entry lang="ar" key="HIDDEN_OS_HIBERNATION_PREVENTED">تم منع الإسبات.\n\nفيراكربت لايدعم الإسبات في نظام تشغيل مخفي يستخدم جزءا خاصا للإقلاع. لاحظ أن جزء الإقلاع مشترك بين النظام المزيف والمخفي. لذلك, من أجل منع تسرب البيانات عند الإفاقة من الإسبات, فإن فيراكربت يمنع الإسبات ويمنع النظام المخفي من الكتابة على جزء الإقلاع المشترك.</entry>
<entry lang="ar" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">قرص فيراكربت الذي تم تحميله ك %c: تم تنزيله.</entry>
<entry lang="ar" key="MOUNTED_VOLUMES_UNMOUNTED">تم تنزيل قرص فيراكربت.</entry>
<entry lang="ar" key="VOLUMES_UNMOUNTED_CACHE_WIPED">تم تنزيل قرص فيراكربت وتدمير الكاش.</entry>
<entry lang="ar" key="SUCCESSFULLY_UNMOUNTED">تنزيل بنجاح</entry>
<entry lang="ar" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">قرص فيراكربت الذي تم تحميله ك %c: تم تنزيله.</entry>
<entry lang="ar" key="MOUNTED_VOLUMES_DISMOUNTED">تم تنزيل قرص فيراكربت.</entry>
<entry lang="ar" key="VOLUMES_DISMOUNTED_CACHE_WIPED">تم تنزيل قرص فيراكربت وتدمير الكاش.</entry>
<entry lang="ar" key="SUCCESSFULLY_DISMOUNTED">تنزيل بنجاح</entry>
<entry lang="ar" key="CONFIRM_BACKGROUND_TASK_DISABLED">تحذير: إذا كانت عمليات فيراكربت الخلفية معطلة, الوظائف التالية ستتعطل:\n\n1) المفاتيح الساخنة\n2) التنزيل التلقائي (مثال, عند الخروج, إخراج الجهاز غير المتعمد, نفاذ التوقيت, etc.)\n3) التحميل التلقائي للمفضلات\n4) التنبيهات (مثال, عند منع العطب للأقراص المخفية)\n5) أيقونة الشريط السفلي\n\nملاحظة: بإمكانك تعطيل العمليات الخلفية لفيراكربت في أي وقت وذلك بالضغط بالزر الأيمن على شريط فيراكربت ثم اختيار الخروج .\n\nهل أنت متأكد من رغبتك في تعطيل مهام فيراكربت الخلفية نهائيا?</entry>
<entry lang="ar" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">‮تحذير: إذا عُطِّل هذا الخيار فلن يمكن تلقائيا فصل المجلدات التي تحوي ملفات\\أدلة مفتوحة. ‮ ‮أمتأكد أنك تريد تعطيل هذا الخيار؟</entry>
<entry lang="ar" key="WARN_PREF_AUTO_UNMOUNT">‮تنبيه: المجلدات التي تحوي ملفات\\أدلة مفتوحة لن تُفصل تلقائيا. ‮ ‮للحول دون هذا فعّل الخيار التالي في نافذة الحوار هذه: 'أجبر الفصل التلقائي حتى إذا حوى المجلد ملفات أو أدلة مفتوحة'</entry>
<entry lang="ar" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">تحذير: عندما تكون بطارية المحمول منخفضة الشحن, يقوم ويندوز بإخطار التطبيقات قيد التشغيل بذلك برسالة مناسبة. لذلك, يمكن أن يخفق فيراكربت في تعطيل تحميل الأقراص المحملة.</entry>
<entry lang="ar" key="CONFIRM_NO_FORCED_AUTODISMOUNT">‮تحذير: إذا عُطِّل هذا الخيار فلن يمكن تلقائيا فصل المجلدات التي تحوي ملفات\\أدلة مفتوحة. ‮ ‮أمتأكد أنك تريد تعطيل هذا الخيار؟</entry>
<entry lang="ar" key="WARN_PREF_AUTO_DISMOUNT">‮تنبيه: المجلدات التي تحوي ملفات\\أدلة مفتوحة لن تُفصل تلقائيا. ‮ ‮للحول دون هذا فعّل الخيار التالي في نافذة الحوار هذه: 'أجبر الفصل التلقائي حتى إذا حوى المجلد ملفات أو أدلة مفتوحة'</entry>
<entry lang="ar" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">تحذير: عندما تكون بطارية المحمول منخفضة الشحن, يقوم ويندوز بإخطار التطبيقات قيد التشغيل بذلك برسالة مناسبة. لذلك, يمكن أن يخفق فيراكربت في تعطيل تحميل الأقراص المحملة.</entry>
<entry lang="ar" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">‮كنت قد جدولت صيرورة تعمية قسم\\مجلد، و لم تتم تلك الصيرورة. ‮ ‮أتريد معاودة الصيرورة الآن؟</entry>
<entry lang="ar" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">‮كنت قد جدولت صيرورة تعمية أو تظهير قسم\\سواقة النظام، إلا أن هذه الصيرورة لم تتم بعد. ‮ ‮أتريد معاودة الصيرورة الآن؟</entry>
<entry lang="ar" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL"> هل ترغب أن يتم إخطارك عما إذا كنت تريد استكمال العملية المجدولة لتشفير/فك تشفير جزء أو قرص غير نظامي?</entry>
@@ -1063,7 +1061,7 @@
<entry lang="ar" key="SYS_AUTOMOUNT_DISABLED">‮نظامك ليس مضبوطا ليوصِّل المجلدات الجديدة تلقائيا. قد يتعذَّر وصل مجلدات ڤيراكربت المستضافة في نبائط. يمكن تفعيل الوصل الآلي بتنفيذ الأمر التالي ثم إعادة تشغيل النظام. ‮ mountvol.exe /E</entry>
<entry lang="ar" key="SYS_ASSIGN_DRIVE_LETTER">‮خصِّص حرفا للقسم\\النبيطة قبل المواصلة ('لوحة التحكم' &gt; 'النظام و الإدارة' &gt; 'أدوات الإدارة' - 'أنشئ و هيء أقسام القرص الصلب'). ‮ ‮لاحظ أن هذا من متطلبات النظام.</entry>
<entry lang="ar" key="MOUNT_TC_VOLUME">‮أوصل مجلد ڤيراكربت</entry>
<entry lang="ar" key="UNMOUNT_ALL_TC_VOLUMES">‮افصل كل مجلدات ڤيراكربت</entry>
<entry lang="ar" key="DISMOUNT_ALL_TC_VOLUMES">‮افصل كل مجلدات ڤيراكربت</entry>
<entry lang="ar" key="UAC_INIT_ERROR">‮فشل ڤيراكربت في الحصول على صلاحيات الإدارة.</entry>
<entry lang="ar" key="ERR_ACCESS_DENIED">‮منع النظامُ النفاذ. ‮ ‮السبب المحتمل: يتطلب النظام أن تكون لديك صلاحية القراءة\\الكتابة (أو صلاحية الإدارة) لأدلة و ملفات و نبائط معينة ليُسمح لك بقراءة و كتابة بيانات إليها/منها. عادة ما يُسمح للمستخدم دون صلاحيات الإدارة أن يُنشئ و يقرأ و يعدل الملفات في دليل الوثائق الخاص به.</entry>
<entry lang="ar" key="SECTOR_SIZE_UNSUPPORTED">خطأ: القرص يستخدم حجم مسار غير مدعوم.\n\nإنه لا يمكن إنشاء جزء/قرص حجم مساره أكبر 4096من بايت. لكن, لاحظ أن بإمكانك إنشاء ملف حاوية على ذلك القرص.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="ar" key="HIDDEN_OS_CREATION_PREINFO_HELP">‮في الخطوات التالية سينشئ ڤيراكربت نظام التشغيل المخفي بنسخ محتوى قسم النظام إلى المجلد المخفي (البيانات المنسوخة ستُعمى لحظيا بمفتاح تعمية يختلف عن الذي سيستخدم لنظام التشغيل التمويهي). ‮ ‮لاحظ أن هذه الصيرورة ستجري في بيئة ما قبل الإقلاع (قبل أن يشتغل ويندوز) و أنها قد تستغرق وقتا طويلا حتى تتم؛ بضع ساعات أو حتى أياما (حسب حجم قسم النظام و قوة الحاسوب). ‮ ‮سيكون بوسعك مقاطعة الصيرورة و إطفاء الحاسوب ثم بدء نظام التشغيل و معاودة الصيرورة لاحقا. إلا أنك إذا ما قاطعت صيرورة نسخ نظام التشغيل فإنها ستبدأ من البداية عند معاودتها (لأن محتويات قسم النظام ينبغي ألا تتغير أثناء النسخ).</entry>
<entry lang="ar" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">‮أتريد إلغاء صيرورة إنشاء نظام التسغيل المخفي كلية؟ ‮ ‮ملاحظة: لن يمكنك معاودة الصيرورة إن ألغيتها الآن.</entry>
<entry lang="ar" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">‮أتريد إلغاء الاختبار المبدئي لتعمية النظام؟</entry>
<entry lang="ar" key="BOOT_PRETEST_FAILED_RETRY">فشل الاختبار المبدئي لتشفير فيراكربت. هل تريد إعادة المحاولة?\n\nإذا اخترت 'لا', سيتم إزالة برنامج الإقلاع من فيراكربت.\n\nملاحظة:\n\n- إذا لم يطلب برنامج إقلاع فيراكربت كلمة سر قبل ويندوز, فهذا يعني أن نظام التشغيل ليس مثبتا على نفس القسم الذي يقلع منه. وهذا ليس مدعوما.\n\n- إذا استخدمت خوارزمية تشفير غير AES وفشل عملية الإقلاع (مع إدخالك لكلمة السر), فيمكن أن يكون المحرك به خلل في التصميم. اختر 'لا', وحاول تشفير قسم/قرص النظام مرة أخرى, AES واستخدم خزارزمية تشفير (التي لها أقل المتطلبات بالنسبة للذاكرة).\n\n- للمزيد عن الأسباب والحلول, راجع: https://veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="ar" key="BOOT_PRETEST_FAILED_RETRY">فشل الاختبار المبدئي لتشفير فيراكربت. هل تريد إعادة المحاولة?\n\nإذا اخترت 'لا', سيتم إزالة برنامج الإقلاع من فيراكربت.\n\nملاحظة:\n\n- إذا لم يطلب برنامج إقلاع فيراكربت كلمة سر قبل ويندوز, فهذا يعني أن نظام التشغيل ليس مثبتا على نفس القسم الذي يقلع منه. وهذا ليس مدعوما.\n\n- إذا استخدمت خوارزمية تشفير غير AES وفشل عملية الإقلاع (مع إدخالك لكلمة السر), فيمكن أن يكون المحرك به خلل في التصميم. اختر 'لا', وحاول تشفير قسم/قرص النظام مرة أخرى, AES واستخدم خزارزمية تشفير (التي لها أقل المتطلبات بالنسبة للذاكرة).\n\n- للمزيد عن الأسباب والحلول, راجع: https://www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="ar" key="SYS_DRIVE_NOT_ENCRYPTED">‮لا يبدو أن قسم\\سواقة النظام مُعمّاة (لا جزئيا و لا بالكامل).</entry>
<entry lang="ar" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">‮قسم\\سواقة النظام مُعمّاة (جزئيا أو بالكامل). ‮ ‮ظهِّر قسم\\سواقة النظام كُليّا قبل المواصلة. لفعل هذا اختر 'نظام' &gt; 'ظهِّر نهائيا قسم\\سواقة النظام' من قائمة نافذة ڤيراكربت الرئيسية.</entry>
<entry lang="ar" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">حينما يتم تشفير قسم/قرص النظام (كليا أو جزئيا), لا يمكنك تخفيض فيراكربت (لكن يمكنك الترقية أو تثبيت نفس الإصدار).</entry>
@@ -1306,8 +1304,8 @@
<entry lang="ar" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">لاحظ أن عدد البرمجيات الصغيرة محدود, والذي سيؤثر على مؤشرات المقارنة (الأداء الأسوأ).\n\nلاستغلال كامل إمكانات المعالج/المعالجات, اختر 'إعدادات' > 'الأداء' ثم عطل الخيار المطلوب.</entry>
<entry lang="ar" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">هل ترغب أن يحاول فيراكربت في تعطيل حماية الكتابة للقرص/القسم?</entry>
<entry lang="ar" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">تحذير: هذا الخيار يمكن يؤثر سلبا على الأداء.\n\nهل ترغب فعلا في استخدام هذا الخيار?</entry>
<entry lang="ar" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">تحذير: قرص فيراكربت تم تنزيله</entry>
<entry lang="ar" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">قبل فصل جهاز موصول ويحوي قرص فيراكربت, لابد دوما من تنزيل ملف الحاوية أولا.\n\nفصل الحاوية المفاجئ سببه إنقطاع التوصيل المتكرر لسلك الجهاز, المحرك (الغطاء), ...الخ.</entry>
<entry lang="ar" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">تحذير: قرص فيراكربت تم تنزيله</entry>
<entry lang="ar" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">قبل فصل جهاز موصول ويحوي قرص فيراكربت, لابد دوما من تنزيل ملف الحاوية أولا.\n\nفصل الحاوية المفاجئ سببه إنقطاع التوصيل المتكرر لسلك الجهاز, المحرك (الغطاء), ...الخ.</entry>
<entry lang="ar" key="UNSUPPORTED_TRUECRYPT_FORMAT">هذا القرص تم إنشاؤه بالإصدار %x.%x لكن فيراكربت يدعم فقط أقراص تروكربت من إصدار 6.x/7.x series</entry>
<entry lang="ar" key="TEST">‮اختبر</entry>
<entry lang="ar" key="KEYFILE">‮ملف مفتاح</entry>
@@ -1429,265 +1427,146 @@
<entry lang="ar" key="VOLUME_TOO_LARGE_FOR_HOST">خطأ: حجم ملف الحاوية أكبر من حجم المساحة المتاحة على القرص.</entry>
<entry lang="ar" key="IDC_ALLOW_WINDOWS_DEFRAG">اسمح لملغي تجزئة القرص من ويندوز أن يقوم بإلغاء تجزئة القرص أو القسم غي النظامي.</entry>
<entry lang="ar" key="CONFIRM_ALLOW_WINDOWS_DEFRAG">تحذير: إلغاء تجزئة قسم أو قرص غير نظامي يمكن أن يؤدي لتسريب بيانات وصفية عن الجزء أو القسم، أو يتسبب في مشكلات للقسم المخفي الموجود بهما.\n\nهل ترغب بالاستمرار؟</entry>
<entry lang="ar" key="VIRTUAL_DEVICE">جهاز افتراضي</entry>
<entry lang="ar" key="MOUNTED_VOLUME_NOT_ASSOCIATED">الحجم المركب المحدد غير مرتبط بحرف محرك الأقراص في نظام التشغيل Windows لذلك لا يمكن فتحه في مستكشف Windows.</entry>
<entry lang="ar" key="IDC_CLEAR_KEYS_ON_NEW_DEVICE_INSERTION">مسح مفاتيح التشفير من الذاكرة عند إدراج جهاز جديد</entry>
<entry lang="ar" key="CLEAR_KEYS_ON_DEVICE_INSERTION_WARNING">ملاحظات هامة:\n - يرجى ملاحظة أن هذا الخيار لن يستمر بعد إيقاف التشغيل / إعادة التشغيل لذلك ستحتاج إلى تحديده مرة أخرى في المرة القادمة التي يتم فيها تشغيل الجهاز.\n\n - عند تمكين هذا الخيار وبعد توصيل جهاز جديد، سيتجمد الجهاز وفي النهاية سيتعطل بوجود شاشة زرقاء لأن نظام Windows لا يمكنه الوصول إلى القرص المشفر بعد مسح مفاتيحه من الذاكرة.\n</entry>
<entry lang="en" key="VIRTUAL_DEVICE">Virtual Device</entry>
<entry lang="en" key="MOUNTED_VOLUME_NOT_ASSOCIATED">The selected mounted volume is not associated with its drive letter in Windows and so it can not be opened in Windows Explorer.</entry>
<entry lang="en" key="IDC_CLEAR_KEYS_ON_NEW_DEVICE_INSERTION">Clear encryption keys from memory if a new device is inserted</entry>
<entry lang="en" key="CLEAR_KEYS_ON_DEVICE_INSERTION_WARNING">IMPORTANT NOTES:\n - Please keep in mind that this option will not persist after a shutdown/reboot so you will need to select it again next time the machine is started.\n\n - With this option enabled and after a new device is connected, the machine will freeze and it will eventually crash with a BSOD since Windows can not access the encrypted disk after its keys are cleared from memory.\n</entry>
<entry lang="ar" key="STARTING">جاري البدأ</entry>
<entry lang="ar" key="IDC_ENABLE_CPU_RNG">استخدام مولد عشوائي للأجهزة في وحدة المعالجة المركزية كمصدر إضافي للطاقة</entry>
<entry lang="ar" key="IDC_USE_LEGACY_MAX_PASSWORD_LENGTH">استخدام طول كلمة المرور الأقصى التقليدي (64 حرفًا)</entry>
<entry lang="ar" key="IDC_ENABLE_RAM_ENCRYPTION">تفعيل تشفير المفاتيح وكلمات المرور المخزنة في الذاكرة العشوائية (RAM)</entry>
<entry lang="en" key="IDC_ENABLE_CPU_RNG">Use CPU hardware random generator as an additional source of entropy</entry>
<entry lang="en" key="IDC_USE_LEGACY_MAX_PASSWORD_LENGTH">Use legacy maximum password length (64 characters)</entry>
<entry lang="en" key="IDC_ENABLE_RAM_ENCRYPTION">Activate encryption of keys and passwords stored in RAM</entry>
<entry lang="ar" key="IDT_BENCHMARK">مقايسة الأداء:</entry>
<entry lang="ar" key="IDC_DISABLE_MOUNT_MANAGER">إنشاء جهاز افتراضي فقط دون التثبيت على حرف محرك الأقراص المحدد</entry>
<entry lang="en" key="IDC_DISABLE_MOUNT_MANAGER">Only create virtual device without mounting on selected drive letter</entry>
<entry lang="ar" key="LEGACY_PASSWORD_UTF8_TOO_LONG">كلمة السر المدخلة طويلة: تمثيلها بصيغة UTF-8 يزيد عن 128 بايت.</entry>
<entry lang="ar" key="HIDDEN_CREDS_SAME_AS_OUTER">لا يمكن أن يكون للحجم المخفي نفس كلمة المرور، و PIM والملفات المفتاحية للحجم الخارجي</entry>
<entry lang="ar" key="SYSENC_BITLOCKER_CONFLICT">VeraCrypt لا يدعم تشفير محرك النظام المشفر بالفعل بواسطة BitLocker.</entry>
<entry lang="ar" key="IDC_UPDATE_BOOTLOADER_ON_SHUTDOWN">إصلاح تلقائي لمشكلات تكوين الإقلاع التي قد تمنع Windows من بدء التشغيل</entry>
<entry lang="ar" key="IDC_FORCE_NEXT_BOOT_VERACRYPT">إجبار الجهاز على الإقلاع على VeraCrypt في بدء التشغيل التالي</entry>
<entry lang="ar" key="IDC_FORCE_VERACRYPT_BOOT_ENTRY">فرض وجود إدخال VeraCrypt في قائمة إقلاع برنامج EFI الثابت</entry>
<entry lang="ar" key="IDC_FORCE_VERACRYPT_FIRST_BOOT_ENTRY">فرض إدخال VeraCrypt ليكون الأول في قائمة إقلاع برنامج EFI الثابت</entry>
<entry lang="ar" key="RAM_ENCRYPTION_DISABLE_HIBERNATE">تحذير: تشفير الذاكرة العشوائية (RAM) غير متوافق مع ميزات السبات الفوري (Hibernate) والتشغيل السريع في Windows. يحتاج VeraCrypt إلى تعطيلها قبل تفعيل تشفير الذاكرة العشوائية.\n\nهل تريد المتابعة؟</entry>
<entry lang="ar" key="CONFIRM_DISABLE_FAST_STARTUP">تحذير: التشغيل السريع في Windows مفعل، ومن المعروف أنه يسبب مشاكل عند التعامل مع أحجام VeraCrypt. يوصى بتعطيله لأمان وسهولة أفضل.\n\nهل تريد تعطيل التشغيل السريع في Windows؟</entry>
<entry lang="ar" key="QUICK_FORMAT_HELP">لتمكين نظام التشغيل الخاص بك من استيعاب الحجم الجديد الخاص بك، يجب تنسيقه بنظام ملفات. يرجى اختيار نوع نظام الملفات.\n\nإذا كان الحجم الخاص بك سيتم استضافته على جهاز أو قسم، يمكنك استخدام "التنسيق السريع" لتخطي تشفير المساحة الفارغة من الحجم.</entry>
<entry lang="ar" key="IDC_ENABLE_HARDWARE_ENCRYPTION_NEG">عدم تسريع تشفير/فك تشفير AES باستخدام تعليمات AES الخاصة بالمعالج</entry>
<entry lang="ar" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">إضافة جميع الأحجام المركبة إلى المفضلة...</entry>
<entry lang="ar" key="TASKICON_PREF_MENU_ITEMS">عناصر قائمة رمز المهام</entry>
<entry lang="ar" key="TASKICON_PREF_OPEN_VOL">فتح الأحجام المركبة</entry>
<entry lang="ar" key="TASKICON_PREF_UNMOUNT_VOL">إلغاء تركيب الأحجام المركبة</entry>
<entry lang="ar" key="DISK_FREE">المساحة الحرة المتوفرة :{0}</entry>
<entry lang="ar" key="VOLUME_SIZE_HELP">يرجى تحديد حجم الحاوية التي تريد إنشاءها. لاحظ أن الحد الأدنى لحجم الحجم الممكن هو 292 KiB.</entry>
<entry lang="ar" key="LINUX_CONFIRM_INNER_VOLUME_CALC">تحذير: لقد حددت نظام ملفات غير FAT للحجم الخارجي.\nيرجى ملاحظة أنه في هذه الحالة، لا يمكن لـ VeraCrypt حساب الحد الأقصى المسموح به لحجم الحجم المخفي بدقة وسيستخدم فقط تقديرًا قد يكون خاطئًا.\nلذلك، تقع على عاتقك المسؤولية استخدام قيمة مناسبة لحجم الحجم المخفي حتى لا يتداخل مع الحجم الخارجي.\n\nهل ترغب في المتابعة باستخدام نظام الملفات المحدد للحجم الخارجي؟</entry>
<entry lang="en" key="HIDDEN_CREDS_SAME_AS_OUTER">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry>
<entry lang="en" key="SYSENC_BITLOCKER_CONFLICT">VeraCrypt does not support encrypting a system drive that is already encrypted by BitLocker.</entry>
<entry lang="en" key="IDC_UPDATE_BOOTLOADER_ON_SHUTDOWN">Automatically fix boot configuration issues that may prevent Windows from starting</entry>
<entry lang="en" key="IDC_FORCE_NEXT_BOOT_VERACRYPT">Force machine to boot on VeraCrypt in the next startup</entry>
<entry lang="en" key="IDC_FORCE_VERACRYPT_BOOT_ENTRY">Force the presence of VeraCrypt entry in the EFI firmware boot menu</entry>
<entry lang="en" key="IDC_FORCE_VERACRYPT_FIRST_BOOT_ENTRY">Force VeraCrypt entry to be the first in the EFI firmware boot menu</entry>
<entry lang="en" key="RAM_ENCRYPTION_DISABLE_HIBERNATE">WARNING: RAM encryption is not compatible with Windows Hibernate and Windows Fast Startup features. VeraCrypt needs to disable them before activating RAM encryption.\n\nContinue?</entry>
<entry lang="en" key="CONFIRM_DISABLE_FAST_STARTUP">WARNING: Windows Fast Startup is enabled and it is known to cause issues when working with VeraCrypt volumes. It is advised to disable it for better security and usability.\n\nDo you want to disable Windows Fast Startup?</entry>
<entry lang="en" key="QUICK_FORMAT_HELP">In order to enable your operating system to mount your new volume, it has to be formatted with a filesystem. Please select a filesystem type.\n\nIf your volume is going to be hosted on a device or partition, you can use 'Quick format' to skip encryption of free space of the volume.</entry>
<entry lang="en" key="IDC_ENABLE_HARDWARE_ENCRYPTION_NEG">Do not accelerate AES encryption/decryption by using the AES instructions of the processor</entry>
<entry lang="en" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Add All Mounted Volumes to Favorites...</entry>
<entry lang="en" key="TASKICON_PREF_MENU_ITEMS">Task Icon Menu Items</entry>
<entry lang="en" key="TASKICON_PREF_OPEN_VOL">Open Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_DISMOUNT_VOL">Dismount Mounted Volumes</entry>
<entry lang="en" key="DISK_FREE">Free space available: {0}</entry>
<entry lang="en" key="VOLUME_SIZE_HELP">Please specify the size of the container to create. Note that the minimum possible size of a volume is 292 KiB.</entry>
<entry lang="en" key="LINUX_CONFIRM_INNER_VOLUME_CALC">WARNING: You have selected a filesystem other than FAT for the outer volume.\nPlease Note that in this case VeraCrypt can't calculate the exact maximum allowed size for the hidden volume and it will use only an estimation that can be wrong.\nThus, it is your responsibility to use an adequate value for the size of the hidden volume so that it does not overlap the outer volume.\n\nDo you want to continue using the selected filesystem for the outer volume?</entry>
<entry lang="ar" key="LINUX_PREF_TAB_SECURITY">الأمان</entry>
<entry lang="ar" key="LINUX_PREF_TAB_MOUNT_OPTIONS">خيارات التركيب</entry>
<entry lang="ar" key="LINUX_PREF_TAB_BACKGROUND_TASK">المهام الخلفية</entry>
<entry lang="ar" key="LINUX_PREF_TAB_SYSTEM_INTEGRATION">تكامل النظام</entry>
<entry lang="ar" key="LINUX_PREF_TAB_SYSTEM_INTEGRATION_EXPLORER">مستكشف نظام الملفات</entry>
<entry lang="en" key="LINUX_PREF_TAB_MOUNT_OPTIONS">Mount Options</entry>
<entry lang="en" key="LINUX_PREF_TAB_BACKGROUND_TASK">Background Task</entry>
<entry lang="en" key="LINUX_PREF_TAB_SYSTEM_INTEGRATION">System Integration</entry>
<entry lang="en" key="LINUX_PREF_TAB_SYSTEM_INTEGRATION_EXPLORER">Filesystem Explorer</entry>
<entry lang="ar" key="LINUX_PREF_TAB_PERFORMANCE">الأداء</entry>
<entry lang="ar" key="LINUX_PREF_TAB_KEYFILES">الملفات المفتاحية</entry>
<entry lang="ar" key="LINUX_PREF_TAB_TOKENS">الرموز الأمنية</entry>
<entry lang="ar" key="LINUX_PREF_KERNEL_SERVICES">خدمات النواة</entry>
<entry lang="ar" key="LINUX_PREF_KERNEL_CRYPT">لا تستخدم خدمات التشفير في النواة</entry>
<entry lang="ar" key="LINUX_PREF_TAB_MOUNT_OPTIONS_FS">نظام الملفات</entry>
<entry lang="ar" key="IDT_LINUX_PREF_TAB_MOUNT_OPTIONS">خيارات التركيب:</entry>
<entry lang="ar" key="LINUX_CROSS_SUPPORT">الدعم عبر المنصات</entry>
<entry lang="ar" key="LINUX_CROSS_SUPPORT_OTHER">سأقوم بتركيب الحجم على منصات أخرى</entry>
<entry lang="ar" key="LINUX_CROSS_SUPPORT_OTHER_HELP">اختر هذا الخيار إذا كنت بحاجة إلى استخدام الحجم على منصات أخرى.</entry>
<entry lang="ar" key="LINUX_CROSS_SUPPORT_ONLY">سأقوم بتركيب الحجم فقط على {0}</entry>
<entry lang="ar" key="LINUX_CROSS_SUPPORT_ONLY_HELP">اختر هذا الخيار إذا كنت لا تحتاج إلى استخدام الحجم على منصات أخرى.</entry>
<entry lang="en" key="LINUX_PREF_TAB_KEYFILES">Keyfiles</entry>
<entry lang="en" key="LINUX_PREF_TAB_TOKENS">Security Tokens</entry>
<entry lang="en" key="LINUX_PREF_KERNEL_SERVICES">Kernel Services</entry>
<entry lang="en" key="LINUX_PREF_KERNEL_CRYPT">Do not use kernel cryptographic services</entry>
<entry lang="en" key="LINUX_PREF_TAB_MOUNT_OPTIONS_FS">Filesystem</entry>
<entry lang="en" key="IDT_LINUX_PREF_TAB_MOUNT_OPTIONS">Mount options:</entry>
<entry lang="en" key="LINUX_CROSS_SUPPORT">Cross-Platform Support</entry>
<entry lang="en" key="LINUX_CROSS_SUPPORT_OTHER">I will mount the volume on other platforms</entry>
<entry lang="en" key="LINUX_CROSS_SUPPORT_OTHER_HELP">Choose this option if you need to use the volume on other platforms.</entry>
<entry lang="en" key="LINUX_CROSS_SUPPORT_ONLY">I will mount the volume only on {0}</entry>
<entry lang="en" key="LINUX_CROSS_SUPPORT_ONLY_HELP">Choose this option if you do not need to use the volume on other platforms.</entry>
<entry lang="ar" key="LINUX_DESELECT">الغاء الاختيار</entry>
<entry lang="ar" key="LINUX_ADMIN_PW_QUERY">أدخل كلمة مرور المستخدم أو كلمة مرور المسؤول:</entry>
<entry lang="ar" key="LINUX_ADMIN_PW_QUERY_TITLE">مطلوبة امتيازات المسؤول</entry>
<entry lang="ar" key="LINUX_VC_RUNNING_ALREADY">VeraCrypt يعمل بالفعل.</entry>
<entry lang="ar" key="LINUX_SYSTEM_ENC_PW_LENGTH_NOTE">كلمة مرور تشفير النظام أطول من {0} حرف.</entry>
<entry lang="ar" key="LINUX_MOUNT_SYSTEM_ENC_PREBOOT">تركيب القسم &amp;باستخدام تشفير النظام (المصادقة قبل الإقلاع)</entry>
<entry lang="ar" key="LINUX_DO_NOT_MOUNT">لا &amp;تقُم بالتركيب</entry>
<entry lang="ar" key="LINUX_MOUNT_AT_DIR">تركيب في الدليل:</entry>
<entry lang="ar" key="LINUX_SELECT">اخ&amp;تر...</entry>
<entry lang="ar" key="LINUX_UNMOUNT_ALL_WHEN">إلغاء تركيب جميع الأحجام عند</entry>
<entry lang="ar" key="LINUX_ENTERING_POWERSAVING">دخول النظام إلى وضع توفير الطاقة</entry>
<entry lang="ar" key="LINUX_LOGIN_ACTION">الإجراءات التي سيتم تنفيذها عند تسجيل دخول المستخدم</entry>
<entry lang="ar" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">إغلاق جميع نوافذ المستكشف للحجم الجاري إلغاء تركيبه</entry>
<entry lang="ar" key="LINUX_HOTKEYS">مفاتيح الاختصار</entry>
<entry lang="ar" key="LINUX_SYSTEM_HOTKEYS">مفاتيح الاختصار على مستوى النظام</entry>
<entry lang="ar" key="LINUX_SOUND_NOTIFICATION">تشغيل صوت الإشعار بالنظام بعد التركيب/إلغاء التركيب</entry>
<entry lang="ar" key="LINUX_CONFIRM_AFTER_UNMOUNT">عرض رسالة تأكيد بعد إلغاء التركيب</entry>
<entry lang="ar" key="LINUX_VC_QUITS">VeraCrypt يخرج</entry>
<entry lang="ar" key="LINUX_OPEN_FINDER">فتح نافذة الباحث للحجم المثبت بنجاح</entry>
<entry lang="ar" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">يرجى ملاحظة أن هذا الإعداد يكون مفعلاً فقط إذا تم تعطيل استخدام خدمات التشفير في النواة.</entry>
<entry lang="ar" key="LINUX_DISABLE_KERNEL_CRYPT_CONFIRM">يمكن أن يؤدي تعطيل استخدام خدمات التشفير في النواة إلى تقليل الأداء.\n\nهل أنت متأكد؟</entry>
<entry lang="ar" key="LINUX_KERNEL_CRYPT_OPTION_CHANGE_MOUNTED_HINT">يرجى ملاحظة أن تعطيل هذا الخيار قد لا يكون له تأثير على الأحجام المثبتة باستخدام خدمات التشفير في النواة.</entry>
<entry lang="ar" key="LINUX_REMOUNT_BECAUSEOF_SETTING">يرجى ملاحظة أن أي أحجام مثبتة حاليًا تحتاج إلى إعادة تثبيتها قبل أن تتمكن من استخدام هذا الإعداد.</entry>
<entry lang="ar" key="LINUX_UNKNOWN_EXC_OCCURRED">حدث استثناء غير معروف.</entry>
<entry lang="ar" key="LINUX_FIRST_AID">"سيتم تشغيل “أداة القرص” بعد الضغط على "موافق".\n\nيرجى تحديد حجمك في نافذة أداة الأقراص والضغط على "التحقق من القرص" أو زر "إصلاح القرص" على صفحة "الإسعافات الأولية".</entry>
<entry lang="ar" key="LINUX_MOUNT_ALL_DEV">تركيب جميع الأجهزة</entry>
<entry lang="ar" key="LINUX_ERROR_LOADING_CONFIG">خطأ أثناء تحميل ملفات التكوين الموجودة في </entry>
<entry lang="ar" key="LINUX_SELECT_FREE_SLOT">يرجى اختيار فتحة محرك مجانية من القائمة.</entry>
<entry lang="ar" key="LINUX_MESSAGE_ON_MOUNT_AGAIN">\n\nهل ترغب في عرض هذه الرسالة في المرة القادمة التي تقوم فيها بتركيب مثل هذا الحجم؟</entry>
<entry lang="en" key="LINUX_ADMIN_PW_QUERY">Enter your user password or administrator password:</entry>
<entry lang="en" key="LINUX_ADMIN_PW_QUERY_TITLE">Administrator privileges required</entry>
<entry lang="en" key="LINUX_VC_RUNNING_ALREADY">VeraCrypt is already running.</entry>
<entry lang="en" key="LINUX_SYSTEM_ENC_PW_LENGTH_NOTE">System Encryption password is longer than {0} characters.</entry>
<entry lang="en" key="LINUX_MOUNT_SYSTEM_ENC_PREBOOT">Mount partition &amp;using system encryption (preboot authentication)</entry>
<entry lang="en" key="LINUX_DO_NOT_MOUNT">Do &amp;not mount</entry>
<entry lang="en" key="LINUX_MOUNT_AT_DIR">Mount at directory:</entry>
<entry lang="en" key="LINUX_SELECT">Se&amp;lect...</entry>
<entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry>
<entry lang="en" key="LINUX_ENTERING_POWERSAVING">System is entering power saving mode</entry>
<entry lang="en" key="LINUX_LOGIN_ACTION">Actions to Perform when User Logs On</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Close all Explorer windows of volume being dismounted</entry>
<entry lang="en" key="LINUX_HOTKEYS">Hotkeys</entry>
<entry lang="en" key="LINUX_SYSTEM_HOTKEYS">System-Wide Hotkeys</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/dismount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_DISMOUNT">Display confirmation message box after dismount</entry>
<entry lang="en" key="LINUX_VC_QUITS">VeraCrypt quits</entry>
<entry lang="en" key="LINUX_OPEN_FINDER">Open Finder window for successfully mounted volume</entry>
<entry lang="en" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Please note that this setting takes effect only if use of the kernel cryptographic services is disabled.</entry>
<entry lang="en" key="LINUX_DISABLE_KERNEL_CRYPT_CONFIRM">Disabling the use of kernel cryptographic services can degrade performance.\n\nAre you sure?</entry>
<entry lang="en" key="LINUX_KERNEL_CRYPT_OPTION_CHANGE_MOUNTED_HINT">Please note that disabling this option may have no effect on volumes mounted using kernel cryptographic services.</entry>
<entry lang="en" key="LINUX_REMOUNT_BECAUSEOF_SETTING">Please note that any currently mounted volumes need to be remounted before they can use this setting.</entry>
<entry lang="en" key="LINUX_UNKNOWN_EXC_OCCURRED">Unknown exception occurred.</entry>
<entry lang="en" key="LINUX_FIRST_AID">"Disk Utility will be launched after you press 'OK'.\n\nPlease select your volume in the Disk Utility window and press 'Verify Disk' or 'Repair Disk' button on the 'First Aid' page.</entry>
<entry lang="en" key="LINUX_MOUNT_ALL_DEV">Mount All Devices</entry>
<entry lang="en" key="LINUX_ERROR_LOADING_CONFIG">Error while loading configuration files located in </entry>
<entry lang="en" key="LINUX_SELECT_FREE_SLOT">Please select a free drive slot from the list.</entry>
<entry lang="en" key="LINUX_MESSAGE_ON_MOUNT_AGAIN">\n\nDo you want to show this message next time you mount such a volume?</entry>
<entry lang="ar" key="LINUX_WARNING">تحذير</entry>
<entry lang="ar" key="LINUX_ERROR">خطأ</entry>
<entry lang="ar" key="LINUX_ONLY_TEXTMODE">هذه الميزة مدعومة حاليًا في وضع النص فقط.</entry>
<entry lang="ar" key="LINUX_FREE_SPACE_ON_DRIVE">المساحة الحرة على محرك {0}: هي {1}.</entry>
<entry lang="ar" key="LINUX_DYNAMIC_NOTICE">يرجى ملاحظة أنه إذا كان نظام التشغيل الخاص بك لا يخصص الملفات من بداية المساحة الحرة، فقد يكون الحد الأقصى الممكن لحجم الحجم المخفي أصغر بكثير من حجم المساحة الحرة على الحجم الخارجي. هذه ليست خللاً في VeraCrypt لكنها قيد من نظام التشغيل.</entry>
<entry lang="ar" key="LINUX_MAX_HIDDEN_SIZE">الحد الأقصى الممكن لحجم الحجم المخفي لهذا الحجم هو {0}.</entry>
<entry lang="en" key="LINUX_ONLY_TEXTMODE">This feature is currently supported only in text mode.</entry>
<entry lang="en" key="LINUX_FREE_SPACE_ON_DRIVE">Free space on drive {0}: is {1}.</entry>
<entry lang="en" key="LINUX_DYNAMIC_NOTICE">Please note that if your operating system does not allocate files from the beginning of the free space, the maximum possible hidden volume size may be much smaller than the size of the free space on the outer volume. This is not a bug in VeraCrypt but a limitation of the operating system.</entry>
<entry lang="en" key="LINUX_MAX_HIDDEN_SIZE">Maximum possible hidden volume size for this volume is {0}.</entry>
<entry lang="ar" key="LINUX_OPEN_OUTER_VOL">‮أوصل مجلدا خارجيا</entry>
<entry lang="ar" key="LINUX_OUTER_VOL_IS_MOUNTED">تم إنشاء الحجم الخارجي بنجاح وتم تركيبه كـ '{0}'. يجب الآن نسخ بعض الملفات التي تبدو حساسة إلى هذا الحجم والتي لا تريد إخفاءها فعليًا. ستكون هذه الملفات متاحة لأي شخص يجبرك على الإفصاح عن كلمة المرور الخاصة بك. ستقوم بالكشف فقط عن كلمة مرور هذا الحجم الخارجي، وليس الحجم المخفي. سيتم تخزين الملفات التي تهتم بها في الحجم المخفي، الذي سيتم إنشاؤه لاحقًا. عند الانتهاء من النسخ، انقر فوق التالي. لا تقم بإلغاء تركيب الحجم.\n\nملاحظة: بعد النقر على التالي، سيتم تحليل الحجم الخارجي لتحديد حجم المساحة الحرة المستمرة التي ينتهي نهايتها مع نهاية الحجم. هذه المساحة ستستوعب الحجم المخفي، لذلك ستحدد حجمه الأقصى الممكن. يضمن الإجراء عدم استبدال أي بيانات على الحجم الخارجي بالحجم المخفي.</entry>
<entry lang="ar" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">خطأ: تحاول تشفير محرك نظام.\n\nيمكن لـ VeraCrypt تشفير محرك نظام فقط تحت نظام Windows.</entry>
<entry lang="ar" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">خطأ: تحاول تشفير قسم نظام.\n\nيمكن لـ VeraCrypt تشفير أقسام النظام فقط تحت نظام Windows.</entry>
<entry lang="ar" key="LINUX_WARNING_FORMAT_DESTROY_FS">تحذير: تنسيق الجهاز سيدمر جميع البيانات على نظام الملفات '{0}'.\n\nهل تريد المتابعة؟</entry>
<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>
<entry lang="ar" key="LINUX_OOM">نفدت الذاكرة.</entry>
<entry lang="ar" key="LINUX_CANT_GET_ADMIN_PRIV">فشل في الحصول على امتيازات المسؤول</entry>
<entry lang="ar" key="LINUX_COMMAND_GET_ERROR">أمر {0} أعاد الخطأ {1}.</entry>
<entry lang="ar" key="LINUX_CMD_HELP">مساعدة سطر الأوامر في VeraCrypt</entry>
<entry lang="ar" key="LINUX_HIDDEN_FILES_PRESENT_IN_KEYFILE_PATH">\n\nتحذير: توجد ملفات مخفية في مسار ملف المفاتيح. إذا كنت بحاجة لاستخدامها كملفات مفاتيح، أزل النقطة المبدئية من أسماء الملفات. الملفات المخفية مرئية فقط إذا تم تمكينها في خيارات النظام.</entry>
<entry lang="ar" key="LINUX_EX2MSG_DEVICESECTORSIZEMISMATCH">عدم تطابق حجم القطاع بين جهاز التخزين وحجم VeraCrypt</entry>
<entry lang="ar" key="LINUX_EX2MSG_ENCRYPTEDSYSTEMREQUIRED">يجب تنفيذ هذه العملية فقط عندما يكون النظام المستضاف على الحجم قيد التشغيل.</entry>
<entry lang="ar" key="LINUX_EX2MSG_INSUFFICIENTDATA">لا توجد بيانات كافية متاحة.</entry>
<entry lang="ar" key="LINUX_EX2MSG_KERNELCRYPTOSERVICETESTFAILED">فشل اختبار خدمة التشفير في النواة. على الأرجح أن خدمة التشفير في النواة لديك لا تدعم الأحجام الأكبر من 2 تيرابايت.\n\nالحلول الممكنة:\n- ترقية نواة لينكس إلى الإصدار 2.6.33 أو أحدث.\n- تعطيل استخدام خدمات التشفير في النواة (إعدادات > تفضيلات > تكامل النظام) أو استخدام خيار التركيب 'nokernelcrypto' في سطر الأوامر.</entry>
<entry lang="ar" key="LINUX_EX2MSG_LOOPDEVICESETUPFAILED">فشل في إعداد جهاز الحلقة.</entry>
<entry lang="ar" key="LINUX_EX2MSG_MISSINGARGUMENT">يوجد حجة مطلوبة مفقودة.</entry>
<entry lang="ar" key="LINUX_EX2MSG_MISSINGVOLUMEDATA">بيانات الحجم مفقودة.</entry>
<entry lang="ar" key="LINUX_EX2MSG_MOUNTPOINTREQUIRED">نقطة التركيب مطلوبة.</entry>
<entry lang="ar" key="LINUX_EX2MSG_MOUNTPOINTUNAVAILABLE">نقطة التركيب مشغولة بالفعل.</entry>
<entry lang="ar" key="LINUX_EX2MSG_PASSWORDEMPTY">لم يتم تحديد كلمة مرور أو ملف مفتاح.</entry>
<entry lang="ar" key="LINUX_EX2MSG_PASSWORDORKEYBOARDLAYOUTINCORRECT">\n\nيرجى ملاحظة أن كلمات مرور المصادقة قبل التمهيد تحتاج إلى كتابتها في بيئة ما قبل التمهيد حيث لا تتوفر تخطيطات لوحة المفاتيح غير الأمريكية. لذلك، يجب دائمًا كتابة كلمات مرور المصادقة قبل التمهيد باستخدام تخطيط لوحة المفاتيح الأمريكية القياسية (وإلا، سيتم كتابة كلمة المرور بشكل غير صحيح في معظم الحالات). ومع ذلك، لاحظ أنك لست بحاجة إلى لوحة مفاتيح أمريكية فعلية؛ تحتاج فقط إلى تغيير تخطيط لوحة المفاتيح في نظام التشغيل الخاص بك.</entry>
<entry lang="ar" key="LINUX_EX2MSG_PASSWORDORMOUNTOPTIONSINCORRECT">\n\nملاحظة: إذا كنت تحاول تركيب قسم موجود على محرك نظام مشفر دون مصادقة ما قبل التمهيد أو تركيب القسم المشفر لنظام تشغيل غير قيد التشغيل، يمكنك القيام بذلك عن طريق تحديد 'خيارات >' > 'تركيب القسم باستخدام تشفير النظام'.</entry>
<entry lang="ar" key="LINUX_EX2MSG_PASSWORDTOOLONG">كلمة المرور أطول من {0} حرف.</entry>
<entry lang="ar" key="LINUX_EX2MSG_PARTITIONDEVICEREQUIRED">جهاز القسم مطلوب.</entry>
<entry lang="ar" key="LINUX_EX2MSG_PROTECTIONPASSWORDINCORRECT">كلمة مرور غير صحيحة للحجم المخفي المحمي أو أن الحجم المخفي غير موجود.</entry>
<entry lang="ar" key="LINUX_EX2MSG_PROTECTIONPASSWORDKEYFILESINCORRECT">ملف (ملفات) مفتاح غير صحيح و / أو كلمة مرور للحجم المخفي المحمي أو أن الحجم المخفي غير موجود.</entry>
<entry lang="ar" key="LINUX_EX2MSG_STRINGCONVERSIONFAILED">تم اكتشاف أحرف غير صالحة.</entry>
<entry lang="ar" key="LINUX_EX2MSG_STRINGFORMATTEREXCEPTION">خطأ أثناء تحليل السلسلة المنسقة.</entry>
<entry lang="ar" key="LINUX_EX2MSG_TEMPORARYDIRECTORYFAILURE">فشل في إنشاء ملف أو دليل في دليل مؤقت.\n\nيرجى التأكد من أن الدليل المؤقت موجود، وتصاريح الأمان الخاصة به تسمح لك بالوصول إليه، وهناك مساحة كافية على القرص.</entry>
<entry lang="ar" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZEHIDDENVOLUMEPROTECTION">خطأ: يستخدم المحرك حجم قطاع غير 512 بايت.\n\nبسبب قيود المكونات المتاحة على نظامك، لا يمكن تركيب الأحجام الخارجية المستضافة على المحرك باستخدام حماية الحجم المخفي.\n\nالحلول الممكنة:\n- استخدام محرك بأحجام قطاع 512 بايت.\n- إنشاء حجم مستضاف على الملفات (حاوية) على المحرك.\n- نسخ محتويات الحجم المخفي ثم تحديث الحجم الخارجي.</entry>
<entry lang="ar" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZENOKERNELCRYPTO">خطأ: يستخدم المحرك حجم قطاع غير 512 بايت.\n\nبسبب قيود المكونات المتاحة على نظامك، يمكن تركيب الأحجام المستضافة على القسم / الجهاز فقط باستخدام خدمات التشفير في النواة.\n\nالحلول الممكنة:\n- تمكين استخدام خدمات التشفير في النواة (التفضيلات > تكامل النظام).\n- استخدام محرك بأحجام قطاع 512 بايت.\n- إنشاء حجم مستضاف على الملفات (حاوية) على المحرك.</entry>
<entry lang="ar" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">خطأ: يستخدم المحرك حجم قطاع غير 512 بايت.\n\nبسبب قيود المكونات المتاحة على نظامك، لا يمكن إنشاء / استخدام الأحجام المستضافة على القسم / الجهاز على المحرك.\n\nالحلول الممكنة:\n- إنشاء حجم مستضاف على الملفات (حاوية) على المحرك.\n- استخدام محرك بأحجام قطاع 512 بايت.\n- استخدام VeraCrypt على نظام آخر.</entry>
<entry lang="ar" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">ملف / جهاز المضيف قيد الاستخدام بالفعل.</entry>
<entry lang="ar" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">فتحة الحجم غير متاحة.</entry>
<entry lang="ar" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">يتطلب VeraCrypt إصدار macFUSE 2.5 أو أحدث.</entry>
<entry lang="ar" key="EXCEPTION_OCCURRED">حدث استثناء</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not dismount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">Error: You are trying to encrypt a system drive.\n\nVeraCrypt can encrypt a system drive only under Windows.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">Error: You are trying to encrypt a system partition.\n\nVeraCrypt can encrypt system partitions only under Windows.</entry>
<entry lang="en" key="LINUX_WARNING_FORMAT_DESTROY_FS">WARNING: Formatting of the device will destroy all data on filesystem '{0}'.\n\nDo you want to continue?</entry>
<entry lang="en" key="LINUX_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please dismount '{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_DISMOUNTED">Volume {0} has been dismounted.</entry>
<entry lang="en" key="LINUX_OOM">Out of memory.</entry>
<entry lang="en" key="LINUX_CANT_GET_ADMIN_PRIV">Failed to obtain administrator privileges</entry>
<entry lang="en" key="LINUX_COMMAND_GET_ERROR">Command {0} returned error {1}.</entry>
<entry lang="en" key="LINUX_CMD_HELP">VeraCrypt Command Line Help</entry>
<entry lang="en" key="LINUX_HIDDEN_FILES_PRESENT_IN_KEYFILE_PATH">\n\nWarning: Hidden files are present in a keyfile path. If you need to use them as keyfiles, remove the leading dot from their filenames. Hidden files are visible only if enabled in system options.</entry>
<entry lang="en" key="LINUX_EX2MSG_DEVICESECTORSIZEMISMATCH">Storage device and VC volume sector size mismatch</entry>
<entry lang="en" key="LINUX_EX2MSG_ENCRYPTEDSYSTEMREQUIRED">This operation must be performed only when the system hosted on the volume is running.</entry>
<entry lang="en" key="LINUX_EX2MSG_INSUFFICIENTDATA">Not enough data available.</entry>
<entry lang="en" key="LINUX_EX2MSG_KERNELCRYPTOSERVICETESTFAILED">Kernel cryptographic service test failed. The cryptographic service of your kernel most likely does not support volumes larger than 2 TB.\n\nPossible solutions:\n- Upgrade the Linux kernel to version 2.6.33 or later.\n- Disable use of the kernel cryptographic services (Settings > Preferences > System Integration) or use 'nokernelcrypto' mount option on the command line.</entry>
<entry lang="en" key="LINUX_EX2MSG_LOOPDEVICESETUPFAILED">Failed to set up a loop device.</entry>
<entry lang="en" key="LINUX_EX2MSG_MISSINGARGUMENT">A required argument is missing.</entry>
<entry lang="en" key="LINUX_EX2MSG_MISSINGVOLUMEDATA">Volume data missing.</entry>
<entry lang="en" key="LINUX_EX2MSG_MOUNTPOINTREQUIRED">Mount point required.</entry>
<entry lang="en" key="LINUX_EX2MSG_MOUNTPOINTUNAVAILABLE">Mount point is already in use.</entry>
<entry lang="en" key="LINUX_EX2MSG_PASSWORDEMPTY">No password or keyfile specified.</entry>
<entry lang="en" key="LINUX_EX2MSG_PASSWORDORKEYBOARDLAYOUTINCORRECT">\n\nNote that pre-boot authentication passwords need to be typed in the pre-boot environment where non-US keyboard layouts are not available. Therefore, pre-boot authentication passwords must always be typed using the standard US keyboard layout (otherwise, the password will be typed incorrectly in most cases). However, note that you do NOT need a real US keyboard; you just need to change the keyboard layout in your operating system.</entry>
<entry lang="en" key="LINUX_EX2MSG_PASSWORDORMOUNTOPTIONSINCORRECT">\n\nNote: If you are attempting to mount a partition located on an encrypted system drive without pre-boot authentication or to mount the encrypted system partition of an operating system that is not running, you can do so by selecting 'Options >' > 'Mount partition using system encryption'.</entry>
<entry lang="en" key="LINUX_EX2MSG_PASSWORDTOOLONG">Password is longer than {0} characters.</entry>
<entry lang="en" key="LINUX_EX2MSG_PARTITIONDEVICEREQUIRED">Partition device required.</entry>
<entry lang="en" key="LINUX_EX2MSG_PROTECTIONPASSWORDINCORRECT">Incorrect password to the protected hidden volume or the hidden volume does not exist.</entry>
<entry lang="en" key="LINUX_EX2MSG_PROTECTIONPASSWORDKEYFILESINCORRECT">Incorrect keyfile(s) and/or password to the protected hidden volume or the hidden volume does not exist.</entry>
<entry lang="en" key="LINUX_EX2MSG_STRINGCONVERSIONFAILED">Invalid characters encountered.</entry>
<entry lang="en" key="LINUX_EX2MSG_STRINGFORMATTEREXCEPTION">Error while parsing formatted string.</entry>
<entry lang="en" key="LINUX_EX2MSG_TEMPORARYDIRECTORYFAILURE">Failed to create a file or directory in a temporary directory.\n\nPlease make sure that the temporary directory exists, its security permissions allow you to access it, and there is sufficient disk space.</entry>
<entry lang="en" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZEHIDDENVOLUMEPROTECTION">Error: The drive uses a sector size other than 512 bytes.\n\nDue to limitations of components available on your platform, outer volumes hosted on the drive cannot be mounted using hidden volume protection.\n\nPossible solutions:\n- Use a drive with 512-byte sectors.\n- Create a file-hosted volume (container) on the drive.\n- Backup the contents of the hidden volume and then update the outer volume.</entry>
<entry lang="en" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZENOKERNELCRYPTO">Error: The drive uses a sector size other than 512 bytes.\n\nDue to limitations of components available on your platform, partition/device-hosted volumes on the drive can only be mounted using kernel cryptographic services.\n\nPossible solutions:\n- Enable use of the kernel cryptographic services (Preferences > System Integration).\n- Use a drive with 512-byte sectors.\n- Create a file-hosted volume (container) on the drive.</entry>
<entry lang="en" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Error: The drive uses a sector size other than 512 bytes.\n\nDue to limitations of components available on your platform, partition/device-hosted volumes cannot be created/used on the drive.\n\nPossible solutions:\n- Create a file-hosted volume (container) on the drive.\n- Use a drive with 512-byte sectors.\n- Use VeraCrypt on another platform.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">The host file/device is already in use.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Volume slot unavailable.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires OSXFUSE 2.5 or above.</entry>
<entry lang="en" key="EXCEPTION_OCCURRED">Exception occurred</entry>
<entry lang="ar" key="ENTER_PASSWORD">إدخال كلمة السر</entry>
<entry lang="ar" key="ENTER_TC_VOL_PASSWORD">‮أدخل كلمة سر مجلد ڤيراكربت</entry>
<entry lang="ar" key="MOUNT">تركيب</entry>
<entry lang="ar" key="MOUNT_POINT">دليل التركيب</entry>
<entry lang="ar" key="NO_VOLUMES_MOUNTED">لم يتم تركيب أي أحجام.</entry>
<entry lang="ar" key="OPEN_NEW_VOLUME">حدد حجم VeraCrypt جديد</entry>
<entry lang="ar" key="PARAMETER_INCORRECT">معلمة غير صحيحة</entry>
<entry lang="ar" key="SELECT_KEYFILES">اختر ملفات المفتاح</entry>
<entry lang="ar" key="START_TC">ابدأ VeraCrypt</entry>
<entry lang="ar" key="VOLUME_ALREADY_MOUNTED">الحجم {0} مثبت بالفعل.</entry>
<entry lang="ar" key="UNKNOWN_OPTION">خيار غير معروف</entry>
<entry lang="en" key="MOUNT">Mount</entry>
<entry lang="en" key="MOUNT_POINT">Mount Directory</entry>
<entry lang="en" key="NO_VOLUMES_MOUNTED">No volumes mounted.</entry>
<entry lang="en" key="OPEN_NEW_VOLUME">Specify a New VeraCrypt Volume</entry>
<entry lang="en" key="PARAMETER_INCORRECT">Parameter incorrect</entry>
<entry lang="en" key="SELECT_KEYFILES">Select Keyfiles</entry>
<entry lang="en" key="START_TC">Start VeraCrypt</entry>
<entry lang="en" key="VOLUME_ALREADY_MOUNTED">The volume {0} is already mounted.</entry>
<entry lang="en" key="UNKNOWN_OPTION">Unknown option</entry>
<entry lang="ar" key="VOLUME_LOCATION">‮موضع المُجلَّد</entry>
<entry lang="ar" key="VOLUME_HOST_IN_USE">تحذير: ملف/جهاز المضيف {0} قيد الاستخدام بالفعل!\n\nتجاهل هذا قد يؤدي إلى نتائج غير مرغوب فيها بما في ذلك عدم الاستقرار في النظام. يجب إغلاق جميع التطبيقات التي قد تستخدم ملف/جهاز المضيف قبل تركيب الحجم.\n\nهل ترغب في متابعة التركيب؟</entry>
<entry lang="ar" key="CANT_INSTALL_WITH_EXE_OVER_MSI">تم تثبيت VeraCrypt سابقًا باستخدام حزمة MSI وبالتالي لا يمكن تحديثه باستخدام المثبت العادي.\n\nيرجى استخدام حزمة MSI لتحديث تثبيت VeraCrypt الخاص بك.</entry>
<entry lang="ar" key="IDC_USE_ALL_FREE_SPACE">استخدام كل المساحة الحرة المتاحة</entry>
<entry lang="ar" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">لا يمكن ترقية VeraCrypt لأن قسم/محرك النظام تم تشفيره باستخدام خوارزمية لم تعد مدعومة.\nيرجى فك تشفير نظامك قبل ترقية VeraCrypt ثم تشفيره مجدداً.</entry>
<entry lang="ar" key="LINUX_EX2MSG_TERMINALNOTFOUND">لم يتم العثور على تطبيق طرفية مدعوم، تحتاج إلى xterm أو konsole أو gnome-terminal (مع dbus-x11).</entry>
<entry lang="ar" key="IDM_MOUNT_NO_CACHE">تركيب بدون ذاكرة تخزين مؤقتة</entry>
<entry lang="ar" key="EXPANDER_INFO">:: موسع VeraCrypt ::\n\nتوسيع حجم VeraCrypt دون إعادة التهيئة\n\n\nكل أنواع الأحجام (ملفات الحاويات، الأقراص والأقسام) المؤلفة باستخدام NTFS مدعومة. الشرط الوحيد هو أن تكون هناك مساحة حرة كافية على محرك أو جهاز المضيف لحجم VeraCrypt.\n\nلا تستخدم هذا البرنامج لتوسيع حجم خارجي يحتوي على حجم مخفي لأن هذا يؤدي إلى تدمير الحجم المخفي!\n</entry>
<entry lang="ar" key="IDC_STEPSEXPAND">1. اختر حجم VeraCrypt المراد توسيعه\n2. انقر على زر 'تركيب'</entry>
<entry lang="ar" key="IDT_VOL_NAME">الحجم: </entry>
<entry lang="ar" key="IDT_FILE_SYS">نظام الملفات: </entry>
<entry lang="ar" key="IDT_CURRENT_SIZE">الحجم الحالي: </entry>
<entry lang="ar" key="IDT_NEW_SIZE">الحجم الجديد: </entry>
<entry lang="ar" key="IDT_NEW_SIZE_BOX_TITLE">أدخل حجم الحجم الجديد</entry>
<entry lang="ar" key="IDC_INIT_NEWSPACE">ملء المساحة الجديدة ببيانات عشوائية</entry>
<entry lang="ar" key="IDC_QUICKEXPAND">توسيع سريع</entry>
<entry lang="ar" key="IDT_INIT_SPACE">ملء المساحة الجديدة: </entry>
<entry lang="ar" key="EXPANDER_FREE_SPACE">%s مساحة حرة متاحة على محرك المضيف</entry>
<entry lang="ar" key="EXPANDER_HELP_DEVICE">هذا حجم VeraCrypt معتمد على جهاز.\n\nسيتم اختيار حجم الحجم الجديد تلقائيًا كحجم جهاز المضيف.</entry>
<entry lang="ar" key="EXPANDER_HELP_FILE">يرجى تحديد الحجم الجديد لحجم VeraCrypt (يجب أن يكون أكبر على الأقل %I64u كيلوبايت من الحجم الحالي).</entry>
<entry lang="ar" key="QUICK_EXPAND_WARNING">تحذير: يجب عليك استخدام التوسيع السريع فقط في الحالات التالية:\n\n1) الجهاز الذي يقع فيه ملف الحاوية لا يحتوي على بيانات حساسة ولا تحتاج إلى الإنكار المعقول.\n2) الجهاز الذي يقع فيه ملف الحاوية قد تم تشفيره بشكل آمن وكامل بالفعل.\n\nهل أنت متأكد أنك تريد استخدام التوسيع السريع؟</entry>
<entry lang="ar" key="EXPANDER_STATUS_TEXT">مهم: حرك الماوس عشوائيًا قدر الإمكان داخل هذه النافذة. كلما طالت مدة تحركها، كان الأمر أفضل. هذا يزيد بشكل كبير من قوة التشفير للمفاتيح. ثم انقر على 'متابعة' لتوسيع الحجم.</entry>
<entry lang="ar" key="EXPANDER_STATUS_TEXT_LEGACY">انقر على 'متابعة' لتوسيع الحجم.</entry>
<entry lang="ar" key="EXPANDER_FINISH_ERROR">خطأ: فشل توسيع الحجم.</entry>
<entry lang="ar" key="EXPANDER_FINISH_ABORT">خطأ: تم إلغاء العملية بواسطة المستخدم.</entry>
<entry lang="ar" key="EXPANDER_FINISH_OK">تم. تم توسيع الحجم بنجاح.</entry>
<entry lang="ar" key="EXPANDER_CANCEL_WARNING">تحذير: توسيع الحجم جاري!\n\nالتوقف الآن قد يؤدي إلى تلف الحجم.\n\nهل تريد بالتأكيد الإلغاء؟</entry>
<entry lang="ar" key="EXPANDER_STARTING_STATUS">بدء توسيع الحجم ...\n</entry>
<entry lang="ar" key="EXPANDER_HIDDEN_VOLUME_ERROR">لا يمكن توسيع حجم خارجي يحتوي على حجم مخفي، لأن هذا يدمر الحجم المخفي.\n</entry>
<entry lang="ar" key="EXPANDER_SYSTEM_VOLUME_ERROR">لا يمكن توسيع حجم نظام VeraCrypt.</entry>
<entry lang="ar" key="EXPANDER_NO_FREE_SPACE">لا توجد مساحة حرة كافية لتوسيع الحجم</entry>
<entry lang="ar" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">تحذير: ملف الحاوية أكبر من منطقة حجم VeraCrypt. سيتم استبدال البيانات بعد منطقة حجم VeraCrypt.\n\nهل ترغب في المتابعة؟</entry>
<entry lang="ar" key="EXPANDER_WARNING_FAT">تحذير: يحتوي حجم VeraCrypt على نظام ملفات FAT!\n\nسيتم توسيع حجم VeraCrypt فقط، ولكن ليس نظام الملفات.\n\nهل ترغب في المتابعة؟</entry>
<entry lang="ar" key="EXPANDER_WARNING_EXFAT">تحذير: يحتوي حجم VeraCrypt على نظام ملفات exFAT!\n\nسيتم توسيع حجم VeraCrypt فقط، ولكن ليس نظام الملفات.\n\nهل ترغب في المتابعة؟</entry>
<entry lang="ar" key="EXPANDER_WARNING_UNKNOWN_FS">تحذير: يحتوي حجم VeraCrypt على نظام ملفات غير معروف أو بدون نظام ملفات!\n\nسيتم توسيع حجم VeraCrypt فقط، ولكن نظام الملفات سيظل بدون تغيير.\n\nهل ترغب في المتابعة؟</entry>
<entry lang="ar" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">حجم الحجم الجديد صغير جدًا، يجب أن يكون على الأقل %I64u كيلوبايت أكبر من الحجم الحالي.</entry>
<entry lang="ar" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">حجم الحجم الجديد كبير جدًا، لا توجد مساحة كافية على محرك المضيف.</entry>
<entry lang="ar" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">تم تجاوز الحد الأقصى لحجم الملف %I64u ميغابايت على محرك المضيف.</entry>
<entry lang="ar" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">خطأ: فشل في الحصول على الامتيازات اللازمة لتمكين التوسيع السريع!\nيرجى إلغاء تحديد خيار التوسيع السريع والمحاولة مرة أخرى.</entry>
<entry lang="ar" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">تم تجاوز الحد الأقصى لحجم حجم VeraCrypt %I64u تيرابايت!\n</entry>
<entry lang="ar" key="FULL_FORMAT">تهيئة كاملة</entry>
<entry lang="ar" key="FAST_CREATE">إنشاء سريع</entry>
<entry lang="ar" key="WARN_FAST_CREATE">تحذير: يجب عليك استخدام الإنشاء السريع فقط في الحالات التالية:\n\n1) الجهاز لا يحتوي على بيانات حساسة ولا تحتاج إلى الإنكار المعقول.\n2) الجهاز قد تم تشفيره بشكل آمن وكامل بالفعل.\n\nهل أنت متأكد أنك تريد استخدام الإنشاء السريع؟</entry>
<entry lang="ar" key="IDC_ENABLE_EMV_SUPPORT">تمكين دعم EMV</entry>
<entry lang="ar" key="COMMAND_APDU_INVALID">أمر APDU المرسل إلى البطاقة غير صالح.</entry>
<entry lang="ar" key="EXTENDED_APDU_UNSUPPORTED">لا يمكن استخدام أوامر APDU الممتدة مع الرمز الحالي.</entry>
<entry lang="ar" key="SCARD_MODULE_INIT_FAILED">خطأ عند تحميل مكتبة WinSCard / PCSC.</entry>
<entry lang="ar" key="EMV_UNKNOWN_CARD_TYPE">البطاقة في القارئ ليست بطاقة EMV مدعومة.</entry>
<entry lang="ar" key="EMV_SELECT_AID_FAILED">تعذر تحديد AID للبطاقة في القارئ.</entry>
<entry lang="ar" key="EMV_ICC_CERT_NOTFOUND">لم يتم العثور على شهادة المفتاح العام ICC في البطاقة.</entry>
<entry lang="ar" key="EMV_ISSUER_CERT_NOTFOUND">لم يتم العثور على شهادة المفتاح العام للجهة المصدرة في البطاقة.</entry>
<entry lang="ar" key="EMV_CPLC_NOTFOUND">لم يتم العثور على CPLC في بطاقة EMV.</entry>
<entry lang="ar" key="EMV_PAN_NOTFOUND">لم يتم العثور على رقم الحساب الأساسي (PAN) في بطاقة EMV.</entry>
<entry lang="ar" key="INVALID_EMV_PATH">مسار EMV غير صالح.</entry>
<entry lang="ar" key="EMV_KEYFILE_DATA_NOTFOUND">تعذر إنشاء ملف مفتاح من بيانات بطاقة EMV.\n\nأحد الأشياء التالية مفقود:\n- شهادة المفتاح العام ICC.\n- شهادة المفتاح العام للجهة المصدرة.\n- بيانات CPLC.</entry>
<entry lang="ar" key="SCARD_W_REMOVED_CARD">لا توجد بطاقة في القارئ.\n\nيرجى التأكد من إدخال البطاقة بشكل صحيح.</entry>
<entry lang="ar" key="FORMAT_EXTERNAL_FAILED">فشل أمر تنسيق Windows format.com في تهيئة الحجم كـ NTFS/exFAT/ReFS: خطأ 0x%.8X.\n\nالرجوع إلى استخدام واجهة برمجة تطبيقات FormatEx الخاصة بـ Windows.</entry>
<entry lang="ar" key="FORMATEX_API_FAILED">فشلت واجهة برمجة تطبيقات FormatEx الخاصة بـ Windows في تهيئة الحجم كـ NTFS/exFAT/ReFS.\n\nحالة الفشل = %s.</entry>
<entry lang="ar" key="EXPANDER_WRITING_RANDOM_DATA">كتابة بيانات عشوائية إلى المساحة الجديدة ...\n</entry>
<entry lang="ar" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">كتابة رأس النسخة الاحتياطية المشفرة ...\n</entry>
<entry lang="ar" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">كتابة الرأس الأساسي المشفر ...\n</entry>
<entry lang="ar" key="EXPANDER_WIPING_OLD_HEADER">مسح رأس النسخة الاحتياطية القديم ...\n</entry>
<entry lang="ar" key="EXPANDER_MOUNTING_VOLUME">تركيب الحجم ...\n</entry>
<entry lang="ar" key="EXPANDER_UNMOUNTING_VOLUME">إلغاء تركيب الحجم ...\n</entry>
<entry lang="ar" key="EXPANDER_EXTENDING_FILESYSTEM">تمديد نظام الملفات ...\n</entry>
<entry lang="ar" key="PARTIAL_SYSENC_MOUNT_READONLY">تحذير: قسم النظام الذي حاولت تركيبه لم يتم تشفيره بالكامل. كإجراء احترازي لمنع الفساد المحتمل أو التعديلات غير المرغوب فيها، تم تركيب الحجم '%s' كقراءة فقط.</entry>
<entry lang="ar" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">معلومات هامة عن استخدام ملحقات الملفات الخارجية</entry>
<entry lang="ar" key="IDC_DISABLE_MEMORY_PROTECTION">تعطيل حماية الذاكرة لتوافق أدوات الوصول</entry>
<entry lang="ar" key="DISABLE_MEMORY_PROTECTION_WARNING">تحذير: تعطيل حماية الذاكرة يقلل بشكل كبير من الأمان. قم بتمكين هذا الخيار فقط إذا كنت تعتمد على أدوات الوصول، مثل قارئات الشاشة، للتفاعل مع واجهة مستخدم VeraCrypt.</entry>
<entry lang="ar" key="LINUX_LANGUAGE">‮اللغة</entry>
<entry lang="ar" key="LINUX_SELECT_SYS_DEFAULT_LANG">اختر اللغة الافتراضية للنظام</entry>
<entry lang="ar" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">لتفعيل تغيير اللغة، يحتاج VeraCrypt إلى إعادة التشغيل.</entry>
<entry lang="ar" key="ERR_XTS_MASTERKEY_VULNERABLE">تحذير: مفتاح رئيسي للحجم عرضة لهجوم يهدد أمن البيانات.\n\nيرجى إنشاء حجم جديد ونقل البيانات إليه.</entry>
<entry lang="ar" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">تحذير: المفتاح الرئيسي للنظام المشفر عرضة لهجوم يهدد أمن البيانات.\nيرجى فك تشفير قسم/محرك النظام ثم إعادة تشفيره.</entry>
<entry lang="ar" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">تحذير: مفتاح رئيسي للحجم يحتوي على ثغرة أمنية.</entry>
<entry lang="ar" key="MOUNTPOINT_BLOCKED">خطأ: نقطة تركيب الحجم محظورة لأنها تحل محل دليل نظام محمي.\n\nيرجى اختيار نقطة تركيب مختلفة.</entry>
<entry lang="ar" key="MOUNTPOINT_NOTALLOWED">خطأ: نقطة تركيب الحجم غير مسموح بها لأنها تحل محل دليل مدرج ضمن متغير البيئة PATH.\n\nيرجى اختيار نقطة تركيب مختلفة.</entry>
<entry lang="ar" key="INSECURE_MODE">[وضع غير آمن]</entry>
<entry lang="ar" key="IDC_DISABLE_SCREEN_PROTECTION">تعطيل الحماية من لقطات الشاشة وتسجيل الشاشة</entry>
<entry lang="ar" key="DISABLE_SCREEN_PROTECTION_WARNING">تحذير: تعطيل حماية الشاشة يقلل بشكل كبير من مستوى الأمان. فعّل هذا الخيار فقط إذا كانت لديك حاجة محددة لالتقاط واجهة VeraCrypt. قد يؤدي ذلك إلى تعريض البيانات الحساسة لأدوات التقاط الشاشة وميزات تسجيل الشاشة مثل Windows 11 Recall.</entry>
<entry lang="ar" 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="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>
<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="en" key="VOLUME_HOST_IN_USE">WARNING: The host file/device {0} is already in use!\n\nIgnoring this can cause undesired results including system instability. All applications that might be using the host file/device should be closed before mounting the volume.\n\nContinue mounting?</entry>
<entry lang="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+62 -183
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
@@ -135,8 +135,8 @@
<entry lang="en" key="IDC_FAVORITE_REMOVE">&amp;Remove</entry>
<entry lang="en" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Use favorite label as Explorer drive label</entry>
<entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key dismount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key dismount</entry>
<entry lang="be" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="en" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="be" key="IDC_HK_MOD_SHIFT">Shift</entry>
@@ -156,12 +156,12 @@
<entry lang="en" key="IDC_PIM_HELP">(Empty or 0 for default iterations)</entry>
<entry lang="be" key="IDC_PREF_BKG_TASK_ENABLE">Уключана</entry>
<entry lang="be" key="IDC_PREF_CACHE_PASSWORDS">Кэшаваць паролі ў памяці прывада</entry>
<entry lang="be" key="IDC_PREF_UNMOUNT_INACTIVE">Аўтаматычна размантаваць пры неактыўнасці на працягу</entry>
<entry lang="be" key="IDC_PREF_UNMOUNT_LOGOFF">заканчэнні сеансу</entry>
<entry lang="en" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="be" key="IDC_PREF_UNMOUNT_POWERSAVING">рэжыму энэргазахавання</entry>
<entry lang="be" key="IDC_PREF_UNMOUNT_SCREENSAVER">запуску экраннай застаўкі</entry>
<entry lang="be" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Аўтаразмантаваць том нават пры адкрытых файлах/тэчках</entry>
<entry lang="be" key="IDC_PREF_DISMOUNT_INACTIVE">Аўтаматычна размантаваць пры неактыўнасці на працягу</entry>
<entry lang="be" key="IDC_PREF_DISMOUNT_LOGOFF">заканчэнні сеансу</entry>
<entry lang="en" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="be" key="IDC_PREF_DISMOUNT_POWERSAVING">рэжыму энэргазахавання</entry>
<entry lang="be" key="IDC_PREF_DISMOUNT_SCREENSAVER">запуску экраннай застаўкі</entry>
<entry lang="be" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Аўтаразмантаваць том нават пры адкрытых файлах/тэчках</entry>
<entry lang="be" key="IDC_PREF_LOGON_MOUNT_DEVICES">Мантаваць усе тамы на прыладах</entry>
<entry lang="en" key="IDC_PREF_LOGON_START">Start VeraCrypt Background Task</entry>
<entry lang="be" key="IDC_PREF_MOUNT_READONLY">Мантаваць як тамы толькі для чытання</entry>
@@ -169,7 +169,7 @@
<entry lang="be" key="IDC_PREF_OPEN_EXPLORER">Адчыніць акно Аглядальніка пасля паспяховага мантавання тома</entry>
<entry lang="en" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">Temporarily cache password during "Mount Favorite Volumes" operations</entry>
<entry lang="en" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Use a different taskbar icon when there are mounted volumes</entry>
<entry lang="be" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Ачысціць кэш пароляў пры аўтаразмантаванні</entry>
<entry lang="be" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Ачысціць кэш пароляў пры аўтаразмантаванні</entry>
<entry lang="be" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Ачысціць кэш пароляў на выхадзе</entry>
<entry lang="en" key="IDC_PRESERVE_TIMESTAMPS">Preserve modification timestamp of file containers</entry>
<entry lang="be" key="IDC_RESET_HOTKEYS">Скід</entry>
@@ -269,14 +269,14 @@
<entry lang="en" key="IDT_ACCELERATION_OPTIONS">Hardware Acceleration</entry>
<entry lang="be" key="IDT_ASSIGN_HOTKEY">Хуткая клавіша</entry>
<entry lang="be" key="IDT_AUTORUN">Налады аўтазапуску (файл autorun.inf)</entry>
<entry lang="be" key="IDT_AUTO_UNMOUNT">Аўтаматычнае размантаванне</entry>
<entry lang="be" key="IDT_AUTO_UNMOUNT_ON">Размантаваць усе тамы падчас:</entry>
<entry lang="be" key="IDT_AUTO_DISMOUNT">Аўтаматычнае размантаванне</entry>
<entry lang="be" key="IDT_AUTO_DISMOUNT_ON">Размантаваць усе тамы падчас:</entry>
<entry lang="en" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader Screen Options</entry>
<entry lang="be" key="IDT_CONFIRM_PASSWORD">Пацвердзіце пароль:</entry>
<entry lang="be" key="IDT_CURRENT">Бягучы</entry>
<entry lang="en" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">Display this custom message in the pre-boot authentication screen (24 characters maximum):</entry>
<entry lang="be" key="IDT_DEFAULT_MOUNT_OPTIONS">Прадвызначаныя налады мантавання</entry>
<entry lang="be" key="IDT_UNMOUNT_ACTION">Дадатковыя налады</entry>
<entry lang="be" key="IDT_DISMOUNT_ACTION">Дадатковыя налады</entry>
<entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry>
<entry lang="en" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Enable extended disk control codes support</entry>
<entry lang="en" key="IDT_FAVORITE_LABEL">Label of selected favorite volume:</entry>
@@ -291,11 +291,10 @@
<entry lang="be" key="IDT_NEW_PASSWORD">Пароль:</entry>
<entry lang="en" key="IDT_PARALLELIZATION_OPTIONS">Thread-Based Parallelization</entry>
<entry lang="en" key="IDT_PKCS11_LIB_PATH">PKCS #11 Library Path</entry>
<entry lang="be" key="IDT_KDF">KDF:</entry>
<entry lang="en" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="be" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="en" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="be" key="IDT_PW_CACHE_OPTIONS">Кэшаванне пароляў</entry>
<entry lang="en" key="IDT_SECURITY_OPTIONS">Security Options</entry>
<entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry>
<entry lang="be" key="IDT_TASKBAR_ICON">Праца VeraCrypt у фоне</entry>
<entry lang="be" key="IDT_TRAVELER_MOUNT">Том для мантавання (адносна кораня пераноснага дыска):</entry>
<entry lang="be" key="IDT_TRAVEL_INSERTION">Падчас устаўкі пераноснага дыска: </entry>
@@ -357,7 +356,7 @@
<entry lang="be" key="IDT_KEYFILE_WARNING">УВАГА: Пры страце ключавога файла, ці пашкоджанні яго першых 1024 кілабайт - мантаванне тамоў, што яго выкарыстоўваюць, будзе немагчымае!</entry>
<entry lang="be" key="IDT_KEY_UNIT">біт</entry>
<entry lang="en" key="IDT_NUMBER_KEYFILES">Number of keyfiles:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size (in Bytes):</entry>
<entry lang="en" key="IDT_KEYFILES_BASE_NAME">Keyfiles base name:</entry>
<entry lang="be" key="IDT_LANGPACK_AUTHORS">Аўтар перакладу:</entry>
<entry lang="be" key="IDT_PLAINTEXT">Памер:</entry>
@@ -390,7 +389,6 @@
<entry lang="en" key="ADMINISTRATOR">Administrator</entry>
<entry lang="be" key="ADMIN_PRIVILEGES_DRIVER">Каб можна было загрузіць драйвер VeraCrypt, вы павінны мець правы адміністратара.</entry>
<entry lang="be" key="ADMIN_PRIVILEGES_WARN_DEVICES">Майце на ўвазе, што каб выкарыстоўваць шыфраванне падзелу ці дыску, вы павінны мець правы адміністратара.\n\nГэта не тычыцца томоў у файлах.</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="be" key="ADMIN_PRIVILEGES_WARN_HIDVOL">Каб стварыць утоены том, вы павінны мець правы адміністратара.\n\nПрацягваць ?</entry>
<entry lang="be" key="ADMIN_PRIVILEGES_WARN_NTFS">Майце на ўвазе, што каб фарматаваць том у NTFS, вы павінны мець правы адміністратара.\n\nБез правоў адміністратара вы можаце фарматаваць дыск толькі ў FAT.</entry>
<entry lang="be" key="AES_HELP">Зацверджаны FIPS (ЗША) алгарытм шыфравання (Rijndael, апублікаваны ў 1998 г.), дазволены да ўжывання ў федэральных структурах ЗША для засцярогі найважнай інфармацыі. 256-бітны ключ, 128-бітны блок, 14 цыклаў (AES-256). Рэжым працы -- XTS.</entry>
@@ -423,8 +421,8 @@
<entry lang="en" key="DEVICE_FREE_PB">Size of %s is %.2f PB</entry>
<entry lang="be" key="DEVICE_IN_USE_FORMAT">УВАГА: Прылада/падзел выкарыстоўваецца аперацыйнай сістэмай ці прыкладаннямі. Фарматаванне прылады/падзелу можа прывесці да страты дадзеных ці нестабільнасці сістэмы.\n\nПрацягнуць?</entry>
<entry lang="en" key="DEVICE_IN_USE_INPLACE_ENC">Warning: The partition is in use by the operating system or applications. You should close any applications that might be using the partition (including antivirus software).\n\nContinue?</entry>
<entry lang="be" key="FORMAT_CANT_UNMOUNT_FILESYS">ПАМЫЛКА: Прылада/падзел мае файлавую сістэму, якая не можа быць размантаваная. Магчыма, яна выкарыстоўваецца аперацыйнай сістэмай. Фарматаванне прылады/падзела хутчэй за ўсё выкліча пашкоджанне дадзеных і нестабільнасць сістэмы.\n\nДля вырашэння гэтай праблемы мы рэкамендуем спачатку выдаліць гэты падзел, затым ізноў стварыць яго без фарматавання. Вось як гэта зрабіць: 1) Пстрыкніце правай кнопкай мышы па цэтліку 'Кампутар' (ці 'Мой кампутар') в меню 'Пуск' і абярыце 'Кіраванне'. Павінна адчыніцца акно 'Кіраванне кампутарам'. 2) У акне 'Кіраванне кампутарам', абярыце 'Запамінальныя прылады' &gt; 'Кіраванне дыскамі'. 3) Пстрыкніце правай кнопкай мышы па падзелу, які вы жадаеце зашыфраваць, і абярыце альбо 'Выдаліць падзел', альбо 'Выдаліць том', альбо 'Выдаліць лагічны дыск'. 4) Націсніце 'Так'. Калі Windows спытае перазагрузіць кампутар, зрабіце гэта. Затым паўтарыце крокі 1 і 2 і пераходзьце да крока 5. 5) Пстрыкніце правай кнопкай мышы на ўчастку з пустым месцам (ён павінен мець надпіс 'Не размеркавана'), і абярыце 'Асноўны падзел', 'Дадатковы падзел', ці 'Лагічны дыск'. 6) Павінна з'явіцца акно майстра стварэння падзелаў ці тамоў; выканайце яго інструкцыі. У акне майстра на старонцы 'Фарматаванне падзелу' абярыце альбо 'Не фарматаваць гэты падзел', альбо 'Не фарматаваць гэты том'. У тым жа акне майстра націсніце кнопку 'Далей' і затым 'Гатова'. 7) Майце на ўвазе, што абраны вамі ў VeraCrypt шлях да прылады можа быць зараз няслушным. Таму скончыце працу майстра стварэння тамоў VeraCrypt (калі ён усё яшчэ выконваецца) і запусціце яго зноў. 8) Паспрабуйце зноў зашыфраваць прыладу/падзел у VeraCrypt.\n\nКалі VeraCrypt па-ранейшаму адмовіцца шыфраваць прыладу/падзел, адкарэктуйце свае планы і стварыце замест гэтага файлавы кантэйнер.</entry>
<entry lang="en" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Error: The filesystem could not be locked and/or unmounted. It may be in use by the operating system or applications (for example, antivirus software). Encrypting the partition might cause data corruption and system instability.\n\nPlease close any applications that might be using the filesystem (including antivirus software) and try again. If it does not help, please follow the below steps.</entry>
<entry lang="be" key="FORMAT_CANT_DISMOUNT_FILESYS">ПАМЫЛКА: Прылада/падзел мае файлавую сістэму, якая не можа быць размантаваная. Магчыма, яна выкарыстоўваецца аперацыйнай сістэмай. Фарматаванне прылады/падзела хутчэй за ўсё выкліча пашкоджанне дадзеных і нестабільнасць сістэмы.\n\nДля вырашэння гэтай праблемы мы рэкамендуем спачатку выдаліць гэты падзел, затым ізноў стварыць яго без фарматавання. Вось як гэта зрабіць: 1) Пстрыкніце правай кнопкай мышы па цэтліку 'Кампутар' (ці 'Мой кампутар') в меню 'Пуск' і абярыце 'Кіраванне'. Павінна адчыніцца акно 'Кіраванне кампутарам'. 2) У акне 'Кіраванне кампутарам', абярыце 'Запамінальныя прылады' &gt; 'Кіраванне дыскамі'. 3) Пстрыкніце правай кнопкай мышы па падзелу, які вы жадаеце зашыфраваць, і абярыце альбо 'Выдаліць падзел', альбо 'Выдаліць том', альбо 'Выдаліць лагічны дыск'. 4) Націсніце 'Так'. Калі Windows спытае перазагрузіць кампутар, зрабіце гэта. Затым паўтарыце крокі 1 і 2 і пераходзьце да крока 5. 5) Пстрыкніце правай кнопкай мышы на ўчастку з пустым месцам (ён павінен мець надпіс 'Не размеркавана'), і абярыце 'Асноўны падзел', 'Дадатковы падзел', ці 'Лагічны дыск'. 6) Павінна з'явіцца акно майстра стварэння падзелаў ці тамоў; выканайце яго інструкцыі. У акне майстра на старонцы 'Фарматаванне падзелу' абярыце альбо 'Не фарматаваць гэты падзел', альбо 'Не фарматаваць гэты том'. У тым жа акне майстра націсніце кнопку 'Далей' і затым 'Гатова'. 7) Майце на ўвазе, што абраны вамі ў VeraCrypt шлях да прылады можа быць зараз няслушным. Таму скончыце працу майстра стварэння тамоў VeraCrypt (калі ён усё яшчэ выконваецца) і запусціце яго зноў. 8) Паспрабуйце зноў зашыфраваць прыладу/падзел у VeraCrypt.\n\nКалі VeraCrypt па-ранейшаму адмовіцца шыфраваць прыладу/падзел, адкарэктуйце свае планы і стварыце замест гэтага файлавы кантэйнер.</entry>
<entry lang="en" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Error: The filesystem could not be locked and/or dismounted. It may be in use by the operating system or applications (for example, antivirus software). Encrypting the partition might cause data corruption and system instability.\n\nPlease close any applications that might be using the filesystem (including antivirus software) and try again. If it does not help, please follow the below steps.</entry>
<entry lang="be" key="DEVICE_IN_USE_INFO">УВАГА: Некаторыя змантаваныя прылады/падзелы ўжо выкарыстоўваюцца.\n\nІгнараванне гэтага можа прывесці да непажаданых наступстваў, у тым ліку да нестабільнасці сістэмы.\n\nНастойліва рэкамендуецца зачыніць усе вокны, што выкарыстоўваюць гэтыя прылады/падзелы.</entry>
<entry lang="be" key="DEVICE_PARTITIONS_ERR">Абраная прылада ўтрымоўвае падзелы.\n\nФарматаванне гэтай прылады можа прывесці да нестабільнасці сістэмы і/ці пашкоджання дадзеных. Абярыце падзел на гэтай прыладзе, альбо выдаліце ўсе падзелы на ёй, каб даць магчымасць VeraCrypt бяспечна яго адфарматаваць.</entry>
<entry lang="en" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">The selected non-system device contains partitions.\n\nEncrypted device-hosted VeraCrypt volumes can be created within devices that do not contain any partitions (including hard disks and solid-state drives). A device that contains partitions can be entirely encrypted in place (using a single master key) only if it is the drive where Windows is installed and from which it boots.\n\nIf you want to encrypt the selected non-system device using a single master key, you will need to remove all partitions on the device first to enable VeraCrypt to format it safely (formatting a device that contains partitions might cause system instability and/or data corruption). Alternatively, you can encrypt each partition on the drive individually (each partition will be encrypted using a different master key).\n\nNote: If you want to remove all partitions from a GPT disk, you may need to convert it to a MBR disk (using e.g. the Computer Management tool) in order to remove hidden partitions.</entry>
@@ -525,7 +523,7 @@
<entry lang="be" key="HIDVOL_FORMAT_FINISHED_TITLE">Утоены том створаны</entry>
<entry lang="en" key="HIDVOL_FORMAT_FINISHED_HELP">The hidden VeraCrypt volume has been successfully created and is ready for use. If all the instructions have been followed and if the precautions and requirements listed in the section "Security Requirements and Precautions Pertaining to Hidden Volumes" in the VeraCrypt User's Guide are followed, it should be impossible to prove that the hidden volume exists, even when the outer volume is mounted.\n\nWARNING: IF YOU DO NOT PROTECT THE HIDDEN VOLUME (FOR INFORMATION ON HOW TO DO SO, REFER TO THE SECTION "PROTECTION OF HIDDEN VOLUMES AGAINST DAMAGE" IN THE VERACRYPT USER'S GUIDE), DO NOT WRITE TO THE OUTER VOLUME. OTHERWISE, YOU MAY OVERWRITE AND DAMAGE THE HIDDEN VOLUME!</entry>
<entry lang="en" key="FIRST_HIDDEN_OS_BOOT_INFO">You have started the hidden operating system. As you may have noticed, the hidden operating system appears to be installed on the same partition as the original operating system. However, in reality, it is installed within the partition behind it (in the hidden volume). All read and write operations are being transparently redirected from the original system partition to the hidden volume.\n\nNeither the operating system nor applications will know that data written to and read from the system partition are actually written to and read from the partition behind it (from/to a hidden volume). Any such data is encrypted and decrypted on the fly as usual (with an encryption key different from the one that will be used for the decoy operating system).\n\n\nPlease click Next to continue.</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP_SYSENC">The outer volume has been created and mounted as drive %hc:. To this outer volume you should now copy some sensitive-looking files that you actually do NOT want to hide. They will be there for anyone forcing you to disclose the password for the first partition behind the system partition, where both the outer volume and the hidden volume (containing the hidden operating system) will reside. You will be able to reveal the password for this outer volume, and the existence of the hidden volume (and of the hidden operating system) will remain secret.\n\nIMPORTANT: The files you copy to the outer volume should not occupy more than %s. Otherwise, there may not be enough free space on the outer volume for the hidden volume (and you will not be able to continue). After you finish copying, click Next (do not unmount the volume).</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP_SYSENC">The outer volume has been created and mounted as drive %hc:. To this outer volume you should now copy some sensitive-looking files that you actually do NOT want to hide. They will be there for anyone forcing you to disclose the password for the first partition behind the system partition, where both the outer volume and the hidden volume (containing the hidden operating system) will reside. You will be able to reveal the password for this outer volume, and the existence of the hidden volume (and of the hidden operating system) will remain secret.\n\nIMPORTANT: The files you copy to the outer volume should not occupy more than %s. Otherwise, there may not be enough free space on the outer volume for the hidden volume (and you will not be able to continue). After you finish copying, click Next (do not dismount the volume).</entry>
<entry lang="be" key="HIDVOL_HOST_FILLING_HELP">Вонкавы том паспяхова створаны і змантаваны як дыск %hc:. У гэты том цяпер варта скапіяваць якія-небудзь што асэнсавана выглядаюць файлы, якія на самай справе вам хаваць НЕ трэба, каб збянтэжыць нядобразычліўца, калі ён вымусіць вас паведаміць пароль. У гэтым выпадку вы скажаце толькі пароль для гэтага вонкавага тома, але не для ўтоенага. Сапраўды каштоўныя для вас файлы будуць захоўвацца ва ўтоеным томе, створаным пазней. Калі скончыце капіяваць файлы, націсніце 'Далей'. Не размантоўвайце гэты том. НАТАТКА: Націск 'Далей' запусціць сканаванне карты кластараў вонкавага тома для высвятлення памеру бесперапыннай вольнай вобласці, канец якой стане канцом тома. Гэты ўчастак будзе прыстасаваны пад утоены том, г.зн. менавіта ім вызначаецца яго максімальна магчымы памер. Сканаванне карты кластараў гарантуе, што ніякія дадзеныя ў вонкавым томе не будуць перазапісаныя ўтоеным томам.</entry>
<entry lang="be" key="HIDVOL_HOST_FILLING_TITLE">Змесьціва вонкавага тому</entry>
<entry lang="be" key="HIDVOL_HOST_PRE_CIPHER_HELP">\n\nЗараз трэба вызначыць параметры для вонкавага тому, усярэдзіне якога будзе пазней створаны ўтоены том.</entry>
@@ -590,7 +588,7 @@
<entry lang="en" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">Error: The files you copied to the outer volume occupy too much space. Therefore, there is not enough free space on the outer volume for the hidden volume.\n\nNote that the hidden volume must be as large as the system partition (the partition where the currently running operating system is installed). The reason is that the hidden operating system needs to be created by copying the content of the system partition to the hidden volume.\n\n\nThe process of creation of the hidden operating system cannot continue.</entry>
<entry lang="be" key="OPENFILES_DRIVER">Драйвер не можа размантаваць том. Верагодна, на гэтым томе ёсць адкрытыя файлы.</entry>
<entry lang="be" key="OPENFILES_LOCK">Немагчыма заблакаваць том. На гэтым томе ёсць адкрытыя файлы, таму яго нельга размантаваць.</entry>
<entry lang="en" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt cannot lock the volume because it is in use by the system or applications (there may be open files on the volume).\n\nDo you want to force unmount on the volume?</entry>
<entry lang="en" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt cannot lock the volume because it is in use by the system or applications (there may be open files on the volume).\n\nDo you want to force dismount on the volume?</entry>
<entry lang="be" key="OPEN_VOL_TITLE">Абярыце том VeraCrypt</entry>
<entry lang="be" key="OPEN_TITLE">Азначце шлях і імя файла</entry>
<entry lang="en" key="SELECT_PKCS11_MODULE">Select PKCS #11 Library</entry>
@@ -613,7 +611,7 @@
<entry lang="en" key="FAVORITE_PIM_CHANGED">This volume is registered as a System Favorite and its PIM was changed.\nDo you want VeraCrypt to automatically update the System Favorite configuration (administrator privileges required)?\n\nPlease note that if you answer no, you'll have to update the System Favorite manually.</entry>
<entry lang="en" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">IMPORTANT: If you did not destroy your VeraCrypt Rescue Disk, your system partition/drive can still be decrypted using the old password (by booting the VeraCrypt Rescue Disk and entering the old password). You should create a new VeraCrypt Rescue Disk and then destroy the old one.\n\nDo you want to create a new VeraCrypt Rescue Disk?</entry>
<entry lang="be" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">Звярніце ўвагу, што ваш дыск узнаўлення VeraCrypt (Rescue Disk) усё яшчэ выкарыстоўвае ранейшы алгарытм. Калі вы лічыце гэты алгарытм нядосыць надзейным, стварыце новы дыск узнаўлення VeraCrypt, пасля чаго знішчыце стары.\n\nХочаце стварыць новы дыск узнаўлення VeraCrypt?</entry>
<entry lang="en" key="KEYFILES_NOTE">Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="en" key="KEYFILES_NOTE">Any kind of file (for example, .mp3, .jpg, .zip, .avi) may be used as a VeraCrypt keyfile. Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="be" key="KEYFILE_CHANGED">Ключавыя файлы паспяхова дададзеныя/выдаленыя.</entry>
<entry lang="en" key="KEYFILE_EXPORTED">Keyfile exported.</entry>
<entry lang="be" key="PKCS5_PRF_CHANGED">Алгарытм вылічэння ключа загалоўка паспяхова ўсталяваны.</entry>
@@ -729,7 +727,7 @@
<entry lang="en" key="DLL_FILES">Library Modules</entry>
<entry lang="be" key="FORMAT_NTFS_STOP">Працяг NTFS-фарматавання немагчымы.</entry>
<entry lang="be" key="CANT_MOUNT_VOLUME">Немагчыма змантаваць том.</entry>
<entry lang="be" key="CANT_UNMOUNT_VOLUME">Немагчыма размантаваць том.</entry>
<entry lang="be" key="CANT_DISMOUNT_VOLUME">Немагчыма размантаваць том.</entry>
<entry lang="be" key="FORMAT_NTFS_FAILED">Windows не можа адфарматаваць гэты том як NTFS.\n\nАбярыце іншы тып файлавай сістэмы (калі магчыма) і паўтарыце спробу. Альбо вы можаце пакінуць гэты том нефарматаваным (у поле выбару файлавай сістэмы азначце 'Не'), зачыніць акно майстра, змантаваць том, а затым з дапамогай сістэмнай ці іншай утыліты адфарматаваць змантаваны том (ён пры гэтым застанецца зашыфраваным).</entry>
<entry lang="be" key="FORMAT_NTFS_FAILED_ASK_FAT">Windows не можа адфарматаваць гэты том як NTFS.\n\nЖадаеце замест гэтага адфарматаваць том як FAT?</entry>
<entry lang="be" key="DEFAULT">Па змаўчанні</entry>
@@ -771,7 +769,7 @@
<entry lang="en" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">An error prevented VeraCrypt from encrypting the partition. Please try fixing any previously reported problems and then try again. If the problems persist, it might help to follow the below steps.</entry>
<entry lang="en" key="INPLACE_ENC_GENERIC_ERR_RESUME">An error prevented VeraCrypt from resuming the process of encryption of the partition.\n\nPlease try fixing any previously reported problems and then try resuming the process again. Note that the volume cannot be mounted until it has been fully encrypted.</entry>
<entry lang="en" key="INPLACE_DEC_GENERIC_ERR">An error prevented VeraCrypt from decrypting the volume. Please try fixing any previously reported problems and then try again if possible.</entry>
<entry lang="be" key="CANT_UNMOUNT_OUTER_VOL">Памылка! Немагчыма размантаваць вонкавы том.\n\nТом нельга размантаваць, калі ён утрымоўвае файлы ці тэчкі, што выкарыстоўваюцца якой-небудзь праграмай ці сістэмай.\n\nЗачыніце ўсе праграмы, якія могуць выкарыстоўваць файлы і тэчкі на гэтым томе, і націсніце 'Паўтор'.</entry>
<entry lang="be" key="CANT_DISMOUNT_OUTER_VOL">Памылка! Немагчыма размантаваць вонкавы том.\n\nТом нельга размантаваць, калі ён утрымоўвае файлы ці тэчкі, што выкарыстоўваюцца якой-небудзь праграмай ці сістэмай.\n\nЗачыніце ўсе праграмы, якія могуць выкарыстоўваць файлы і тэчкі на гэтым томе, і націсніце 'Паўтор'.</entry>
<entry lang="be" key="CANT_GET_OUTER_VOL_INFO">Памылка! Немагчыма атрымаць інфармацыю пра вонкавы том. Стварэнне тома спынена.</entry>
<entry lang="be" key="CANT_ACCESS_OUTER_VOL">Памылка! Няма доступу да вонкавага тома. Працяг стварэння тома немагчымы.</entry>
<entry lang="be" key="CANT_MOUNT_OUTER_VOL">Памылка! Немагчыма змантаваць вонкавы том. Стварэнне тома не можа быць працягнута.</entry>
@@ -813,7 +811,7 @@
<entry lang="en" key="SECONDARY_KEY_SIZE_LRW">Tweak Key Size (LRW Mode)</entry>
<entry lang="be" key="BITS">біт</entry>
<entry lang="be" key="BLOCK_SIZE">Памер блока</entry>
<entry lang="be" key="KDF">KDF</entry>
<entry lang="be" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="be" key="PKCS5_ITERATIONS">Лік ітэрацый PKCS-5</entry>
<entry lang="be" key="VOLUME_CREATE_DATE">Том створаны</entry>
<entry lang="be" key="VOLUME_HEADER_DATE">Апошняя змена загалоўка</entry>
@@ -855,7 +853,7 @@
<entry lang="en" key="TC_INSTALLER_IS_RUNNING">VeraCrypt Installer is currently running on this system and performing or preparing installation or update of VeraCrypt. Before you proceed, please wait for it to finish or close it. If you cannot close it, please restart your computer before proceeding.</entry>
<entry lang="be" key="INSTALL_FAILED">Усталёўка не выкананая.</entry>
<entry lang="be" key="UNINSTALL_FAILED">Выдаленне не выканана.</entry>
<entry lang="be" key="DIST_PACKAGE_CORRUPTED">Гэты дыстрыбутыўны пакет пашкоджаны. Загрузіце яго ізноў (пажадана з афіцыйнага сайта VeraCrypt - https://veracrypt.jp).</entry>
<entry lang="be" key="DIST_PACKAGE_CORRUPTED">Гэты дыстрыбутыўны пакет пашкоджаны. Загрузіце яго ізноў (пажадана з афіцыйнага сайта VeraCrypt - https://www.veracrypt.fr).</entry>
<entry lang="be" key="CANNOT_WRITE_FILE_X">Немагчыма запісаць файл %s</entry>
<entry lang="be" key="EXTRACTING_VERB">Выманне</entry>
<entry lang="be" key="CANNOT_READ_FROM_PACKAGE">Немагчыма прачытаць дадзеныя з дыстрыбутыва.</entry>
@@ -882,7 +880,7 @@
<entry lang="be" key="INSTALL_COMPLETED">Усталёўка завершаная.</entry>
<entry lang="be" key="CANT_CREATE_FOLDER">Не атрымалася стварыць тэчку '%s'</entry>
<entry lang="be" key="CLOSE_TC_FIRST">Немагчыма выгрузіць драйвер VeraCrypt.\n\nСпачатку зачыніце ўсе адчыненыя вокны VeraCrypt. Калі гэта не дапаможа, перазагрузіце Windows і паспрабуйце яшчэ раз.</entry>
<entry lang="be" key="UNMOUNT_ALL_FIRST">Перш чым працягнуць усталёўку ці выдаленне VeraCrypt, трэба размантаваць усе VeraCrypt-тамы.</entry>
<entry lang="be" key="DISMOUNT_ALL_FIRST">Перш чым працягнуць усталёўку ці выдаленне VeraCrypt, трэба размантаваць усе VeraCrypt-тамы.</entry>
<entry lang="en" key="UNINSTALL_OLD_VERSION_FIRST">An obsolete version of VeraCrypt is currently installed on this system. It needs to be uninstalled before you can install this new version of VeraCrypt.\n\nAs soon as you close this message box, the uninstaller of the old version will be launched. Note that no volume will be decrypted when you uninstall VeraCrypt. After you uninstall the old version of VeraCrypt, run the installer of the new version of VeraCrypt again.</entry>
<entry lang="be" key="REG_INSTALL_FAILED">Памылка ўсталёўкі элементаў у рэестры</entry>
<entry lang="be" key="DRIVER_INSTALL_FAILED">Памылка ўсталёўкі драйвера прылады. Перазагрузіце Windows і паспрабуйце ўсталяваць VeraCrypt яшчэ раз.</entry>
@@ -903,7 +901,7 @@
<entry lang="be" key="MINUTES">хв.</entry>
<entry lang="be" key="SECONDS">c.</entry>
<entry lang="be" key="OPEN">Адкрыць</entry>
<entry lang="be" key="UNMOUNT">Размантаваць</entry>
<entry lang="be" key="DISMOUNT">Размантаваць</entry>
<entry lang="be" key="SHOW_TC">Паказаць VeraCrypt</entry>
<entry lang="be" key="HIDE_TC">Схаваць VeraCrypt</entry>
<entry lang="be" key="TOTAL_DATA_READ">Счытана дадзеных пасля мантавання</entry>
@@ -940,7 +938,7 @@
<entry lang="en" key="ENTER_HEADER_BACKUP_PASSWORD">Enter password for the header stored in backup file</entry>
<entry lang="be" key="KEYFILE_CREATED">Ключавы файл паспяхова створаны.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_NUMBER">The number of keyfiles you supplied is invalid.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be at least 64 bytes.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be comprized between 64 and 1048576 bytes.</entry>
<entry lang="en" key="KEYFILE_EMPTY_BASE_NAME">Please enter a name for the keyfile(s) to be generated</entry>
<entry lang="en" key="KEYFILE_INVALID_BASE_NAME">The base name of the keyfile(s) is invalid</entry>
<entry lang="en" key="KEYFILE_ALREADY_EXISTS">The keyfile '%s' already exists.\nDo you want to overwrite it? The generation process will be stopped if you answer No.</entry>
@@ -975,7 +973,7 @@
<entry lang="en" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - System Favorite Volumes</entry>
<entry lang="en" key="SYS_FAVORITES_HELP_LINK">What are system favorite volumes?</entry>
<entry lang="en" key="SYS_FAVORITES_REQUIRE_PBA">The system partition/drive does not appear to be encrypted.\n\nSystem favorite volumes can be mounted using only a pre-boot authentication password. Therefore, to enable use of system favorite volumes, you need to encrypt the system partition/drive first.</entry>
<entry lang="be" key="UNMOUNT_FIRST">Перш чым працягнуць, размантуйце том.</entry>
<entry lang="be" key="DISMOUNT_FIRST">Перш чым працягнуць, размантуйце том.</entry>
<entry lang="be" key="CANNOT_SET_TIMER">ПАМЫЛКА: Немагчыма ўсталяваць таймер.</entry>
<entry lang="be" key="IDPM_CHECK_FILESYS">Праверка файлавай сістэмы</entry>
<entry lang="be" key="IDPM_REPAIR_FILESYS">Рамонт файлавай сістэмы</entry>
@@ -997,7 +995,7 @@
<entry lang="be" 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="be" key="UNSUPPORTED_CHARS_IN_PWD_RECOM">Увага! Пароль утрымоўвае не-ASCII знакі. Гэта можа прывесці да немагчымасці мантавання тома пры змене канфігурацыі сістэмы.\n\nВам варта замяніць усе не-ASCII знакі ў паролі на знакі ASCII. Для гэтага пстрыкніце на меню 'Тамы' -&gt; 'Змяніць пароль тома'.\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="en" key="EXE_FILE_EXTENSION_CONFIRM">WARNING: We strongly recommend that you avoid file extensions that are used for executable files (such as .exe, .sys, or .dll) and other similarly problematic file extensions. Using such file extensions causes Windows and antivirus software to interfere with the container, which adversely affects the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension or change it (e.g., to '.hc').\n\nAre you sure you want to use the problematic file extension?</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you unmount the volume.</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you dismount the volume.</entry>
<entry lang="be" key="HOMEPAGE">Хатняя старонка</entry>
<entry lang="be" key="LARGE_IDE_WARNING_XP">УВАГА: У сістэме не ўсталявана ніводнага пакета абнаўленняў (Service Pack) Windows. Калі ў Windows XP не ўсталяваны Service Pack 1 (ці навейшы), не варта выконваць запіс на дыскі IDE аб'ёмам больш 128 Гб, інакш магчыма пашкоджанне дадзеных (усё роўна, з'яўляюцца яны тамамі VeraCrypt ці не). Гэтае абмежаванне Windows, а не памылка ў VeraCrypt.</entry>
<entry lang="be" key="LARGE_IDE_WARNING_2K">УВАГА: У сістэме не ўсталяваны пакет абнаўленняў Windows Service Pack 3 (ці навейшы). Калі ў Windows 2000 не ўсталяваны Service Pack 3 (ці навейшы), не варта выконваць запіс на дыскі IDE аб'ёмам больш 128 Гб, інакш магчыма пашкоджанне дадзеных (усё роўна, з'яўляюцца яны тамамі VeraCrypt ці не). Гэтае абмежаванне Windows, а не памылка ў VeraCrypt. Акрамя таго, можа запатрабавацца ўключыць у рэестры падтрымку 48-бітнага адрасавання LBA; падрабязнасці гл. на http://support.microsoft.com/kb/305098/EN-US</entry>
@@ -1006,14 +1004,14 @@
<entry lang="en" key="VOLUME_TOO_LARGE_FOR_WINXP">Warning: Windows XP does not support files larger than 2048 GB (it will report that "Not enough storage is available"). Therefore, you cannot create a file-hosted VeraCrypt volume (container) larger than 2048 GB under Windows XP.\n\nNote that it is still possible to encrypt the entire drive or create a partition-hosted VeraCrypt volume larger than 2048 GB under Windows XP.</entry>
<entry lang="be" key="FREE_SPACE_FOR_WRITING_TO_OUTER_VOLUME">УВАГА: Калі вам запатрабуецца пазней дадаваць у вонкавы том яшчэ дадзеныя/файлы, варта падбаць пра памяншэнне памеру ўтоенага тома.\n\nВы жадаеце працягнуць і выкарыстаць паказаны вамі памер?</entry>
<entry lang="be" key="NO_VOLUME_SELECTED">Не абраны том.\n\nНацісніце кнопку 'Прылада' ці 'Файл' і абярыце том VeraCrypt.</entry>
<entry lang="en" key="NO_SYSENC_PARTITION_SELECTED">No partition selected.\n\nClick 'Select Device' to select a unmounted partition that normally requires pre-boot authentication (for example, a partition located on the encrypted system drive of another operating system, which is not running, or the encrypted system partition of another operating system).\n\nNote: The selected partition will be mounted as a regular VeraCrypt volume without pre-boot authentication. This is useful e.g. for backup or repair operations.</entry>
<entry lang="en" key="NO_SYSENC_PARTITION_SELECTED">No partition selected.\n\nClick 'Select Device' to select a dismounted partition that normally requires pre-boot authentication (for example, a partition located on the encrypted system drive of another operating system, which is not running, or the encrypted system partition of another operating system).\n\nNote: The selected partition will be mounted as a regular VeraCrypt volume without pre-boot authentication. This is useful e.g. for backup or repair operations.</entry>
<entry lang="be" key="CONFIRM_SAVE_DEFAULT_KEYFILES">УВАГА: Калі ўсталяваныя і актываваныя ключавыя файлы па змаўчанні, мантаваць тамы, што іх НЕ выкарыстоўваюць, будзе немагчыма. Пры мантаванні такіх тамоў не забывайце выключаць наладу 'Ключавыя файлы' (ніжэй поля ўводу пароля).\n\nВы сапраўды жадаеце захаваць абраныя ключавыя файлы/шляхі як выкарыстаныя па змаўчанні?</entry>
<entry lang="be" key="HK_AUTOMOUNT_DEVICES">Аўтамантаванне прылад</entry>
<entry lang="be" key="HK_UNMOUNT_ALL">Размантаваць усё</entry>
<entry lang="be" key="HK_DISMOUNT_ALL">Размантаваць усё</entry>
<entry lang="be" key="HK_WIPE_CACHE">Ачыстка кэша</entry>
<entry lang="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All &amp; Wipe Cache</entry>
<entry lang="be" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Размантаваць усё і ачысціць кэш</entry>
<entry lang="be" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Размантаваць усё, ачысціць кэш і выйсці</entry>
<entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All &amp; Wipe Cache</entry>
<entry lang="be" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Размантаваць усё і ачысціць кэш</entry>
<entry lang="be" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Размантаваць усё, ачысціць кэш і выйсці</entry>
<entry lang="be" key="HK_MOUNT_FAVORITE_VOLUMES">Змантаваць абраныя тамы</entry>
<entry lang="be" key="HK_SHOW_HIDE_MAIN_WINDOW">Паказаць/схаваць галоўнае акно VeraCrypt</entry>
<entry lang="be" key="PRESS_A_KEY_TO_ASSIGN">(пстрыкніце тут і націсніце клавішу)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="en" key="PAGING_FILE_CREATION_PREVENTED">Paging file creation has been prevented.\n\nPlease note that, due to Windows issues, paging files cannot be located on non-system VeraCrypt volumes (including system favorite volumes). VeraCrypt supports creation of paging files only on an encrypted system partition/drive.</entry>
<entry lang="en" key="SYS_ENC_HIBERNATION_PREVENTED">An error or incompatibility prevents VeraCrypt from encrypting the hibernation file. Therefore, hibernation has been prevented.\n\nNote: When a computer hibernates (or enters a power-saving mode), the content of its system memory is written to a hibernation storage file residing on the system drive. VeraCrypt would not be able to prevent encryption keys and the contents of sensitive files opened in RAM from being saved unencrypted to the hibernation storage file.</entry>
<entry lang="en" key="HIDDEN_OS_HIBERNATION_PREVENTED">Hibernation has been prevented.\n\nVeraCrypt does not support hibernation on hidden operating systems that use an extra boot partition. Please note that the boot partition is shared by both the decoy and the hidden system. Therefore, in order to prevent data leaks and problems while resuming from hibernation, VeraCrypt has to prevent the hidden system from writing to the shared boot partition and from hibernating.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">VeraCrypt volume mounted as %c: has been unmounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt volumes have been unmounted.</entry>
<entry lang="en" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt volumes have been unmounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_UNMOUNTED">Successfully unmounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="be" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">УВАГА: Калі выключыць гэты параметр, стане немагчыма аўтаматычна размантаваць тамы, што утрымоўваюць адкрытыя файлы/тэчкі.\n\nВы сапраўды жадаеце выключыць гэты параметр?</entry>
<entry lang="be" key="WARN_PREF_AUTO_UNMOUNT">УВАГА: Тамы з адкрытымі файламі/тэчкамі НЕ будуць аўтаматычна размантоўвацца.\n\nКаб пазбегнуць такога эфекту, уключыце ў гэтым акне наступны параметр: 'Аўтаразмантаваць тамы нават пры адкрытых файлах/тэчках'</entry>
<entry lang="en" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-unmount volumes in such cases.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">VeraCrypt volume mounted as %c: has been dismounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt volumes have been dismounted.</entry>
<entry lang="en" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt volumes have been dismounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_DISMOUNTED">Successfully dismounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="be" key="CONFIRM_NO_FORCED_AUTODISMOUNT">УВАГА: Калі выключыць гэты параметр, стане немагчыма аўтаматычна размантаваць тамы, што утрымоўваюць адкрытыя файлы/тэчкі.\n\nВы сапраўды жадаеце выключыць гэты параметр?</entry>
<entry lang="be" key="WARN_PREF_AUTO_DISMOUNT">УВАГА: Тамы з адкрытымі файламі/тэчкамі НЕ будуць аўтаматычна размантоўвацца.\n\nКаб пазбегнуць такога эфекту, уключыце ў гэтым акне наступны параметр: 'Аўтаразмантаваць тамы нават пры адкрытых файлах/тэчках'</entry>
<entry lang="en" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-dismount volumes in such cases.</entry>
<entry lang="en" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">You have scheduled the process of encryption of a partition/volume. The process has not been completed yet.\n\nDo you want to resume the process now?</entry>
<entry lang="be" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">Вы запланавалі шыфраванне ці дэшыфраванне сістэмнага падзелу/дыска. Гэты працэс пакуль яшчэ не завершаны.\n\nЖадаеце пачаць (працягнуць) працэс цяпер?</entry>
<entry lang="en" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">Do you want to be prompted about whether you want to resume the currently scheduled processes of encryption of non-system partitions/volumes?</entry>
@@ -1040,7 +1038,7 @@
<entry lang="en" key="DO_NOT_PROMPT_ME">No, do not prompt me</entry>
<entry lang="en" key="NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL_NOTE">IMPORTANT: Keep in mind that you can resume the process of encryption of any non-system partition/volume by selecting 'Volumes' &gt; 'Resume Interrupted Process' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="en" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">You have scheduled the process of encryption or decryption of the system partition/drive. However, pre-boot authentication failed (or was bypassed).\n\nNote: If you decrypted the system partition/drive in the pre-boot environment, you may need to finalize the process by selecting 'System' &gt; 'Permanently Decrypt System Partition/Drive' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="be" key="CONFIRM_EXIT_UNIVERSAL">Выйсці?</entry>
<entry lang="en" key="CHOOSE_ENCRYPT_OR_DECRYPT">VeraCrypt does not have sufficient information to determine whether to encrypt or decrypt.</entry>
<entry lang="en" key="CHOOSE_ENCRYPT_OR_DECRYPT_FINALIZE_DECRYPT_NOTE">VeraCrypt does not have sufficient information to determine whether to encrypt or decrypt.\n\nNote: If you decrypted the system partition/drive in the pre-boot environment, you may need to finalize the process by clicking Decrypt.</entry>
@@ -1063,7 +1061,7 @@
<entry lang="be" key="SYS_AUTOMOUNT_DISABLED">Ваша сістэма не наладжаная на аўтамантаванне новых тамоў. Мантаванне тамоў VeraCrypt на аснове прылад можа стаць немагчымым. Каб уключыць аўтамантаванне, выканайце наступную каманду і перазагрузіце сістэму:\n\nmountvol.exe /E</entry>
<entry lang="be" key="SYS_ASSIGN_DRIVE_LETTER">Перш чым працягнуць, прысвойце падзелу/прыладзе літару дыска ('Панэль кіравання' &gt; 'Адміністраванне' &gt; 'Кіраванне кампутарам' - 'Кіраванне дыскамі').\n\nЗаўвага: гэта патрабаванне аперацыйнай сістэмы.</entry>
<entry lang="be" key="MOUNT_TC_VOLUME">Змантаваць том VeraCrypt</entry>
<entry lang="be" key="UNMOUNT_ALL_TC_VOLUMES">Размантаваць усе тамы VeraCrypt</entry>
<entry lang="be" key="DISMOUNT_ALL_TC_VOLUMES">Размантаваць усе тамы VeraCrypt</entry>
<entry lang="be" key="UAC_INIT_ERROR">VeraCrypt не можа атрымаць правы адміністратара.</entry>
<entry lang="be" key="ERR_ACCESS_DENIED">Доступ забаронены аперацыйнай сістэмай.\n\nМагчымы чыннік: для чытання/запісу дадзеных у некаторых тэчках, файлах і прыладах аперацыйная сістэма патрабуе ў вас наяўнасці правоў чытання/запісу system (прывілеяў адміністратара). Па змаўчанні карыстачу без правоў адміністратара дазваляецца ствараць, чытаць і змяняць файлы толькі ў тэчцы з яго дакументамі ('Мае дакументы').</entry>
<entry lang="en" key="SECTOR_SIZE_UNSUPPORTED">Error: The drive uses an unsupported sector size.\n\nIt is currently not possible to create partition/device-hosted volumes on drives that use sectors larger than 4096 bytes. However, note that you can create file-hosted volumes (containers) on such drives.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="en" key="HIDDEN_OS_CREATION_PREINFO_HELP">In the next steps, VeraCrypt will create the hidden operating system by copying the content of the system partition to the hidden volume (data being copied will be encrypted on the fly with an encryption key different from the one that will be used for the decoy operating system).\n\nPlease note that the process will be performed in the pre-boot environment (before Windows starts) and it may take a long time to complete; several hours or even several days (depending on the size of the system partition and on the performance of your computer).\n\nYou will be able to interrupt the process, shut down your computer, start the operating system and then resume the process. However, if you interrupt it, the entire process of copying the system will have to start from the beginning (because the content of the system partition must not change during cloning).</entry>
<entry lang="en" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">Do you want to cancel the entire process of creation of the hidden operating system?\n\nNote: You will NOT be able to resume the process if you cancel it now.</entry>
<entry lang="be" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">Вы жадаеце адмяніць перад-тэст шыфравання сістэмы?</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="en" key="SYS_DRIVE_NOT_ENCRYPTED">The system partition/drive does not appear to be encrypted (neither partially nor fully).</entry>
<entry lang="be" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">Сістэмны падзел/дыск зашыфраваны (часткова ці цалкам).\n\nПерш чым працягнуць, цалкам дэшыфруйце сістэмны падзел/дыск. Каб гэта зрабіць, абярыце ў галоўным акне VeraCrypt меню 'Сістэма' &gt; 'Permanently Decrypt System Partition/Drive'.</entry>
<entry lang="en" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">When the system partition/drive is encrypted (partially or fully), you cannot downgrade VeraCrypt (but you can upgrade it or reinstall the same version).</entry>
@@ -1285,17 +1283,17 @@
<entry lang="en" key="TOKEN_DATA_OBJECT_LABEL">File name</entry>
<entry lang="en" key="BOOT_PASSWORD_CACHE_KEYBOARD_WARNING">IMPORTANT: Please note that pre-boot authentication passwords are always typed using the standard US keyboard layout. Therefore, a volume that uses a password typed using any other keyboard layout may be impossible to mount using a pre-boot authentication password (note that this is not a bug in VeraCrypt). To allow such a volume to be mounted using a pre-boot authentication password, follow these steps:\n\n1) Click 'Select File' or 'Select Device' and select the volume.\n2) Select 'Volumes' &gt; 'Change Volume Password'.\n3) Enter the current password for the volume.\n4) Change the keyboard layout to English (US) by clicking the Language bar icon in the Windows taskbar and selecting 'EN English (United States)'.\n5) In VeraCrypt, in the field for the new password, type the pre-boot authentication password.\n6) Confirm the new password by retyping it in the confirmation field and click 'OK'.\nWARNING: Please keep in mind that if you follow these steps, the volume password will always have to be typed using the US keyboard layout (which is automatically ensured only in the pre-boot environment).</entry>
<entry lang="en" key="SYS_FAVORITES_KEYBOARD_WARNING">System favorite volumes will be mounted using the pre-boot authentication password. If any system favorite volume uses a different password, it will not be mounted.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Unmount All', auto-unmount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and unmount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be unmounted. Therefore, if you need e.g. to unmount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Unmount All' function, 'Auto-Unmount' functions, 'Unmount All' hot keys, etc.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Dismount All', auto-dismount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and dismount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be dismounted. Therefore, if you need e.g. to dismount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Dismount All' function, 'Auto-Dismount' functions, 'Dismount All' hot keys, etc.</entry>
<entry lang="en" key="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry>
<entry lang="en" key="COMMAND_LINE_ERROR">Error while parsing command line.</entry>
<entry lang="be" key="RESCUE_DISK">Дыск узнаўлення</entry>
<entry lang="en" key="SELECT_FILE_AND_MOUNT">Select &amp;File and Mount...</entry>
<entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &amp;Device and Mount...</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and dismount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="MOUNT_SYSTEM_FAVORITES_ON_BOOT">Mount system favorite volumes when Windows starts (in the initial phase of the startup procedure)</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly unmounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always unmount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly unmounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly dismounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always dismount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly dismounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="FILESYS_REPAIR_CONFIRM_BACKUP">Warning: Repairing a damaged filesystem using the Microsoft 'chkdsk' tool might cause loss of files in damaged areas. Therefore, it is recommended that you first back up the files stored on the VeraCrypt volume to another, healthy, VeraCrypt volume.\n\nDo you want to repair the filesystem now?</entry>
<entry lang="en" key="MOUNTED_CONTAINER_FORCED_READ_ONLY">Volume '%s' has been mounted as read-only because write access was denied.\n\nPlease make sure the security permissions of the file container allow you to write to it (right-click the container and select Properties &gt; Security).\n\nNote that, due to a Windows issue, you may see this warning even after setting the appropriate security permissions. This is not caused by a bug in VeraCrypt. A possible solution is to move your container to, e.g., your 'Documents' folder.\n\nIf you intend to keep your volume read-only, set the read-only attribute of the container (right-click the container and select Properties &gt; Read-only), which will suppress this warning.</entry>
<entry lang="en" key="MOUNTED_DEVICE_FORCED_READ_ONLY">Volume '%s' had to be mounted as read-only because write access was denied.\n\nPlease make sure no other application (e.g. antivirus software) is accessing the partition/device on which the volume is hosted.</entry>
@@ -1306,8 +1304,8 @@
<entry lang="en" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Note that the number of threads is currently limited, which will affect benchmark results (worse performance).\n\nTo utilize the full potential of the processor(s), select 'Settings' > 'Performance' and disable the corresponding option.</entry>
<entry lang="en" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">Do you want VeraCrypt to attempt to disable write protection of the partition/drive?</entry>
<entry lang="en" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">WARNING: This setting may degrade performance.\n\nAre you sure you want to use this setting?</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-unmounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always unmount the volume in VeraCrypt first.\n\nUnexpected spontaneous unmount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-dismounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always dismount the volume in VeraCrypt first.\n\nUnexpected spontaneous dismount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="UNSUPPORTED_TRUECRYPT_FORMAT">This volume was created with TrueCrypt %x.%x but VeraCrypt supports only TrueCrypt volumes created with TrueCrypt 6.x/7.x series</entry>
<entry lang="be" key="TEST">Тэст</entry>
<entry lang="be" key="KEYFILE">Ключавы файл</entry>
@@ -1453,7 +1451,7 @@
<entry lang="en" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Add All Mounted Volumes to Favorites...</entry>
<entry lang="en" key="TASKICON_PREF_MENU_ITEMS">Task Icon Menu Items</entry>
<entry lang="en" key="TASKICON_PREF_OPEN_VOL">Open Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_DISMOUNT_VOL">Dismount Mounted Volumes</entry>
<entry lang="en" key="DISK_FREE">Free space available: {0}</entry>
<entry lang="en" key="VOLUME_SIZE_HELP">Please specify the size of the container to create. Note that the minimum possible size of a volume is 292 KiB.</entry>
<entry lang="en" key="LINUX_CONFIRM_INNER_VOLUME_CALC">WARNING: You have selected a filesystem other than FAT for the outer volume.\nPlease Note that in this case VeraCrypt can't calculate the exact maximum allowed size for the hidden volume and it will use only an estimation that can be wrong.\nThus, it is your responsibility to use an adequate value for the size of the hidden volume so that it does not overlap the outer volume.\n\nDo you want to continue using the selected filesystem for the outer volume?</entry>
@@ -1483,14 +1481,14 @@
<entry lang="en" key="LINUX_DO_NOT_MOUNT">Do &amp;not mount</entry>
<entry lang="en" key="LINUX_MOUNT_AT_DIR">Mount at directory:</entry>
<entry lang="en" key="LINUX_SELECT">Se&amp;lect...</entry>
<entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount All Volumes When</entry>
<entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry>
<entry lang="en" key="LINUX_ENTERING_POWERSAVING">System is entering power saving mode</entry>
<entry lang="en" key="LINUX_LOGIN_ACTION">Actions to Perform when User Logs On</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Close all Explorer windows of volume being dismounted</entry>
<entry lang="en" key="LINUX_HOTKEYS">Hotkeys</entry>
<entry lang="en" key="LINUX_SYSTEM_HOTKEYS">System-Wide Hotkeys</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/unmount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_UNMOUNT">Display confirmation message box after unmount</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/dismount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_DISMOUNT">Display confirmation message box after dismount</entry>
<entry lang="en" key="LINUX_VC_QUITS">VeraCrypt quits</entry>
<entry lang="en" key="LINUX_OPEN_FINDER">Open Finder window for successfully mounted volume</entry>
<entry lang="en" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Please note that this setting takes effect only if use of the kernel cryptographic services is disabled.</entry>
@@ -1510,11 +1508,11 @@
<entry lang="en" key="LINUX_DYNAMIC_NOTICE">Please note that if your operating system does not allocate files from the beginning of the free space, the maximum possible hidden volume size may be much smaller than the size of the free space on the outer volume. This is not a bug in VeraCrypt but a limitation of the operating system.</entry>
<entry lang="en" key="LINUX_MAX_HIDDEN_SIZE">Maximum possible hidden volume size for this volume is {0}.</entry>
<entry lang="en" key="LINUX_OPEN_OUTER_VOL">Open Outer Volume</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not unmount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not dismount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">Error: You are trying to encrypt a system drive.\n\nVeraCrypt can encrypt a system drive only under Windows.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">Error: You are trying to encrypt a system partition.\n\nVeraCrypt can encrypt system partitions only under Windows.</entry>
<entry lang="en" key="LINUX_WARNING_FORMAT_DESTROY_FS">WARNING: Formatting of the device will destroy all data on filesystem '{0}'.\n\nDo you want to continue?</entry>
<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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please dismount '{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>
@@ -1522,8 +1520,7 @@
<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>
<entry lang="en" key="LINUX_VOL_DISMOUNTED">Volume {0} has been dismounted.</entry>
<entry lang="en" key="LINUX_OOM">Out of memory.</entry>
<entry lang="en" key="LINUX_CANT_GET_ADMIN_PRIV">Failed to obtain administrator privileges</entry>
<entry lang="en" key="LINUX_COMMAND_GET_ERROR">Command {0} returned error {1}.</entry>
@@ -1553,7 +1550,7 @@
<entry lang="en" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Error: The drive uses a sector size other than 512 bytes.\n\nDue to limitations of components available on your platform, partition/device-hosted volumes cannot be created/used on the drive.\n\nPossible solutions:\n- Create a file-hosted volume (container) on the drive.\n- Use a drive with 512-byte sectors.\n- Use VeraCrypt on another platform.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">The host file/device is already in use.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Volume slot unavailable.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires macFUSE 2.5 or above.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires OSXFUSE 2.5 or above.</entry>
<entry lang="en" key="EXCEPTION_OCCURRED">Exception occurred</entry>
<entry lang="en" key="ENTER_PASSWORD">Enter password</entry>
<entry lang="en" key="ENTER_TC_VOL_PASSWORD">Enter VeraCrypt Volume Password</entry>
@@ -1570,124 +1567,6 @@
<entry lang="en" key="VOLUME_HOST_IN_USE">WARNING: The host file/device {0} is already in use!\n\nIgnoring this can cause undesired results including system instability. All applications that might be using the host file/device should be closed before mounting the volume.\n\nContinue mounting?</entry>
<entry lang="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
<entry lang="en" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">VeraCrypt cannot be upgraded because the system partition/drive was encrypted using an algorithm that is not supported anymore.\nPlease decrypt your system before upgrading VeraCrypt and then encrypt it again.</entry>
<entry lang="en" key="LINUX_EX2MSG_TERMINALNOTFOUND">Supported terminal application could not be found, you need either xterm, konsole or gnome-terminal (with dbus-x11).</entry>
<entry lang="en" key="IDM_MOUNT_NO_CACHE">Mount Without Cache</entry>
<entry lang="en" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nExpand a VeraCrypt volume on the fly without reformatting\n\n\nAll kind of volumes (container files, disks and partitions) formatted with NTFS are supported. The only condition is that there must be enough free space on the host drive or host device of the VeraCrypt volume.\n\nDo not use this software to expand an outer volume containing a hidden volume, because this destroys the hidden volume!\n</entry>
<entry lang="en" key="IDC_STEPSEXPAND">1. Select the VeraCrypt volume to be expanded\n2. Click the 'Mount' button</entry>
<entry lang="en" key="IDT_VOL_NAME">Volume: </entry>
<entry lang="en" key="IDT_FILE_SYS">File system: </entry>
<entry lang="en" key="IDT_CURRENT_SIZE">Current size: </entry>
<entry lang="en" key="IDT_NEW_SIZE">New size: </entry>
<entry lang="en" key="IDT_NEW_SIZE_BOX_TITLE">Enter new volume size</entry>
<entry lang="en" key="IDC_INIT_NEWSPACE">Fill new space with random data</entry>
<entry lang="en" key="IDC_QUICKEXPAND">Quick Expand</entry>
<entry lang="en" key="IDT_INIT_SPACE">Fill new space: </entry>
<entry lang="en" key="EXPANDER_FREE_SPACE">%s free space available on host drive</entry>
<entry lang="en" key="EXPANDER_HELP_DEVICE">This is a device-based VeraCrypt volume.\n\nThe new volume size will be choosen automatically as the size of the host device.</entry>
<entry lang="en" key="EXPANDER_HELP_FILE">Please specify the new size of the VeraCrypt volume (must be at least %I64u KB larger than the current size).</entry>
<entry lang="en" key="QUICK_EXPAND_WARNING">WARNING: You should use Quick Expand only in the following cases:\n\n1) The device where the file container is located contains no sensitive data and you do not need plausible deniability.\n2) The device where the file container is located has already been securely and fully encrypted.\n\nAre you sure you want to use Quick Expand?</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT">IMPORTANT: Move your mouse as randomly as possible within this window. The longer you move it, the better. This significantly increases the cryptographic strength of the encryption keys. Then click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT_LEGACY">Click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_FINISH_ERROR">Error: volume expansion failed.</entry>
<entry lang="en" key="EXPANDER_FINISH_ABORT">Error: operation aborted by user.</entry>
<entry lang="en" key="EXPANDER_FINISH_OK">Finished. Volume successfully expanded.</entry>
<entry lang="en" key="EXPANDER_CANCEL_WARNING">Warning: Volume expansion is in progress!\n\nStopping now may result in a damaged volume.\n\nDo you really want to cancel?</entry>
<entry lang="en" key="EXPANDER_STARTING_STATUS">Starting volume expansion ...\n</entry>
<entry lang="en" key="EXPANDER_HIDDEN_VOLUME_ERROR">An outer volume containing a hidden volume can't be expanded, because this destroys the hidden volume.\n</entry>
<entry lang="en" key="EXPANDER_SYSTEM_VOLUME_ERROR">A VeraCrypt system volume can't be expanded.</entry>
<entry lang="en" key="EXPANDER_NO_FREE_SPACE">Not enough free space to expand the volume</entry>
<entry lang="en" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Warning: The container file is larger than the VeraCrypt volume area. The data after the VeraCrypt volume area will be overwritten.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_FAT">Warning: The VeraCrypt volume contains a FAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_EXFAT">Warning: The VeraCrypt volume contains an exFAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_UNKNOWN_FS">Warning: The VeraCrypt volume contains an unknown or no file system!\n\nOnly the VeraCrypt volume itself will be expanded, the file system remains unchanged.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">New volume size too small, must be at least %I64u kB larger than the current size.</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">New volume size too large, not enough space on host drive.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Maximum file size of %I64u MB on host drive exceeded.</entry>
<entry lang="en" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Error: Failed to get necessary privileges to enable Quick Expand!\nPlease uncheck Quick Expand option and try again.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Maximum VeraCrypt volume size of %I64u TB exceeded!\n</entry>
<entry lang="en" key="FULL_FORMAT">Full Format</entry>
<entry lang="en" key="FAST_CREATE">Fast Create</entry>
<entry lang="en" key="WARN_FAST_CREATE">WARNING: You should use Fast Create only in the following cases:\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 Fast Create?</entry>
<entry lang="en" key="IDC_ENABLE_EMV_SUPPORT">Enable EMV Support</entry>
<entry lang="en" key="COMMAND_APDU_INVALID">The APDU command sent to the card is not valid.</entry>
<entry lang="en" key="EXTENDED_APDU_UNSUPPORTED">Extended APDU commands cannot be used with the current token.</entry>
<entry lang="en" key="SCARD_MODULE_INIT_FAILED">Error when loading the WinSCard / PCSC library.</entry>
<entry lang="en" key="EMV_UNKNOWN_CARD_TYPE">The card in the reader is not a supported EMV card.</entry>
<entry lang="en" key="EMV_SELECT_AID_FAILED">The AID of the card in the reader could not be selected.</entry>
<entry lang="en" key="EMV_ICC_CERT_NOTFOUND">ICC Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_ISSUER_CERT_NOTFOUND">Issuer Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_CPLC_NOTFOUND">CPLC was not found in the EMV card.</entry>
<entry lang="en" key="EMV_PAN_NOTFOUND">No Primary Account Number (PAN) found in the EMV card.</entry>
<entry lang="en" key="INVALID_EMV_PATH">EMV path is invalid.</entry>
<entry lang="en" key="EMV_KEYFILE_DATA_NOTFOUND">Unable to build a keyfile from the EMV card's data.\n\nOne of the following is missing:\n- ICC Public Key Certificate.\n- Issuer Public Key Certificate.\n- CPLC data.</entry>
<entry lang="en" key="SCARD_W_REMOVED_CARD">No card in the reader.\n\nPlease make sure the card is correctly slotted.</entry>
<entry lang="en" key="FORMAT_EXTERNAL_FAILED">Windows format.com command failed to format the volume as NTFS/exFAT/ReFS: Error 0x%.8X.\n\nFalling back to using Windows FormatEx API.</entry>
<entry lang="en" key="FORMATEX_API_FAILED">Windows FormatEx API failed to format the volume as NTFS/exFAT/ReFS.\n\nFailure status = %s.</entry>
<entry lang="en" key="EXPANDER_WRITING_RANDOM_DATA">Writing random data to new space ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Writing re-encrypted backup header ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Writing re-encrypted primary header ...\n</entry>
<entry lang="en" key="EXPANDER_WIPING_OLD_HEADER">Wiping old backup header ...\n</entry>
<entry lang="en" key="EXPANDER_MOUNTING_VOLUME">Mounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_UNMOUNTING_VOLUME">Unmounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_EXTENDING_FILESYSTEM">Extending file system ...\n</entry>
<entry lang="en" key="PARTIAL_SYSENC_MOUNT_READONLY">Warning: The system partition you attempted to mount was not fully encrypted. As a safety measure to prevent potential corruption or unwanted modifications, volume '%s' was mounted as read-only.</entry>
<entry lang="en" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Important information on using third-party file extensions</entry>
<entry lang="en" key="IDC_DISABLE_MEMORY_PROTECTION">Disable memory protection for Accessibility tools compatibility</entry>
<entry lang="en" key="DISABLE_MEMORY_PROTECTION_WARNING">WARNING: Disabling memory protection significantly reduces security. Enable this option ONLY if you rely on Accessibility tools, like Screen Readers, to interact with VeraCrypt's UI.</entry>
<entry lang="be" key="LINUX_LANGUAGE">Мова</entry>
<entry lang="en" key="LINUX_SELECT_SYS_DEFAULT_LANG">Select system's default language</entry>
<entry lang="en" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">For the language change to come into effect, VeraCrypt needs to be restarted.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE">WARNING: The volume's master key is vulnerable to an attack that compromises data security.\n\nPlease create a new volume and transfer the data to it.</entry>
<entry lang="en" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">WARNING: The encrypted system's master key is vulnerable to an attack that compromises data security.\nPlease decrypt the system partition/drive and then re-encrypt it.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">WARNING: The volume's master key has a security vulnerability.</entry>
<entry lang="en" key="MOUNTPOINT_BLOCKED">ERROR: The volume mount point is blocked because it overrides a protected system directory.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="MOUNTPOINT_NOTALLOWED">ERROR: The volume mount point is not allowed because it overrides a directory that is part of the PATH environment variable.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="INSECURE_MODE">[INSECURE MODE]</entry>
<entry lang="en" key="IDC_DISABLE_SCREEN_PROTECTION">Disable protection against screenshots and screen recording</entry>
<entry lang="en" key="DISABLE_SCREEN_PROTECTION_WARNING">WARNING: Disabling screen protection significantly reduces security. Enable this option ONLY if you have a specific need to capture VeraCrypt's interface. This may expose sensitive data to screenshot tools and screen recording features such as Windows 11 Recall.</entry>
<entry lang="en" key="MEMORY_COST">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="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>
<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>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+59 -180
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
@@ -135,8 +135,8 @@
<entry lang="bg" key="IDC_FAVORITE_REMOVE">&amp;Премахване</entry>
<entry lang="en" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Use favorite label as Explorer drive label</entry>
<entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key dismount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key dismount</entry>
<entry lang="bg" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="en" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="bg" key="IDC_HK_MOD_SHIFT">Shift</entry>
@@ -156,12 +156,12 @@
<entry lang="en" key="IDC_PIM_HELP">(Empty or 0 for default iterations)</entry>
<entry lang="bg" key="IDC_PREF_BKG_TASK_ENABLE">Разрешен</entry>
<entry lang="bg" key="IDC_PREF_CACHE_PASSWORDS">Кеширане на пароли в паметта</entry>
<entry lang="bg" key="IDC_PREF_UNMOUNT_INACTIVE">Авто-демонтиране след като няма четене/запис в продължение на</entry>
<entry lang="bg" key="IDC_PREF_UNMOUNT_LOGOFF">Потребителят се изключи</entry>
<entry lang="en" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="bg" key="IDC_PREF_UNMOUNT_POWERSAVING">Влизане в енергопестящ режим</entry>
<entry lang="bg" key="IDC_PREF_UNMOUNT_SCREENSAVER">Скрийнсейвърът се стартира</entry>
<entry lang="bg" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Принудително авто-демонтиране дори ако има отворени файлове или директории</entry>
<entry lang="bg" key="IDC_PREF_DISMOUNT_INACTIVE">Авто-демонтиране след като няма четене/запис в продължение на</entry>
<entry lang="bg" key="IDC_PREF_DISMOUNT_LOGOFF">Потребителят се изключи</entry>
<entry lang="en" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="bg" key="IDC_PREF_DISMOUNT_POWERSAVING">Влизане в енергопестящ режим</entry>
<entry lang="bg" key="IDC_PREF_DISMOUNT_SCREENSAVER">Скрийнсейвърът се стартира</entry>
<entry lang="bg" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Принудително авто-демонтиране дори ако има отворени файлове или директории</entry>
<entry lang="bg" key="IDC_PREF_LOGON_MOUNT_DEVICES">Монтиране на всички VeraCrypt томове-устройства</entry>
<entry lang="bg" key="IDC_PREF_LOGON_START">Стартиране на VeraCrypt фонов процес</entry>
<entry lang="bg" key="IDC_PREF_MOUNT_READONLY">Монтиране като "само за четене"</entry>
@@ -169,7 +169,7 @@
<entry lang="bg" key="IDC_PREF_OPEN_EXPLORER">Отваряне на Explorer прозорец за успешно монтиран том</entry>
<entry lang="en" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">Temporarily cache password during "Mount Favorite Volumes" operations</entry>
<entry lang="en" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Use a different taskbar icon when there are mounted volumes</entry>
<entry lang="bg" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Заличаване на кешираните пароли при авто-демонтиране</entry>
<entry lang="bg" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Заличаване на кешираните пароли при авто-демонтиране</entry>
<entry lang="bg" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Заличаване при изход</entry>
<entry lang="en" key="IDC_PRESERVE_TIMESTAMPS">Preserve modification timestamp of file containers</entry>
<entry lang="bg" key="IDC_RESET_HOTKEYS">Изчистване</entry>
@@ -269,14 +269,14 @@
<entry lang="en" key="IDT_ACCELERATION_OPTIONS">Hardware Acceleration</entry>
<entry lang="bg" key="IDT_ASSIGN_HOTKEY">Клавишна комбинация</entry>
<entry lang="bg" key="IDT_AUTORUN">Конфигурация на АвтоСтарт (autorun.inf)</entry>
<entry lang="bg" key="IDT_AUTO_UNMOUNT">Авто-демонтиране</entry>
<entry lang="bg" key="IDT_AUTO_UNMOUNT_ON">Демонтиране на всички когато:</entry>
<entry lang="bg" key="IDT_AUTO_DISMOUNT">Авто-демонтиране</entry>
<entry lang="bg" key="IDT_AUTO_DISMOUNT_ON">Демонтиране на всички когато:</entry>
<entry lang="bg" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Опци на Boot Loader екрана</entry>
<entry lang="bg" key="IDT_CONFIRM_PASSWORD">Парола пак:</entry>
<entry lang="bg" key="IDT_CURRENT">Текуща</entry>
<entry lang="bg" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">Показване на това потребителско съобщение на екрана за pre-boot автентикация (най-много 24 знака):</entry>
<entry lang="bg" key="IDT_DEFAULT_MOUNT_OPTIONS">Подразбиращи се опции при монтиране</entry>
<entry lang="bg" key="IDT_UNMOUNT_ACTION">Опции на системните клавиши</entry>
<entry lang="bg" key="IDT_DISMOUNT_ACTION">Опции на системните клавиши</entry>
<entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry>
<entry lang="en" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Enable extended disk control codes support</entry>
<entry lang="en" key="IDT_FAVORITE_LABEL">Label of selected favorite volume:</entry>
@@ -291,11 +291,10 @@
<entry lang="bg" key="IDT_NEW_PASSWORD">Парола:</entry>
<entry lang="en" key="IDT_PARALLELIZATION_OPTIONS">Thread-Based Parallelization</entry>
<entry lang="bg" key="IDT_PKCS11_LIB_PATH">Път към PKCS #11 библиотека</entry>
<entry lang="bg" key="IDT_KDF">KDF:</entry>
<entry lang="en" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="bg" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="en" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="bg" key="IDT_PW_CACHE_OPTIONS">Кеширане на паролите</entry>
<entry lang="bg" key="IDT_SECURITY_OPTIONS">Опции на сигурността</entry>
<entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry>
<entry lang="bg" key="IDT_TASKBAR_ICON">VeraCrypt фонов процес</entry>
<entry lang="bg" key="IDT_TRAVELER_MOUNT">VeraCrypt том за монтиране (относително от началото на пътния диск):</entry>
<entry lang="bg" key="IDT_TRAVEL_INSERTION">При поставяне на пътен диск: </entry>
@@ -357,7 +356,7 @@
<entry lang="bg" key="IDT_KEYFILE_WARNING">ВНИМАНИЕ: Ако изгубите ключ-файл или ако първите му 1024 KB са повредени, няма да е възможно да се монтират томове, които го използват!</entry>
<entry lang="bg" key="IDT_KEY_UNIT">битов</entry>
<entry lang="en" key="IDT_NUMBER_KEYFILES">Number of keyfiles:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size (in Bytes):</entry>
<entry lang="en" key="IDT_KEYFILES_BASE_NAME">Keyfiles base name:</entry>
<entry lang="bg" key="IDT_LANGPACK_AUTHORS">Превод:</entry>
<entry lang="bg" key="IDT_PLAINTEXT">Размер:</entry>
@@ -390,7 +389,6 @@
<entry lang="en" key="ADMINISTRATOR">Administrator</entry>
<entry lang="bg" key="ADMIN_PRIVILEGES_DRIVER">За да се зареди VeraCrypt драйвера, трябва да сте влезли с акаунт, който има администраторски права.</entry>
<entry lang="bg" key="ADMIN_PRIVILEGES_WARN_DEVICES">Моля, обърнете внимание на това, че за да криптирате/форматирате дял/устройство, трябва да сте влезли с акаунт, който има администраторски права.\n\nТова не се отнася за томове които се намират във файл-контейнери.</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="bg" key="ADMIN_PRIVILEGES_WARN_HIDVOL">За да създадете скрит том трябва да сте влезли с акаунт, който има администраторски права.\n\nЩе продължите ли?</entry>
<entry lang="bg" key="ADMIN_PRIVILEGES_WARN_NTFS">Моля, обърнете внимание на това, че за да форматирате том като NTFS, трябва да сте влезли с акаунт, който има администраторски права.\n\nБез администраторски права можете да форматирате тома като FAT.</entry>
<entry lang="bg" key="AES_HELP">Шифър одобрен от FIPS (Rijndael, публикуван през 1998) който може да се използва от правителствените организации и служби на САЩ за защита на класифицирана информация до ниво Строго Секретно. 256-битов ключ, 128-битов блок, 14 кръга (AES-256). Режимът на работа е XTS.</entry>
@@ -423,8 +421,8 @@
<entry lang="bg" key="DEVICE_FREE_PB">Размера на %s е %.2f PB</entry>
<entry lang="bg" key="DEVICE_IN_USE_FORMAT">ВНИМАНИЕ: Устройството в момента се използва!\n\nУстройството което ще се форматира в момента се използва от системата или от приложения. Форматирането му може да доведе до загуба на данни или нестабилност на системата.\n\nДа продължи ли форматирането?</entry>
<entry lang="bg" key="DEVICE_IN_USE_INPLACE_ENC">Внимание: Този дял се използва от операционната система или от някое приложение. Трябва да затворите всички приложения които биха могли да използват дяла (включително и антивирусни програми).\n\nЖелаете ли да продължите?</entry>
<entry lang="bg" key="FORMAT_CANT_UNMOUNT_FILESYS">Грешка: Устройството/дяла съдържа файлова система която не може да бъде демонтирана. Файловата система може да се използва от операционната система. Форматирането на устройството/дяла е мнго вероятно да причини повреда на данните и нестабилност на системата.\n\nЗа да разрешите този проблем, препоръчваме първо да изтриете дяла и след това да го създадете на ново без форматиране. За да направите това, следвайте тези стъпки: 1) Натиснете десен бутон върху иконата на 'Computer' (или 'My Computer') в 'Start Menu' и изберете 'Manage'. Трябва да се появи прозореца 'Computer Management'. 2) В прозореца 'Computer Management', изберете 'Storage' &gt; 'Disk Management'. 3) Натиснете десен бутон върху дяла, който желаете да криптирате и изберете или 'Delete Partition', или 'Delete Volume', или 'Delete Logical Drive'. 4) Натиснете 'Yes'. Ако Windows пожелае да рестартирате компютъра, направете го. Тогава повторете стъпки 1 и 2 и продължете от стъпка 5. 5) Натиснете десен бутон върху зоната с неалокирано/свободно място и изберете или 'New Partition', или 'New Simple Volume', или 'New Logical Drive'. 6) Сега би трябвало да се появи прозорец 'New Partition Wizard' или 'New Simple Volume Wizard'; следвайте неговите инструкции. На страницата на помощника озоглавена 'Format Partition', изберете или 'Do not format this partition' или 'Do not format this volume'. В същия помощник, натиснете 'Next' и след това 'Finish'. 7) Имайте предвид, че пътят до устройството, който сте били избрали в VeraCrypt сега може да е грешен. За това, излезте от VeraCrypt помощника за създаване на томове (ако все още е стартиран) и след това го стартирайте отново. 8) Опитайте да криптирате устройството/дяла отново.\n\nАко VeraCrypt продължава да не успява да криптира устройството/дяла, можете да помислите за създаване на контейнер-файл вместо това.</entry>
<entry lang="bg" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Грешка: Файловата система не може да бъде заключена и/или демонтирана. Може би се използва от операционната система или от някое приложение (например антивирусна програма). Криптирането на дяла може да причини повреда на данните и нестабилност на системата.\n\nМоля, затворете всички приложения, които биха могли да използват файловата система (включително антивирусни програми) и опитайте отново. Ако това не помогне, моля, следвайте следните съпки.</entry>
<entry lang="bg" key="FORMAT_CANT_DISMOUNT_FILESYS">Грешка: Устройството/дяла съдържа файлова система която не може да бъде демонтирана. Файловата система може да се използва от операционната система. Форматирането на устройството/дяла е мнго вероятно да причини повреда на данните и нестабилност на системата.\n\nЗа да разрешите този проблем, препоръчваме първо да изтриете дяла и след това да го създадете на ново без форматиране. За да направите това, следвайте тези стъпки: 1) Натиснете десен бутон върху иконата на 'Computer' (или 'My Computer') в 'Start Menu' и изберете 'Manage'. Трябва да се появи прозореца 'Computer Management'. 2) В прозореца 'Computer Management', изберете 'Storage' &gt; 'Disk Management'. 3) Натиснете десен бутон върху дяла, който желаете да криптирате и изберете или 'Delete Partition', или 'Delete Volume', или 'Delete Logical Drive'. 4) Натиснете 'Yes'. Ако Windows пожелае да рестартирате компютъра, направете го. Тогава повторете стъпки 1 и 2 и продължете от стъпка 5. 5) Натиснете десен бутон върху зоната с неалокирано/свободно място и изберете или 'New Partition', или 'New Simple Volume', или 'New Logical Drive'. 6) Сега би трябвало да се появи прозорец 'New Partition Wizard' или 'New Simple Volume Wizard'; следвайте неговите инструкции. На страницата на помощника озоглавена 'Format Partition', изберете или 'Do not format this partition' или 'Do not format this volume'. В същия помощник, натиснете 'Next' и след това 'Finish'. 7) Имайте предвид, че пътят до устройството, който сте били избрали в VeraCrypt сега може да е грешен. За това, излезте от VeraCrypt помощника за създаване на томове (ако все още е стартиран) и след това го стартирайте отново. 8) Опитайте да криптирате устройството/дяла отново.\n\nАко VeraCrypt продължава да не успява да криптира устройството/дяла, можете да помислите за създаване на контейнер-файл вместо това.</entry>
<entry lang="bg" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Грешка: Файловата система не може да бъде заключена и/или демонтирана. Може би се използва от операционната система или от някое приложение (например антивирусна програма). Криптирането на дяла може да причини повреда на данните и нестабилност на системата.\n\nМоля, затворете всички приложения, които биха могли да използват файловата система (включително антивирусни програми) и опитайте отново. Ако това не помогне, моля, следвайте следните съпки.</entry>
<entry lang="bg" key="DEVICE_IN_USE_INFO">ВНИМАНИЕ: Някои от монтираните дялове/устройства вече се използваха!\n\nПренебрегването на това може да доведе до нежелани последствия, включително нестабилност на системата.\n\nСилно препоръчваме да затворите всички приложения, които биха могли да използват устройствата/дяловете.</entry>
<entry lang="bg" key="DEVICE_PARTITIONS_ERR">Избраното устройство съдържа дялове.\n\nФорматирането на устройството може да доведе до нестабилност на системата и/или повреда на данн. Моля, или изберете дял от устройството, или премахнете всички дялове от устройството за да позволите на VeraCrypt да го форматира безопасно.</entry>
<entry lang="bg" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">Избраното несистемно устройство съдържа дялове.\n\nКриптирани VeraCrypt томове-устройства могат да бъдат създадени в устройства които не съдържат никакви дялове (включително хард дискове и solid-state устройства). Устройство, което съдържа дялове може да бъде цялостно криптирано на място (използвайки само един главен ключ) само ако това е устройството, където е инсталиран Windows и откъдето се зарежда.\n\nАко искате да криптирате избраното несистемно устройство използвайки само един главен ключ, най-напред ще трябва да премахнете всички дялове от устройството за да позволите на VeraCrypt да го форматира безопасно (форматирането на устройство, което съдържа дялове може да причини нестабилност на системата и/или повреда на данните). Алтернативата е да криптирате всеки дял на устройството по отделно (всеки дял ще бъде криптиран с различен главен ключ).\n\nЗабележка: Ако искате да премахнете всички дялове от GPT диск, може би ще трябва да го конвертирате в MBR диск (с помощта на Computer Management инструмента например) за да премахнете скрити дялове.</entry>
@@ -590,7 +588,7 @@
<entry lang="bg" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">Грешка: Файловете, които копирахте на външния том заемат твърде много място. Поради това на външния том няма достатъчно свободно място за скрития том.\n\nЗабележете, че скритият том трябва да бъде голям колкото системния дял (дяла където е инсталирана текущо стартираната операционна система). Причината е, че скритата операционна система трябва да бъде създадена чрез копиране на съдържанието от системния дял върху скрития том.\n\n\nПроцесът на създаване на скритата операционна система не може да продължи.</entry>
<entry lang="bg" key="OPENFILES_DRIVER">Драйвера не може да демонтира тома. Някои файлове разположени върху тома най-вероятно са все още отворени.</entry>
<entry lang="bg" key="OPENFILES_LOCK">Не е възможно да се заключи тома. Все още на тома има отворени файлове. За това тома не може да бъде демонтиран.</entry>
<entry lang="bg" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt не може да заключи тома, тъй като се използва от системата или от някое приложение (може да има отворени файлове на тома).\n\nЖелаете ли да демонтирате тома принудително?</entry>
<entry lang="bg" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt не може да заключи тома, тъй като се използва от системата или от някое приложение (може да има отворени файлове на тома).\n\nЖелаете ли да демонтирате тома принудително?</entry>
<entry lang="bg" key="OPEN_VOL_TITLE">Изберете VeraCrypt том</entry>
<entry lang="bg" key="OPEN_TITLE">Задайте път и файлово име</entry>
<entry lang="bg" key="SELECT_PKCS11_MODULE">Избор на PKCS #11 библиотека</entry>
@@ -613,7 +611,7 @@
<entry lang="en" key="FAVORITE_PIM_CHANGED">This volume is registered as a System Favorite and its PIM was changed.\nDo you want VeraCrypt to automatically update the System Favorite configuration (administrator privileges required)?\n\nPlease note that if you answer no, you'll have to update the System Favorite manually.</entry>
<entry lang="bg" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">ВАЖНО: Ако не сте унищожили вашия VeraCrypt Спасителен Диск, вашият системен дял/устойство все още може да бъде декриптиран с помощта на старата парола (като стартирате от VeraCrypt Спасителния Диск и въведете старата парола). Би трябвало да създадете нов VeraCrypt Спасителен Диск и след това да унищожите стария.\n\nЖелаете ли да създадете нов VeraCrypt Спасителен Диск?</entry>
<entry lang="bg" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">Обърнете внимание на това, че вашият VeraCrypt Спасителен Диск все още използва предишният алгоритъм. Ако смятате, че предишният алгоритъм е несигурен, би трябвало да създадете нов VeraCrypt Спасителен Диск и след това да унищожите стария.\n\nЖелаете ли да създадете нов VeraCrypt Спасителен Диск?</entry>
<entry lang="en" key="KEYFILES_NOTE">Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="en" key="KEYFILES_NOTE">Any kind of file (for example, .mp3, .jpg, .zip, .avi) may be used as a VeraCrypt keyfile. Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="bg" key="KEYFILE_CHANGED">Ключ-файла(овете) е добавен/премахнат успешно.</entry>
<entry lang="bg" key="KEYFILE_EXPORTED">Ключ-файла е експортиран.</entry>
<entry lang="bg" key="PKCS5_PRF_CHANGED">Алгоритъмът за деривация на ключа на заглавната част е зададен успешно.</entry>
@@ -729,7 +727,7 @@
<entry lang="bg" key="DLL_FILES">Библиотечни модули</entry>
<entry lang="bg" key="FORMAT_NTFS_STOP">NTFS форматирането не може да продължи.</entry>
<entry lang="bg" key="CANT_MOUNT_VOLUME">Тома не може да се монтира.</entry>
<entry lang="bg" key="CANT_UNMOUNT_VOLUME">Тома не може да се демонтира.</entry>
<entry lang="bg" key="CANT_DISMOUNT_VOLUME">Тома не може да се демонтира.</entry>
<entry lang="bg" key="FORMAT_NTFS_FAILED">Windows не успя да форматира тома като NTFS.\n\nМоля, изберете друг тип файлова система (ако е възможно) и опитайте отново. Също така, можете да оставите тома неформатиран (изберете 'None' за файлова система), излезте от този помощник, монтирайте тома, и тогава използвайте или системен инструмент или инструмент от "трета страна" за да форматирате монтирания том (тома ще остане криптиран).</entry>
<entry lang="bg" key="FORMAT_NTFS_FAILED_ASK_FAT">Windows не успя да форматира тома като NTFS.\n\nЖелаете ли вместо това да форматирате тома като FAT?</entry>
<entry lang="bg" key="DEFAULT">По подразбиране</entry>
@@ -771,7 +769,7 @@
<entry lang="bg" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">VeraCrypt не може да криптира дяла поради грешка. Моля, опитайте да разрешите всички проблеми появили се до момента и опитайте отново. Ако проблемът не се реши, следните стъпки може да помогнат.</entry>
<entry lang="bg" key="INPLACE_ENC_GENERIC_ERR_RESUME">VeraCrypt не може да продължи процеса на криптиране на дяла поради грешка.\n\nМоля, опитайте да разрешите всички проблеми появили се до момента и опитайте отново. Имайте предвид, че томът не може да бъде монтиран докато не е криптиран напълно.</entry>
<entry lang="en" key="INPLACE_DEC_GENERIC_ERR">An error prevented VeraCrypt from decrypting the volume. Please try fixing any previously reported problems and then try again if possible.</entry>
<entry lang="bg" key="CANT_UNMOUNT_OUTER_VOL">Грешка: Външният том не може да бъде демонтиран!\n\nТом не може да бъде демонтиран, ако съдържа файлове или директории, които се използват от приложение или от системата.\n\nМоля, затворете всяка програма, която би могла да използва файлове или директории на тома и натиснете Опитай пак.</entry>
<entry lang="bg" key="CANT_DISMOUNT_OUTER_VOL">Грешка: Външният том не може да бъде демонтиран!\n\nТом не може да бъде демонтиран, ако съдържа файлове или директории, които се използват от приложение или от системата.\n\nМоля, затворете всяка програма, която би могла да използва файлове или директории на тома и натиснете Опитай пак.</entry>
<entry lang="bg" key="CANT_GET_OUTER_VOL_INFO">Грешка: Не може да се получи информация за външния том! Създаването на том не може да продължи.</entry>
<entry lang="bg" key="CANT_ACCESS_OUTER_VOL">Грешка: Външният том не може да бъде достъпен! Създаването на том не може да продължи.</entry>
<entry lang="bg" key="CANT_MOUNT_OUTER_VOL">Грешка: Външният том не може да бъде монтиран! Създаването на том не може да продължи.</entry>
@@ -813,7 +811,7 @@
<entry lang="bg" key="SECONDARY_KEY_SIZE_LRW">Размер на tweak ключа (LRW режим)</entry>
<entry lang="bg" key="BITS">бита</entry>
<entry lang="bg" key="BLOCK_SIZE">Размер на блока</entry>
<entry lang="bg" key="KDF">KDF</entry>
<entry lang="bg" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="bg" key="PKCS5_ITERATIONS">PKCS-5 брой на повторенията</entry>
<entry lang="bg" key="VOLUME_CREATE_DATE">Томът е създаден на</entry>
<entry lang="bg" key="VOLUME_HEADER_DATE">Последна промяна на заглавната част</entry>
@@ -855,7 +853,7 @@
<entry lang="bg" key="TC_INSTALLER_IS_RUNNING">Инсталатора на VeraCrypt в момента е стартиран на тази система и подготвя или извършва инсталация или обновяване на VeraCrypt. Преди да продължите, моля изчакайте го да свърши или го затворете. Ако не можете да го затворите, моля рестартирайте вашия компютър преди да продължите.</entry>
<entry lang="bg" key="INSTALL_FAILED">Инсталацията неуспешна.</entry>
<entry lang="bg" key="UNINSTALL_FAILED">Деинсталация неуспешна.</entry>
<entry lang="bg" key="DIST_PACKAGE_CORRUPTED">Този пакет за дистрибуция е повреден. Моля, опитайте да го изтеглите отново (за предпочитане от официалния уебсайт на VeraCrypt - https://veracrypt.jp).</entry>
<entry lang="bg" key="DIST_PACKAGE_CORRUPTED">Този пакет за дистрибуция е повреден. Моля, опитайте да го изтеглите отново (за предпочитане от официалния уебсайт на VeraCrypt - https://www.veracrypt.fr).</entry>
<entry lang="bg" key="CANNOT_WRITE_FILE_X">Не може да се запише файл %s</entry>
<entry lang="bg" key="EXTRACTING_VERB">Извличане</entry>
<entry lang="bg" key="CANNOT_READ_FROM_PACKAGE">Не може да се чете от пакета.</entry>
@@ -882,7 +880,7 @@
<entry lang="bg" key="INSTALL_COMPLETED">Инсталацията е изпълнена.</entry>
<entry lang="bg" key="CANT_CREATE_FOLDER">Директория '%s' не може да бъде създадена</entry>
<entry lang="bg" key="CLOSE_TC_FIRST">VeraCrypt драйвера не може да бъде спрян.\n\nМоля, най-напред затворете всички отворени VeraCrypt процорци. Ако това не помага, моля рестартирайте Windows и опитайте отново.</entry>
<entry lang="bg" key="UNMOUNT_ALL_FIRST">Всички VeraCrypt томове трябва да бъдат демонтирани преди инсталиране или деинсталиране на VeraCrypt.</entry>
<entry lang="bg" key="DISMOUNT_ALL_FIRST">Всички VeraCrypt томове трябва да бъдат демонтирани преди инсталиране или деинсталиране на VeraCrypt.</entry>
<entry lang="en" key="UNINSTALL_OLD_VERSION_FIRST">An obsolete version of VeraCrypt is currently installed on this system. It needs to be uninstalled before you can install this new version of VeraCrypt.\n\nAs soon as you close this message box, the uninstaller of the old version will be launched. Note that no volume will be decrypted when you uninstall VeraCrypt. After you uninstall the old version of VeraCrypt, run the installer of the new version of VeraCrypt again.</entry>
<entry lang="bg" key="REG_INSTALL_FAILED">Неуспешно инсталиране на записите в регистрите</entry>
<entry lang="bg" key="DRIVER_INSTALL_FAILED">Неуспешно инсталиране на VeraCrypt драйвера. Моля, рестартирайте Windows и след това опитайте да инсталирате VeraCrypt отново.</entry>
@@ -903,7 +901,7 @@
<entry lang="bg" key="MINUTES">минути</entry>
<entry lang="bg" key="SECONDS">с</entry>
<entry lang="bg" key="OPEN">Отваряне</entry>
<entry lang="bg" key="UNMOUNT">Демонтиране</entry>
<entry lang="bg" key="DISMOUNT">Демонтиране</entry>
<entry lang="bg" key="SHOW_TC">Показване на VeraCrypt</entry>
<entry lang="bg" key="HIDE_TC">Скриване на VeraCrypt</entry>
<entry lang="bg" key="TOTAL_DATA_READ">Данни прочетени след монтирането</entry>
@@ -940,7 +938,7 @@
<entry lang="bg" key="ENTER_HEADER_BACKUP_PASSWORD">Въведете парола за заглавната част съхранена в бекъп файл</entry>
<entry lang="bg" key="KEYFILE_CREATED">Ключ-файла е създаден успешно.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_NUMBER">The number of keyfiles you supplied is invalid.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be at least 64 bytes.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be comprized between 64 and 1048576 bytes.</entry>
<entry lang="en" key="KEYFILE_EMPTY_BASE_NAME">Please enter a name for the keyfile(s) to be generated</entry>
<entry lang="en" key="KEYFILE_INVALID_BASE_NAME">The base name of the keyfile(s) is invalid</entry>
<entry lang="en" key="KEYFILE_ALREADY_EXISTS">The keyfile '%s' already exists.\nDo you want to overwrite it? The generation process will be stopped if you answer No.</entry>
@@ -975,7 +973,7 @@
<entry lang="en" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - System Favorite Volumes</entry>
<entry lang="en" key="SYS_FAVORITES_HELP_LINK">What are system favorite volumes?</entry>
<entry lang="en" key="SYS_FAVORITES_REQUIRE_PBA">The system partition/drive does not appear to be encrypted.\n\nSystem favorite volumes can be mounted using only a pre-boot authentication password. Therefore, to enable use of system favorite volumes, you need to encrypt the system partition/drive first.</entry>
<entry lang="bg" key="UNMOUNT_FIRST">Моля демонтирайте тома преди да продължите.</entry>
<entry lang="bg" key="DISMOUNT_FIRST">Моля демонтирайте тома преди да продължите.</entry>
<entry lang="bg" key="CANNOT_SET_TIMER">Грешка: Не може да се настрои таймер.</entry>
<entry lang="bg" key="IDPM_CHECK_FILESYS">Проверка на файловата система</entry>
<entry lang="bg" key="IDPM_REPAIR_FILESYS">Поправка на файловата система</entry>
@@ -1009,11 +1007,11 @@
<entry lang="bg" key="NO_SYSENC_PARTITION_SELECTED">Не е избран дял.\n\nНатиснете 'Устройство' за да изберете демонтиран дял, който нормално изисква pre-boot автентикация (например, дял разположен върху криптираното системно устройство на друга операционна система, която не е стартирана, или криптирания системен дял на друга операционна система).\n\nЗабележка: Избраният дял ще бъде монтиран като обикновен VeraCrypt том без pre-boot автентикация. Това е полезно, например при архивиране (backup) или операции за поправка.</entry>
<entry lang="bg" key="CONFIRM_SAVE_DEFAULT_KEYFILES">ВНИМАНИЕ: Ако ключ-файлове по подразбиране са настроени и разрешени, томове които не използват тези ключ-файлове няма да могат да се монтират. По тази причина, след като разрешите ключ-файлове по подразбиране, имайте предвид да махнете отметката 'Ключ-файлове' (под полето за въвеждане на парола) когато монтирате такива томове.\n\nСигурни ли сте, че желаете да запазите избраните ключ-файлове/пътищата като такива по подразбиране?</entry>
<entry lang="bg" key="HK_AUTOMOUNT_DEVICES">Авто-монтиране на устройствата</entry>
<entry lang="bg" key="HK_UNMOUNT_ALL">Демонтиране на всички</entry>
<entry lang="bg" key="HK_DISMOUNT_ALL">Демонтиране на всички</entry>
<entry lang="bg" key="HK_WIPE_CACHE">Изчистване на кеша</entry>
<entry lang="bg" key="HK_UNMOUNT_ALL_AND_WIPE">Демонтиране на всички &amp; Заличаване на кеша</entry>
<entry lang="bg" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Принудително демонтиране на всички &amp; Заличаване на кеша</entry>
<entry lang="bg" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Принудително демонтиране на всички, Заличаване на кеша &amp; Изход</entry>
<entry lang="bg" key="HK_DISMOUNT_ALL_AND_WIPE">Демонтиране на всички &amp; Заличаване на кеша</entry>
<entry lang="bg" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Принудително демонтиране на всички &amp; Заличаване на кеша</entry>
<entry lang="bg" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Принудително демонтиране на всички, Заличаване на кеша &amp; Изход</entry>
<entry lang="bg" key="HK_MOUNT_FAVORITE_VOLUMES">Монтиране на любимите томове</entry>
<entry lang="bg" key="HK_SHOW_HIDE_MAIN_WINDOW">Показване/Скриване на главния прозорец на VeraCrypt</entry>
<entry lang="bg" key="PRESS_A_KEY_TO_ASSIGN">(Кликнете тук и натиснете клавиш)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="en" key="PAGING_FILE_CREATION_PREVENTED">Paging file creation has been prevented.\n\nPlease note that, due to Windows issues, paging files cannot be located on non-system VeraCrypt volumes (including system favorite volumes). VeraCrypt supports creation of paging files only on an encrypted system partition/drive.</entry>
<entry lang="bg" key="SYS_ENC_HIBERNATION_PREVENTED">Грешка или несъвместимост пречат на VeraCrypt да криптира хибернационния файл. Затова хибернацията е изключена.\n\nЗабележка: Когато компютър премине в режим на хибернация (или енергоспестяващ режим), съдържанието на системната памет се записва в хибернационен файл намиращ се на системното устройство. VeraCrypt няма да може да предотврати некриптиран запис в хибернационния файл на ключове за криптиране и съдържанието на важни файлове отворени в RAM паметта.</entry>
<entry lang="en" key="HIDDEN_OS_HIBERNATION_PREVENTED">Hibernation has been prevented.\n\nVeraCrypt does not support hibernation on hidden operating systems that use an extra boot partition. Please note that the boot partition is shared by both the decoy and the hidden system. Therefore, in order to prevent data leaks and problems while resuming from hibernation, VeraCrypt has to prevent the hidden system from writing to the shared boot partition and from hibernating.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">VeraCrypt volume mounted as %c: has been unmounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt volumes have been unmounted.</entry>
<entry lang="en" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt volumes have been unmounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_UNMOUNTED">Successfully unmounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="bg" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">ВНИМАНИЕ: Ако изключите тази опция, томовете съдържащи отворени файлове/директории няма да могат да бъдат авто-демонтирани.\n\nСигурни ли сте, че желаете да изключите тази опция?</entry>
<entry lang="bg" key="WARN_PREF_AUTO_UNMOUNT">ВНИМАНИЕ: Томове съдържащи отворени файлове/директории НЯМА да бъдат авто-демонтирани.\n\nЗа да предотвратите това, включете следните опции в този диалогов прозорец: 'Принудително авто-демонтиране дори ако тома съдържа отворени файлове или директории'</entry>
<entry lang="bg" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">ВНИМАНИЕ: При силно изтощена батерията на лаптоп, Windows може да не успее да изпрати съответните съобщения до работещите програми когато компютъра преминава в енергоспестяващ режим. В такъв случай VeraCrypt може да не успее да демонтира томовете.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">VeraCrypt volume mounted as %c: has been dismounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt volumes have been dismounted.</entry>
<entry lang="en" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt volumes have been dismounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_DISMOUNTED">Successfully dismounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="bg" key="CONFIRM_NO_FORCED_AUTODISMOUNT">ВНИМАНИЕ: Ако изключите тази опция, томовете съдържащи отворени файлове/директории няма да могат да бъдат авто-демонтирани.\n\nСигурни ли сте, че желаете да изключите тази опция?</entry>
<entry lang="bg" key="WARN_PREF_AUTO_DISMOUNT">ВНИМАНИЕ: Томове съдържащи отворени файлове/директории НЯМА да бъдат авто-демонтирани.\n\nЗа да предотвратите това, включете следните опции в този диалогов прозорец: 'Принудително авто-демонтиране дори ако тома съдържа отворени файлове или директории'</entry>
<entry lang="bg" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">ВНИМАНИЕ: При силно изтощена батерията на лаптоп, Windows може да не успее да изпрати съответните съобщения до работещите програми когато компютъра преминава в енергоспестяващ режим. В такъв случай VeraCrypt може да не успее да демонтира томовете.</entry>
<entry lang="bg" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Задали сте процес на криптиране на дял/устройство. Процеса все още не е приключил.\n\nЖелаете ли да продължите процеса сега?</entry>
<entry lang="bg" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">Били сте задали процес на криптиране или декриптиране на системният дял/устройство. Процесът все още не е бил завършен.\n\nЖелаете ли да стартирате (продължите) процеса сега?</entry>
<entry lang="bg" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">Желаете ли да ви бъде напомняно дали желаете да продължите текущо зададен процес на криптиране на несистемни дялове/томове?</entry>
@@ -1040,7 +1038,7 @@
<entry lang="bg" key="DO_NOT_PROMPT_ME">Не, не желая да ми се напомня</entry>
<entry lang="bg" key="NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL_NOTE">ВАЖНО: Помнете, че можете да продължите процеса на криптиране на който да било несистемен дял/том като изберете 'Томове' &gt; 'Продължаване на прекъснат процес' от менюто на главния прозорец на VeraCrypt.</entry>
<entry lang="bg" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">Били сте задали процес на криптиране или декриптиране на системният дял/устройство. Както и да е, pre-boot автентикацията е неуспешна (или е била подмината).\n\nЗабележка: Ако сте декриптирали системния дял/устройство в pre-boot средата, може да трябва да завършите процеса като изберете 'Система' &gt; 'Декриптиране на системния дял/устройство за постоянно' от менюто на главния прозорец на VeraCrypt.</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="bg" key="CONFIRM_EXIT_UNIVERSAL">Изход?</entry>
<entry lang="bg" key="CHOOSE_ENCRYPT_OR_DECRYPT">VeraCrypt няма достатъчно информация за да реши дали да криптира или декриптира.</entry>
<entry lang="bg" key="CHOOSE_ENCRYPT_OR_DECRYPT_FINALIZE_DECRYPT_NOTE">VeraCrypt няма достатъчно информация за да реши дали да криптира или декриптира.\n\nЗабележка: Ако сте декриптирали системния дял/устройство в pre-boot средата, може да трябва да завършите процеса като изберете Декриптиране.</entry>
@@ -1063,7 +1061,7 @@
<entry lang="bg" key="SYS_AUTOMOUNT_DISABLED">Вашата система не е конфигурирана за авто-монтиране на нови томове. Може да е невъзможно да се монтира VeraCrypt том, който е устройство. Авто-монтирането може да се разреши като се изпълни следната команда и се рестартира системата.\n\nmountvol.exe /E</entry>
<entry lang="bg" key="SYS_ASSIGN_DRIVE_LETTER">Моля, задайте буква за дяла/устройството преди да продължите ('Control Panel' &gt; 'System and Maintenance' &gt; 'Administrative Tools' - 'Create and format hard disk partitions').\n\nЗабележете, че това е изискване на операционната система.</entry>
<entry lang="bg" key="MOUNT_TC_VOLUME">Монтиране на VeraCrypt том</entry>
<entry lang="bg" key="UNMOUNT_ALL_TC_VOLUMES">Демонтиране на всички VeraCrypt томове</entry>
<entry lang="bg" key="DISMOUNT_ALL_TC_VOLUMES">Демонтиране на всички VeraCrypt томове</entry>
<entry lang="bg" key="UAC_INIT_ERROR">VeraCrypt не успява да получи администрароски права.</entry>
<entry lang="bg" key="ERR_ACCESS_DENIED">Достъпът е отказан от операционната система.\n\nВероятна причина: Операционната система изисква да имате права за четене/запис (или администраторски права) за конкретни директории, файлове, и устройства, за да ви бъде разрешено да четете и записвате данни от/в тях. Нормално, на потребител без администраторски права му е разрешено да създава, чете и променя файлове в неговата Documents директория.</entry>
<entry lang="en" key="SECTOR_SIZE_UNSUPPORTED">Error: The drive uses an unsupported sector size.\n\nIt is currently not possible to create partition/device-hosted volumes on drives that use sectors larger than 4096 bytes. However, note that you can create file-hosted volumes (containers) on such drives.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="en" key="HIDDEN_OS_CREATION_PREINFO_HELP">In the next steps, VeraCrypt will create the hidden operating system by copying the content of the system partition to the hidden volume (data being copied will be encrypted on the fly with an encryption key different from the one that will be used for the decoy operating system).\n\nPlease note that the process will be performed in the pre-boot environment (before Windows starts) and it may take a long time to complete; several hours or even several days (depending on the size of the system partition and on the performance of your computer).\n\nYou will be able to interrupt the process, shut down your computer, start the operating system and then resume the process. However, if you interrupt it, the entire process of copying the system will have to start from the beginning (because the content of the system partition must not change during cloning).</entry>
<entry lang="en" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">Do you want to cancel the entire process of creation of the hidden operating system?\n\nNote: You will NOT be able to resume the process if you cancel it now.</entry>
<entry lang="bg" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">Желаете ли да прекратите предварителният тест на системното криптиране?</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="bg" key="SYS_DRIVE_NOT_ENCRYPTED">Изглежда, че системният дял/устройство не е криптиран (нито частично, нито изцяло).</entry>
<entry lang="bg" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">Вашият системен дял/устройство е криптиран (частично или изцяло).\n\nМоля, декриптирайте вашият системен дял/устройство изцяло преди да продължите. За да направите това, изберете 'Система' &gt; 'Декриптиране на системния дял/устройство за постоянно' от менюто на гавния процорез на VeraCrypt.</entry>
<entry lang="en" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">When the system partition/drive is encrypted (partially or fully), you cannot downgrade VeraCrypt (but you can upgrade it or reinstall the same version).</entry>
@@ -1285,17 +1283,17 @@
<entry lang="en" key="TOKEN_DATA_OBJECT_LABEL">File name</entry>
<entry lang="en" key="BOOT_PASSWORD_CACHE_KEYBOARD_WARNING">IMPORTANT: Please note that pre-boot authentication passwords are always typed using the standard US keyboard layout. Therefore, a volume that uses a password typed using any other keyboard layout may be impossible to mount using a pre-boot authentication password (note that this is not a bug in VeraCrypt). To allow such a volume to be mounted using a pre-boot authentication password, follow these steps:\n\n1) Click 'Select File' or 'Select Device' and select the volume.\n2) Select 'Volumes' &gt; 'Change Volume Password'.\n3) Enter the current password for the volume.\n4) Change the keyboard layout to English (US) by clicking the Language bar icon in the Windows taskbar and selecting 'EN English (United States)'.\n5) In VeraCrypt, in the field for the new password, type the pre-boot authentication password.\n6) Confirm the new password by retyping it in the confirmation field and click 'OK'.\nWARNING: Please keep in mind that if you follow these steps, the volume password will always have to be typed using the US keyboard layout (which is automatically ensured only in the pre-boot environment).</entry>
<entry lang="en" key="SYS_FAVORITES_KEYBOARD_WARNING">System favorite volumes will be mounted using the pre-boot authentication password. If any system favorite volume uses a different password, it will not be mounted.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Unmount All', auto-unmount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and unmount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be unmounted. Therefore, if you need e.g. to unmount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Unmount All' function, 'Auto-Unmount' functions, 'Unmount All' hot keys, etc.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Dismount All', auto-dismount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and dismount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be dismounted. Therefore, if you need e.g. to dismount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Dismount All' function, 'Auto-Dismount' functions, 'Dismount All' hot keys, etc.</entry>
<entry lang="en" key="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry>
<entry lang="en" key="COMMAND_LINE_ERROR">Error while parsing command line.</entry>
<entry lang="bg" key="RESCUE_DISK">Спасителен Диск</entry>
<entry lang="en" key="SELECT_FILE_AND_MOUNT">Select &amp;File and Mount...</entry>
<entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &amp;Device and Mount...</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and dismount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="MOUNT_SYSTEM_FAVORITES_ON_BOOT">Mount system favorite volumes when Windows starts (in the initial phase of the startup procedure)</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly unmounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always unmount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly unmounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly dismounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always dismount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly dismounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="FILESYS_REPAIR_CONFIRM_BACKUP">Warning: Repairing a damaged filesystem using the Microsoft 'chkdsk' tool might cause loss of files in damaged areas. Therefore, it is recommended that you first back up the files stored on the VeraCrypt volume to another, healthy, VeraCrypt volume.\n\nDo you want to repair the filesystem now?</entry>
<entry lang="en" key="MOUNTED_CONTAINER_FORCED_READ_ONLY">Volume '%s' has been mounted as read-only because write access was denied.\n\nPlease make sure the security permissions of the file container allow you to write to it (right-click the container and select Properties &gt; Security).\n\nNote that, due to a Windows issue, you may see this warning even after setting the appropriate security permissions. This is not caused by a bug in VeraCrypt. A possible solution is to move your container to, e.g., your 'Documents' folder.\n\nIf you intend to keep your volume read-only, set the read-only attribute of the container (right-click the container and select Properties &gt; Read-only), which will suppress this warning.</entry>
<entry lang="en" key="MOUNTED_DEVICE_FORCED_READ_ONLY">Volume '%s' had to be mounted as read-only because write access was denied.\n\nPlease make sure no other application (e.g. antivirus software) is accessing the partition/device on which the volume is hosted.</entry>
@@ -1306,8 +1304,8 @@
<entry lang="en" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Note that the number of threads is currently limited, which will affect benchmark results (worse performance).\n\nTo utilize the full potential of the processor(s), select 'Settings' &gt; 'Performance' and disable the corresponding option.</entry>
<entry lang="en" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">Do you want VeraCrypt to attempt to disable write protection of the partition/drive?</entry>
<entry lang="en" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">WARNING: This setting may degrade performance.\n\nAre you sure you want to use this setting?</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-unmounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always unmount the volume in VeraCrypt first.\n\nUnexpected spontaneous unmount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-dismounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always dismount the volume in VeraCrypt first.\n\nUnexpected spontaneous dismount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="UNSUPPORTED_TRUECRYPT_FORMAT">This volume was created with TrueCrypt %x.%x but VeraCrypt supports only TrueCrypt volumes created with TrueCrypt 6.x/7.x series</entry>
<entry lang="bg" key="TEST">Тест</entry>
<entry lang="bg" key="KEYFILE">Ключ-файл (КФ)</entry>
@@ -1453,7 +1451,7 @@
<entry lang="en" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Add All Mounted Volumes to Favorites...</entry>
<entry lang="en" key="TASKICON_PREF_MENU_ITEMS">Task Icon Menu Items</entry>
<entry lang="en" key="TASKICON_PREF_OPEN_VOL">Open Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_DISMOUNT_VOL">Dismount Mounted Volumes</entry>
<entry lang="en" key="DISK_FREE">Free space available: {0}</entry>
<entry lang="en" key="VOLUME_SIZE_HELP">Please specify the size of the container to create. Note that the minimum possible size of a volume is 292 KiB.</entry>
<entry lang="en" key="LINUX_CONFIRM_INNER_VOLUME_CALC">WARNING: You have selected a filesystem other than FAT for the outer volume.\nPlease Note that in this case VeraCrypt can't calculate the exact maximum allowed size for the hidden volume and it will use only an estimation that can be wrong.\nThus, it is your responsibility to use an adequate value for the size of the hidden volume so that it does not overlap the outer volume.\n\nDo you want to continue using the selected filesystem for the outer volume?</entry>
@@ -1483,14 +1481,14 @@
<entry lang="en" key="LINUX_DO_NOT_MOUNT">Do &amp;not mount</entry>
<entry lang="en" key="LINUX_MOUNT_AT_DIR">Mount at directory:</entry>
<entry lang="en" key="LINUX_SELECT">Se&amp;lect...</entry>
<entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount All Volumes When</entry>
<entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry>
<entry lang="en" key="LINUX_ENTERING_POWERSAVING">System is entering power saving mode</entry>
<entry lang="en" key="LINUX_LOGIN_ACTION">Actions to Perform when User Logs On</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Close all Explorer windows of volume being dismounted</entry>
<entry lang="en" key="LINUX_HOTKEYS">Hotkeys</entry>
<entry lang="en" key="LINUX_SYSTEM_HOTKEYS">System-Wide Hotkeys</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/unmount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_UNMOUNT">Display confirmation message box after unmount</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/dismount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_DISMOUNT">Display confirmation message box after dismount</entry>
<entry lang="en" key="LINUX_VC_QUITS">VeraCrypt quits</entry>
<entry lang="en" key="LINUX_OPEN_FINDER">Open Finder window for successfully mounted volume</entry>
<entry lang="en" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Please note that this setting takes effect only if use of the kernel cryptographic services is disabled.</entry>
@@ -1510,11 +1508,11 @@
<entry lang="en" key="LINUX_DYNAMIC_NOTICE">Please note that if your operating system does not allocate files from the beginning of the free space, the maximum possible hidden volume size may be much smaller than the size of the free space on the outer volume. This is not a bug in VeraCrypt but a limitation of the operating system.</entry>
<entry lang="en" key="LINUX_MAX_HIDDEN_SIZE">Maximum possible hidden volume size for this volume is {0}.</entry>
<entry lang="en" key="LINUX_OPEN_OUTER_VOL">Open Outer Volume</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not unmount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not dismount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">Error: You are trying to encrypt a system drive.\n\nVeraCrypt can encrypt a system drive only under Windows.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">Error: You are trying to encrypt a system partition.\n\nVeraCrypt can encrypt system partitions only under Windows.</entry>
<entry lang="en" key="LINUX_WARNING_FORMAT_DESTROY_FS">WARNING: Formatting of the device will destroy all data on filesystem '{0}'.\n\nDo you want to continue?</entry>
<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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please dismount '{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>
@@ -1522,8 +1520,7 @@
<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>
<entry lang="en" key="LINUX_VOL_DISMOUNTED">Volume {0} has been dismounted.</entry>
<entry lang="en" key="LINUX_OOM">Out of memory.</entry>
<entry lang="en" key="LINUX_CANT_GET_ADMIN_PRIV">Failed to obtain administrator privileges</entry>
<entry lang="en" key="LINUX_COMMAND_GET_ERROR">Command {0} returned error {1}.</entry>
@@ -1553,7 +1550,7 @@
<entry lang="en" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Error: The drive uses a sector size other than 512 bytes.\n\nDue to limitations of components available on your platform, partition/device-hosted volumes cannot be created/used on the drive.\n\nPossible solutions:\n- Create a file-hosted volume (container) on the drive.\n- Use a drive with 512-byte sectors.\n- Use VeraCrypt on another platform.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">The host file/device is already in use.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Volume slot unavailable.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires macFUSE 2.5 or above.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires OSXFUSE 2.5 or above.</entry>
<entry lang="en" key="EXCEPTION_OCCURRED">Exception occurred</entry>
<entry lang="en" key="ENTER_PASSWORD">Enter password</entry>
<entry lang="en" key="ENTER_TC_VOL_PASSWORD">Enter VeraCrypt Volume Password</entry>
@@ -1570,124 +1567,6 @@
<entry lang="en" key="VOLUME_HOST_IN_USE">WARNING: The host file/device {0} is already in use!\n\nIgnoring this can cause undesired results including system instability. All applications that might be using the host file/device should be closed before mounting the volume.\n\nContinue mounting?</entry>
<entry lang="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
<entry lang="en" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">VeraCrypt cannot be upgraded because the system partition/drive was encrypted using an algorithm that is not supported anymore.\nPlease decrypt your system before upgrading VeraCrypt and then encrypt it again.</entry>
<entry lang="en" key="LINUX_EX2MSG_TERMINALNOTFOUND">Supported terminal application could not be found, you need either xterm, konsole or gnome-terminal (with dbus-x11).</entry>
<entry lang="en" key="IDM_MOUNT_NO_CACHE">Mount Without Cache</entry>
<entry lang="en" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nExpand a VeraCrypt volume on the fly without reformatting\n\n\nAll kind of volumes (container files, disks and partitions) formatted with NTFS are supported. The only condition is that there must be enough free space on the host drive or host device of the VeraCrypt volume.\n\nDo not use this software to expand an outer volume containing a hidden volume, because this destroys the hidden volume!\n</entry>
<entry lang="en" key="IDC_STEPSEXPAND">1. Select the VeraCrypt volume to be expanded\n2. Click the 'Mount' button</entry>
<entry lang="en" key="IDT_VOL_NAME">Volume: </entry>
<entry lang="en" key="IDT_FILE_SYS">File system: </entry>
<entry lang="en" key="IDT_CURRENT_SIZE">Current size: </entry>
<entry lang="en" key="IDT_NEW_SIZE">New size: </entry>
<entry lang="en" key="IDT_NEW_SIZE_BOX_TITLE">Enter new volume size</entry>
<entry lang="en" key="IDC_INIT_NEWSPACE">Fill new space with random data</entry>
<entry lang="en" key="IDC_QUICKEXPAND">Quick Expand</entry>
<entry lang="en" key="IDT_INIT_SPACE">Fill new space: </entry>
<entry lang="en" key="EXPANDER_FREE_SPACE">%s free space available on host drive</entry>
<entry lang="en" key="EXPANDER_HELP_DEVICE">This is a device-based VeraCrypt volume.\n\nThe new volume size will be choosen automatically as the size of the host device.</entry>
<entry lang="en" key="EXPANDER_HELP_FILE">Please specify the new size of the VeraCrypt volume (must be at least %I64u KB larger than the current size).</entry>
<entry lang="en" key="QUICK_EXPAND_WARNING">WARNING: You should use Quick Expand only in the following cases:\n\n1) The device where the file container is located contains no sensitive data and you do not need plausible deniability.\n2) The device where the file container is located has already been securely and fully encrypted.\n\nAre you sure you want to use Quick Expand?</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT">IMPORTANT: Move your mouse as randomly as possible within this window. The longer you move it, the better. This significantly increases the cryptographic strength of the encryption keys. Then click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT_LEGACY">Click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_FINISH_ERROR">Error: volume expansion failed.</entry>
<entry lang="en" key="EXPANDER_FINISH_ABORT">Error: operation aborted by user.</entry>
<entry lang="en" key="EXPANDER_FINISH_OK">Finished. Volume successfully expanded.</entry>
<entry lang="en" key="EXPANDER_CANCEL_WARNING">Warning: Volume expansion is in progress!\n\nStopping now may result in a damaged volume.\n\nDo you really want to cancel?</entry>
<entry lang="en" key="EXPANDER_STARTING_STATUS">Starting volume expansion ...\n</entry>
<entry lang="en" key="EXPANDER_HIDDEN_VOLUME_ERROR">An outer volume containing a hidden volume can't be expanded, because this destroys the hidden volume.\n</entry>
<entry lang="en" key="EXPANDER_SYSTEM_VOLUME_ERROR">A VeraCrypt system volume can't be expanded.</entry>
<entry lang="en" key="EXPANDER_NO_FREE_SPACE">Not enough free space to expand the volume</entry>
<entry lang="en" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Warning: The container file is larger than the VeraCrypt volume area. The data after the VeraCrypt volume area will be overwritten.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_FAT">Warning: The VeraCrypt volume contains a FAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_EXFAT">Warning: The VeraCrypt volume contains an exFAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_UNKNOWN_FS">Warning: The VeraCrypt volume contains an unknown or no file system!\n\nOnly the VeraCrypt volume itself will be expanded, the file system remains unchanged.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">New volume size too small, must be at least %I64u kB larger than the current size.</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">New volume size too large, not enough space on host drive.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Maximum file size of %I64u MB on host drive exceeded.</entry>
<entry lang="en" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Error: Failed to get necessary privileges to enable Quick Expand!\nPlease uncheck Quick Expand option and try again.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Maximum VeraCrypt volume size of %I64u TB exceeded!\n</entry>
<entry lang="en" key="FULL_FORMAT">Full Format</entry>
<entry lang="en" key="FAST_CREATE">Fast Create</entry>
<entry lang="en" key="WARN_FAST_CREATE">WARNING: You should use Fast Create only in the following cases:\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 Fast Create?</entry>
<entry lang="en" key="IDC_ENABLE_EMV_SUPPORT">Enable EMV Support</entry>
<entry lang="en" key="COMMAND_APDU_INVALID">The APDU command sent to the card is not valid.</entry>
<entry lang="en" key="EXTENDED_APDU_UNSUPPORTED">Extended APDU commands cannot be used with the current token.</entry>
<entry lang="en" key="SCARD_MODULE_INIT_FAILED">Error when loading the WinSCard / PCSC library.</entry>
<entry lang="en" key="EMV_UNKNOWN_CARD_TYPE">The card in the reader is not a supported EMV card.</entry>
<entry lang="en" key="EMV_SELECT_AID_FAILED">The AID of the card in the reader could not be selected.</entry>
<entry lang="en" key="EMV_ICC_CERT_NOTFOUND">ICC Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_ISSUER_CERT_NOTFOUND">Issuer Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_CPLC_NOTFOUND">CPLC was not found in the EMV card.</entry>
<entry lang="en" key="EMV_PAN_NOTFOUND">No Primary Account Number (PAN) found in the EMV card.</entry>
<entry lang="en" key="INVALID_EMV_PATH">EMV path is invalid.</entry>
<entry lang="en" key="EMV_KEYFILE_DATA_NOTFOUND">Unable to build a keyfile from the EMV card's data.\n\nOne of the following is missing:\n- ICC Public Key Certificate.\n- Issuer Public Key Certificate.\n- CPLC data.</entry>
<entry lang="en" key="SCARD_W_REMOVED_CARD">No card in the reader.\n\nPlease make sure the card is correctly slotted.</entry>
<entry lang="en" key="FORMAT_EXTERNAL_FAILED">Windows format.com command failed to format the volume as NTFS/exFAT/ReFS: Error 0x%.8X.\n\nFalling back to using Windows FormatEx API.</entry>
<entry lang="en" key="FORMATEX_API_FAILED">Windows FormatEx API failed to format the volume as NTFS/exFAT/ReFS.\n\nFailure status = %s.</entry>
<entry lang="en" key="EXPANDER_WRITING_RANDOM_DATA">Writing random data to new space ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Writing re-encrypted backup header ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Writing re-encrypted primary header ...\n</entry>
<entry lang="en" key="EXPANDER_WIPING_OLD_HEADER">Wiping old backup header ...\n</entry>
<entry lang="en" key="EXPANDER_MOUNTING_VOLUME">Mounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_UNMOUNTING_VOLUME">Unmounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_EXTENDING_FILESYSTEM">Extending file system ...\n</entry>
<entry lang="en" key="PARTIAL_SYSENC_MOUNT_READONLY">Warning: The system partition you attempted to mount was not fully encrypted. As a safety measure to prevent potential corruption or unwanted modifications, volume '%s' was mounted as read-only.</entry>
<entry lang="en" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Important information on using third-party file extensions</entry>
<entry lang="en" key="IDC_DISABLE_MEMORY_PROTECTION">Disable memory protection for Accessibility tools compatibility</entry>
<entry lang="en" key="DISABLE_MEMORY_PROTECTION_WARNING">WARNING: Disabling memory protection significantly reduces security. Enable this option ONLY if you rely on Accessibility tools, like Screen Readers, to interact with VeraCrypt's UI.</entry>
<entry lang="bg" key="LINUX_LANGUAGE">Език</entry>
<entry lang="en" key="LINUX_SELECT_SYS_DEFAULT_LANG">Select system's default language</entry>
<entry lang="en" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">For the language change to come into effect, VeraCrypt needs to be restarted.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE">WARNING: The volume's master key is vulnerable to an attack that compromises data security.\n\nPlease create a new volume and transfer the data to it.</entry>
<entry lang="en" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">WARNING: The encrypted system's master key is vulnerable to an attack that compromises data security.\nPlease decrypt the system partition/drive and then re-encrypt it.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">WARNING: The volume's master key has a security vulnerability.</entry>
<entry lang="en" key="MOUNTPOINT_BLOCKED">ERROR: The volume mount point is blocked because it overrides a protected system directory.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="MOUNTPOINT_NOTALLOWED">ERROR: The volume mount point is not allowed because it overrides a directory that is part of the PATH environment variable.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="INSECURE_MODE">[INSECURE MODE]</entry>
<entry lang="en" key="IDC_DISABLE_SCREEN_PROTECTION">Disable protection against screenshots and screen recording</entry>
<entry lang="en" key="DISABLE_SCREEN_PROTECTION_WARNING">WARNING: Disabling screen protection significantly reduces security. Enable this option ONLY if you have a specific need to capture VeraCrypt's interface. This may expose sensitive data to screenshot tools and screen recording features such as Windows 11 Recall.</entry>
<entry lang="en" key="MEMORY_COST">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="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>
<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>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+52 -173
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
@@ -135,8 +135,8 @@
<entry lang="ca" key="IDC_FAVORITE_REMOVE">&amp;Eliminar</entry>
<entry lang="en" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Use favorite label as Explorer drive label</entry>
<entry lang="ca" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Configuració global</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key dismount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key dismount</entry>
<entry lang="ca" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="en" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="ca" key="IDC_HK_MOD_SHIFT">Majúscules</entry>
@@ -156,12 +156,12 @@
<entry lang="en" key="IDC_PIM_HELP">(Empty or 0 for default iterations)</entry>
<entry lang="ca" key="IDC_PREF_BKG_TASK_ENABLE">Activat</entry>
<entry lang="ca" key="IDC_PREF_CACHE_PASSWORDS">Guardar contrasenyes al controlador</entry>
<entry lang="ca" key="IDC_PREF_UNMOUNT_INACTIVE">Desmuntar el volum automàticament quan no s'hi llegeixi/escrigui durant</entry>
<entry lang="ca" key="IDC_PREF_UNMOUNT_LOGOFF">L'usuari tanqui la sessió</entry>
<entry lang="en" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="ca" key="IDC_PREF_UNMOUNT_POWERSAVING">S'entri en el mode d'estalvi d'energia</entry>
<entry lang="ca" key="IDC_PREF_UNMOUNT_SCREENSAVER">S'activi el protector de pantalla</entry>
<entry lang="ca" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Forçar el desmuntatge automàtic encara que el volum tingui fitxers o directoris oberts</entry>
<entry lang="ca" key="IDC_PREF_DISMOUNT_INACTIVE">Desmuntar el volum automàticament quan no s'hi llegeixi/escrigui durant</entry>
<entry lang="ca" key="IDC_PREF_DISMOUNT_LOGOFF">L'usuari tanqui la sessió</entry>
<entry lang="en" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="ca" key="IDC_PREF_DISMOUNT_POWERSAVING">S'entri en el mode d'estalvi d'energia</entry>
<entry lang="ca" key="IDC_PREF_DISMOUNT_SCREENSAVER">S'activi el protector de pantalla</entry>
<entry lang="ca" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Forçar el desmuntatge automàtic encara que el volum tingui fitxers o directoris oberts</entry>
<entry lang="ca" key="IDC_PREF_LOGON_MOUNT_DEVICES">Muntar tots els volums de dispositiu</entry>
<entry lang="ca" key="IDC_PREF_LOGON_START">Engega VeraCrypt en segon pla</entry>
<entry lang="ca" key="IDC_PREF_MOUNT_READONLY">Muntar els volums en mode només lectura</entry>
@@ -169,7 +169,7 @@
<entry lang="ca" key="IDC_PREF_OPEN_EXPLORER">Obrir una finestra pels volums muntats satisfactòriament</entry>
<entry lang="en" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">Temporarily cache password during "Mount Favorite Volumes" operations</entry>
<entry lang="en" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Use a different taskbar icon when there are mounted volumes</entry>
<entry lang="ca" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Oblidar les contrasenyes guardades quan es desmunti automàticament</entry>
<entry lang="ca" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Oblidar les contrasenyes guardades quan es desmunti automàticament</entry>
<entry lang="ca" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Oblidar les contrasenyes guardades al sortir</entry>
<entry lang="ca" key="IDC_PRESERVE_TIMESTAMPS">Preservar la data i hora de modificació dels contenidors d'arxius</entry>
<entry lang="ca" key="IDC_RESET_HOTKEYS">Per defecte</entry>
@@ -269,14 +269,14 @@
<entry lang="ca" key="IDT_ACCELERATION_OPTIONS">Acceleració per maquinari</entry>
<entry lang="ca" key="IDT_ASSIGN_HOTKEY">Drecera de teclat</entry>
<entry lang="ca" key="IDT_AUTORUN">Configuració d'inici automàtic (autorun.inf)</entry>
<entry lang="ca" key="IDT_AUTO_UNMOUNT">Desmuntar automàticament</entry>
<entry lang="ca" key="IDT_AUTO_UNMOUNT_ON">Desmuntar-ho tot quan:</entry>
<entry lang="ca" key="IDT_AUTO_DISMOUNT">Desmuntar automàticament</entry>
<entry lang="ca" key="IDT_AUTO_DISMOUNT_ON">Desmuntar-ho tot quan:</entry>
<entry lang="ca" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Opcions de la pantalla de gestió d'arrencada</entry>
<entry lang="ca" key="IDT_CONFIRM_PASSWORD">Confirmació:</entry>
<entry lang="ca" key="IDT_CURRENT">Actual</entry>
<entry lang="ca" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">Mostrar aquest missatge personalitzat a la pantalla d'autenticació prearrencada (com a màxim 24 caràcters):</entry>
<entry lang="ca" key="IDT_DEFAULT_MOUNT_OPTIONS">Opcions de muntatge per defecte</entry>
<entry lang="ca" key="IDT_UNMOUNT_ACTION">Opcions de les dreceres de teclat</entry>
<entry lang="ca" key="IDT_DISMOUNT_ACTION">Opcions de les dreceres de teclat</entry>
<entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry>
<entry lang="en" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Enable extended disk control codes support</entry>
<entry lang="ca" key="IDT_FAVORITE_LABEL">Etiqueta del volum seleccionat:</entry>
@@ -291,11 +291,10 @@
<entry lang="ca" key="IDT_NEW_PASSWORD">Contrasenya:</entry>
<entry lang="ca" key="IDT_PARALLELIZATION_OPTIONS">Paral·lelització per fils</entry>
<entry lang="ca" key="IDT_PKCS11_LIB_PATH">Ubicació de la biblioteca PKCS #11</entry>
<entry lang="ca" key="IDT_KDF">KDF:</entry>
<entry lang="en" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="ca" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="en" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="ca" key="IDT_PW_CACHE_OPTIONS">Recordar contrasenyes</entry>
<entry lang="ca" key="IDT_SECURITY_OPTIONS">Opcions de seguretat</entry>
<entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry>
<entry lang="ca" key="IDT_TASKBAR_ICON">VeraCrypt en segon pla</entry>
<entry lang="ca" key="IDT_TRAVELER_MOUNT">Volum VeraCrypt a muntar (ruta relativa al directori arrel del disc):</entry>
<entry lang="ca" key="IDT_TRAVEL_INSERTION">Després d'inserir el disc de viatge: </entry>
@@ -357,7 +356,7 @@
<entry lang="ca" key="IDT_KEYFILE_WARNING">ATENCIÓ: Si perd un fitxer de claus o si canvia algun dels seus primers 1024 kilobytes, serà impossible de muntar els volums que utilitzin aquest fitxer de claus!</entry>
<entry lang="ca" key="IDT_KEY_UNIT">bits</entry>
<entry lang="en" key="IDT_NUMBER_KEYFILES">Number of keyfiles:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size (in Bytes):</entry>
<entry lang="en" key="IDT_KEYFILES_BASE_NAME">Keyfiles base name:</entry>
<entry lang="ca" key="IDT_LANGPACK_AUTHORS">Traduït per:</entry>
<entry lang="ca" key="IDT_PLAINTEXT">Mida del text pla:</entry>
@@ -390,7 +389,6 @@
<entry lang="ca" key="ADMINISTRATOR">Administrador</entry>
<entry lang="ca" key="ADMIN_PRIVILEGES_DRIVER">Per carregar el controlador VeraCrypt és necessari que entri al sistema amb un compte amb privilegis d'administrador.</entry>
<entry lang="ca" key="ADMIN_PRIVILEGES_WARN_DEVICES">Si us plau, tingui en compte que per xifrar/desxifrar/donar format a una partició/unitat és necessari que s'utilitzi un compte d'usuari amb privilegis d'administrador.\n\nAixò no s'aplica als volums de dispositiu.</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="ca" key="ADMIN_PRIVILEGES_WARN_HIDVOL">Per a crear un volum ocult és necessàri utilitzar un compte d'usuari amb privilegis d'administrador.\n\nVol continuar?</entry>
<entry lang="ca" key="ADMIN_PRIVILEGES_WARN_NTFS">Tingui en compte que per donar format NTFS a un volum és necessàri utilitzar un compte d'usuari amb privilegis d'administrador.\n\nSense privilegis d'administrador pot donar format FAT al volum.</entry>
<entry lang="ca" key="AES_HELP">Un xifrat aprovat pel FIPS (el 1998 amb el nom de Rijndael) que està autoritzat pels departaments i les agències del govern dels EUA per protegir informació classificada fins al nivell de Top Secret. Clau de 256 bits, bloc de 128 bits, 14 rondes (AES-256). Treballa en mode XTS.</entry>
@@ -423,8 +421,8 @@
<entry lang="ca" key="DEVICE_FREE_PB">%s ocupa %.2f PB</entry>
<entry lang="ca" key="DEVICE_IN_USE_FORMAT">ATENCIÓ: El disc/partició s'està utilitzant pel sistema operatiu o per una aplicació. Donar format al disc/partició pot causar la corrupció de dades i la inestabilitat del sistema.\n\nVol continuar?</entry>
<entry lang="ca" key="DEVICE_IN_USE_INPLACE_ENC">ATENCIÓ: La partició s'està utilitzant pel sistema operatiu o per una aplicació. Hauria de tancar totes les aplicacions que puguin estar utilitzant la partició (incloent els antivirus).\n\nVol continuar?</entry>
<entry lang="ca" key="FORMAT_CANT_UNMOUNT_FILESYS">Error: La unitat/partició conté un sistema de fitxers que no es pot desmuntar. El sistema de fitxers pot estar en ús pel sistema operatiu. Donar format a la unitat/partició causarà segurament la corrupció de les dades i la inestabilitat del sistema.\n\nPer arreglar aquest problema, és molt recomanable que primer elimini la partició i que la torni a crear sense donar-li format. Per fer-ho, segueixi aquests passos:\n1) Fer clic dret a 'El meu ordinador' al menú d'inici i seleccioni 'Administrar'.\n2) A la finestra d'administració del sistema, seleccionar 'Emmagatzematge' &gt; 'Administrador de discos'.\n3) Fer clic dret a la partició i seleccionar tant 'Esborrar partició' com 'Esborrar volum' com 'Esborrar unitat lògica'.\n4) Fer clic a 'Si'. Si el Windows suggereix reiniciar l'ordinador, fer-ho. Després repetir els passos 1 i 2 i continuar des del pas 5.\n5) Fer clic dret a l'espai sense assignar i seleccionar tant 'Nova partició' com 'Nou volum simple' com 'Nova unitat lògica'.\n6) Seguir les instruccions de l'assistent que apareixerà. Seleccionar l'opció 'No donar format a aquesta partició' o 'No donar format al volum'.\n7)Pot ser que la ruta que s'ha especificat al VeraCrypt ara estigui malament. S'ha de tancar l'assistent de creació de volums (si encara està engegat) i tornar-lo a iniciar.\n8) Provar de xifrar la partició/unitat un altre cop.\n\nSi el VeraCrypt falla repetidament alhora de xifrar la partició/unitat, potser haurà de considerar crear un contenidor de fitxers en comptes d'això.</entry>
<entry lang="ca" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Error: No es pot bloquejar i/o desmuntar el sistema de fitxers. És possible que el sistema operatiu o alguna aplicació (per exemple, un antivirus) l'estiguin utilitzant. Xifrar la partició pot causar la inestabilitat del sistema i la corrupció de les dades.\n\nSi us plau, tanqui totes les aplicacions que puguin estar utilitzant el sistema de fitxers (incloent els antivirus) i torni-ho a provar. Si el problema persisteix, segueixi els passos següents.</entry>
<entry lang="ca" key="FORMAT_CANT_DISMOUNT_FILESYS">Error: La unitat/partició conté un sistema de fitxers que no es pot desmuntar. El sistema de fitxers pot estar en ús pel sistema operatiu. Donar format a la unitat/partició causarà segurament la corrupció de les dades i la inestabilitat del sistema.\n\nPer arreglar aquest problema, és molt recomanable que primer elimini la partició i que la torni a crear sense donar-li format. Per fer-ho, segueixi aquests passos:\n1) Fer clic dret a 'El meu ordinador' al menú d'inici i seleccioni 'Administrar'.\n2) A la finestra d'administració del sistema, seleccionar 'Emmagatzematge' &gt; 'Administrador de discos'.\n3) Fer clic dret a la partició i seleccionar tant 'Esborrar partició' com 'Esborrar volum' com 'Esborrar unitat lògica'.\n4) Fer clic a 'Si'. Si el Windows suggereix reiniciar l'ordinador, fer-ho. Després repetir els passos 1 i 2 i continuar des del pas 5.\n5) Fer clic dret a l'espai sense assignar i seleccionar tant 'Nova partició' com 'Nou volum simple' com 'Nova unitat lògica'.\n6) Seguir les instruccions de l'assistent que apareixerà. Seleccionar l'opció 'No donar format a aquesta partició' o 'No donar format al volum'.\n7)Pot ser que la ruta que s'ha especificat al VeraCrypt ara estigui malament. S'ha de tancar l'assistent de creació de volums (si encara està engegat) i tornar-lo a iniciar.\n8) Provar de xifrar la partició/unitat un altre cop.\n\nSi el VeraCrypt falla repetidament alhora de xifrar la partició/unitat, potser haurà de considerar crear un contenidor de fitxers en comptes d'això.</entry>
<entry lang="ca" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Error: No es pot bloquejar i/o desmuntar el sistema de fitxers. És possible que el sistema operatiu o alguna aplicació (per exemple, un antivirus) l'estiguin utilitzant. Xifrar la partició pot causar la inestabilitat del sistema i la corrupció de les dades.\n\nSi us plau, tanqui totes les aplicacions que puguin estar utilitzant el sistema de fitxers (incloent els antivirus) i torni-ho a provar. Si el problema persisteix, segueixi els passos següents.</entry>
<entry lang="ca" key="DEVICE_IN_USE_INFO">ATENCIÓ: Alguns dels dispositius o de les particions s'estan utilitzant!\n\nIgnorar aquest avís pot causar resultats no desitjats, incloent la inestabilitat del sistema.\n\nÉs molt recomanable que tenqui totes les aplicacions que puguin estar utilitzant els dispositius o les particions.</entry>
<entry lang="ca" key="DEVICE_PARTITIONS_ERR">El dispositiu seleccionat conté particions.\n\nDonar un format al dispositiu pot causar la inestabilitat del sistema i/o la corrupció de les dades. Si us plau, seleccioni una partició dins el dispositiu o elimini totes les particions del dispositiu per permetre que el TrueCrtypt li doni format de forma segura.</entry>
<entry lang="ca" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">La unitat seleccionada conté particions.\n\nEls volums de dispositiu xifrats es poden crear dins de dispositius que no continguin particions. Un dispositiu que contingui particions pot ser xifrat in situ (utilitzant una clau mestra simple) només si és la unitat ón està instal·lat el Windows i des d'on arrenca.\n\nSi vol xifrar aquesta partició (no de sistema) utilitzant una clau mestra simple, haurà d'eliminar totes les particions del dispositiu. També pot xifrar cada partició dins el dispositiu individualment (cada partició utilitzarà una clau mestra diferent).\n\nNota: si vol eliminar totes les particions d'un disc GPT, l'haurà de convertir primer en un disc MBR per a poder eliminar les particions ocultes.</entry>
@@ -590,7 +588,7 @@
<entry lang="ca" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">Error: Els fitxers que s'han copiat al volum extern ocupen massa espai. Per tant, no hi ha prou espai al volum exterior pel volum ocult\n\nTingui en compte que el sistema ocult ha de ser tant gran com la partició de sistema (la partició on hi ha instal·lat el sistema operatiu que s'executa actualment). La raó d'això és que el sistema operatiu ocult necessita crear-se copiant el contingut de la partició de sistema al volum ocult.\n\n\nNo es pot segir amb el procés de creació del sistema operatiu ocult.</entry>
<entry lang="ca" key="OPENFILES_DRIVER">El controlador no pot desmuntar el volum. Probablement alguns fitxers dins el volum estan oberts.</entry>
<entry lang="ca" key="OPENFILES_LOCK">No s'ha pogut bloquejar el volum. Hi ha fitxers oberts dins el volum. Per tant, no es pot desmuntar.</entry>
<entry lang="ca" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">El VeraCrypt no ha pogut bloquejar el volum ja que el sistema o alguna aplicació l'està utilitzant (poden haver-hi fitxers oberts).\n\nVol forçar el desmuntatge del volum?</entry>
<entry lang="ca" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">El VeraCrypt no ha pogut bloquejar el volum ja que el sistema o alguna aplicació l'està utilitzant (poden haver-hi fitxers oberts).\n\nVol forçar el desmuntatge del volum?</entry>
<entry lang="ca" key="OPEN_VOL_TITLE">Seleccioni el volum VeraCrypt</entry>
<entry lang="ca" key="OPEN_TITLE">Ubicació i nom del fitxer</entry>
<entry lang="ca" key="SELECT_PKCS11_MODULE">Seleccioni la bilioteca PKCS #11</entry>
@@ -613,7 +611,7 @@
<entry lang="en" key="FAVORITE_PIM_CHANGED">This volume is registered as a System Favorite and its PIM was changed.\nDo you want VeraCrypt to automatically update the System Favorite configuration (administrator privileges required)?\n\nPlease note that if you answer no, you'll have to update the System Favorite manually.</entry>
<entry lang="ca" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">IMPORTANT: Si no ha destruït el disc de recuperació del VeraCrypt, la seva partició/unitat de sistema es podrà desxifrar utilitzant la contrasenya antiga (introduïnt el disc de ercuperació antic i la contrasenya antiga). Hauria de crear un nou disc de recuperació i destruïr l'antic.\n\nVol crear un nou disc de recuperació?</entry>
<entry lang="ca" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">Tingui en compte que el seu disc de recuperació encara utilitza l'algorisme anterior. Si considera que l'algorisme anterior és insegur, hauria de crear un nou disc de recuperació i destruïr l'antic.\n\nVol crear un nou disc de recuperació?</entry>
<entry lang="en" key="KEYFILES_NOTE">Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="en" key="KEYFILES_NOTE">Any kind of file (for example, .mp3, .jpg, .zip, .avi) may be used as a VeraCrypt keyfile. Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="ca" key="KEYFILE_CHANGED">S'han afegit/eliminat el(s) fitxer(s) de claus.</entry>
<entry lang="ca" key="KEYFILE_EXPORTED">S'ha exportat el fitxer de claus.</entry>
<entry lang="ca" key="PKCS5_PRF_CHANGED">S'ha establert l'algorisme de derivació de la clau de capçalera.</entry>
@@ -729,7 +727,7 @@
<entry lang="ca" key="DLL_FILES">Mòduls de la biblioteca</entry>
<entry lang="ca" key="FORMAT_NTFS_STOP">El procés de format NTFS no pot continuar.</entry>
<entry lang="ca" key="CANT_MOUNT_VOLUME">No s'ha pogut muntar el volum.</entry>
<entry lang="ca" key="CANT_UNMOUNT_VOLUME">No s'ha pogut desmuntar el volum.</entry>
<entry lang="ca" key="CANT_DISMOUNT_VOLUME">No s'ha pogut desmuntar el volum.</entry>
<entry lang="ca" key="FORMAT_NTFS_FAILED">El Windows no ha pogut donar format NTFS al volum.\n\nSi us plau, seleccioni un altre tipus de sistema de fitxers (si és possible) i torni-ho a provar. També hi ha l'opció de deixar el volum sense format (seleccionant 'Cap' sistema de fitxers), sortir de l'assistent, muntar el volum i després utilitzar una eina de sistema o de tercers per donar format al volum (que es mantindrà xifrat).</entry>
<entry lang="ca" key="FORMAT_NTFS_FAILED_ASK_FAT">El Windows no ha pogut formatar el volum amb NTFS.\n\nEl vol formatar amb FAT en comptes d'això?</entry>
<entry lang="ca" key="DEFAULT">Per defecte</entry>
@@ -771,7 +769,7 @@
<entry lang="ca" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">Un error ha evitat que el VeraCrypt xifri la partició. Si us plau, intenti arreglar qualsevol problema notificat anteriorment i torni-ho a provar. Si el problema persisteix, pot ser d'ajuda seguir els passos següents.</entry>
<entry lang="ca" key="INPLACE_ENC_GENERIC_ERR_RESUME">Un error ha evitat que el VeraCrypt recuperi el procés de xifrat de la partició. Si us plau, intenti arreglar qualsevol problema notificat anteriorment i torni-ho a provar. Recordi que no es pot muntar un volum fins que no està completament xifrat.</entry>
<entry lang="en" key="INPLACE_DEC_GENERIC_ERR">An error prevented VeraCrypt from decrypting the volume. Please try fixing any previously reported problems and then try again if possible.</entry>
<entry lang="ca" key="CANT_UNMOUNT_OUTER_VOL">Error: No s'ha pogut desmuntar el volum ocult!\n\nEl volum no es pot desmuntar si conté fitxers o directoris que estiguin sent utilitzats pel sistema o una aplicació.\n\nSi us plau tenqui tots els programes que puguin estar utilitzant els fitxers o directoris del volum i torni-ho a provar.</entry>
<entry lang="ca" key="CANT_DISMOUNT_OUTER_VOL">Error: No s'ha pogut desmuntar el volum ocult!\n\nEl volum no es pot desmuntar si conté fitxers o directoris que estiguin sent utilitzats pel sistema o una aplicació.\n\nSi us plau tenqui tots els programes que puguin estar utilitzant els fitxers o directoris del volum i torni-ho a provar.</entry>
<entry lang="ca" key="CANT_GET_OUTER_VOL_INFO">Error: No s'ha pogut obtenir informació sobre el volum exterior!\nLa creació del volum no pot continuar.</entry>
<entry lang="ca" key="CANT_ACCESS_OUTER_VOL">Error: No s'ha pogut accedir al volum exterior! La creació del volum no pot continuar.</entry>
<entry lang="ca" key="CANT_MOUNT_OUTER_VOL">Error: No s'ha pogut muntar al volum exterior! La creació del volum no pot continuar.</entry>
@@ -813,7 +811,7 @@
<entry lang="ca" key="SECONDARY_KEY_SIZE_LRW">Mida de la clau d'ajust (mode LRW)</entry>
<entry lang="ca" key="BITS">bits</entry>
<entry lang="ca" key="BLOCK_SIZE">Mida del bloc</entry>
<entry lang="ca" key="KDF">KDF</entry>
<entry lang="ca" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="ca" key="PKCS5_ITERATIONS">Comptador d'iteracions PKCS-5</entry>
<entry lang="ca" key="VOLUME_CREATE_DATE">Data de creació</entry>
<entry lang="ca" key="VOLUME_HEADER_DATE">Capçalera modificada</entry>
@@ -855,7 +853,7 @@
<entry lang="ca" key="TC_INSTALLER_IS_RUNNING">L'instal·lador del VeraCrypt està realitzant una instal·lació o actualització del programa. Abans de continuar, si us plau esperi que acabi o tenqui'l. Si no el pot tancar, reinicii l'ordinador abans de continuar.</entry>
<entry lang="ca" key="INSTALL_FAILED">La instal·lació ha fallat.</entry>
<entry lang="ca" key="UNINSTALL_FAILED">La desinstal·lació ha fallat.</entry>
<entry lang="ca" key="DIST_PACKAGE_CORRUPTED">Aquest paquet de distribució està malmès. Si us plau, torni'l a descarregar (preferentment des del lloc web oficial del VeraCrypt, a https://veracrypt.jp).</entry>
<entry lang="ca" key="DIST_PACKAGE_CORRUPTED">Aquest paquet de distribució està malmès. Si us plau, torni'l a descarregar (preferentment des del lloc web oficial del VeraCrypt, a https://www.veracrypt.fr).</entry>
<entry lang="ca" key="CANNOT_WRITE_FILE_X">No s'ha pogut escriure el fitxer %s</entry>
<entry lang="ca" key="EXTRACTING_VERB">Extraient</entry>
<entry lang="ca" key="CANNOT_READ_FROM_PACKAGE">No s'han pogut llegir dades del paquet.</entry>
@@ -882,7 +880,7 @@
<entry lang="ca" key="INSTALL_COMPLETED">Instal·lació finalitzada.</entry>
<entry lang="ca" key="CANT_CREATE_FOLDER">No s'ha pogut crear el directori '%s'</entry>
<entry lang="ca" key="CLOSE_TC_FIRST">No s'ha pogut desmuntar el controlador de dispositius del VeraCrypt.\n\nSi us plau, tenqui abans totes les finestres del VeraCrypt. Si això no funciona, reinicii el Windows i torni-ho a provar.</entry>
<entry lang="ca" key="UNMOUNT_ALL_FIRST">S'han de desmuntar tots els volums VeraCrypt abans d'instal·lar o desinstal·lar el programa.</entry>
<entry lang="ca" key="DISMOUNT_ALL_FIRST">S'han de desmuntar tots els volums VeraCrypt abans d'instal·lar o desinstal·lar el programa.</entry>
<entry lang="ca" key="UNINSTALL_OLD_VERSION_FIRST">Actualment hi ha una versió obsoleta del VeraCrypt instal·lada al sistema. És necessari desinstal·lar-la abans de poder instal·lar aquesta versió més nova del VeraCrypt.\n\nDesprés de tancar aquest missatge es llançarà el desinstal·lador de la versió antiga. Recordi que no es desxifrarà cap volum quan es desinstal·li el VeraCrypt. Després de desinstal·lar la versió antiga del VeraCrypt, torni a executar la instal·lació de la nova versió.</entry>
<entry lang="ca" key="REG_INSTALL_FAILED">Ha fallat la instal·lació de les entrades al registre</entry>
<entry lang="ca" key="DRIVER_INSTALL_FAILED">Ha fallat la instal·lació del controlador de dispositius. Si us plau, reinicii el Windows i torni a provar d'instal·lar el VeraCrypt.</entry>
@@ -903,7 +901,7 @@
<entry lang="ca" key="MINUTES">minuts</entry>
<entry lang="ca" key="SECONDS">s</entry>
<entry lang="ca" key="OPEN">Obrir</entry>
<entry lang="ca" key="UNMOUNT">Desmuntar</entry>
<entry lang="ca" key="DISMOUNT">Desmuntar</entry>
<entry lang="ca" key="SHOW_TC">Veure el VeraCrypt</entry>
<entry lang="ca" key="HIDE_TC">Amagar el VeraCrypt</entry>
<entry lang="ca" key="TOTAL_DATA_READ">Dades llegides des del muntatge</entry>
@@ -940,7 +938,7 @@
<entry lang="ca" key="ENTER_HEADER_BACKUP_PASSWORD">Introdueixi la contrasenya de la capçalera guardada a la còpia de seguretat</entry>
<entry lang="ca" key="KEYFILE_CREATED">El fitxer de claus s'ha creat amb èxit.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_NUMBER">The number of keyfiles you supplied is invalid.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be at least 64 bytes.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be comprized between 64 and 1048576 bytes.</entry>
<entry lang="en" key="KEYFILE_EMPTY_BASE_NAME">Please enter a name for the keyfile(s) to be generated</entry>
<entry lang="en" key="KEYFILE_INVALID_BASE_NAME">The base name of the keyfile(s) is invalid</entry>
<entry lang="en" key="KEYFILE_ALREADY_EXISTS">The keyfile '%s' already exists.\nDo you want to overwrite it? The generation process will be stopped if you answer No.</entry>
@@ -975,7 +973,7 @@
<entry lang="ca" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - Volums favorits del sistema</entry>
<entry lang="ca" key="SYS_FAVORITES_HELP_LINK">Què son els volums favorits del sistema?</entry>
<entry lang="ca" key="SYS_FAVORITES_REQUIRE_PBA">La partició/unitat de sistema sembla no estar xifrada.\n\nEls volums de sistema favorits només es poden muntar utilitzant les contrasenyes de prearrencada. Per tant, per habilitar l'ús dels volums de sistema favorits necessita xifrar abans la partició/unitat de sistema.</entry>
<entry lang="ca" key="UNMOUNT_FIRST">Si us plau, desmunti el volum abans de continuar.</entry>
<entry lang="ca" key="DISMOUNT_FIRST">Si us plau, desmunti el volum abans de continuar.</entry>
<entry lang="ca" key="CANNOT_SET_TIMER">Error: No s'ha pogut configurar el temps.</entry>
<entry lang="ca" key="IDPM_CHECK_FILESYS">Comprovar el sistema de fitxers</entry>
<entry lang="ca" key="IDPM_REPAIR_FILESYS">Reparar el sistema de fitxers</entry>
@@ -1009,11 +1007,11 @@
<entry lang="ca" key="NO_SYSENC_PARTITION_SELECTED">No s'ha seleccionat cap partició. Faci clic a 'Triar dispositiu' per seleccionar una partició desmuntada que normalment requereixi d'autenticació prearrenada (per exemple, una partició ubicada a la unitat xifrada d'un altre sistema operatiu, que no s'estigui executant, o la partició xifrada d'un altre sistema operatiu).\n\nNota: La partició seleccionada es muntarà com un volum normal de VeraCrypt, sense l'autenticació prearrencada. Això és útil, per exemple, per a fer tasques de còpia de segurett o restauració.</entry>
<entry lang="ca" key="CONFIRM_SAVE_DEFAULT_KEYFILES">ATENCIÓ: Si s'activen els fitxers de claus per defecte, els volums que no facin servir aquests fitxers de clau no es podran muntar. Per tant, després d'activar els fitxers de claus per defecte recordi de desmarcar l'opció 'Usar fitxers de claus' (sóta el camp d'entrada de contrasenyes) quan munti aquests volums.\n\nSegur que vol guardar els fitxers/rutes com a opcions per defecte?</entry>
<entry lang="ca" key="HK_AUTOMOUNT_DEVICES">Muntar automàticament</entry>
<entry lang="ca" key="HK_UNMOUNT_ALL">Desmuntar-ho tot</entry>
<entry lang="ca" key="HK_DISMOUNT_ALL">Desmuntar-ho tot</entry>
<entry lang="ca" key="HK_WIPE_CACHE">Buidar memòria cau</entry>
<entry lang="ca" key="HK_UNMOUNT_ALL_AND_WIPE">Desmuntar-ho tot &amp; buidar memòria cau</entry>
<entry lang="ca" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Forçar desmuntar-ho tot &amp; buidar memòria cau</entry>
<entry lang="ca" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Forçar desmuntar-ho tot, buidar memòria cau &amp; sortir</entry>
<entry lang="ca" key="HK_DISMOUNT_ALL_AND_WIPE">Desmuntar-ho tot &amp; buidar memòria cau</entry>
<entry lang="ca" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Forçar desmuntar-ho tot &amp; buidar memòria cau</entry>
<entry lang="ca" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Forçar desmuntar-ho tot, buidar memòria cau &amp; sortir</entry>
<entry lang="ca" key="HK_MOUNT_FAVORITE_VOLUMES">Muntar els volums favorits</entry>
<entry lang="ca" key="HK_SHOW_HIDE_MAIN_WINDOW">Mostrar/Amagar la finestra del VeraCrypt</entry>
<entry lang="ca" key="PRESS_A_KEY_TO_ASSIGN">(Faci clic aqui i premi una tecla)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="ca" key="PAGING_FILE_CREATION_PREVENTED">S'ha impedit la creació d'un fitxer de paginació.\n\nDegut a un problema de Windows, els fitxers de paginació no es poden ubicar a volums que no siguin de sistema (inclosos els favorits del sistema). El VeraCrypt permet la creació de fitxers de paginació només en una partició/unitat de sistema xifrada.</entry>
<entry lang="ca" key="SYS_ENC_HIBERNATION_PREVENTED">Un error o una incompatibilitat ha evitat que el VeraCrypt xifrés el fitxer d'hibernació. Per tant, s'ha evitat l'hibernació.\n\nNota: Quan un ordinador hiberna (o entra en un mode d'estalvi d'energia) el contingut de la memòria del sistema s'escriu a un fitxer d'hibernació dins la unitat de sistema. El VeraCrypt no podria evitar que les claus de xifrat i el contingut dels fitxers sensibles oberts a la RAM es guardessin sense xifrar al fitxer d'hibernació.</entry>
<entry lang="ca" key="HIDDEN_OS_HIBERNATION_PREVENTED">S'ha evitat l'hibernació.\n\nEl VeraCrypt no permet l'hibernació d'un sistema operatiu ocult que utilitza particions d'arranc extra. Tingui en compte que la partició d'arranc és compartida pel fitxer esquer i pel sistema ocult. Per tant, per evitar fugues de dades i problemes quan es restaura la hibernació, el VeraCrypt ha d'evitar que el sistema operatiu ocult escrigui a la partició d'arranc i que hiberni.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">VeraCrypt volume mounted as %c: has been unmounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt volumes have been unmounted.</entry>
<entry lang="en" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt volumes have been unmounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_UNMOUNTED">Successfully unmounted</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">VeraCrypt volume mounted as %c: has been dismounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt volumes have been dismounted.</entry>
<entry lang="en" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt volumes have been dismounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_DISMOUNTED">Successfully dismounted</entry>
<entry lang="ca" key="CONFIRM_BACKGROUND_TASK_DISABLED">ATENCIÓ: Si la tasca en segon pla del VeraCrypt està desactivada, les següents funcionalitats també ho estaran:\n\n1) Dreceres de teclat\n2) Desmuntatge automàtic\n3) Muntatge automàtic dels volums automàtics\n4) Notificacions\n5)Icona a la safata\n\nNota: Es pot aturar la tasca en segon pla del VeraCrypt fent clic amb el botó dret a l'icona a la safata i seleccionant 'Sortir'.\n\nEstà segur que vol desactivar permanentment la tasca en segon pla?</entry>
<entry lang="ca" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">ATENCIÓ: Si aquesta opció es desactiva, els volums que continguin fitxers/directoris oberts no es podran desmuntar automàticament.\n\nSegur que vol desactivar aquesta opció?</entry>
<entry lang="ca" key="WARN_PREF_AUTO_UNMOUNT">ATENCIÓ: Els volums que tinguin fitxers/directoris oberts no es desmuntaran automàticament.\n\nPer evitar això, habiliti l'opció 'Forçar el desmuntatge automàtic encara que el volum tingui fitxers o directoris oberts' en aquesta finestra.</entry>
<entry lang="ca" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">ATENCIÓ: Quan queda poca bateria al portàtil, el Windows pot ometre els missatges oportuns a les aplicacions que s'estigui executant quan s'entra en mode d'estalvi d'energia. Per tant, el desmuntatge automàtic del VeraCrypt pot fallar en aquests casos.</entry>
<entry lang="ca" key="CONFIRM_NO_FORCED_AUTODISMOUNT">ATENCIÓ: Si aquesta opció es desactiva, els volums que continguin fitxers/directoris oberts no es podran desmuntar automàticament.\n\nSegur que vol desactivar aquesta opció?</entry>
<entry lang="ca" key="WARN_PREF_AUTO_DISMOUNT">ATENCIÓ: Els volums que tinguin fitxers/directoris oberts no es desmuntaran automàticament.\n\nPer evitar això, habiliti l'opció 'Forçar el desmuntatge automàtic encara que el volum tingui fitxers o directoris oberts' en aquesta finestra.</entry>
<entry lang="ca" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">ATENCIÓ: Quan queda poca bateria al portàtil, el Windows pot ometre els missatges oportuns a les aplicacions que s'estigui executant quan s'entra en mode d'estalvi d'energia. Per tant, el desmuntatge automàtic del VeraCrypt pot fallar en aquests casos.</entry>
<entry lang="ca" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Hi ha un procés de xifrat d'una partició/volum encuat. Aquest procés no s'ha acabat.\n\nVol reprendre el procés ara?</entry>
<entry lang="ca" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">Hi ha un procés de xifrat o desxifrat de la partició/unitat de sistema. Aquest procés no s'ha acabat.\n\nVol engegar (reprendre) el procés ara?</entry>
<entry lang="ca" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">Vol que se li torni a preguntar si vol reprendre els processos programats de xifrat de particions/volums?</entry>
@@ -1063,7 +1061,7 @@
<entry lang="ca" key="SYS_AUTOMOUNT_DISABLED">El sistema no està configurat per muntar automàticament els nous volums. Pot ser impossible muntar els volums de dispositiu. El muntatge automàtic es pot activar executant la següent comanda i reiniciant el sistema.\n\nmountvol.exe /E</entry>
<entry lang="ca" key="SYS_ASSIGN_DRIVE_LETTER">Si us plau, assigni una lletra d'unitat a la partició/dispositiu abans de continuar ('Eines administratives' - 'Crear i donar format a les particions de disc').\n\nAixò és un requeriment del sistema operatiu.</entry>
<entry lang="ca" key="MOUNT_TC_VOLUME">Muntar el volum VeraCrypt</entry>
<entry lang="ca" key="UNMOUNT_ALL_TC_VOLUMES">Desmuntar tots els volums VeraCrypt</entry>
<entry lang="ca" key="DISMOUNT_ALL_TC_VOLUMES">Desmuntar tots els volums VeraCrypt</entry>
<entry lang="ca" key="UAC_INIT_ERROR">El VeraCrypt no ha pogut obtenir privilegis d'administrador.</entry>
<entry lang="ca" key="ERR_ACCESS_DENIED">El sistema operatiu ha denegat l'accés.\n\nCausa possible: El sistema operatiu requereix tenir permisos de lectura i escriptura (o privilegis d'administrador) per alguns directoris, fitxers i dispositius per tal de poder llegir-hi/escriure-hi dades. Normalment un usuari sense privilegis d'administrador pot crear, llegir i modificar fitxers dins de la seva carpeta de documents.</entry>
<entry lang="ca" key="SECTOR_SIZE_UNSUPPORTED">Error: El controlador utilitza una mida de sector no suportada.\n\nActualment no és possible crear volums de partició o dispositiu en unitats que utilitzin sectors més grans de 4096 bytes. No obstant, és possible crear volums de fixer (contenidors) en aquestes unitats.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="ca" key="HIDDEN_OS_CREATION_PREINFO_HELP">Als passos següents, el VeraCrypt crearà un sistema operatiu ocult copiant el contingut de la partició de sistema al volum ocult (les dades copiades es xifraran al vol amb una clau de xifrat diferent a la que s'utilitza pel sistema operatiu esquer).\n\nAquest procés es durà a terme a l'entorn de prearrencada (abans d'iniciar el Windows) i pot trigar força estona a acabar-se; diverses hores o dies (depenent de la mida de la partició de sistema i del rendiment de l'ordinador).\n\nPorà interrompre el procés, apagar l'ordinador, engegar el sistema operatiu i després continuar el procés. No obstant, si l'interromp, el procés de copiar el sistema haurà de tornar a començar des del principi (ja que el contingut de la partició de sistema no haurien de canviar durant la còpia).</entry>
<entry lang="ca" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">Vol cancel·lar el procés de creació d'un sistema operatiu ocult?\n\nNota: No podrà continuar aquest procés si el cancel·la ara.</entry>
<entry lang="ca" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">Vol cancelar la prova prèvia de xifrat del sistema?</entry>
<entry lang="ca" key="BOOT_PRETEST_FAILED_RETRY">Ha fallat la prova prèvia de xifrat del sistema. Vol tornar-ho a provar?\n\nSi selecciona 'No', es desinstal·larà el component d'autenticació prearrencada.\n\nNots.\n\n- Si el gestor d'arranc del VeraCrypt no li demana la contrasenya abans d'engegar el Windows és possible que el seu sistema operatiu no engegui des del disc dur on es troba instal·lat. Això no està suportat.\n\n- Si utilitza un algorisme de xifrat que no sigui AES i la prova prèvia falla (i ha introduït la contrasenya) pot ser degut a un controlador defectuós. Seleccioni 'No' i provi de tornar a xifrar la partició/unitat una altre vegada, però utilitzant l'algorisme de xifrat AES (que necessita menys memòria).\n\n- Per a més possibles causes i solucions, vegi: https://veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="ca" key="BOOT_PRETEST_FAILED_RETRY">Ha fallat la prova prèvia de xifrat del sistema. Vol tornar-ho a provar?\n\nSi selecciona 'No', es desinstal·larà el component d'autenticació prearrencada.\n\nNots.\n\n- Si el gestor d'arranc del VeraCrypt no li demana la contrasenya abans d'engegar el Windows és possible que el seu sistema operatiu no engegui des del disc dur on es troba instal·lat. Això no està suportat.\n\n- Si utilitza un algorisme de xifrat que no sigui AES i la prova prèvia falla (i ha introduït la contrasenya) pot ser degut a un controlador defectuós. Seleccioni 'No' i provi de tornar a xifrar la partició/unitat una altre vegada, però utilitzant l'algorisme de xifrat AES (que necessita menys memòria).\n\n- Per a més possibles causes i solucions, vegi: https://www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="ca" key="SYS_DRIVE_NOT_ENCRYPTED">La partició/unitat de sistema sembla no estar xifrada (ni parcial ni completament).</entry>
<entry lang="ca" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">La partició/unitat de sistema està xifrada (parcial o completament).\n\nSi us plau, desxifri completament la partició/unitat abans de continuar. Per a fer-ho, seleccioni 'Sistema' &gt; 'Desxifrar la partició/unitat del sistema permenentment'.</entry>
<entry lang="ca" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">Quan la partició/unitat de sistema està xifrada (parcial o completament) no és possible baixar la versió del VeraCrypt (però es pot actualitzar o reinstal·lar la mateixa versió).</entry>
@@ -1306,8 +1304,8 @@
<entry lang="ca" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Tingui en compte que el número de fils està actualment limitat, la qual cosa afecta al resultat de les proves (menys rendiment).\n\nPer utilitzar tota la potencia del(s) processador(s) seleccioni 'Configuració' &gt; 'Rendiment' i desactivi l'opció corresponent.</entry>
<entry lang="ca" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">Vol que el VeraCrypt intenti desactivar la protecció d'escriptura de la partició/unitat?</entry>
<entry lang="ca" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">ATENCIÓ: Aquesta configuració pot afectar al rendiment.\n\n Segur que vol utilitzar-la?</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-unmounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always unmount the volume in VeraCrypt first.\n\nUnexpected spontaneous unmount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-dismounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always dismount the volume in VeraCrypt first.\n\nUnexpected spontaneous dismount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="UNSUPPORTED_TRUECRYPT_FORMAT">This volume was created with TrueCrypt %x.%x but VeraCrypt supports only TrueCrypt volumes created with TrueCrypt 6.x/7.x series</entry>
<entry lang="ca" key="TEST">Prova</entry>
<entry lang="ca" key="KEYFILE">Fitxer de claus</entry>
@@ -1453,7 +1451,7 @@
<entry lang="en" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Add All Mounted Volumes to Favorites...</entry>
<entry lang="en" key="TASKICON_PREF_MENU_ITEMS">Task Icon Menu Items</entry>
<entry lang="en" key="TASKICON_PREF_OPEN_VOL">Open Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_DISMOUNT_VOL">Dismount Mounted Volumes</entry>
<entry lang="en" key="DISK_FREE">Free space available: {0}</entry>
<entry lang="en" key="VOLUME_SIZE_HELP">Please specify the size of the container to create. Note that the minimum possible size of a volume is 292 KiB.</entry>
<entry lang="en" key="LINUX_CONFIRM_INNER_VOLUME_CALC">WARNING: You have selected a filesystem other than FAT for the outer volume.\nPlease Note that in this case VeraCrypt can't calculate the exact maximum allowed size for the hidden volume and it will use only an estimation that can be wrong.\nThus, it is your responsibility to use an adequate value for the size of the hidden volume so that it does not overlap the outer volume.\n\nDo you want to continue using the selected filesystem for the outer volume?</entry>
@@ -1483,14 +1481,14 @@
<entry lang="en" key="LINUX_DO_NOT_MOUNT">Do &amp;not mount</entry>
<entry lang="en" key="LINUX_MOUNT_AT_DIR">Mount at directory:</entry>
<entry lang="en" key="LINUX_SELECT">Se&amp;lect...</entry>
<entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount All Volumes When</entry>
<entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry>
<entry lang="en" key="LINUX_ENTERING_POWERSAVING">System is entering power saving mode</entry>
<entry lang="en" key="LINUX_LOGIN_ACTION">Actions to Perform when User Logs On</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Close all Explorer windows of volume being dismounted</entry>
<entry lang="en" key="LINUX_HOTKEYS">Hotkeys</entry>
<entry lang="en" key="LINUX_SYSTEM_HOTKEYS">System-Wide Hotkeys</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/unmount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_UNMOUNT">Display confirmation message box after unmount</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/dismount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_DISMOUNT">Display confirmation message box after dismount</entry>
<entry lang="en" key="LINUX_VC_QUITS">VeraCrypt quits</entry>
<entry lang="en" key="LINUX_OPEN_FINDER">Open Finder window for successfully mounted volume</entry>
<entry lang="en" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Please note that this setting takes effect only if use of the kernel cryptographic services is disabled.</entry>
@@ -1510,11 +1508,11 @@
<entry lang="en" key="LINUX_DYNAMIC_NOTICE">Please note that if your operating system does not allocate files from the beginning of the free space, the maximum possible hidden volume size may be much smaller than the size of the free space on the outer volume. This is not a bug in VeraCrypt but a limitation of the operating system.</entry>
<entry lang="en" key="LINUX_MAX_HIDDEN_SIZE">Maximum possible hidden volume size for this volume is {0}.</entry>
<entry lang="en" key="LINUX_OPEN_OUTER_VOL">Open Outer Volume</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not unmount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not dismount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">Error: You are trying to encrypt a system drive.\n\nVeraCrypt can encrypt a system drive only under Windows.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">Error: You are trying to encrypt a system partition.\n\nVeraCrypt can encrypt system partitions only under Windows.</entry>
<entry lang="en" key="LINUX_WARNING_FORMAT_DESTROY_FS">WARNING: Formatting of the device will destroy all data on filesystem '{0}'.\n\nDo you want to continue?</entry>
<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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please dismount '{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>
@@ -1522,8 +1520,7 @@
<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>
<entry lang="en" key="LINUX_VOL_DISMOUNTED">Volume {0} has been dismounted.</entry>
<entry lang="en" key="LINUX_OOM">Out of memory.</entry>
<entry lang="en" key="LINUX_CANT_GET_ADMIN_PRIV">Failed to obtain administrator privileges</entry>
<entry lang="en" key="LINUX_COMMAND_GET_ERROR">Command {0} returned error {1}.</entry>
@@ -1553,7 +1550,7 @@
<entry lang="en" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Error: The drive uses a sector size other than 512 bytes.\n\nDue to limitations of components available on your platform, partition/device-hosted volumes cannot be created/used on the drive.\n\nPossible solutions:\n- Create a file-hosted volume (container) on the drive.\n- Use a drive with 512-byte sectors.\n- Use VeraCrypt on another platform.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">The host file/device is already in use.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Volume slot unavailable.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires macFUSE 2.5 or above.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires OSXFUSE 2.5 or above.</entry>
<entry lang="en" key="EXCEPTION_OCCURRED">Exception occurred</entry>
<entry lang="en" key="ENTER_PASSWORD">Enter password</entry>
<entry lang="en" key="ENTER_TC_VOL_PASSWORD">Enter VeraCrypt Volume Password</entry>
@@ -1570,124 +1567,6 @@
<entry lang="en" key="VOLUME_HOST_IN_USE">WARNING: The host file/device {0} is already in use!\n\nIgnoring this can cause undesired results including system instability. All applications that might be using the host file/device should be closed before mounting the volume.\n\nContinue mounting?</entry>
<entry lang="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
<entry lang="en" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">VeraCrypt cannot be upgraded because the system partition/drive was encrypted using an algorithm that is not supported anymore.\nPlease decrypt your system before upgrading VeraCrypt and then encrypt it again.</entry>
<entry lang="en" key="LINUX_EX2MSG_TERMINALNOTFOUND">Supported terminal application could not be found, you need either xterm, konsole or gnome-terminal (with dbus-x11).</entry>
<entry lang="en" key="IDM_MOUNT_NO_CACHE">Mount Without Cache</entry>
<entry lang="en" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nExpand a VeraCrypt volume on the fly without reformatting\n\n\nAll kind of volumes (container files, disks and partitions) formatted with NTFS are supported. The only condition is that there must be enough free space on the host drive or host device of the VeraCrypt volume.\n\nDo not use this software to expand an outer volume containing a hidden volume, because this destroys the hidden volume!\n</entry>
<entry lang="en" key="IDC_STEPSEXPAND">1. Select the VeraCrypt volume to be expanded\n2. Click the 'Mount' button</entry>
<entry lang="en" key="IDT_VOL_NAME">Volume: </entry>
<entry lang="en" key="IDT_FILE_SYS">File system: </entry>
<entry lang="en" key="IDT_CURRENT_SIZE">Current size: </entry>
<entry lang="en" key="IDT_NEW_SIZE">New size: </entry>
<entry lang="en" key="IDT_NEW_SIZE_BOX_TITLE">Enter new volume size</entry>
<entry lang="en" key="IDC_INIT_NEWSPACE">Fill new space with random data</entry>
<entry lang="en" key="IDC_QUICKEXPAND">Quick Expand</entry>
<entry lang="en" key="IDT_INIT_SPACE">Fill new space: </entry>
<entry lang="en" key="EXPANDER_FREE_SPACE">%s free space available on host drive</entry>
<entry lang="en" key="EXPANDER_HELP_DEVICE">This is a device-based VeraCrypt volume.\n\nThe new volume size will be choosen automatically as the size of the host device.</entry>
<entry lang="en" key="EXPANDER_HELP_FILE">Please specify the new size of the VeraCrypt volume (must be at least %I64u KB larger than the current size).</entry>
<entry lang="en" key="QUICK_EXPAND_WARNING">WARNING: You should use Quick Expand only in the following cases:\n\n1) The device where the file container is located contains no sensitive data and you do not need plausible deniability.\n2) The device where the file container is located has already been securely and fully encrypted.\n\nAre you sure you want to use Quick Expand?</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT">IMPORTANT: Move your mouse as randomly as possible within this window. The longer you move it, the better. This significantly increases the cryptographic strength of the encryption keys. Then click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT_LEGACY">Click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_FINISH_ERROR">Error: volume expansion failed.</entry>
<entry lang="en" key="EXPANDER_FINISH_ABORT">Error: operation aborted by user.</entry>
<entry lang="en" key="EXPANDER_FINISH_OK">Finished. Volume successfully expanded.</entry>
<entry lang="en" key="EXPANDER_CANCEL_WARNING">Warning: Volume expansion is in progress!\n\nStopping now may result in a damaged volume.\n\nDo you really want to cancel?</entry>
<entry lang="en" key="EXPANDER_STARTING_STATUS">Starting volume expansion ...\n</entry>
<entry lang="en" key="EXPANDER_HIDDEN_VOLUME_ERROR">An outer volume containing a hidden volume can't be expanded, because this destroys the hidden volume.\n</entry>
<entry lang="en" key="EXPANDER_SYSTEM_VOLUME_ERROR">A VeraCrypt system volume can't be expanded.</entry>
<entry lang="en" key="EXPANDER_NO_FREE_SPACE">Not enough free space to expand the volume</entry>
<entry lang="en" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Warning: The container file is larger than the VeraCrypt volume area. The data after the VeraCrypt volume area will be overwritten.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_FAT">Warning: The VeraCrypt volume contains a FAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_EXFAT">Warning: The VeraCrypt volume contains an exFAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_UNKNOWN_FS">Warning: The VeraCrypt volume contains an unknown or no file system!\n\nOnly the VeraCrypt volume itself will be expanded, the file system remains unchanged.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">New volume size too small, must be at least %I64u kB larger than the current size.</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">New volume size too large, not enough space on host drive.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Maximum file size of %I64u MB on host drive exceeded.</entry>
<entry lang="en" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Error: Failed to get necessary privileges to enable Quick Expand!\nPlease uncheck Quick Expand option and try again.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Maximum VeraCrypt volume size of %I64u TB exceeded!\n</entry>
<entry lang="en" key="FULL_FORMAT">Full Format</entry>
<entry lang="en" key="FAST_CREATE">Fast Create</entry>
<entry lang="en" key="WARN_FAST_CREATE">WARNING: You should use Fast Create only in the following cases:\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 Fast Create?</entry>
<entry lang="en" key="IDC_ENABLE_EMV_SUPPORT">Enable EMV Support</entry>
<entry lang="en" key="COMMAND_APDU_INVALID">The APDU command sent to the card is not valid.</entry>
<entry lang="en" key="EXTENDED_APDU_UNSUPPORTED">Extended APDU commands cannot be used with the current token.</entry>
<entry lang="en" key="SCARD_MODULE_INIT_FAILED">Error when loading the WinSCard / PCSC library.</entry>
<entry lang="en" key="EMV_UNKNOWN_CARD_TYPE">The card in the reader is not a supported EMV card.</entry>
<entry lang="en" key="EMV_SELECT_AID_FAILED">The AID of the card in the reader could not be selected.</entry>
<entry lang="en" key="EMV_ICC_CERT_NOTFOUND">ICC Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_ISSUER_CERT_NOTFOUND">Issuer Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_CPLC_NOTFOUND">CPLC was not found in the EMV card.</entry>
<entry lang="en" key="EMV_PAN_NOTFOUND">No Primary Account Number (PAN) found in the EMV card.</entry>
<entry lang="en" key="INVALID_EMV_PATH">EMV path is invalid.</entry>
<entry lang="en" key="EMV_KEYFILE_DATA_NOTFOUND">Unable to build a keyfile from the EMV card's data.\n\nOne of the following is missing:\n- ICC Public Key Certificate.\n- Issuer Public Key Certificate.\n- CPLC data.</entry>
<entry lang="en" key="SCARD_W_REMOVED_CARD">No card in the reader.\n\nPlease make sure the card is correctly slotted.</entry>
<entry lang="en" key="FORMAT_EXTERNAL_FAILED">Windows format.com command failed to format the volume as NTFS/exFAT/ReFS: Error 0x%.8X.\n\nFalling back to using Windows FormatEx API.</entry>
<entry lang="en" key="FORMATEX_API_FAILED">Windows FormatEx API failed to format the volume as NTFS/exFAT/ReFS.\n\nFailure status = %s.</entry>
<entry lang="en" key="EXPANDER_WRITING_RANDOM_DATA">Writing random data to new space ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Writing re-encrypted backup header ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Writing re-encrypted primary header ...\n</entry>
<entry lang="en" key="EXPANDER_WIPING_OLD_HEADER">Wiping old backup header ...\n</entry>
<entry lang="en" key="EXPANDER_MOUNTING_VOLUME">Mounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_UNMOUNTING_VOLUME">Unmounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_EXTENDING_FILESYSTEM">Extending file system ...\n</entry>
<entry lang="en" key="PARTIAL_SYSENC_MOUNT_READONLY">Warning: The system partition you attempted to mount was not fully encrypted. As a safety measure to prevent potential corruption or unwanted modifications, volume '%s' was mounted as read-only.</entry>
<entry lang="en" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Important information on using third-party file extensions</entry>
<entry lang="en" key="IDC_DISABLE_MEMORY_PROTECTION">Disable memory protection for Accessibility tools compatibility</entry>
<entry lang="en" key="DISABLE_MEMORY_PROTECTION_WARNING">WARNING: Disabling memory protection significantly reduces security. Enable this option ONLY if you rely on Accessibility tools, like Screen Readers, to interact with VeraCrypt's UI.</entry>
<entry lang="ca" key="LINUX_LANGUAGE">Idioma</entry>
<entry lang="en" key="LINUX_SELECT_SYS_DEFAULT_LANG">Select system's default language</entry>
<entry lang="en" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">For the language change to come into effect, VeraCrypt needs to be restarted.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE">WARNING: The volume's master key is vulnerable to an attack that compromises data security.\n\nPlease create a new volume and transfer the data to it.</entry>
<entry lang="en" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">WARNING: The encrypted system's master key is vulnerable to an attack that compromises data security.\nPlease decrypt the system partition/drive and then re-encrypt it.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">WARNING: The volume's master key has a security vulnerability.</entry>
<entry lang="en" key="MOUNTPOINT_BLOCKED">ERROR: The volume mount point is blocked because it overrides a protected system directory.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="MOUNTPOINT_NOTALLOWED">ERROR: The volume mount point is not allowed because it overrides a directory that is part of the PATH environment variable.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="INSECURE_MODE">[INSECURE MODE]</entry>
<entry lang="en" key="IDC_DISABLE_SCREEN_PROTECTION">Disable protection against screenshots and screen recording</entry>
<entry lang="en" key="DISABLE_SCREEN_PROTECTION_WARNING">WARNING: Disabling screen protection significantly reduces security. Enable this option ONLY if you have a specific need to capture VeraCrypt's interface. This may expose sensitive data to screenshot tools and screen recording features such as Windows 11 Recall.</entry>
<entry lang="en" key="MEMORY_COST">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="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>
<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>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
File diff suppressed because it is too large Load Diff
+50 -171
View File
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<language langid="cs" name="Čeština" en-name="Czech" version="1.3.0" translators="Vítek Moser, Lagardere" />
<localization prog-version= "1.25.9">
<language langid="cs" name="Čeština" en-name="Czech" version="1.2.0" translators="Vítek Moser, Lagardere" />
<font lang="cs" class="normal" size="11" face="default" />
<font lang="cs" class="bold" size="13" face="Arial" />
<font lang="cs" class="fixed" size="12" face="Lucida Console" />
@@ -135,8 +135,8 @@
<entry lang="cs" key="IDC_FAVORITE_REMOVE">&amp;Odstranit</entry>
<entry lang="cs" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Použít oblíbený název jako název disku v průzkumníkovi</entry>
<entry lang="cs" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Všeobecné nastavení</entry>
<entry lang="cs" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Zobrazit bublinovou nápovědu po úspěšném odpojení</entry>
<entry lang="cs" key="IDC_HK_UNMOUNT_PLAY_SOUND">Přehrát zvuk systémového upozornění po úspěšném odpojení</entry>
<entry lang="cs" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Zobrazit bublinovou nápovědu po úspěšném odpojení</entry>
<entry lang="cs" key="IDC_HK_DISMOUNT_PLAY_SOUND">Přehrát zvuk systémového upozornění po úspěšném odpojení</entry>
<entry lang="cs" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="cs" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="cs" key="IDC_HK_MOD_SHIFT">Shift</entry>
@@ -156,12 +156,12 @@
<entry lang="cs" key="IDC_PIM_HELP">(prázdné nebo 0 pro výchozí opakování)</entry>
<entry lang="cs" key="IDC_PREF_BKG_TASK_ENABLE">Povoleno</entry>
<entry lang="cs" key="IDC_PREF_CACHE_PASSWORDS">Uložit hesla do paměti ovladače</entry>
<entry lang="cs" key="IDC_PREF_UNMOUNT_INACTIVE">Automaticky odpojit svazek nebylo-li z/do něj čteno/zapisováno</entry>
<entry lang="cs" key="IDC_PREF_UNMOUNT_LOGOFF">Uživatel se odhlašuje</entry>
<entry lang="cs" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">Uživatelská relace byla uzamknuta</entry>
<entry lang="cs" key="IDC_PREF_UNMOUNT_POWERSAVING">Přecházím do úsporného režimu</entry>
<entry lang="cs" key="IDC_PREF_UNMOUNT_SCREENSAVER">Je spuštěn spořič obrazovky</entry>
<entry lang="cs" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Vynutit automatické odpojení, i když svazek obsahuje otevřené soubory nebo adresáře</entry>
<entry lang="cs" key="IDC_PREF_DISMOUNT_INACTIVE">Automaticky odpojit svazek nebylo-li z/do něj čteno/zapisováno</entry>
<entry lang="cs" key="IDC_PREF_DISMOUNT_LOGOFF">Uživatel se odhlašuje</entry>
<entry lang="cs" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">Uživatelská relace byla uzamknuta</entry>
<entry lang="cs" key="IDC_PREF_DISMOUNT_POWERSAVING">Přecházím do úsporného režimu</entry>
<entry lang="cs" key="IDC_PREF_DISMOUNT_SCREENSAVER">Je spuštěn spořič obrazovky</entry>
<entry lang="cs" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Vynutit automatické odpojení, i když svazek obsahuje otevřené soubory nebo adresáře</entry>
<entry lang="cs" key="IDC_PREF_LOGON_MOUNT_DEVICES">Připojit všechny svazky na zařízeních</entry>
<entry lang="cs" key="IDC_PREF_LOGON_START">Spustit službu VeraCryptu na pozadí</entry>
<entry lang="cs" key="IDC_PREF_MOUNT_READONLY">Připojit svazky jen pro čtení</entry>
@@ -169,7 +169,7 @@
<entry lang="cs" key="IDC_PREF_OPEN_EXPLORER">Otevřít okno Průzkumníka pro úspěšně připojený svazek</entry>
<entry lang="cs" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">Heslo do mezipaměti během operace „Připojit oblíbený svazek”</entry>
<entry lang="cs" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Použít jinou ikonu na hlavním panelu, jsou-li k dispozici připojené svazky</entry>
<entry lang="cs" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Odstranit hesla z mezipaměti a automaticky odpojit</entry>
<entry lang="cs" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Odstranit hesla z mezipaměti a automaticky odpojit</entry>
<entry lang="cs" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Odstranit hesla z mezipaměti při ukončení</entry>
<entry lang="cs" key="IDC_PRESERVE_TIMESTAMPS">Zachovat časové razítko změny souborového svazku</entry>
<entry lang="cs" key="IDC_RESET_HOTKEYS">Vymazat</entry>
@@ -269,14 +269,14 @@
<entry lang="cs" key="IDT_ACCELERATION_OPTIONS">Hardwarová akcelerace</entry>
<entry lang="cs" key="IDT_ASSIGN_HOTKEY">Klávesová zkratka</entry>
<entry lang="cs" key="IDT_AUTORUN">Konfigurace automatického spouštění (autorun.inf)</entry>
<entry lang="cs" key="IDT_AUTO_UNMOUNT">Automatické odpojení</entry>
<entry lang="cs" key="IDT_AUTO_UNMOUNT_ON">Odpojit vše když:</entry>
<entry lang="cs" key="IDT_AUTO_DISMOUNT">Automatické odpojení</entry>
<entry lang="cs" key="IDT_AUTO_DISMOUNT_ON">Odpojit vše když:</entry>
<entry lang="cs" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Možnosti obrazovky systémového zavaděče</entry>
<entry lang="cs" key="IDT_CONFIRM_PASSWORD">Potvrdit heslo:</entry>
<entry lang="cs" key="IDT_CURRENT">Aktuální</entry>
<entry lang="cs" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">Zobrazit volitelný text na obrazovce s ověřením (maximálně 24 znaků):</entry>
<entry lang="cs" key="IDT_DEFAULT_MOUNT_OPTIONS">Výchozí možnosti připojení</entry>
<entry lang="cs" key="IDT_UNMOUNT_ACTION">Možnosti klávesových zkratek</entry>
<entry lang="cs" key="IDT_DISMOUNT_ACTION">Možnosti klávesových zkratek</entry>
<entry lang="cs" key="IDT_DRIVER_OPTIONS">Konfigurace ovladače</entry>
<entry lang="cs" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Povolit podporu ovládání rozšířeného disku</entry>
<entry lang="cs" key="IDT_FAVORITE_LABEL">Jmenovka vybraného oblíbeného svazku:</entry>
@@ -291,11 +291,10 @@
<entry lang="cs" key="IDT_NEW_PASSWORD">Heslo:</entry>
<entry lang="cs" key="IDT_PARALLELIZATION_OPTIONS">Paralelizace založená na vláknech</entry>
<entry lang="cs" key="IDT_PKCS11_LIB_PATH">PKCS #11 cesta ke knihovně</entry>
<entry lang="cs" key="IDT_KDF">KDF:</entry>
<entry lang="cs" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="cs" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="cs" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</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_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>
@@ -357,7 +356,7 @@
<entry lang="cs" key="IDT_KEYFILE_WARNING">UPOZORNĚNÍ: ztratíte-li souborový klíč nebo změní-li se jediný bit z prvních 1024 kilobajtů, bude nemožné připojit svazek používající souborový klíč.</entry>
<entry lang="cs" key="IDT_KEY_UNIT">bitů</entry>
<entry lang="cs" key="IDT_NUMBER_KEYFILES">Počet klíčů:</entry>
<entry lang="cs" key="IDT_KEYFILES_SIZE">Velikost klíče:</entry>
<entry lang="cs" key="IDT_KEYFILES_SIZE">Velikost klíče (v bajtech):</entry>
<entry lang="cs" key="IDT_KEYFILES_BASE_NAME">Název úložiště klíče:</entry>
<entry lang="cs" key="IDT_LANGPACK_AUTHORS">Přeložil:</entry>
<entry lang="cs" key="IDT_PLAINTEXT">Velikost textu:</entry>
@@ -390,7 +389,6 @@
<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_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>
@@ -423,8 +421,8 @@
<entry lang="cs" key="DEVICE_FREE_PB">Velikost %s je %.2f PB</entry>
<entry lang="cs" key="DEVICE_IN_USE_FORMAT">UPOZORNĚNÍ: zařízení/diskový oddíl je používán operačním systémem nebo aplikacemi. Formátování zařízení/diskového oddílu může způsobit poškození dat nebo systémovou nestabilitu.\n\nPokračovat?</entry>
<entry lang="cs" key="DEVICE_IN_USE_INPLACE_ENC">UPOZORNĚNÍ: diskový oddíl je právě používán operačním systémem nebo aplikacemi. Měli byste zavřít všechny aplikace, které by mohly diskový oddíl používat (včetně antivirového programu).\n\nPokračovat?</entry>
<entry lang="cs" key="FORMAT_CANT_UNMOUNT_FILESYS">Chyba: zařízení/diskový oddíl obsahuje souborový systém, který nelze připojit. Systém souborů může být používán operačním systémem. Formátování zařízení/diskového oddílu by pravděpodobně způsobilo poškození dat a systémovou nestabilitu.\n\nPro vyřešení tohoto problému doporučujeme nejdříve smazat diskový oddíl a poté ho znovu vytvořit bez formátování. Postupujte následovně: 1) Klikněte pravým tlačítkem myši na ikonu „Počítač” (nebo „Tento počítač”) v nabídce „Start” a vyberte „Spravovat”. Objeví se okno „Správa počítače”. 2) V okně „Správa počítače” vyberte „Uložení” &gt; „Správa disků”. 3) Pravý-klik myši na diskový oddíl, který chcete zašifrovat a vyberte buď „Smazat diskový oddíl” nebo „Smazat svazek” nebo „Smazat logický disk”. 4) Klikněte na „Ano”. Zeptají-li se Windows na restart počítače, učiňte tak. Poté zopakujte kroky 1 a 2 a pokračujte od kroku 5. 5) Pravý-klik na nealokované/volné místo a vyberte buď „Nový diskový oddíl” nebo „Nový obyčejný svazek” nebo „Nový logický disk”. 6) Objeví se okno „Průvodce vytvořením nového diskového oddílu” nebo „Průvodce nového jednoduchého svazku”; následujte jejich instrukce. Na stránce průvodce nazvané „Zformátovat diskový oddíl” vyberte buď „Neformátovat tento diskový oddíl” nebo „Neformátovat tento svazek”. Ve stejném průvodci klikněte „Další” a poté „Dokončit”. 7) Cesta k zařízení, kterou jste vybrali v programu VeraCrypt může být nyní špatně. Ukončete proto průvodce vytvořením diskového oddílu VeraCrypt (běží-li stále) a spusťte ho znovu. 8) Zkuste zašifrovat zařízení/diskový oddíl znovu.\n\nSelhává-li opakovaně při šifrování zařízení/diskového oddílu VeraCrypt, zvažte místo toho vytvoření souborového svazku.</entry>
<entry lang="cs" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Chyba: systém souborů nemohl být uzamknut a/nebo odpojen. Možná je používán operačním systémem nebo aplikacemi (např. antivirový program). Zašifrování diskového oddílu může způsobit poškození dat a systémovou nestabilitu.\n\nZavřete, prosím, všechny aplikace, které mohou používat systém souborů (včetně antivirového programu) a zkuste to znovu. Nepomůže-li to, následujte kroky uvedené níže.</entry>
<entry lang="cs" key="FORMAT_CANT_DISMOUNT_FILESYS">Chyba: zařízení/diskový oddíl obsahuje souborový systém, který nelze připojit. Systém souborů může být používán operačním systémem. Formátování zařízení/diskového oddílu by pravděpodobně způsobilo poškození dat a systémovou nestabilitu.\n\nPro vyřešení tohoto problému doporučujeme nejdříve smazat diskový oddíl a poté ho znovu vytvořit bez formátování. Postupujte následovně: 1) Klikněte pravým tlačítkem myši na ikonu „Počítač” (nebo „Tento počítač”) v nabídce „Start” a vyberte „Spravovat”. Objeví se okno „Správa počítače”. 2) V okně „Správa počítače” vyberte „Uložení” &gt; „Správa disků”. 3) Pravý-klik myši na diskový oddíl, který chcete zašifrovat a vyberte buď „Smazat diskový oddíl” nebo „Smazat svazek” nebo „Smazat logický disk”. 4) Klikněte na „Ano”. Zeptají-li se Windows na restart počítače, učiňte tak. Poté zopakujte kroky 1 a 2 a pokračujte od kroku 5. 5) Pravý-klik na nealokované/volné místo a vyberte buď „Nový diskový oddíl” nebo „Nový obyčejný svazek” nebo „Nový logický disk”. 6) Objeví se okno „Průvodce vytvořením nového diskového oddílu” nebo „Průvodce nového jednoduchého svazku”; následujte jejich instrukce. Na stránce průvodce nazvané „Zformátovat diskový oddíl” vyberte buď „Neformátovat tento diskový oddíl” nebo „Neformátovat tento svazek”. Ve stejném průvodci klikněte „Další” a poté „Dokončit”. 7) Cesta k zařízení, kterou jste vybrali v programu VeraCrypt může být nyní špatně. Ukončete proto průvodce vytvořením diskového oddílu VeraCrypt (běží-li stále) a spusťte ho znovu. 8) Zkuste zašifrovat zařízení/diskový oddíl znovu.\n\nSelhává-li opakovaně při šifrování zařízení/diskového oddílu VeraCrypt, zvažte místo toho vytvoření souborového svazku.</entry>
<entry lang="cs" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Chyba: systém souborů nemohl být uzamknut a/nebo odpojen. Možná je používán operačním systémem nebo aplikacemi (např. antivirový program). Zašifrování diskového oddílu může způsobit poškození dat a systémovou nestabilitu.\n\nZavřete, prosím, všechny aplikace, které mohou používat systém souborů (včetně antivirového programu) a zkuste to znovu. Nepomůže-li to, následujte kroky uvedené níže.</entry>
<entry lang="cs" key="DEVICE_IN_USE_INFO">UPOZORNĚNÍ: některé z připojených zařízení/diskových oddílů byly již používány.\n\nIgnorování může způsobit nežádoucí následky včetně nestability systému.\n\nDůrazně doporučujeme zavřít všechny aplikace, které by mohly zařízení/diskové oddíly používat.</entry>
<entry lang="cs" key="DEVICE_PARTITIONS_ERR">Vybrané zařízení obsahuje diskový oddíl.\n\nZformátování zařízení by mohlo způsobit systémovou nestabilitu a/nebo poškození dat. Vyberte prosím diskový oddíl na zařízení nebo odstraňte všechny diskové oddíly na zařízení, aby ho mohl VeraCrypt bezpečně zformátovat.</entry>
<entry lang="cs" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">Vybrané ne-systémové zařízení obsahuje diskové oddíly.\n\nZašifrované svazky umístěné na zařízeních mohou být vytvořeny na zařízeních, které neobsahují žádné diskové oddíly (včetně pevných disků a solid-state disků). Zařízení, které obsahuje diskové oddíly, může být úplně zašifrováno ta, jak je (s použitím jednoho hlavního klíče) pouze tehdy, jedná-li se o jednotku, kde jsou nainstalovány Windows a zavádí-li se z této jednotky systém.\n\nChcete-li zašifrovat vybrané ne-systémové zařízení s použitím jednoho hlavního klíče, musíte na zařízení nejprve odstranit všechny diskové oddíly, aby mohl VeraCrypt toto zařízení bezpečně naformátovat (formátování zařízení, které obsahuje diskové oddíly, může způsobit systémovou nestability a/nebo poškození dat). Případně můžete zašifrovat každý diskový oddíl na disku zvlášť (každý diskový oddíl bude zašifrován jiným hlavním klíčem).\n\nPoznámka: chcete-li odstranit všechny diskové oddíly z GPT disku, je možné, že ho budete nejprve muset převést na MBR disk (s použitím např. nástroje Správy počítače), abyste mohli odstranit skryté diskový oddíly.</entry>
@@ -590,7 +588,7 @@
<entry lang="cs" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">Chyba: soubory, které jste nakopírovali do vnějšího svazku, zabírají příliš moc místa. Tím pádem není na vnějším svazku ani dost místa pro skrytý svazek.\n\nSkrytý svazek musí být stejně velký jako systémový diskový oddíl (diskový oddíl, kde je nainstalován momentálně běžící operační systém). Důvodem je, že skrytý operační systém musí být vytvořen zkopírováním obsahu systémového diskového oddílu do skrytého svazku.\n\n\nÚkon vytváření skrytého operačního systému nemůže pokračovat.</entry>
<entry lang="cs" key="OPENFILES_DRIVER">Ovladač nemůže odpojit svazek. Některé soubory umístěné na svazku jsou pravděpodobně ještě otevřené.</entry>
<entry lang="cs" key="OPENFILES_LOCK">Svazek nemohl být uzamknut. Na svazku jsou stále otevřené soubory. Proto nemůže být odpojen.</entry>
<entry lang="cs" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt nemůže zamknout tento svazek, protože je používán systémem nebo aplikacemi (na tomto svazku mohou existovat otevřené soubory).\n\nChcete vynutit odpojení tohoto svazku?</entry>
<entry lang="cs" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt nemůže zamknout tento svazek, protože je používán systémem nebo aplikacemi (na tomto svazku mohou existovat otevřené soubory).\n\nChcete vynutit odpojení tohoto svazku?</entry>
<entry lang="cs" key="OPEN_VOL_TITLE">Vyberte svazek VeraCrypt</entry>
<entry lang="cs" key="OPEN_TITLE">Zadejte cestu a jméno souboru</entry>
<entry lang="cs" key="SELECT_PKCS11_MODULE">Vybrat knihovnu PKCS #11</entry>
@@ -613,7 +611,7 @@
<entry lang="cs" key="FAVORITE_PIM_CHANGED">Tento svazek je registrován jako systémově oblíbený a jeho PIM bylo změněno.\nPřejete si, aby VeraCrypt automaticky aktualizoval jeho konfiguraci (vyžadována oprávnění správce systému)?\n\nProsím, neopomeňte, že odpovíte-li „Ne”, budete muset je manuálně aktualizovat.</entry>
<entry lang="cs" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">DŮLEŽITÉ: pokud jste nezničili váš Záchranný disk VeraCryptu, váš systémový diskový oddíl/disk může být stále dešifrován použitím starého hesla (zavedením Záchranného disku VeraCryptu a zadáním starého hesla). Měli byste vytvořit nový Záchranný disk VeraCryptu a pak zničit starý.\n\nChcete vytvořit nový Záchranný disk?</entry>
<entry lang="cs" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">Záchranný disk VeraCrypt stále používá předchozí algoritmus. Považujete-li předchozí algoritmus za nedostatečně bezpečný, měli byste vytvořit nový záchranný disk VeraCrypt a pak starý zničit.\n\nChcete vytvořit nový Záchranný disk VeraCrypt?</entry>
<entry lang="cs" key="KEYFILES_NOTE">Vězte, že VeraCrypt nikdy nemění obsah souborového klíče. Můžete vybrat více než jen jeden souborový klíč (na pořadí nezáleží). Zadáte-li adresář, všechny neskryté soubory nalezené uvnitř, budou použity jako souborové klíče. Klikněte na „Přidat soubory tokenu” a vyberte souborové klíče uložené na bezpečnostních tokenech nebo smart kartách (nebo k importu souborových klíčů na bezpečnostní tokeny nebo na smart karty).</entry>
<entry lang="cs" key="KEYFILES_NOTE">Jakýkoliv typ souboru (například *.mp3, *.jpg, *.zip, *.avi) může být použit jako souborový klíč VeraCryptu. Vězte, že VeraCrypt nikdy nemění obsah souborového klíče. Můžete vybrat více než jen jeden souborový klíč (na pořadí nezáleží). Zadáte-li adresář, všechny neskryté soubory nalezené uvnitř, budou použity jako souborové klíče. Klikněte na „Přidat soubory tokenu” a vyberte souborové klíče uložené na bezpečnostních tokenech nebo smart kartách (nebo k importu souborových klíčů na bezpečnostní tokeny nebo na smart karty).</entry>
<entry lang="cs" key="KEYFILE_CHANGED">Souborový klíč/e byl úspěšně přidán/odstraněn.</entry>
<entry lang="cs" key="KEYFILE_EXPORTED">Souborový klíč byl exportován.</entry>
<entry lang="cs" key="PKCS5_PRF_CHANGED">Klíč hlavičky derivačního algoritmu byl úspěšně zadán.</entry>
@@ -729,7 +727,7 @@
<entry lang="cs" key="DLL_FILES">Knihovny</entry>
<entry lang="cs" key="FORMAT_NTFS_STOP">NTFS formátování nemůže pokračovat.</entry>
<entry lang="cs" key="CANT_MOUNT_VOLUME">Svazek nelze připojit.</entry>
<entry lang="cs" key="CANT_UNMOUNT_VOLUME">Svazek nelze odpojit.</entry>
<entry lang="cs" key="CANT_DISMOUNT_VOLUME">Svazek nelze odpojit.</entry>
<entry lang="cs" key="FORMAT_NTFS_FAILED">Windows nemohl zformátovat svazek jako NTFS.\n\nVyberte prosím jiný systému souborů (je-li to možné) a zkuste to znovu. Popřípadě můžete nechat svazek nenaformátovaný (vyberte „Žádný” systém souborů), ukončete tohoto průvodce, připojte svazek a pak použijte buď systémový nástroj, nebo nástroj třetí strany k zformátování připojeného svazku (svazek zůstane zašifrovaný).</entry>
<entry lang="cs" key="FORMAT_NTFS_FAILED_ASK_FAT">Windows nemohl naformátovat svazek jako NTFS.\n\nChcete místo toho svazek naformátovat jako FAT?</entry>
<entry lang="cs" key="DEFAULT">Výchozí</entry>
@@ -771,7 +769,7 @@
<entry lang="cs" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">Svazek nemohl být VeraCryptem zašifrován, protože nastala nějaká chyba. Zkuste, prosím, nejdříve opravit všechny předešlé ohlášené chyby, a pak to zkuste znovu. Přetrvává-li problém, mohou vám pomoci kroky uvedené níže.</entry>
<entry lang="cs" key="INPLACE_ENC_GENERIC_ERR_RESUME">VeraCrypt nemohl pokračovat v šifrování diskového oddílu, protože nastala nějaká chyba.\n\nZkuste, prosím, nejdříve opravit všechny předešlé ohlášené chyby, a pak zkuste v úkonu pokračovat. Svazek nelze připojit, dokud nebude úplně zašifrován.</entry>
<entry lang="cs" key="INPLACE_DEC_GENERIC_ERR">Chyba zabránila VeraCryptu dešifrovat svazek. Zkuste vyřešit dříve ohlášené problémy a pak to zkuste znovu.</entry>
<entry lang="cs" key="CANT_UNMOUNT_OUTER_VOL">Chyba: vnější svazek nelze odpojit.\n\nSvazek nemůže být odpojen, obsahuje-li soubory nebo adresáře používané programem nebo systémem.\n\nZavřete prosím jakýkoliv program, který by mohl soubory nebo adresáře na svazku používat a klikněte Znovu.</entry>
<entry lang="cs" key="CANT_DISMOUNT_OUTER_VOL">Chyba: vnější svazek nelze odpojit.\n\nSvazek nemůže být odpojen, obsahuje-li soubory nebo adresáře používané programem nebo systémem.\n\nZavřete prosím jakýkoliv program, který by mohl soubory nebo adresáře na svazku používat a klikněte Znovu.</entry>
<entry lang="cs" key="CANT_GET_OUTER_VOL_INFO">Chyba: nelze získat informace o vnějším svazku. Vytváření svazku nemůže pokračovat.</entry>
<entry lang="cs" key="CANT_ACCESS_OUTER_VOL">Chyba: nelze přistupovat na vnější svazek. Vytváření svazku nelze dokončit.</entry>
<entry lang="cs" key="CANT_MOUNT_OUTER_VOL">Chyba: nemohu připojit vnější svazek. Vytváření svazku nelze dokončit.</entry>
@@ -813,7 +811,7 @@
<entry lang="cs" key="SECONDARY_KEY_SIZE_LRW">Velikost vylepšeného klíče (režim LRW)</entry>
<entry lang="cs" key="BITS">bitů</entry>
<entry lang="cs" key="BLOCK_SIZE">Velikost bloku</entry>
<entry lang="cs" key="KDF">KDF</entry>
<entry lang="cs" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="cs" key="PKCS5_ITERATIONS">PKCS-5 počet iterací</entry>
<entry lang="cs" key="VOLUME_CREATE_DATE">Diskový oddíl byl vytvořen</entry>
<entry lang="cs" key="VOLUME_HEADER_DATE">Hlavička byla naposledy změněna</entry>
@@ -855,7 +853,7 @@
<entry lang="cs" key="TC_INSTALLER_IS_RUNNING">Instalátor programu VeraCrypt momentálně běží na tomto systému a provádí nebo připravuje instalaci nebo update programu VeraCrypt. Než budete pokračovat, počkejte na dokončení nebo jej zavřete. Nemůžete-li ho zavřít, restartujte prosím počítač, než budete pokračovat.</entry>
<entry lang="cs" key="INSTALL_FAILED">Instalace nebyla úspěšná.</entry>
<entry lang="cs" key="UNINSTALL_FAILED">Odinstalace nebyla úspěšná.</entry>
<entry lang="cs" key="DIST_PACKAGE_CORRUPTED">Distribuční balíček je poškozený. Stáhněte jej prosím znovu (nejlépe z oficiálních stránek programu VeraCrypt na adrese https://veracrypt.jp).</entry>
<entry lang="cs" key="DIST_PACKAGE_CORRUPTED">Distribuční balíček je poškozený. Stáhněte jej prosím znovu (nejlépe z oficiálních stránek programu VeraCrypt na adrese https://www.veracrypt.fr).</entry>
<entry lang="cs" key="CANNOT_WRITE_FILE_X">Nelze zapsat soubor %s</entry>
<entry lang="cs" key="EXTRACTING_VERB">Rozbalení</entry>
<entry lang="cs" key="CANNOT_READ_FROM_PACKAGE">Nelze přečíst data z balíčku.</entry>
@@ -882,7 +880,7 @@
<entry lang="cs" key="INSTALL_COMPLETED">Instalace dokončena.</entry>
<entry lang="cs" key="CANT_CREATE_FOLDER">Adresář '%s' nemohl být vytvořen</entry>
<entry lang="cs" key="CLOSE_TC_FIRST">Ovladač zařízení VeraCrypt nemůže být odstraněn.\n\nZavřete prosím nejdříve všechny okna VeraCrypt. Nepomůže-li to, restartujte prosím Windows a zkuste to znovu.</entry>
<entry lang="cs" key="UNMOUNT_ALL_FIRST">Všechny svazky VeraCrypt musí být odpojeny před instalací nebo odinstalací programu VeraCrypt.</entry>
<entry lang="cs" key="DISMOUNT_ALL_FIRST">Všechny svazky VeraCrypt musí být odpojeny před instalací nebo odinstalací programu VeraCrypt.</entry>
<entry lang="cs" key="UNINSTALL_OLD_VERSION_FIRST">Na tomto systému je aktuálně nainstalována zastaralá verze VeraCryptu. Před instalací nové verze musí být nejprve odinstalována.\n\nJakmile zavřete tento dialog, spustí se odinstalátor staré verze. Při odinstalaci VeraCryptu nedojde k dešifrování žádného svazku. Po odinstalaci staré verze VeraCryptu spusťte znovu instalátor nové verze.</entry>
<entry lang="cs" key="REG_INSTALL_FAILED">Instalace záznamů do registru nebyla úspěšná</entry>
<entry lang="cs" key="DRIVER_INSTALL_FAILED">Instalace ovladače zařízení nebyla úspěšná. Restartujte prosím Windows a zkuste poté nainstalovat VeraCrypt znovu.</entry>
@@ -903,7 +901,7 @@
<entry lang="cs" key="MINUTES">minut</entry>
<entry lang="cs" key="SECONDS">s</entry>
<entry lang="cs" key="OPEN">Otevřít</entry>
<entry lang="cs" key="UNMOUNT">Odpojit</entry>
<entry lang="cs" key="DISMOUNT">Odpojit</entry>
<entry lang="cs" key="SHOW_TC">Zobrazit VeraCrypt</entry>
<entry lang="cs" key="HIDE_TC">Skrýt VeraCrypt</entry>
<entry lang="cs" key="TOTAL_DATA_READ">Přečteno dat od připojení</entry>
@@ -940,7 +938,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ých klíčů musí mít hodnotu mezi 64 a 1048576 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>
@@ -975,7 +973,7 @@
<entry lang="cs" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt Oblíbené systémové svazky</entry>
<entry lang="cs" key="SYS_FAVORITES_HELP_LINK">Co jsou oblíbené systémové svazky?</entry>
<entry lang="cs" key="SYS_FAVORITES_REQUIRE_PBA">Zdá se, že systémový diskový oddíl/disk není zašifrován.\n\nOblíbené systémové svazky mohou být připojeny pouze s použitím ověřovacího hesla. Abyste mohli používat oblíbené systémové svazky, musíte nejdříve zašifrovat systémový diskový oddíl/disk.</entry>
<entry lang="cs" key="UNMOUNT_FIRST">Před pokračováním odpojte prosím svazek.</entry>
<entry lang="cs" key="DISMOUNT_FIRST">Před pokračováním odpojte prosím svazek.</entry>
<entry lang="cs" key="CANNOT_SET_TIMER">Chyba: nelze nastavit časovač.</entry>
<entry lang="cs" key="IDPM_CHECK_FILESYS">Zkontrolovat systém souborů</entry>
<entry lang="cs" key="IDPM_REPAIR_FILESYS">Opravit systém souborů</entry>
@@ -1009,11 +1007,11 @@
<entry lang="cs" key="NO_SYSENC_PARTITION_SELECTED">Nebyl vybrán žádný diskový oddíl.\n\nKlikněte „Vybrat zařízení” pro výběr odpojeného diskového oddílu, který běžně vyžaduje ověření (např. diskový oddíl umístěný na zašifrovaném systémovém disku jiného operačního systému, který neběží nebo zašifrovaný systémový diskový oddíl jiného operačního systému).\n\nPoznámka: vybraný diskový oddíl bude připojen jako běžný svazek VeraCryptu bez ověření. To je vhodné třeba pro zálohování nebo opravy.</entry>
<entry lang="cs" key="CONFIRM_SAVE_DEFAULT_KEYFILES">UPOZORNĚNÍ: jsou-li zadány a povoleny výchozí souborové klíče, svazky, které nebudou tyto souborové klíče používat, nebude možné připojit. Proto jakmile povolíte výchozí souborové klíče, pamatujte na zrušení možnosti „Používat souborové klíče” (pod místem, kde se zadává heslo) kdykoliv budete používat takové svazky.\n\nOpravdu chcete uložit vybrané souborové klíče/cesty jako výchozí?</entry>
<entry lang="cs" key="HK_AUTOMOUNT_DEVICES">Autom. připojit zařízení</entry>
<entry lang="cs" key="HK_UNMOUNT_ALL">Odpojit vše</entry>
<entry lang="cs" key="HK_DISMOUNT_ALL">Odpojit vše</entry>
<entry lang="cs" key="HK_WIPE_CACHE">Vyčistit mezipaměť</entry>
<entry lang="cs" key="HK_UNMOUNT_ALL_AND_WIPE">Odpojit vše &amp; vyčistit mezipaměť</entry>
<entry lang="cs" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Vynutit odpojení všech &amp; Vyčistit mezipaměť</entry>
<entry lang="cs" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Vynutit odpojení všech, Vyčistit mezipaměť &amp; Konec</entry>
<entry lang="cs" key="HK_DISMOUNT_ALL_AND_WIPE">Odpojit vše &amp; vyčistit mezipaměť</entry>
<entry lang="cs" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Vynutit odpojení všech &amp; Vyčistit mezipaměť</entry>
<entry lang="cs" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Vynutit odpojení všech, Vyčistit mezipaměť &amp; Konec</entry>
<entry lang="cs" key="HK_MOUNT_FAVORITE_VOLUMES">Připojit oblíbené diskové oddíly</entry>
<entry lang="cs" key="HK_SHOW_HIDE_MAIN_WINDOW">Zobrazit/skrýt hlavní okno programu VeraCrypt</entry>
<entry lang="cs" key="PRESS_A_KEY_TO_ASSIGN">(klikněte sem a stiskněte klávesu)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="cs" key="PAGING_FILE_CREATION_PREVENTED">Došlo k zabránění vytvoření stránkovacího souboru.\n\nKvůli problémům ve Windows nemohou být stránkovací soubory umístěny na nesystémových svazcích VeraCrypt (včetně oblíbených systémových svazků). VeraCrypt podporuje vytvoření stránkovacích souborů pouze na nezašifrovaných systémových diskových oddílech/discích.</entry>
<entry lang="cs" key="SYS_ENC_HIBERNATION_PREVENTED">Chyba nebo nekompatibilita zabraňuje programu VeraCrypt zašifrovat „hibernační” soubor (slouží k uspání počítače). Uspávací režim byl proto zamezen.\n\nPoznámka: když počítač přejde do režimu spánku (nebo se přepne do režimu úspory energie), obsah operační paměti je zapsán do hibernačního souboru uloženém na disku. VeraCrypt by nemohl zabránit uložení nezašifrovaných šifrovacích klíčů a obsahu citlivých souborů do souboru pro spací režim.</entry>
<entry lang="cs" key="HIDDEN_OS_HIBERNATION_PREVENTED">Hibernaci bylo zabráněno.\n\nVeraCrypt nepodporuje hibernaci na skrytých operačních systémech, které používají dodatečný diskový oddíl pro zavádění. Zavaděč diskového oddílu je sdílen jak s klamným, tak se skrytým systémem. Aby se předešlo úniku dat a problémům spojených s hibernací, VeraCrypt musí zabránit skrytému systému v zapisování do sdíleného zaváděcího diskového oddílu a v hibernování.</entry>
<entry lang="cs" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">Svazek VeraCrypt připojený jako %c: byl odpojen.</entry>
<entry lang="cs" key="MOUNTED_VOLUMES_UNMOUNTED">Svazky VeraCrypt byly odpojeny.</entry>
<entry lang="cs" key="VOLUMES_UNMOUNTED_CACHE_WIPED">Svazky VeraCrypt byly odpojeny a mezipaměť hesla byla pročištěna.</entry>
<entry lang="cs" key="SUCCESSFULLY_UNMOUNTED">Úspěšně odpojeno</entry>
<entry lang="cs" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">Svazek VeraCrypt připojený jako %c: byl odpojen.</entry>
<entry lang="cs" key="MOUNTED_VOLUMES_DISMOUNTED">Svazky VeraCrypt byly odpojeny.</entry>
<entry lang="cs" key="VOLUMES_DISMOUNTED_CACHE_WIPED">Svazky VeraCrypt byly odpojeny a mezipaměť hesla byla pročištěna.</entry>
<entry lang="cs" key="SUCCESSFULLY_DISMOUNTED">Úspěšně odpojeno</entry>
<entry lang="cs" key="CONFIRM_BACKGROUND_TASK_DISABLED">UPOZORNĚNÍ: je-li vypnuta VeraCrypt služba na pozadí, následující funkce budou vypnuty:\n\n1) Zkratkové klávesy\n2) Automatické odpojení (např. při odhlášení, nevratném odpojení zařízení, časové prodlevě apod)\n3) Automatické připojení oblíbených svazků\n4) Upozornění (např. při předejití poškození skrytého svazku)\n5) Ikona na hlavní liště\n\nPoznámka: službu na pozadí můžete kdykoliv vypnout kliknutím pravým tlačítkem myši na ikonu VeraCryptu vpravo dole a vyberte „Konec”.\n\nOpravdu chcete natrvalo vypnout VeraCrypt službu na pozadí?</entry>
<entry lang="cs" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">UPOZORNĚNÍ: je-li tato volba vypnuta, svazky obsahující otevřené soubory/adresáře nebude možné automaticky odpojit.\n\nOpravdu chcete tuto možnost vypnout?</entry>
<entry lang="cs" key="WARN_PREF_AUTO_UNMOUNT">UPOZORNĚNÍ: svazky obsahující otevřené soubory/adresáře NEBUDOU automaticky odpojeny.\n\nAbyste tomu zabránili, povolte následující možnost v tomto dialogovém okně: „Vynutit automatické odpojení, i když svazek obsahuje otevřené soubory nebo adresáře”</entry>
<entry lang="cs" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">UPOZORNĚNÍ: je-li v notebooku slabá baterie, Windows mohou při přechodu do spořícího režimu zapomenout poslat vhodnou zprávu běžícím aplikacím. V takových případech se může stát, že selže automatické odpojení VeraCrypt svazků.</entry>
<entry lang="cs" key="CONFIRM_NO_FORCED_AUTODISMOUNT">UPOZORNĚNÍ: je-li tato volba vypnuta, svazky obsahující otevřené soubory/adresáře nebude možné automaticky odpojit.\n\nOpravdu chcete tuto možnost vypnout?</entry>
<entry lang="cs" key="WARN_PREF_AUTO_DISMOUNT">UPOZORNĚNÍ: svazky obsahující otevřené soubory/adresáře NEBUDOU automaticky odpojeny.\n\nAbyste tomu zabránili, povolte následující možnost v tomto dialogovém okně: „Vynutit automatické odpojení, i když svazek obsahuje otevřené soubory nebo adresáře”</entry>
<entry lang="cs" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">UPOZORNĚNÍ: je-li v notebooku slabá baterie, Windows mohou při přechodu do spořícího režimu zapomenout poslat vhodnou zprávu běžícím aplikacím. V takových případech se může stát, že selže automatické odpojení VeraCrypt svazků.</entry>
<entry lang="cs" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Naplánovali jste úkon zašifrování diskového oddílu/svazku. Úkon nebyl ještě dokončen.\n\nChcete nyní úkon obnovit?</entry>
<entry lang="cs" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">Naplánovali jste úkon šifrování nebo dešifrování systémového diskového oddílu/disku. Úkon ještě nebyl dokončen.\n\nChcete začít (navázat) v úkonu nyní?</entry>
<entry lang="cs" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">Chcete být upozorněn, zda chcete pokračovat v naplánovaném úkonu, který má zašifrovat nesystémové diskové oddíly/svazky?</entry>
@@ -1063,7 +1061,7 @@
<entry lang="cs" key="SYS_AUTOMOUNT_DISABLED">Váš systém není nakonfigurován k autom. připojení nových svazků. Může se stát, že svazky VeraCrypt umístěné na zařízeních nebude možné připojit. Automatické připojení může být povoleno spuštěním následujícího příkazu a restartování systému.\n\nmountvol.exe /E</entry>
<entry lang="cs" key="SYS_ASSIGN_DRIVE_LETTER">Přiřaďte prosím písmeno jednotky diskovému oddílu/zařízení než budete pokračovat („Ovládací panely &gt; Systém a údržba &gt; Nástroje správce Vytvořit a formátovat diskové oddíly pevného disku”).\n\nJde o požadavek operačního systému.</entry>
<entry lang="cs" key="MOUNT_TC_VOLUME">Připojit svazek VeraCrypt</entry>
<entry lang="cs" key="UNMOUNT_ALL_TC_VOLUMES">Odpojit všechny svazky VeraCrypt</entry>
<entry lang="cs" key="DISMOUNT_ALL_TC_VOLUMES">Odpojit všechny svazky VeraCrypt</entry>
<entry lang="cs" key="UAC_INIT_ERROR">VeraCrypt nemohl získat oprávnění správce.</entry>
<entry lang="cs" key="ERR_ACCESS_DENIED">Přístup byl odepřen operačním systémem.\n\nMožná příčina: operační systém vyžaduje, abyste měli práva pro čtení/zápis (nebo oprávnění správce pro určité adresáře, soubory a zařízení, abyste mohli číst a zapisovat data do/z nich. Uživatel bez oprávnění správce může běžně vytvářet, číst a měnit soubory ve svém adresáři s dokumenty.</entry>
<entry lang="cs" key="SECTOR_SIZE_UNSUPPORTED">Chyba: disk používá nepodporovanou velikost sektorů.\n\nV současné době není možné vytvořit diskové oddíly/svazky na discích, které používají sektory větší než 4096 bajtů. Na těchto discích ale můžete vytvořit souborové svazky.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="cs" key="HIDDEN_OS_CREATION_PREINFO_HELP">V následujícím kroku vytvoří VeraCrypt skrytý operační systém tak, že zkopíruje obsah systémového diskového oddílu do skrytého svazku (kopírovaná data budou zašifrována za běhu jiným šifrovacím klíčem, než je ten, co se používá pro klamný operační systém).\n\nÚkon bude proveden v prostředí zavaděče (než se Windows spustí) a může to trvat delší dobu; několik hodin nebo dokonce několik dní (záleží na velikosti systémového diskového oddílu a na výkonu vašeho počítače).\n\nBudete moci úkon přerušit, vypnout počítač a pak spustit operační systém a pokračovat v úkonu. Pokud ho ale přerušíte, celý úkon kopírování systému bude spuštěn úplně od začátku (protože obsah systémového diskového oddílu se nesmí během klonování změnit).</entry>
<entry lang="cs" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">Chcete zrušit celý úkon vytváření skrytého operačního systému?\n\nPoznámka: NEBUDETE moci pokračovat, pokud ho nyní zrušíte.</entry>
<entry lang="cs" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">Chcete zrušit před-testování šifrování systému?</entry>
<entry lang="cs" key="BOOT_PRETEST_FAILED_RETRY">Předběžná zkouška zašifrování systému nebyla úspěšná. Chcete to zkusit znovu?\n\nVyberete-li „Ne”, ověřovací součást zavaděče bude odinstalována.\n\nPoznámka:\n\n- Nevyzval-li vás zavaděč VeraCryptu k zadání hesla před spuštěním Windows, je možné, že váš operační systém se nezavádí z disku, na kterém je nainstalován. To není podporováno.\n\n- Pokud jste použili jiný šifrovací algoritmus než AES a předběžná zkouška nebyla úspěšná (a vy jste zadali heslo), může to být způsobeno nevhodně navrženým ovladačem. Vyberte „Ne” a zkuste systémový diskový oddíl/jednotku znovu zašifrovat, ale použijte šifrovací algoritmus AES (který má nejmenší nároky na paměť).\n\n- Pro zjištění, jaké jsou další možné příčiny a řešení, viz: https://veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="cs" key="BOOT_PRETEST_FAILED_RETRY">Předběžná zkouška zašifrování systému nebyla úspěšná. Chcete to zkusit znovu?\n\nVyberete-li „Ne”, ověřovací součást zavaděče bude odinstalována.\n\nPoznámka:\n\n- Nevyzval-li vás zavaděč VeraCryptu k zadání hesla před spuštěním Windows, je možné, že váš operační systém se nezavádí z disku, na kterém je nainstalován. To není podporováno.\n\n- Pokud jste použili jiný šifrovací algoritmus než AES a předběžná zkouška nebyla úspěšná (a vy jste zadali heslo), může to být způsobeno nevhodně navrženým ovladačem. Vyberte „Ne” a zkuste systémový diskový oddíl/jednotku znovu zašifrovat, ale použijte šifrovací algoritmus AES (který má nejmenší nároky na paměť).\n\n- Pro zjištění, jaké jsou další možné příčiny a řešení, viz: https://www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="cs" key="SYS_DRIVE_NOT_ENCRYPTED">Systémový diskový oddíl/disk pravděpodobně není zašifrován (ani částečně ani plně).</entry>
<entry lang="cs" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">Váš systémový diskový oddíl/disk je zašifrován (částečně nebo plně).\n\nPřed pokračováním celý systémový diskový oddíl/disk nejdříve dešifrujte. Chcete-li tak učinit, zvolte „Systém &gt; Trvale dešifrovat systémový diskový oddíl/disk” z nabídky hlavního okna programu VeraCrypt.</entry>
<entry lang="cs" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">Je-li systémový diskový oddíl/disk zašifrován (částečně nebo úplně), nemůžete snížit verzi VeraCryptu (ale můžete jej aktualizovat nebo přeinstalovat stejnou verzí).</entry>
@@ -1306,8 +1304,8 @@
<entry lang="cs" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Počet vláken je momentálně omezen, což omezí výsledky výkonnostních testů (horší výkon).\n\nPro využití plného potenciálu procesoru/ů, vyberte „Nastavení &gt; Výkon” a vypněte odpovídající nastavení.</entry>
<entry lang="cs" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">Chcete, aby se VeraCrypt pokusil vypnout ochranu proti zapisování do tohoto diskového oddílu/disku?</entry>
<entry lang="cs" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">UPOZORNĚNÍ: tato volba může ovlivnit výkonnost.\n\nOpravdu chcete použít toto nastavení?</entry>
<entry lang="cs" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">UPOZORNĚNÍ: svazek VeraCrypt byl automaticky odpojen</entry>
<entry lang="cs" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Před tím, než fyzicky odpojíte nebo vypnete zařízení, které obsahuje připojený svazek, měli byste tento svazek nejdříve odpojit v VeraCryptu.\n\nNeočekávané a nenadále odpojení je většinou způsobeno náhle selhávajícím kabelem, diskem (šuplíkem) apod.</entry>
<entry lang="cs" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">UPOZORNĚNÍ: svazek VeraCrypt byl automaticky odpojen</entry>
<entry lang="cs" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Před tím, než fyzicky odpojíte nebo vypnete zařízení, které obsahuje připojený svazek, měli byste tento svazek nejdříve odpojit v VeraCryptu.\n\nNeočekávané a nenadále odpojení je většinou způsobeno náhle selhávajícím kabelem, diskem (šuplíkem) apod.</entry>
<entry lang="cs" key="UNSUPPORTED_TRUECRYPT_FORMAT">Tento svazek byl vytvořen v TrueCrypt %x.%x, VeraCrypt podporuje jen svazky vytvořené v TrueCrypt 6.x/7.x</entry>
<entry lang="cs" key="TEST">Test</entry>
<entry lang="cs" key="KEYFILE">Souborový klíč</entry>
@@ -1453,7 +1451,7 @@
<entry lang="cs" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Přidat všechny připojené svazky do oblíbených...</entry>
<entry lang="cs" key="TASKICON_PREF_MENU_ITEMS">Položky nabídky s ikonou úlohy</entry>
<entry lang="cs" key="TASKICON_PREF_OPEN_VOL">Otevřít připojené svazky</entry>
<entry lang="cs" key="TASKICON_PREF_UNMOUNT_VOL">Odpojit připojené svazky</entry>
<entry lang="cs" key="TASKICON_PREF_DISMOUNT_VOL">Odpojit připojené svazky</entry>
<entry lang="cs" key="DISK_FREE">Volné místo k dispozici: {0}</entry>
<entry lang="cs" key="VOLUME_SIZE_HELP">Zadejte velikost kontejneru, který chcete vytvořit. Nezapomeňte, že minimální možná velikost svazku je 292 KiB.</entry>
<entry lang="cs" key="LINUX_CONFIRM_INNER_VOLUME_CALC">UPOZORNĚNÍ: Pro vnější svazek jste vybral/a jiný souborový systém než je FAT.\nBerte v potaz, že v tomto případě VeraCrypt nemůže vypočítat přesnou maximální povolenou velikost skrytého svazku a použije pouze odhad, který může být chybný.\nJe tedy vaší odpovědností použít odpovídající hodnotu velikosti skrytého svazku, aby nepřekrýval vnější svazek.\n\nChcete pro vnější svazek nadále používat vybraný souborový systém?</entry>
@@ -1483,14 +1481,14 @@
<entry lang="cs" key="LINUX_DO_NOT_MOUNT">Ne&amp;připojovat</entry>
<entry lang="cs" key="LINUX_MOUNT_AT_DIR">Připojit v adresáři:</entry>
<entry lang="cs" key="LINUX_SELECT">Vy&amp;brat...</entry>
<entry lang="cs" key="LINUX_UNMOUNT_ALL_WHEN">Odpojit všechny svazky, když</entry>
<entry lang="cs" key="LINUX_DISMOUNT_ALL_WHEN">Odpojit všechny svazky, když</entry>
<entry lang="cs" key="LINUX_ENTERING_POWERSAVING">Systém přechází do úsporného režimu</entry>
<entry lang="cs" key="LINUX_LOGIN_ACTION">Úkony prováděné po přihlášení uživatele</entry>
<entry lang="cs" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Zavřít všechna okna Průzkumníka odpojovaného svazku</entry>
<entry lang="cs" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Zavřít všechna okna Průzkumníka odpojovaného svazku</entry>
<entry lang="cs" key="LINUX_HOTKEYS">Klávesové zkratky</entry>
<entry lang="cs" key="LINUX_SYSTEM_HOTKEYS">Celosystémové klávesové zkratky</entry>
<entry lang="cs" key="LINUX_SOUND_NOTIFICATION">Přehrát zvuk oznámení systému po připojení/odpojení</entry>
<entry lang="cs" key="LINUX_CONFIRM_AFTER_UNMOUNT">Zobrazit okno s potvrzením po odpojení</entry>
<entry lang="cs" key="LINUX_CONFIRM_AFTER_DISMOUNT">Zobrazit okno s potvrzením po odpojení</entry>
<entry lang="cs" key="LINUX_VC_QUITS">Ukončení VeraCryptu</entry>
<entry lang="cs" key="LINUX_OPEN_FINDER">Otevřít okno Finderu pro úspěšně připojený svazek</entry>
<entry lang="cs" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Berte v potaz, že toto nastavení se projeví pouze v případě, že je zakázáno používání kryptografických služeb jádra.</entry>
@@ -1522,8 +1520,7 @@
<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_DISMOUNTED">Svazek {0} byl odpojen.</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>
@@ -1553,7 +1550,7 @@
<entry lang="cs" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Chyba: Disk používá jinou velikost sektoru než 512 bajtů.\n\nVzhledem k omezením komponent dostupných na vaší platformě, svazky hostované diskovým oddílem/zařízením nemohou být vytvořeny/použity.\n\nMožná řešení:\n- Vytvořit na jednotce svazek pro soubory (kontejner).\n- Použít jednotku s 512bajtovými sektory.\n- Použít VeraCrypt na jiné platformě.</entry>
<entry lang="cs" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">Hostitelský soubor/zařízení se již používá.</entry>
<entry lang="cs" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Slot pro svazek není k dispozici.</entry>
<entry lang="cs" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt vyžaduje minimálně macFUSE 2.5.</entry>
<entry lang="cs" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt vyžaduje minimálně OSXFUSE 2.5.</entry>
<entry lang="cs" key="EXCEPTION_OCCURRED">Vyskytla se chyba</entry>
<entry lang="cs" key="ENTER_PASSWORD">Zadejte heslo</entry>
<entry lang="cs" key="ENTER_TC_VOL_PASSWORD">Zadejte heslo ke svazku Veracrypt</entry>
@@ -1570,124 +1567,6 @@
<entry lang="cs" key="VOLUME_HOST_IN_USE">UPOZORNĚNÍ: Hostitelský soubor/zařízení {0} je již používán!\n\nIgnorování této skutečnosti může způsobit nežádoucí výsledky včetně nestability systému. Všechny aplikace, které by mohly používat hostitelský soubor/zařízení, by měly být před připojením svazku ukončeny.\n\nPokračovat v připojení?</entry>
<entry lang="cs" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt byl nainstalován pomocí balíčku MSI, a proto jej nelze aktualizovat pomocí standardního instalátoru.\n\nPro aktualizaci instalace VeraCrypt, použijte balíček MSI.</entry>
<entry lang="cs" key="IDC_USE_ALL_FREE_SPACE">Využít veškeré dostupné volné místo</entry>
<entry lang="cs" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">VeraCrypt nelze aktualizovat, jelikož systémový diskový oddíl/disk byl zašifrován pomocí algoritmu, který již není podporován.\nPřed aktualizací VeraCryptu dešifrujte systém a poté jej znovu zašifrujte.</entry>
<entry lang="cs" key="LINUX_EX2MSG_TERMINALNOTFOUND">Podporovaná terminálová aplikace nebyla nalezena, potřebujete buď xterm, konsole nebo gnome-terminal (s dbus-x11).</entry>
<entry lang="cs" key="IDM_MOUNT_NO_CACHE">Připojit bez mezipaměti</entry>
<entry lang="cs" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nRozšíření svazku VeraCryptu za běhu bez nutnosti přeformátování\n\n\nPodporovány jsou všechny druhy svazků (kontejnerové soubory, disky a diskové oddíly) naformátované systémem NTFS. Jedinou podmínkou je, že na hostitelské jednotce nebo hostitelském zařízení svazku VeraCrypt musí být dostatek volného místa.\n\nNepoužívejte tento software k rozšíření vnějšího svazku obsahujícího skrytý svazek, protože tím dojde ke zničení skrytého svazku!\n</entry>
<entry lang="cs" key="IDC_STEPSEXPAND">1. Vyberte svazek VeraCrypt, který chcete rozšířit\n2. Klikněte na tlačítko „Připojit”.</entry>
<entry lang="cs" key="IDT_VOL_NAME">Svazek: </entry>
<entry lang="cs" key="IDT_FILE_SYS">Souborový systém: </entry>
<entry lang="cs" key="IDT_CURRENT_SIZE">Aktuální velikost: </entry>
<entry lang="cs" key="IDT_NEW_SIZE">Nová velikost: </entry>
<entry lang="cs" key="IDT_NEW_SIZE_BOX_TITLE">Zadejte novou velikost svazku</entry>
<entry lang="cs" key="IDC_INIT_NEWSPACE">Vyplnit nové místo náhodnými daty</entry>
<entry lang="cs" key="IDC_QUICKEXPAND">Rychle rozšířit</entry>
<entry lang="cs" key="IDT_INIT_SPACE">Vyplnit nové místo: </entry>
<entry lang="cs" key="EXPANDER_FREE_SPACE">%s volného místa na hostitelské jednotce</entry>
<entry lang="cs" key="EXPANDER_HELP_DEVICE">Jedná se o svazek VeraCrypt založený na zařízení.\n\nVelikost nového svazku bude automaticky zvolena jako velikost hostitelského zařízení.</entry>
<entry lang="cs" key="EXPANDER_HELP_FILE">Zadejte novou velikost svazku VeraCrypt (musí být alespoň o %I64u KB větší než aktuální velikost)..</entry>
<entry lang="cs" key="QUICK_EXPAND_WARNING">UPOZORNĚNÍ: rychlé rozšíření byste měli použít pouze v následujících případech:\n\n1) Zařízení, na kterém je umístěn kontejner se soubory, neobsahuje žádná citlivá data a nepotřebujete je věrohodně popřít.\n2) Zařízení, na kterém je umístěn kontejner se soubory, již bylo bezpečně a plně zašifrováno.\n\nJste si jisti, že chcete použít Rychlé rozšíření?</entry>
<entry lang="cs" key="EXPANDER_STATUS_TEXT">DŮLEŽITÉ: v tomto okně pohybujte myší co nejnáhodněji. Čím déle s ní budete pohybovat, tím lépe. Tím se výrazně zvýší kryptografická síla šifrovacích klíčů. Poté pro zvětšení svazku klikněte na tlačítko „Pokračovat”.</entry>
<entry lang="cs" key="EXPANDER_STATUS_TEXT_LEGACY">Kliknutím na tlačítko „Pokračovat” zvětšíte svazek.</entry>
<entry lang="cs" key="EXPANDER_FINISH_ERROR">Chyba: rozšíření svazku se nepodařilo.</entry>
<entry lang="cs" key="EXPANDER_FINISH_ABORT">Chyba: uživatel přerušil operaci.</entry>
<entry lang="cs" key="EXPANDER_FINISH_OK">Dokončeno. Svazek byl úspěšně rozšířen.</entry>
<entry lang="cs" key="EXPANDER_CANCEL_WARNING">Upozornění:přerušení může mít za následek poškození svazku.\n\nChcete opravdu zrušit úkon?</entry>
<entry lang="cs" key="EXPANDER_STARTING_STATUS">Zahájení zvětšování svazku ...\n</entry>
<entry lang="cs" key="EXPANDER_HIDDEN_VOLUME_ERROR">Vnější svazek obsahující skrytý svazek nelze rozšířit, jelikož se tím bude skrytý svazek zničen.\n</entry>
<entry lang="cs" key="EXPANDER_SYSTEM_VOLUME_ERROR">Systémový svazek VeraCrypt nelze rozšířit.</entry>
<entry lang="cs" key="EXPANDER_NO_FREE_SPACE">Nedostatek volného místa pro zvětšení svazku</entry>
<entry lang="cs" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Upozornění: soubor kontejneru je větší než oblast svazku VeraCryptu. Data za oblastí svazku VeraCryptu budou přepsána.\n\nChcete pokračovat?</entry>
<entry lang="cs" key="EXPANDER_WARNING_FAT">Upozornění: rozšířen bude pouze samotný svazek VeraCryptu, ale ne souborový systém.\n\nChcete pokračovat?</entry>
<entry lang="cs" key="EXPANDER_WARNING_EXFAT">Upozornění: svazek VeraCrypt obsahuje souborový systém exFAT!\n\nRozšířen bude pouze samotný svazek VeraCryptu, ale ne souborový systém.\n\nChcete pokračovat?</entry>
<entry lang="cs" key="EXPANDER_WARNING_UNKNOWN_FS">Upozornění: Svazek VeraCryptu obsahuje neznámý nebo dokonce neobsahuje žádný souborový systém!\n\nRozšířen bude pouze samotný svazek VeraCryptu, souborový systém zůstane nezměněn.\n\nChcete pokračovat?</entry>
<entry lang="cs" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">Příliš malá velikost nového svazku, musí být alespoň o %I64u kB větší než aktuální velikost.</entry>
<entry lang="cs" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">Velikost nového svazku je příliš velká, na hostitelské jednotce není dostatek místa.</entry>
<entry lang="cs" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Překročena maximální velikost souboru %I64u MB na hostitelské jednotce.</entry>
<entry lang="cs" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Chyba: Nepodařilo se získat potřebná oprávnění k povolení funkce rychlého rozšíření!\nZrušte prosím zaškrtnutí možnosti rychlého rozšíření a zkuste to znovu.</entry>
<entry lang="cs" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Maximální velikost svazku VeraCryptu %I64u TB byla překročena!\n</entry>
<entry lang="cs" key="FULL_FORMAT">Plný formát</entry>
<entry lang="cs" key="FAST_CREATE">Rychle vytvořit</entry>
<entry lang="cs" key="WARN_FAST_CREATE">Upozornění: Rychlé vytvoření byste měli použít pouze v následujících případech:\n\n1) Zařízení neobsahuje žádná citlivá data a nepotřebujete věrohodné popření.\n2) Zařízení již bylo bezpečně a plně zašifrováno.\n\nJste si jisti, že chcete použít rychlé vytvoření?</entry>
<entry lang="cs" key="IDC_ENABLE_EMV_SUPPORT">Povolit podporu EMV</entry>
<entry lang="cs" key="COMMAND_APDU_INVALID">Příkaz APDU zaslaný na kartu není platný.</entry>
<entry lang="cs" key="EXTENDED_APDU_UNSUPPORTED">Rozšířené příkazy APDU nelze použít s aktuálním tokenem.</entry>
<entry lang="cs" key="SCARD_MODULE_INIT_FAILED">Chyba při načtení knihovny WinSCard / PCSC.</entry>
<entry lang="cs" key="EMV_UNKNOWN_CARD_TYPE">Karta ve čtečce není podporovanou kartou EMV.</entry>
<entry lang="cs" key="EMV_SELECT_AID_FAILED">AID karty ve čtečce nebylo možné vybrat.</entry>
<entry lang="cs" key="EMV_ICC_CERT_NOTFOUND">Certifikát veřejného klíče ICC nebyl na kartě nalezen.</entry>
<entry lang="cs" key="EMV_ISSUER_CERT_NOTFOUND">Certifikát veřejného klíče vydavatele nebyl na kartě nalezen.</entry>
<entry lang="cs" key="EMV_CPLC_NOTFOUND">CPLC nebyl na kartě EMV nalezen.</entry>
<entry lang="cs" key="EMV_PAN_NOTFOUND">Na kartě EMV nebylo nalezeno žádné číslo primárního účtu (PAN).</entry>
<entry lang="cs" key="INVALID_EMV_PATH">Cesta k EMV je neplatná.</entry>
<entry lang="cs" key="EMV_KEYFILE_DATA_NOTFOUND">Není možné sestavit soubor klíče z dat karty EMV.\n\nNení k dispozici jeden z následujících údajů:\n- Certifikát veřejného klíče ICC.\n- Certifikát veřejného klíče vydavatele.\n- Data CPLC.</entry>
<entry lang="cs" key="SCARD_W_REMOVED_CARD">Ve čtečce není žádná karta.\n\nZkontrolujte, zda je karta správně zasunuta.</entry>
<entry lang="cs" key="FORMAT_EXTERNAL_FAILED">Příkaz Windows format.com selhal při formátování svazku jako NTFS/exFAT/ReFS: Chyba 0x%.8X.\n\nPřechod zpět pro použití Windows FormatEx API.</entry>
<entry lang="cs" key="FORMATEX_API_FAILED">Windows FormatEx API se nepodařilo naformátovat svazek jako NTFS/exFAT/ReFS.\n\nStav selhání = %s.</entry>
<entry lang="cs" key="EXPANDER_WRITING_RANDOM_DATA">Zápis náhodných dat na nové místo ...\n</entry>
<entry lang="cs" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Zápis znovu zašifrované záložní hlavičky ...\n</entry>
<entry lang="cs" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Zápis znovu zašifrované primární hlavičky ...\n</entry>
<entry lang="cs" key="EXPANDER_WIPING_OLD_HEADER">Vymazání staré záložní hlavičky ...\n</entry>
<entry lang="cs" key="EXPANDER_MOUNTING_VOLUME">Připojení svazku ...\n</entry>
<entry lang="cs" key="EXPANDER_UNMOUNTING_VOLUME">Odpojení svazku ...\n</entry>
<entry lang="cs" key="EXPANDER_EXTENDING_FILESYSTEM">Rozšíření souborového systému ...\n</entry>
<entry lang="cs" key="PARTIAL_SYSENC_MOUNT_READONLY">Upozornění: systémový diskový oddíl, jenž jste se pokusili připojit, nebyl plně zašifrován. Jako bezpečnostní opatření proti možnému poškození nebo nežádoucím změnám byl svazek '%s' připojen pouze pro čtení.</entry>
<entry lang="cs" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Důležité informace o používání souborových přípon třetích stran</entry>
<entry lang="cs" key="IDC_DISABLE_MEMORY_PROTECTION">Zakázat ochranu paměti z důvodu kompatibility s nástroji pro usnadnění přístupu</entry>
<entry lang="cs" key="DISABLE_MEMORY_PROTECTION_WARNING">UPOZORNĚNÍ: Vypnutí ochrany paměti výrazně snižuje zabezpečení. Tuto možnost povolte POUZE v případě, spoléháte-li se při práci s uživatelským rozhraním VeraCrypt na nástroje pro zpřístupnění, jako jsou čtečky obrazovky.</entry>
<entry lang="cs" key="LINUX_LANGUAGE">Jazyk</entry>
<entry lang="cs" key="LINUX_SELECT_SYS_DEFAULT_LANG">Vyberte výchozí jazyk systému</entry>
<entry lang="cs" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">Aby proběhla změna jazyka, je třeba program VeraCrypt restartovat.</entry>
<entry lang="cs" key="ERR_XTS_MASTERKEY_VULNERABLE">UPOZORNĚNÍ: Hlavní klíč svazku je zranitelný vůči útoku, jenž ohrožuje zabezpečení dat.\n\nProsím, vytvořte nový svazek a přeneste na něj data.</entry>
<entry lang="cs" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">UPOZORNĚNÍ: Hlavní klíč zašifrovaného systému je zranitelný vůči útoku, který ohrožuje bezpečnost dat.\nDešifrujte systémový diskový oddíl/disk a poté jej znovu zašifrujte.</entry>
<entry lang="cs" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">UPOZORNĚNÍ: Hlavní klíč svazku obsahuje bezpečnostní slabinu.</entry>
<entry lang="cs" key="MOUNTPOINT_BLOCKED">CHYBA: Připojovací bod svazku je blokován, jelikož je nadřazen chráněnému systémovému adresáři.\n\nProsím, zvolte jiný přípojovací bod.</entry>
<entry lang="cs" key="MOUNTPOINT_NOTALLOWED">CHYBA: Připojovací bod svazku není povolen, jelikož přepisuje adresář, jenž je součástí proměnného prostředí PATH.\n\nProsím, vyberte jiný připojovací bod.</entry>
<entry lang="cs" key="INSECURE_MODE">[NEZABEZPEČENÝ REŽIM]</entry>
<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_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>
<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>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+60 -181
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
@@ -135,8 +135,8 @@
<entry lang="da" key="IDC_FAVORITE_REMOVE">&amp;Fjern</entry>
<entry lang="en" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Use favorite label as Explorer drive label</entry>
<entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key dismount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key dismount</entry>
<entry lang="da" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="en" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="da" key="IDC_HK_MOD_SHIFT">Shift</entry>
@@ -156,12 +156,12 @@
<entry lang="en" key="IDC_PIM_HELP">(Empty or 0 for default iterations)</entry>
<entry lang="da" key="IDC_PREF_BKG_TASK_ENABLE">Tilsluttet</entry>
<entry lang="da" key="IDC_PREF_CACHE_PASSWORDS">Gem kodeord i driverhukommelse</entry>
<entry lang="da" key="IDC_PREF_UNMOUNT_INACTIVE">Auto-afbryd bind efter der ikke har været læst/skrevet til det i</entry>
<entry lang="da" key="IDC_PREF_UNMOUNT_LOGOFF">Brugeren logger af</entry>
<entry lang="en" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="da" key="IDC_PREF_UNMOUNT_POWERSAVING">Går i strømbesparende funktion</entry>
<entry lang="da" key="IDC_PREF_UNMOUNT_SCREENSAVER">Pauseskærm aktiveres</entry>
<entry lang="da" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Udfør auto-afbryd selvom bindet indeholder åbne filer eller mapper</entry>
<entry lang="da" key="IDC_PREF_DISMOUNT_INACTIVE">Auto-afbryd bind efter der ikke har været læst/skrevet til det i</entry>
<entry lang="da" key="IDC_PREF_DISMOUNT_LOGOFF">Brugeren logger af</entry>
<entry lang="en" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="da" key="IDC_PREF_DISMOUNT_POWERSAVING">Går i strømbesparende funktion</entry>
<entry lang="da" key="IDC_PREF_DISMOUNT_SCREENSAVER">Pauseskærm aktiveres</entry>
<entry lang="da" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Udfør auto-afbryd selvom bindet indeholder åbne filer eller mapper</entry>
<entry lang="da" key="IDC_PREF_LOGON_MOUNT_DEVICES">Tilslut alle enheds-baserede VeraCrypt bind</entry>
<entry lang="en" key="IDC_PREF_LOGON_START">Start VeraCrypt Background Task</entry>
<entry lang="da" key="IDC_PREF_MOUNT_READONLY">Tilslut bind som læs-kun</entry>
@@ -169,7 +169,7 @@
<entry lang="da" key="IDC_PREF_OPEN_EXPLORER">Åben Explorer vindue til succesfuldt tilsluttet bind</entry>
<entry lang="en" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">Temporarily cache password during "Mount Favorite Volumes" operations</entry>
<entry lang="en" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Use a different taskbar icon when there are mounted volumes</entry>
<entry lang="da" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Slet kodeord i hukommelsen ved auto-afbryd</entry>
<entry lang="da" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Slet kodeord i hukommelsen ved auto-afbryd</entry>
<entry lang="da" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Slet kodeord i hukommelsen ved afslut</entry>
<entry lang="en" key="IDC_PRESERVE_TIMESTAMPS">Preserve modification timestamp of file containers</entry>
<entry lang="da" key="IDC_RESET_HOTKEYS">Nulstil</entry>
@@ -269,14 +269,14 @@
<entry lang="en" key="IDT_ACCELERATION_OPTIONS">Hardware Acceleration</entry>
<entry lang="da" key="IDT_ASSIGN_HOTKEY">Genvej</entry>
<entry lang="da" key="IDT_AUTORUN">AutoRun Konfiguration (autorun.inf)</entry>
<entry lang="da" key="IDT_AUTO_UNMOUNT">Auto-Afbryd</entry>
<entry lang="da" key="IDT_AUTO_UNMOUNT_ON">Afbryd alle når:</entry>
<entry lang="da" key="IDT_AUTO_DISMOUNT">Auto-Afbryd</entry>
<entry lang="da" key="IDT_AUTO_DISMOUNT_ON">Afbryd alle når:</entry>
<entry lang="en" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader Screen Options</entry>
<entry lang="da" key="IDT_CONFIRM_PASSWORD">Bekræft kodeord:</entry>
<entry lang="da" key="IDT_CURRENT">Nuværende</entry>
<entry lang="en" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">Display this custom message in the pre-boot authentication screen (24 characters maximum):</entry>
<entry lang="da" key="IDT_DEFAULT_MOUNT_OPTIONS">Standard Tilslutning Funktioner</entry>
<entry lang="da" key="IDT_UNMOUNT_ACTION">Genvejstast Funktioner</entry>
<entry lang="da" key="IDT_DISMOUNT_ACTION">Genvejstast Funktioner</entry>
<entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry>
<entry lang="en" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Enable extended disk control codes support</entry>
<entry lang="en" key="IDT_FAVORITE_LABEL">Label of selected favorite volume:</entry>
@@ -291,11 +291,10 @@
<entry lang="da" key="IDT_NEW_PASSWORD">Kodeord:</entry>
<entry lang="en" key="IDT_PARALLELIZATION_OPTIONS">Thread-Based Parallelization</entry>
<entry lang="en" key="IDT_PKCS11_LIB_PATH">PKCS #11 Library Path</entry>
<entry lang="da" key="IDT_KDF">KDF:</entry>
<entry lang="en" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="da" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="en" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="da" key="IDT_PW_CACHE_OPTIONS">Kodeords hukommelse</entry>
<entry lang="en" key="IDT_SECURITY_OPTIONS">Security Options</entry>
<entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry>
<entry lang="da" key="IDT_TASKBAR_ICON">VeraCrypt Baggrundsopgaver</entry>
<entry lang="da" key="IDT_TRAVELER_MOUNT">VeraCrypt bind for tilslutning (relaterer til rejse disk rod):</entry>
<entry lang="da" key="IDT_TRAVEL_INSERTION">Ved isættelse af rejse disk: </entry>
@@ -357,7 +356,7 @@
<entry lang="da" key="IDT_KEYFILE_WARNING">ADVARSEL: Hvis du mister en nøglefil eller dele af dens første 1024 kilobytes ændres, vil det være umuligt at tilslutte bindet som bruger denne nøglefil!</entry>
<entry lang="da" key="IDT_KEY_UNIT">bits</entry>
<entry lang="en" key="IDT_NUMBER_KEYFILES">Number of keyfiles:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size (in Bytes):</entry>
<entry lang="en" key="IDT_KEYFILES_BASE_NAME">Keyfiles base name:</entry>
<entry lang="da" key="IDT_LANGPACK_AUTHORS">Oversat af:</entry>
<entry lang="da" key="IDT_PLAINTEXT">Ren tekst størrelse:</entry>
@@ -390,7 +389,6 @@
<entry lang="en" key="ADMINISTRATOR">Administrator</entry>
<entry lang="da" key="ADMIN_PRIVILEGES_DRIVER">For at kunne loade VeraCrypt driveren, er du nødt til at være logget ind med en brugerkonto med administrator rettigheder.</entry>
<entry lang="da" key="ADMIN_PRIVILEGES_WARN_DEVICES">Bemærk venligst for at kunne kryptere/formatere en partition/enhed er du nødt til at være logget ind med en brugerkonto med administrator rettigheder.\n\nDette gælder ikke for fil-værtede bind.</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="da" key="ADMIN_PRIVILEGES_WARN_HIDVOL">For at oprette et skjult bind er du nødt til at være logget ind med en brugerkonto med administrator rettigheder.\n\nContinue?</entry>
<entry lang="da" key="ADMIN_PRIVILEGES_WARN_NTFS">Bemærk venligst for at kunne formatere bindet som NTFS er du nødt til at være logget ind med en brugerkonto med administrator rettigheder.\n\nUden administrator rettigheder, kan du formatere bindet som FAT.</entry>
<entry lang="da" key="AES_HELP">FIPS-godkendt ciffer (Rijndael, udgivet i 1998) som kan benyttes af U.S. regerings afdelinger og bureauer for at beskytte klassificeret information op til Top Secret niveau. 256-bit nøgle, 128-bit blok, 14 runder (AES-256). Drift tilstand er XTS.</entry>
@@ -423,8 +421,8 @@
<entry lang="en" key="DEVICE_FREE_PB">Size of %s is %.2f PB</entry>
<entry lang="da" key="DEVICE_IN_USE_FORMAT">ADVARSEL: Enhed/partition er i brug af operativsystem eller andre applikationer. Formatering af enhed/partition kan medføre data korruption og system ustabilitet.\n\nFortsæt?</entry>
<entry lang="en" key="DEVICE_IN_USE_INPLACE_ENC">Warning: The partition is in use by the operating system or applications. You should close any applications that might be using the partition (including antivirus software).\n\nContinue?</entry>
<entry lang="da" key="FORMAT_CANT_UNMOUNT_FILESYS">Fejl: Enhed/partition indeholder et filsystem som ikke kunne afbrydes. Filsystemet kan være i brug af operativsystem. Formatering af enhed/partition vil sandsynligvis medføre data korruption og system ustabilitet.\n\nFor at løse dette problem, anbefaler vi at du først sletter paritionen og så genopretter den uden formatering. For at gøre dette, følg disse trin: 1) Højreklik på 'Computer' (eller 'Denne computer') ikonet i 'Start Menuen' og vælg and select 'Administrer'. Vinduet 'Computeradministration' bør da komme frem. 2) I vinduet 'Computeradministration', vælg 'Lager' &gt; 'Diskhåndtering'. 3) Højreklik på den partition du vil kryptere og vælg enten 'slet partition', eller 'slet bind', eller 'slet logisk drev'. 4) Klik 'Ja'. Hvis Windows beder dig om at genstarte computeren, gør dette. Gentag da trin 1 og 2 og fortsæt fra trin 5. 5) Højreklik på området for tildelt/ledig disk plads og vælg enten 'Ny Partition', eller 'Nyt Simpelt Bind', eller 'Nyt logisk drev'. 6) 'Ny Partition hjælp' eller 'Nyt Simpelt Bind hjælp' vinduet burde komme frem nu; følg instruktionerne. På hjælpesiden benævnt 'Formater Partition', vælg enten 'formater ikke denne partition' eller 'formater ikke dette bind'. I samme hjælp, klik 'Næste' og så 'Afslut'. 7) Bemærk at enhedsstien du har valgt i VeraCrypt måske er forkert nu. Derfor, gå ud af VeraCrypt Bind Oprettelseshjælp (hvis den stadig er åben) og så start den igen. 8) Prøv at kryptere enhed/partition igen.\n\nHvis VeraCrypt gentagne gange giver fejl ved kryptering af enhed/partition, måtte du måske overveje at oprette en fil-beholder istedet.</entry>
<entry lang="en" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Error: The filesystem could not be locked and/or unmounted. It may be in use by the operating system or applications (for example, antivirus software). Encrypting the partition might cause data corruption and system instability.\n\nPlease close any applications that might be using the filesystem (including antivirus software) and try again. If it does not help, please follow the below steps.</entry>
<entry lang="da" key="FORMAT_CANT_DISMOUNT_FILESYS">Fejl: Enhed/partition indeholder et filsystem som ikke kunne afbrydes. Filsystemet kan være i brug af operativsystem. Formatering af enhed/partition vil sandsynligvis medføre data korruption og system ustabilitet.\n\nFor at løse dette problem, anbefaler vi at du først sletter paritionen og så genopretter den uden formatering. For at gøre dette, følg disse trin: 1) Højreklik på 'Computer' (eller 'Denne computer') ikonet i 'Start Menuen' og vælg and select 'Administrer'. Vinduet 'Computeradministration' bør da komme frem. 2) I vinduet 'Computeradministration', vælg 'Lager' &gt; 'Diskhåndtering'. 3) Højreklik på den partition du vil kryptere og vælg enten 'slet partition', eller 'slet bind', eller 'slet logisk drev'. 4) Klik 'Ja'. Hvis Windows beder dig om at genstarte computeren, gør dette. Gentag da trin 1 og 2 og fortsæt fra trin 5. 5) Højreklik på området for tildelt/ledig disk plads og vælg enten 'Ny Partition', eller 'Nyt Simpelt Bind', eller 'Nyt logisk drev'. 6) 'Ny Partition hjælp' eller 'Nyt Simpelt Bind hjælp' vinduet burde komme frem nu; følg instruktionerne. På hjælpesiden benævnt 'Formater Partition', vælg enten 'formater ikke denne partition' eller 'formater ikke dette bind'. I samme hjælp, klik 'Næste' og så 'Afslut'. 7) Bemærk at enhedsstien du har valgt i VeraCrypt måske er forkert nu. Derfor, gå ud af VeraCrypt Bind Oprettelseshjælp (hvis den stadig er åben) og så start den igen. 8) Prøv at kryptere enhed/partition igen.\n\nHvis VeraCrypt gentagne gange giver fejl ved kryptering af enhed/partition, måtte du måske overveje at oprette en fil-beholder istedet.</entry>
<entry lang="en" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Error: The filesystem could not be locked and/or dismounted. It may be in use by the operating system or applications (for example, antivirus software). Encrypting the partition might cause data corruption and system instability.\n\nPlease close any applications that might be using the filesystem (including antivirus software) and try again. If it does not help, please follow the below steps.</entry>
<entry lang="da" key="DEVICE_IN_USE_INFO">ADVARSEL: Nogle af de tilsluttede enheder/partitioner er var allerede i brug!\n\nIgnoreres dette kan det medføre uønskede resultater inklusiv system ustabilitet.\n\nVi anbefaler kraftigt at du lukker enhver applikation der måtte bruge enheden/partitionen.</entry>
<entry lang="da" key="DEVICE_PARTITIONS_ERR">Den valgte enhed indeholder partitioner.\n\nFormatering af enheden kan forårsage system ustabilitet og/eller data korruption. Vælg venligst enten en partition på enheden, eller fjern alle partitioner på enheden for at VeraCrypt kan formatere den sikkert.</entry>
<entry lang="en" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">The selected non-system device contains partitions.\n\nEncrypted device-hosted VeraCrypt volumes can be created within devices that do not contain any partitions (including hard disks and solid-state drives). A device that contains partitions can be entirely encrypted in place (using a single master key) only if it is the drive where Windows is installed and from which it boots.\n\nIf you want to encrypt the selected non-system device using a single master key, you will need to remove all partitions on the device first to enable VeraCrypt to format it safely (formatting a device that contains partitions might cause system instability and/or data corruption). Alternatively, you can encrypt each partition on the drive individually (each partition will be encrypted using a different master key).\n\nNote: If you want to remove all partitions from a GPT disk, you may need to convert it to a MBR disk (using e.g. the Computer Management tool) in order to remove hidden partitions.</entry>
@@ -590,7 +588,7 @@
<entry lang="da" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">Fejl: Filerne du har kopieret til det ydre bind optager for meget plads. Derfor er der ikke nok plads på det ydre bind til det skjulte bind.\n\nBemærk at det skjulte bind skal være ligeså stort som system partitionen (den partition hvor det nuværende aktive operativsystem er installeret). Grunden er at det skjulte operativsystem er nødt til at blive oprettet ved at kopiere indholdet af system partitionen til det skjulte bind.\n\n\nProcessen ved oprettelse af det skjulte operativsystem kan ikke fortsætte.</entry>
<entry lang="da" key="OPENFILES_DRIVER">Driveren kan ikke afbryde bindet. Enkelte filer i bindet er muligvis stadig åbne.</entry>
<entry lang="da" key="OPENFILES_LOCK">Bindet kan ikke låses. Der er stadig åbne filer i bindet. Derfor kan det ikke afbrydes.</entry>
<entry lang="en" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt cannot lock the volume because it is in use by the system or applications (there may be open files on the volume).\n\nDo you want to force unmount on the volume?</entry>
<entry lang="en" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt cannot lock the volume because it is in use by the system or applications (there may be open files on the volume).\n\nDo you want to force dismount on the volume?</entry>
<entry lang="da" key="OPEN_VOL_TITLE">Vælg et VeraCrypt Bind</entry>
<entry lang="da" key="OPEN_TITLE">Vælg sti og filnavn</entry>
<entry lang="en" key="SELECT_PKCS11_MODULE">Select PKCS #11 Library</entry>
@@ -613,7 +611,7 @@
<entry lang="en" key="FAVORITE_PIM_CHANGED">This volume is registered as a System Favorite and its PIM was changed.\nDo you want VeraCrypt to automatically update the System Favorite configuration (administrator privileges required)?\n\nPlease note that if you answer no, you'll have to update the System Favorite manually.</entry>
<entry lang="da" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">VIGTIGT: Hvis du ikke har destrueret din VeraCrypt Nødhjælps Disk, vil dit system partition/drev stadig kunne dekrypteres ved brug af det gamle kodeord (ved at boote på VeraCrypt Nødhjælps Disk og indtaste det gamle kodeord). Du bør oprette en ny VeraCrypt Nødhjælps Disk og så destruere den gamle.\n\nØnsker du at oprette en ny VeraCrypt Nødhjælps Disk?</entry>
<entry lang="da" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">Bemærk at din VeraCrypt Nødhjælps Disk stadig bruger den tidligere algoritme. Hvis du fornemmer den tidligere algoritme er usikker, bør du oprette en ny VeraCrypt Nødhjælps Disk og så destruere den gamle.\n\nØnsker du at oprette en ny VeraCrypt Nødhjælps Disk?</entry>
<entry lang="en" key="KEYFILES_NOTE">Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="en" key="KEYFILES_NOTE">Any kind of file (for example, .mp3, .jpg, .zip, .avi) may be used as a VeraCrypt keyfile. Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="da" key="KEYFILE_CHANGED">Nøglefil(er) tilføjet/fjernet med succes.</entry>
<entry lang="en" key="KEYFILE_EXPORTED">Keyfile exported.</entry>
<entry lang="da" key="PKCS5_PRF_CHANGED">Etiketnøgle oprindelses algoritme ændret med success.</entry>
@@ -729,7 +727,7 @@
<entry lang="en" key="DLL_FILES">Library Modules</entry>
<entry lang="da" key="FORMAT_NTFS_STOP">NTFS formatering kan ikke fortsætte.</entry>
<entry lang="da" key="CANT_MOUNT_VOLUME">Kan ikke tilslutte bind.</entry>
<entry lang="da" key="CANT_UNMOUNT_VOLUME">Kan ikke afbryde bind.</entry>
<entry lang="da" key="CANT_DISMOUNT_VOLUME">Kan ikke afbryde bind.</entry>
<entry lang="da" key="FORMAT_NTFS_FAILED">Windows fejlede under formatering af bindet som NTFS.\n\nVælg venligst en anden type filsystem (hvis muligt) og prøv igen. Alternativt kan du lade bindet være uformateret (Vælg 'Ingen' som filsystem), afbryd denne hjælp, tilslut bindet, og brug da enten et system eller 3-parts værktøj til at formatere bindet (bindet vil forblive krypteret).</entry>
<entry lang="da" key="FORMAT_NTFS_FAILED_ASK_FAT">Windows fejlede under formatering af bindet som NTFS.\n\nØnsker du at formatere bindet som FAT istedet?</entry>
<entry lang="da" key="DEFAULT">Standard</entry>
@@ -771,7 +769,7 @@
<entry lang="en" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">An error prevented VeraCrypt from encrypting the partition. Please try fixing any previously reported problems and then try again. If the problems persist, it might help to follow the below steps.</entry>
<entry lang="en" key="INPLACE_ENC_GENERIC_ERR_RESUME">An error prevented VeraCrypt from resuming the process of encryption of the partition.\n\nPlease try fixing any previously reported problems and then try resuming the process again. Note that the volume cannot be mounted until it has been fully encrypted.</entry>
<entry lang="en" key="INPLACE_DEC_GENERIC_ERR">An error prevented VeraCrypt from decrypting the volume. Please try fixing any previously reported problems and then try again if possible.</entry>
<entry lang="da" key="CANT_UNMOUNT_OUTER_VOL">Fejl: Kan ikke afbryde det ydre bind!\n\nBindet kan ikke afbrydes hvis det indeholder filer eller mapper der bliver brugt af et program eller systemet.\n\nLuk venligst alle programmer der måtte bruge filer eller mapper på bindet og klik på Prøv igen.</entry>
<entry lang="da" key="CANT_DISMOUNT_OUTER_VOL">Fejl: Kan ikke afbryde det ydre bind!\n\nBindet kan ikke afbrydes hvis det indeholder filer eller mapper der bliver brugt af et program eller systemet.\n\nLuk venligst alle programmer der måtte bruge filer eller mapper på bindet og klik på Prøv igen.</entry>
<entry lang="da" key="CANT_GET_OUTER_VOL_INFO">Fejl: Kan ikke finde information om det ydre bind! Oprettelse af bind kan ikke fortsætte.</entry>
<entry lang="da" key="CANT_ACCESS_OUTER_VOL">Fejl: Har ikke adgang til det ydre bind! Oprettelse af bind kan ikke fortsætte.</entry>
<entry lang="da" key="CANT_MOUNT_OUTER_VOL">Fejl: Kan ikke tilslutte det ydre bind! Oprettelse af bind kan ikke fortsætte.</entry>
@@ -813,7 +811,7 @@
<entry lang="da" key="SECONDARY_KEY_SIZE_LRW">Klemt Nøgle Størrelse (LRW Tilstand)</entry>
<entry lang="da" key="BITS">bits</entry>
<entry lang="da" key="BLOCK_SIZE">Blok størrelse</entry>
<entry lang="da" key="KDF">KDF</entry>
<entry lang="da" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="da" key="PKCS5_ITERATIONS">PKCS-5 gentagelse talt</entry>
<entry lang="da" key="VOLUME_CREATE_DATE">Bind oprettet</entry>
<entry lang="da" key="VOLUME_HEADER_DATE">Etiket sidst ændret</entry>
@@ -855,7 +853,7 @@
<entry lang="da" key="TC_INSTALLER_IS_RUNNING">VeraCrypt Installation kører nu på dette system og udfører eller forbereder installation eller opdatering af VeraCrypt. Før du fortsætter, vent venligst til det afsluttes eller luk det. Hvis du ikke kan lukke det, genstart venligst din computer før du fortsætter.</entry>
<entry lang="da" key="INSTALL_FAILED">Fejl under installation.</entry>
<entry lang="da" key="UNINSTALL_FAILED">Fejl under afinstallation.</entry>
<entry lang="da" key="DIST_PACKAGE_CORRUPTED">Denne distributions pakke er beskadiget. Prøv venligst at downloade den igen (helst fra det officielle VeraCrypt websted på https://veracrypt.jp).</entry>
<entry lang="da" key="DIST_PACKAGE_CORRUPTED">Denne distributions pakke er beskadiget. Prøv venligst at downloade den igen (helst fra det officielle VeraCrypt websted på https://www.veracrypt.fr).</entry>
<entry lang="da" key="CANNOT_WRITE_FILE_X">Kan ikke skrive fil %s</entry>
<entry lang="da" key="EXTRACTING_VERB">Udpakker</entry>
<entry lang="da" key="CANNOT_READ_FROM_PACKAGE">Kan ikke læse data fra pakken.</entry>
@@ -882,7 +880,7 @@
<entry lang="da" key="INSTALL_COMPLETED">Installationen fuldført.</entry>
<entry lang="da" key="CANT_CREATE_FOLDER">Mappen '%s' kunne ikke oprettes</entry>
<entry lang="da" key="CLOSE_TC_FIRST">VeraCrypt enhedsdriveren kan ikke frakobles.\n\nLuk venligst alle åbne VeraCrypt vinduer først. Hvis dette ikke hjælper, genstart venligst Windows og prøv igen.</entry>
<entry lang="da" key="UNMOUNT_ALL_FIRST">Alle VeraCrypt bind skal afbrydes inden installation eller afinstallation af VeraCrypt.</entry>
<entry lang="da" key="DISMOUNT_ALL_FIRST">Alle VeraCrypt bind skal afbrydes inden installation eller afinstallation af VeraCrypt.</entry>
<entry lang="en" key="UNINSTALL_OLD_VERSION_FIRST">An obsolete version of VeraCrypt is currently installed on this system. It needs to be uninstalled before you can install this new version of VeraCrypt.\n\nAs soon as you close this message box, the uninstaller of the old version will be launched. Note that no volume will be decrypted when you uninstall VeraCrypt. After you uninstall the old version of VeraCrypt, run the installer of the new version of VeraCrypt again.</entry>
<entry lang="da" key="REG_INSTALL_FAILED">Installation i registringsdatabasen er mislykket</entry>
<entry lang="da" key="DRIVER_INSTALL_FAILED">Installation af enhedsdriver er mislykket. Genstart venligst Windows og prøv at installere VeraCrypt igen.</entry>
@@ -903,7 +901,7 @@
<entry lang="da" key="MINUTES">minutter</entry>
<entry lang="da" key="SECONDS">sekunder</entry>
<entry lang="da" key="OPEN">Åben</entry>
<entry lang="da" key="UNMOUNT">Afbryd</entry>
<entry lang="da" key="DISMOUNT">Afbryd</entry>
<entry lang="da" key="SHOW_TC">Vis VeraCrypt</entry>
<entry lang="da" key="HIDE_TC">Skjul VeraCrypt</entry>
<entry lang="da" key="TOTAL_DATA_READ">Data læst siden tilslutning</entry>
@@ -940,7 +938,7 @@
<entry lang="da" key="ENTER_HEADER_BACKUP_PASSWORD">Indtast kodeord for header gemt i backup filen</entry>
<entry lang="da" key="KEYFILE_CREATED">Nøglefil er oprettet med succes.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_NUMBER">The number of keyfiles you supplied is invalid.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be at least 64 bytes.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be comprized between 64 and 1048576 bytes.</entry>
<entry lang="en" key="KEYFILE_EMPTY_BASE_NAME">Please enter a name for the keyfile(s) to be generated</entry>
<entry lang="en" key="KEYFILE_INVALID_BASE_NAME">The base name of the keyfile(s) is invalid</entry>
<entry lang="en" key="KEYFILE_ALREADY_EXISTS">The keyfile '%s' already exists.\nDo you want to overwrite it? The generation process will be stopped if you answer No.</entry>
@@ -975,7 +973,7 @@
<entry lang="en" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - System Favorite Volumes</entry>
<entry lang="en" key="SYS_FAVORITES_HELP_LINK">What are system favorite volumes?</entry>
<entry lang="en" key="SYS_FAVORITES_REQUIRE_PBA">The system partition/drive does not appear to be encrypted.\n\nSystem favorite volumes can be mounted using only a pre-boot authentication password. Therefore, to enable use of system favorite volumes, you need to encrypt the system partition/drive first.</entry>
<entry lang="da" key="UNMOUNT_FIRST">Afbryd venligst bindet før der fortsættes.</entry>
<entry lang="da" key="DISMOUNT_FIRST">Afbryd venligst bindet før der fortsættes.</entry>
<entry lang="da" key="CANNOT_SET_TIMER">Fejl: Kan ikke indstille timer.</entry>
<entry lang="da" key="IDPM_CHECK_FILESYS">Kontroller Filsystem</entry>
<entry lang="da" key="IDPM_REPAIR_FILESYS">Reparer Filsystem</entry>
@@ -997,7 +995,7 @@
<entry lang="da" key="UNSUPPORTED_CHARS_IN_PWD">Fejl: Kodeord må kun indeholde ASCII karakterer.\n\nIkke-ASCII karakterer i kodeord kan forårsage at bindet vil være umuligt at tilslutte når dine system indstillinger ændres.\n\nFølgende karakterer kan anvendes:\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="da" key="UNSUPPORTED_CHARS_IN_PWD_RECOM">Advarsel: Kodeord indeholder ikke-ASCII karakterer. Dettekan forårsage at bindet vil være umuligt at tilslutte når dine system indstillinger ændres.\n\nDu bør udskifte alle ikke-ASCII karakterer i kodeordet med ASCII. For at gøre dette klik 'Bind' -&gt; 'Ændre Bind Kodeord'.\n\nFølgende er ASCII karakterer:\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="en" key="EXE_FILE_EXTENSION_CONFIRM">WARNING: We strongly recommend that you avoid file extensions that are used for executable files (such as .exe, .sys, or .dll) and other similarly problematic file extensions. Using such file extensions causes Windows and antivirus software to interfere with the container, which adversely affects the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension or change it (e.g., to '.hc').\n\nAre you sure you want to use the problematic file extension?</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you unmount the volume.</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you dismount the volume.</entry>
<entry lang="da" key="HOMEPAGE">Hjemmeside</entry>
<entry lang="da" key="LARGE_IDE_WARNING_XP">ADVARSEL: Tilsyneladende har du ikke Service Packs i din Windows XP installation. Du bør ikke gemme på IDE diske større end 128 GB under Windows XP hvor du ikke har tilføjet Service Pack 1 eller nyere! Hvis du gør, vil data på disken (uanset om det er et VeraCrypt bind eller ej) blive ødelagt. Bemærk at dette er en begrænsning i Windows, ikke en fejl i VeraCrypt.</entry>
<entry lang="da" key="LARGE_IDE_WARNING_2K">ADVARSEL: Tilsyneladende har du ikke Service Pack 3 eller nyere i din Windows installation. Du bør ikke gemme på IDE diske større end 128 GB under Windows 2000 hvor du ikke har tilføjet Service Pack 3 eller nyere! Hvis du gør, vil data på disken (uanset om det er et VeraCrypt bind eller ej) blive ødelagt. Bemærk at dette er en begrænsning i Windows, ikke en begræsning i VeraCrypt.\n\nBemærk: Måske er det også nødvendigt at aktivere 48-bit LBA support i registreringsdatabasen; for mere information, se http://support.microsoft.com/kb/305098/EN-US</entry>
@@ -1009,11 +1007,11 @@
<entry lang="da" key="NO_SYSENC_PARTITION_SELECTED">Ingen partition valgt.\n\nKlik 'Vælg Enhed' for at vælge en afbrudt partition der normalt kræver før-boot godkendelse (for eksempel, en partition placeret på et krypteret system drev af et andet operativsystem, som ikke kører, eller en krypteret system partition af et andet operativsystem).\n\nBemærk: Den valgte partition vil blive tilsluttet som et almindeligt VeraCrypt bind uden før-boot godkendelse. Dette er brugbart f.eks. ved backup eller reparationsarbejde.</entry>
<entry lang="da" key="CONFIRM_SAVE_DEFAULT_KEYFILES">ADVARSEL: Hvis standard nøglefiler er valgt og aktiveret, vil bind der ikke bruger disse nøglefiler være umulige at tilslutte. Derfor, efter du har aktiveret standard nøglefiler, husk at fjerne markeringen udfor 'Brug nøglefiler' afmærkningsboksen (under et kodeords indtastningsfelt) når du tilslutter sådanne bind.\n\nEr du sikker på du ønsker at gemme de valgte nøglefiler/stier som standard?</entry>
<entry lang="da" key="HK_AUTOMOUNT_DEVICES">Auto-Tilslut Enheder</entry>
<entry lang="da" key="HK_UNMOUNT_ALL">Afbryd alle</entry>
<entry lang="da" key="HK_DISMOUNT_ALL">Afbryd alle</entry>
<entry lang="da" key="HK_WIPE_CACHE">Ryd hukommelse</entry>
<entry lang="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All &amp; Wipe Cache</entry>
<entry lang="da" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Gennemtving afbrydelse af alle &amp; Ryd hukommelse</entry>
<entry lang="da" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Gennemtving afbrydelse af alle, Ryd hukommelse &amp; Afslut</entry>
<entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All &amp; Wipe Cache</entry>
<entry lang="da" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Gennemtving afbrydelse af alle &amp; Ryd hukommelse</entry>
<entry lang="da" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Gennemtving afbrydelse af alle, Ryd hukommelse &amp; Afslut</entry>
<entry lang="da" key="HK_MOUNT_FAVORITE_VOLUMES">Tilslut Favorit Bind</entry>
<entry lang="da" key="HK_SHOW_HIDE_MAIN_WINDOW">Vis/Skjul Hoved VeraCrypt Vindue</entry>
<entry lang="da" key="PRESS_A_KEY_TO_ASSIGN">(Klik her og tryk på en tast)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="en" key="PAGING_FILE_CREATION_PREVENTED">Paging file creation has been prevented.\n\nPlease note that, due to Windows issues, paging files cannot be located on non-system VeraCrypt volumes (including system favorite volumes). VeraCrypt supports creation of paging files only on an encrypted system partition/drive.</entry>
<entry lang="da" key="SYS_ENC_HIBERNATION_PREVENTED">En fejl eller ukompatibilitet forhindrer VeraCrypt fra at kryptere dvale filen. Derfor er dvale forhindret.\n\nBemærk: Når en computer går i dvale (eller går i strømbesparende tilstand), bliver indholdet i system hukommelsen skrevet til en dvale opbevarings fil der gemmes på system drevet. VeraCrypt ville ikke være i stand til at forhindre krypterings nøgler og indhold i følsomme filer der er åbne i RAM fra at blive gemt ukrypteret til dvale opbevarings filen.</entry>
<entry lang="en" key="HIDDEN_OS_HIBERNATION_PREVENTED">Hibernation has been prevented.\n\nVeraCrypt does not support hibernation on hidden operating systems that use an extra boot partition. Please note that the boot partition is shared by both the decoy and the hidden system. Therefore, in order to prevent data leaks and problems while resuming from hibernation, VeraCrypt has to prevent the hidden system from writing to the shared boot partition and from hibernating.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">VeraCrypt volume mounted as %c: has been unmounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt volumes have been unmounted.</entry>
<entry lang="en" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt volumes have been unmounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_UNMOUNTED">Successfully unmounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="da" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">ADVARSEL: Hvis denne funktion deaktiveres, vil bind der indeholder åbne filer/mapper ikke være mulige at auto-tilslutte.\n\nEr du sikker på du vil deaktivere denne funktion?</entry>
<entry lang="da" key="WARN_PREF_AUTO_UNMOUNT">ADVARSEL: Bind der indeholder åbne filer/mapper vil IKKE blive auto-afbrudt.\n\nFor at undgå dette, aktiver den følgende funktion i dette dialog vindue: 'Udfør auto-afbryd selv om bindet indeholder åbne filer eller mapper'</entry>
<entry lang="en" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-unmount volumes in such cases.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">VeraCrypt volume mounted as %c: has been dismounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt volumes have been dismounted.</entry>
<entry lang="en" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt volumes have been dismounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_DISMOUNTED">Successfully dismounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="da" key="CONFIRM_NO_FORCED_AUTODISMOUNT">ADVARSEL: Hvis denne funktion deaktiveres, vil bind der indeholder åbne filer/mapper ikke være mulige at auto-tilslutte.\n\nEr du sikker på du vil deaktivere denne funktion?</entry>
<entry lang="da" key="WARN_PREF_AUTO_DISMOUNT">ADVARSEL: Bind der indeholder åbne filer/mapper vil IKKE blive auto-afbrudt.\n\nFor at undgå dette, aktiver den følgende funktion i dette dialog vindue: 'Udfør auto-afbryd selv om bindet indeholder åbne filer eller mapper'</entry>
<entry lang="en" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-dismount volumes in such cases.</entry>
<entry lang="en" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">You have scheduled the process of encryption of a partition/volume. The process has not been completed yet.\n\nDo you want to resume the process now?</entry>
<entry lang="da" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">Du har planlagt en krypterings eller dekrypterings proces af system partition/drev. Processen er endnu ikke blevet fuldført.\n\nØnsker du at starte (genoptage) processen nu?</entry>
<entry lang="en" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">Do you want to be prompted about whether you want to resume the currently scheduled processes of encryption of non-system partitions/volumes?</entry>
@@ -1040,7 +1038,7 @@
<entry lang="en" key="DO_NOT_PROMPT_ME">No, do not prompt me</entry>
<entry lang="en" key="NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL_NOTE">IMPORTANT: Keep in mind that you can resume the process of encryption of any non-system partition/volume by selecting 'Volumes' &gt; 'Resume Interrupted Process' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="da" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">Du har skemalagt processen for kryptering eller dekryptering af system partition/drev. Imidlertid opstod der fejl på før-boot godkendelsen (eller den blev sprunget over).\n\nBemærk: Hvis du dekrypterede system partition/drev i før-boot miljøet, kan det være nødvendigt du afslutter processen ved at vælge 'System' &gt; 'Dekrypter System Partition/Drev Permanent' fra menulinien i hovedvinduet af VeraCrypt.</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="da" key="CONFIRM_EXIT_UNIVERSAL">Afslut?</entry>
<entry lang="da" key="CHOOSE_ENCRYPT_OR_DECRYPT">VeraCrypt har ikke nok information til at afgøre om der skal krypteres eller dekrypteres.</entry>
<entry lang="da" key="CHOOSE_ENCRYPT_OR_DECRYPT_FINALIZE_DECRYPT_NOTE">VeraCrypt har ikke nok information til at afgøre om der skal krypteres eller dekrypteres.\n\nBemærk: Hvis du har dekrypteret system partition/drev i før-boot miljøet, kan det være nødvendigt at du afslutter processen ved at klikke på Dekrypter.</entry>
@@ -1063,7 +1061,7 @@
<entry lang="da" key="SYS_AUTOMOUNT_DISABLED">Dit system er ikke konfigureret til automatisk at tilslutte nye bind. Det kan være umuligt at tilslutte enhedsbaserede VeraCrypt bind. Automatisk tilslutning kan konfigureres ved at køre denne kommando og genstarte systemet.\n\nmountvol.exe /E</entry>
<entry lang="da" key="SYS_ASSIGN_DRIVE_LETTER">Tildel venligst et drev bogstav til partitionen/enheden før du fortsætter ('Kontrolpanel' &gt; 'Ydelse og Vedligeholdelse' &gt; 'Administration' - 'Computeradministration / Diskhåndtering').\n\nBemærk at dette er afhængig af det anvendte operativsystem.</entry>
<entry lang="da" key="MOUNT_TC_VOLUME">Tilslut VeraCrypt Bind</entry>
<entry lang="da" key="UNMOUNT_ALL_TC_VOLUMES">Afbryd alle VeraCrypt Bind</entry>
<entry lang="da" key="DISMOUNT_ALL_TC_VOLUMES">Afbryd alle VeraCrypt Bind</entry>
<entry lang="da" key="UAC_INIT_ERROR">VeraCrypt fejl i at opnå administrator rettighed.</entry>
<entry lang="da" key="ERR_ACCESS_DENIED">Adgang nægtet af operativsystem.\n\nMulig årsag: Operativsystemet kræver at du har læse/skrive tilladelse (eller administrations rettigheder) for bestemte mapper, filer, og enheder, for at du kan få tilladelse til at læse og skrive data til/fra dem. Normalt kan en bruger uden administrator rettigheder godt oprette, læse og redigere filer i brugerens dokumentmappe.</entry>
<entry lang="en" key="SECTOR_SIZE_UNSUPPORTED">Error: The drive uses an unsupported sector size.\n\nIt is currently not possible to create partition/device-hosted volumes on drives that use sectors larger than 4096 bytes. However, note that you can create file-hosted volumes (containers) on such drives.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="en" key="HIDDEN_OS_CREATION_PREINFO_HELP">In the next steps, VeraCrypt will create the hidden operating system by copying the content of the system partition to the hidden volume (data being copied will be encrypted on the fly with an encryption key different from the one that will be used for the decoy operating system).\n\nPlease note that the process will be performed in the pre-boot environment (before Windows starts) and it may take a long time to complete; several hours or even several days (depending on the size of the system partition and on the performance of your computer).\n\nYou will be able to interrupt the process, shut down your computer, start the operating system and then resume the process. However, if you interrupt it, the entire process of copying the system will have to start from the beginning (because the content of the system partition must not change during cloning).</entry>
<entry lang="da" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">Ønsker du at afbryde hele processen med at oprette det skjulte operativsystem?\n\nBemærk: Du vil IKKE være i stand til at fortsætte processen hvis du afbryder nu.</entry>
<entry lang="da" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">Ønsker du at afbryde system krypteringens indledende test?</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="da" key="SYS_DRIVE_NOT_ENCRYPTED">System partition/drev ser ikke ud til at være krypteret (hverken delvist eller helt).</entry>
<entry lang="da" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">Det system partition/drev er krypteret (delvist eller helt).\n\nDekrypter venligst dit system partition/drev helt før du fortsætter. For at gøre dette, vælg 'System' &gt; 'Dekrypter System Partition/Drev Permanent' fra menulinien i VeraCrypt hovedvinduet.</entry>
<entry lang="en" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">When the system partition/drive is encrypted (partially or fully), you cannot downgrade VeraCrypt (but you can upgrade it or reinstall the same version).</entry>
@@ -1285,17 +1283,17 @@
<entry lang="en" key="TOKEN_DATA_OBJECT_LABEL">File name</entry>
<entry lang="en" key="BOOT_PASSWORD_CACHE_KEYBOARD_WARNING">IMPORTANT: Please note that pre-boot authentication passwords are always typed using the standard US keyboard layout. Therefore, a volume that uses a password typed using any other keyboard layout may be impossible to mount using a pre-boot authentication password (note that this is not a bug in VeraCrypt). To allow such a volume to be mounted using a pre-boot authentication password, follow these steps:\n\n1) Click 'Select File' or 'Select Device' and select the volume.\n2) Select 'Volumes' &gt; 'Change Volume Password'.\n3) Enter the current password for the volume.\n4) Change the keyboard layout to English (US) by clicking the Language bar icon in the Windows taskbar and selecting 'EN English (United States)'.\n5) In VeraCrypt, in the field for the new password, type the pre-boot authentication password.\n6) Confirm the new password by retyping it in the confirmation field and click 'OK'.\nWARNING: Please keep in mind that if you follow these steps, the volume password will always have to be typed using the US keyboard layout (which is automatically ensured only in the pre-boot environment).</entry>
<entry lang="en" key="SYS_FAVORITES_KEYBOARD_WARNING">System favorite volumes will be mounted using the pre-boot authentication password. If any system favorite volume uses a different password, it will not be mounted.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Unmount All', auto-unmount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and unmount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be unmounted. Therefore, if you need e.g. to unmount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Unmount All' function, 'Auto-Unmount' functions, 'Unmount All' hot keys, etc.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Dismount All', auto-dismount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and dismount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be dismounted. Therefore, if you need e.g. to dismount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Dismount All' function, 'Auto-Dismount' functions, 'Dismount All' hot keys, etc.</entry>
<entry lang="en" key="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry>
<entry lang="en" key="COMMAND_LINE_ERROR">Error while parsing command line.</entry>
<entry lang="da" key="RESCUE_DISK">Nødhjælps Disk</entry>
<entry lang="en" key="SELECT_FILE_AND_MOUNT">Select &amp;File and Mount...</entry>
<entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &amp;Device and Mount...</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and dismount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="MOUNT_SYSTEM_FAVORITES_ON_BOOT">Mount system favorite volumes when Windows starts (in the initial phase of the startup procedure)</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly unmounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always unmount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly unmounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly dismounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always dismount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly dismounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="FILESYS_REPAIR_CONFIRM_BACKUP">Warning: Repairing a damaged filesystem using the Microsoft 'chkdsk' tool might cause loss of files in damaged areas. Therefore, it is recommended that you first back up the files stored on the VeraCrypt volume to another, healthy, VeraCrypt volume.\n\nDo you want to repair the filesystem now?</entry>
<entry lang="en" key="MOUNTED_CONTAINER_FORCED_READ_ONLY">Volume '%s' has been mounted as read-only because write access was denied.\n\nPlease make sure the security permissions of the file container allow you to write to it (right-click the container and select Properties &gt; Security).\n\nNote that, due to a Windows issue, you may see this warning even after setting the appropriate security permissions. This is not caused by a bug in VeraCrypt. A possible solution is to move your container to, e.g., your 'Documents' folder.\n\nIf you intend to keep your volume read-only, set the read-only attribute of the container (right-click the container and select Properties &gt; Read-only), which will suppress this warning.</entry>
<entry lang="en" key="MOUNTED_DEVICE_FORCED_READ_ONLY">Volume '%s' had to be mounted as read-only because write access was denied.\n\nPlease make sure no other application (e.g. antivirus software) is accessing the partition/device on which the volume is hosted.</entry>
@@ -1306,8 +1304,8 @@
<entry lang="en" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Note that the number of threads is currently limited, which will affect benchmark results (worse performance).\n\nTo utilize the full potential of the processor(s), select 'Settings' > 'Performance' and disable the corresponding option.</entry>
<entry lang="en" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">Do you want VeraCrypt to attempt to disable write protection of the partition/drive?</entry>
<entry lang="en" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">WARNING: This setting may degrade performance.\n\nAre you sure you want to use this setting?</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-unmounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always unmount the volume in VeraCrypt first.\n\nUnexpected spontaneous unmount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-dismounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always dismount the volume in VeraCrypt first.\n\nUnexpected spontaneous dismount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="UNSUPPORTED_TRUECRYPT_FORMAT">This volume was created with TrueCrypt %x.%x but VeraCrypt supports only TrueCrypt volumes created with TrueCrypt 6.x/7.x series</entry>
<entry lang="da" key="TEST">Test</entry>
<entry lang="da" key="KEYFILE">Nøglefil</entry>
@@ -1453,7 +1451,7 @@
<entry lang="en" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Add All Mounted Volumes to Favorites...</entry>
<entry lang="en" key="TASKICON_PREF_MENU_ITEMS">Task Icon Menu Items</entry>
<entry lang="en" key="TASKICON_PREF_OPEN_VOL">Open Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_DISMOUNT_VOL">Dismount Mounted Volumes</entry>
<entry lang="en" key="DISK_FREE">Free space available: {0}</entry>
<entry lang="en" key="VOLUME_SIZE_HELP">Please specify the size of the container to create. Note that the minimum possible size of a volume is 292 KiB.</entry>
<entry lang="en" key="LINUX_CONFIRM_INNER_VOLUME_CALC">WARNING: You have selected a filesystem other than FAT for the outer volume.\nPlease Note that in this case VeraCrypt can't calculate the exact maximum allowed size for the hidden volume and it will use only an estimation that can be wrong.\nThus, it is your responsibility to use an adequate value for the size of the hidden volume so that it does not overlap the outer volume.\n\nDo you want to continue using the selected filesystem for the outer volume?</entry>
@@ -1483,14 +1481,14 @@
<entry lang="en" key="LINUX_DO_NOT_MOUNT">Do &amp;not mount</entry>
<entry lang="en" key="LINUX_MOUNT_AT_DIR">Mount at directory:</entry>
<entry lang="en" key="LINUX_SELECT">Se&amp;lect...</entry>
<entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount All Volumes When</entry>
<entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry>
<entry lang="en" key="LINUX_ENTERING_POWERSAVING">System is entering power saving mode</entry>
<entry lang="en" key="LINUX_LOGIN_ACTION">Actions to Perform when User Logs On</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Close all Explorer windows of volume being dismounted</entry>
<entry lang="en" key="LINUX_HOTKEYS">Hotkeys</entry>
<entry lang="en" key="LINUX_SYSTEM_HOTKEYS">System-Wide Hotkeys</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/unmount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_UNMOUNT">Display confirmation message box after unmount</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/dismount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_DISMOUNT">Display confirmation message box after dismount</entry>
<entry lang="en" key="LINUX_VC_QUITS">VeraCrypt quits</entry>
<entry lang="en" key="LINUX_OPEN_FINDER">Open Finder window for successfully mounted volume</entry>
<entry lang="en" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Please note that this setting takes effect only if use of the kernel cryptographic services is disabled.</entry>
@@ -1510,11 +1508,11 @@
<entry lang="en" key="LINUX_DYNAMIC_NOTICE">Please note that if your operating system does not allocate files from the beginning of the free space, the maximum possible hidden volume size may be much smaller than the size of the free space on the outer volume. This is not a bug in VeraCrypt but a limitation of the operating system.</entry>
<entry lang="en" key="LINUX_MAX_HIDDEN_SIZE">Maximum possible hidden volume size for this volume is {0}.</entry>
<entry lang="en" key="LINUX_OPEN_OUTER_VOL">Open Outer Volume</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not unmount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not dismount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">Error: You are trying to encrypt a system drive.\n\nVeraCrypt can encrypt a system drive only under Windows.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">Error: You are trying to encrypt a system partition.\n\nVeraCrypt can encrypt system partitions only under Windows.</entry>
<entry lang="en" key="LINUX_WARNING_FORMAT_DESTROY_FS">WARNING: Formatting of the device will destroy all data on filesystem '{0}'.\n\nDo you want to continue?</entry>
<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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please dismount '{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>
@@ -1522,8 +1520,7 @@
<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>
<entry lang="en" key="LINUX_VOL_DISMOUNTED">Volume {0} has been dismounted.</entry>
<entry lang="en" key="LINUX_OOM">Out of memory.</entry>
<entry lang="en" key="LINUX_CANT_GET_ADMIN_PRIV">Failed to obtain administrator privileges</entry>
<entry lang="en" key="LINUX_COMMAND_GET_ERROR">Command {0} returned error {1}.</entry>
@@ -1553,7 +1550,7 @@
<entry lang="en" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Error: The drive uses a sector size other than 512 bytes.\n\nDue to limitations of components available on your platform, partition/device-hosted volumes cannot be created/used on the drive.\n\nPossible solutions:\n- Create a file-hosted volume (container) on the drive.\n- Use a drive with 512-byte sectors.\n- Use VeraCrypt on another platform.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">The host file/device is already in use.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Volume slot unavailable.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires macFUSE 2.5 or above.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires OSXFUSE 2.5 or above.</entry>
<entry lang="en" key="EXCEPTION_OCCURRED">Exception occurred</entry>
<entry lang="en" key="ENTER_PASSWORD">Enter password</entry>
<entry lang="en" key="ENTER_TC_VOL_PASSWORD">Enter VeraCrypt Volume Password</entry>
@@ -1570,124 +1567,6 @@
<entry lang="en" key="VOLUME_HOST_IN_USE">WARNING: The host file/device {0} is already in use!\n\nIgnoring this can cause undesired results including system instability. All applications that might be using the host file/device should be closed before mounting the volume.\n\nContinue mounting?</entry>
<entry lang="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
<entry lang="en" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">VeraCrypt cannot be upgraded because the system partition/drive was encrypted using an algorithm that is not supported anymore.\nPlease decrypt your system before upgrading VeraCrypt and then encrypt it again.</entry>
<entry lang="en" key="LINUX_EX2MSG_TERMINALNOTFOUND">Supported terminal application could not be found, you need either xterm, konsole or gnome-terminal (with dbus-x11).</entry>
<entry lang="en" key="IDM_MOUNT_NO_CACHE">Mount Without Cache</entry>
<entry lang="en" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nExpand a VeraCrypt volume on the fly without reformatting\n\n\nAll kind of volumes (container files, disks and partitions) formatted with NTFS are supported. The only condition is that there must be enough free space on the host drive or host device of the VeraCrypt volume.\n\nDo not use this software to expand an outer volume containing a hidden volume, because this destroys the hidden volume!\n</entry>
<entry lang="en" key="IDC_STEPSEXPAND">1. Select the VeraCrypt volume to be expanded\n2. Click the 'Mount' button</entry>
<entry lang="en" key="IDT_VOL_NAME">Volume: </entry>
<entry lang="en" key="IDT_FILE_SYS">File system: </entry>
<entry lang="en" key="IDT_CURRENT_SIZE">Current size: </entry>
<entry lang="en" key="IDT_NEW_SIZE">New size: </entry>
<entry lang="en" key="IDT_NEW_SIZE_BOX_TITLE">Enter new volume size</entry>
<entry lang="en" key="IDC_INIT_NEWSPACE">Fill new space with random data</entry>
<entry lang="en" key="IDC_QUICKEXPAND">Quick Expand</entry>
<entry lang="en" key="IDT_INIT_SPACE">Fill new space: </entry>
<entry lang="en" key="EXPANDER_FREE_SPACE">%s free space available on host drive</entry>
<entry lang="en" key="EXPANDER_HELP_DEVICE">This is a device-based VeraCrypt volume.\n\nThe new volume size will be choosen automatically as the size of the host device.</entry>
<entry lang="en" key="EXPANDER_HELP_FILE">Please specify the new size of the VeraCrypt volume (must be at least %I64u KB larger than the current size).</entry>
<entry lang="en" key="QUICK_EXPAND_WARNING">WARNING: You should use Quick Expand only in the following cases:\n\n1) The device where the file container is located contains no sensitive data and you do not need plausible deniability.\n2) The device where the file container is located has already been securely and fully encrypted.\n\nAre you sure you want to use Quick Expand?</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT">IMPORTANT: Move your mouse as randomly as possible within this window. The longer you move it, the better. This significantly increases the cryptographic strength of the encryption keys. Then click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT_LEGACY">Click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_FINISH_ERROR">Error: volume expansion failed.</entry>
<entry lang="en" key="EXPANDER_FINISH_ABORT">Error: operation aborted by user.</entry>
<entry lang="en" key="EXPANDER_FINISH_OK">Finished. Volume successfully expanded.</entry>
<entry lang="en" key="EXPANDER_CANCEL_WARNING">Warning: Volume expansion is in progress!\n\nStopping now may result in a damaged volume.\n\nDo you really want to cancel?</entry>
<entry lang="en" key="EXPANDER_STARTING_STATUS">Starting volume expansion ...\n</entry>
<entry lang="en" key="EXPANDER_HIDDEN_VOLUME_ERROR">An outer volume containing a hidden volume can't be expanded, because this destroys the hidden volume.\n</entry>
<entry lang="en" key="EXPANDER_SYSTEM_VOLUME_ERROR">A VeraCrypt system volume can't be expanded.</entry>
<entry lang="en" key="EXPANDER_NO_FREE_SPACE">Not enough free space to expand the volume</entry>
<entry lang="en" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Warning: The container file is larger than the VeraCrypt volume area. The data after the VeraCrypt volume area will be overwritten.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_FAT">Warning: The VeraCrypt volume contains a FAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_EXFAT">Warning: The VeraCrypt volume contains an exFAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_UNKNOWN_FS">Warning: The VeraCrypt volume contains an unknown or no file system!\n\nOnly the VeraCrypt volume itself will be expanded, the file system remains unchanged.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">New volume size too small, must be at least %I64u kB larger than the current size.</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">New volume size too large, not enough space on host drive.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Maximum file size of %I64u MB on host drive exceeded.</entry>
<entry lang="en" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Error: Failed to get necessary privileges to enable Quick Expand!\nPlease uncheck Quick Expand option and try again.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Maximum VeraCrypt volume size of %I64u TB exceeded!\n</entry>
<entry lang="en" key="FULL_FORMAT">Full Format</entry>
<entry lang="en" key="FAST_CREATE">Fast Create</entry>
<entry lang="en" key="WARN_FAST_CREATE">WARNING: You should use Fast Create only in the following cases:\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 Fast Create?</entry>
<entry lang="en" key="IDC_ENABLE_EMV_SUPPORT">Enable EMV Support</entry>
<entry lang="en" key="COMMAND_APDU_INVALID">The APDU command sent to the card is not valid.</entry>
<entry lang="en" key="EXTENDED_APDU_UNSUPPORTED">Extended APDU commands cannot be used with the current token.</entry>
<entry lang="en" key="SCARD_MODULE_INIT_FAILED">Error when loading the WinSCard / PCSC library.</entry>
<entry lang="en" key="EMV_UNKNOWN_CARD_TYPE">The card in the reader is not a supported EMV card.</entry>
<entry lang="en" key="EMV_SELECT_AID_FAILED">The AID of the card in the reader could not be selected.</entry>
<entry lang="en" key="EMV_ICC_CERT_NOTFOUND">ICC Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_ISSUER_CERT_NOTFOUND">Issuer Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_CPLC_NOTFOUND">CPLC was not found in the EMV card.</entry>
<entry lang="en" key="EMV_PAN_NOTFOUND">No Primary Account Number (PAN) found in the EMV card.</entry>
<entry lang="en" key="INVALID_EMV_PATH">EMV path is invalid.</entry>
<entry lang="en" key="EMV_KEYFILE_DATA_NOTFOUND">Unable to build a keyfile from the EMV card's data.\n\nOne of the following is missing:\n- ICC Public Key Certificate.\n- Issuer Public Key Certificate.\n- CPLC data.</entry>
<entry lang="en" key="SCARD_W_REMOVED_CARD">No card in the reader.\n\nPlease make sure the card is correctly slotted.</entry>
<entry lang="en" key="FORMAT_EXTERNAL_FAILED">Windows format.com command failed to format the volume as NTFS/exFAT/ReFS: Error 0x%.8X.\n\nFalling back to using Windows FormatEx API.</entry>
<entry lang="en" key="FORMATEX_API_FAILED">Windows FormatEx API failed to format the volume as NTFS/exFAT/ReFS.\n\nFailure status = %s.</entry>
<entry lang="en" key="EXPANDER_WRITING_RANDOM_DATA">Writing random data to new space ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Writing re-encrypted backup header ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Writing re-encrypted primary header ...\n</entry>
<entry lang="en" key="EXPANDER_WIPING_OLD_HEADER">Wiping old backup header ...\n</entry>
<entry lang="en" key="EXPANDER_MOUNTING_VOLUME">Mounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_UNMOUNTING_VOLUME">Unmounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_EXTENDING_FILESYSTEM">Extending file system ...\n</entry>
<entry lang="en" key="PARTIAL_SYSENC_MOUNT_READONLY">Warning: The system partition you attempted to mount was not fully encrypted. As a safety measure to prevent potential corruption or unwanted modifications, volume '%s' was mounted as read-only.</entry>
<entry lang="en" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Important information on using third-party file extensions</entry>
<entry lang="en" key="IDC_DISABLE_MEMORY_PROTECTION">Disable memory protection for Accessibility tools compatibility</entry>
<entry lang="en" key="DISABLE_MEMORY_PROTECTION_WARNING">WARNING: Disabling memory protection significantly reduces security. Enable this option ONLY if you rely on Accessibility tools, like Screen Readers, to interact with VeraCrypt's UI.</entry>
<entry lang="da" key="LINUX_LANGUAGE">Sprog</entry>
<entry lang="en" key="LINUX_SELECT_SYS_DEFAULT_LANG">Select system's default language</entry>
<entry lang="en" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">For the language change to come into effect, VeraCrypt needs to be restarted.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE">WARNING: The volume's master key is vulnerable to an attack that compromises data security.\n\nPlease create a new volume and transfer the data to it.</entry>
<entry lang="en" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">WARNING: The encrypted system's master key is vulnerable to an attack that compromises data security.\nPlease decrypt the system partition/drive and then re-encrypt it.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">WARNING: The volume's master key has a security vulnerability.</entry>
<entry lang="en" key="MOUNTPOINT_BLOCKED">ERROR: The volume mount point is blocked because it overrides a protected system directory.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="MOUNTPOINT_NOTALLOWED">ERROR: The volume mount point is not allowed because it overrides a directory that is part of the PATH environment variable.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="INSECURE_MODE">[INSECURE MODE]</entry>
<entry lang="en" key="IDC_DISABLE_SCREEN_PROTECTION">Disable protection against screenshots and screen recording</entry>
<entry lang="en" key="DISABLE_SCREEN_PROTECTION_WARNING">WARNING: Disabling screen protection significantly reduces security. Enable this option ONLY if you have a specific need to capture VeraCrypt's interface. This may expose sensitive data to screenshot tools and screen recording features such as Windows 11 Recall.</entry>
<entry lang="en" key="MEMORY_COST">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="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>
<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>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
File diff suppressed because it is too large Load Diff
+61 -182
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
@@ -135,8 +135,8 @@
<entry lang="el" key="IDC_FAVORITE_REMOVE">&amp;Διαγραφή</entry>
<entry lang="en" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Use favorite label as Explorer drive label</entry>
<entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key dismount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key dismount</entry>
<entry lang="el" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="el" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="el" key="IDC_HK_MOD_SHIFT">Shift</entry>
@@ -156,12 +156,12 @@
<entry lang="en" key="IDC_PIM_HELP">(Empty or 0 for default iterations)</entry>
<entry lang="el" key="IDC_PREF_BKG_TASK_ENABLE">Ενεργοποιημένο</entry>
<entry lang="el" key="IDC_PREF_CACHE_PASSWORDS">Αποθ/ση κωδικών στη μνήμη του οδηγού</entry>
<entry lang="el" key="IDC_PREF_UNMOUNT_INACTIVE">Όταν δε διαβάζονται/γράφονται δεδομένα σ'αυτόν για</entry>
<entry lang="el" key="IDC_PREF_UNMOUNT_LOGOFF">Αποσύνδεση χρήστη</entry>
<entry lang="en" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="el" key="IDC_PREF_UNMOUNT_POWERSAVING">Λειτουργία χαμηλής κατανάλωσης</entry>
<entry lang="el" key="IDC_PREF_UNMOUNT_SCREENSAVER">Ενεργή προστασία οθόνης</entry>
<entry lang="el" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Εξαναγκασμένη ακόμα και αν ο τόμος έχει ανοικτά αρχεία/φακέλους</entry>
<entry lang="el" key="IDC_PREF_DISMOUNT_INACTIVE">Όταν δε διαβάζονται/γράφονται δεδομένα σ'αυτόν για</entry>
<entry lang="el" key="IDC_PREF_DISMOUNT_LOGOFF">Αποσύνδεση χρήστη</entry>
<entry lang="en" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="el" key="IDC_PREF_DISMOUNT_POWERSAVING">Λειτουργία χαμηλής κατανάλωσης</entry>
<entry lang="el" key="IDC_PREF_DISMOUNT_SCREENSAVER">Ενεργή προστασία οθόνης</entry>
<entry lang="el" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Εξαναγκασμένη ακόμα και αν ο τόμος έχει ανοικτά αρχεία/φακέλους</entry>
<entry lang="el" key="IDC_PREF_LOGON_MOUNT_DEVICES">Φόρτωση όλων των τόμων-συσκευών VeraCrypt</entry>
<entry lang="en" key="IDC_PREF_LOGON_START">Start VeraCrypt Background Task</entry>
<entry lang="el" key="IDC_PREF_MOUNT_READONLY">Φόρτωση τόμων ως μόνο για ανάγνωση</entry>
@@ -169,7 +169,7 @@
<entry lang="el" key="IDC_PREF_OPEN_EXPLORER">Άνοιγμα Explorer για τους επιτυχώς φορτωμένους τόμους</entry>
<entry lang="en" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">Temporarily cache password during "Mount Favorite Volumes" operations</entry>
<entry lang="en" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Use a different taskbar icon when there are mounted volumes</entry>
<entry lang="el" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Διαγραφή κωδικών από τη μνήμη κατά την αυτοεκφόρτωση</entry>
<entry lang="el" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Διαγραφή κωδικών από τη μνήμη κατά την αυτοεκφόρτωση</entry>
<entry lang="el" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Διαγρ. κωδικών από τη μνήμη κατά την έξοδο</entry>
<entry lang="en" key="IDC_PRESERVE_TIMESTAMPS">Preserve modification timestamp of file containers</entry>
<entry lang="el" key="IDC_RESET_HOTKEYS">Επαναρύθμιση</entry>
@@ -269,14 +269,14 @@
<entry lang="en" key="IDT_ACCELERATION_OPTIONS">Hardware Acceleration</entry>
<entry lang="el" key="IDT_ASSIGN_HOTKEY">Συντόμευση</entry>
<entry lang="el" key="IDT_AUTORUN">Ρύθμιση αυτόματης εκκίνησης (autorun.inf)</entry>
<entry lang="el" key="IDT_AUTO_UNMOUNT">Αυτοεκφόρτωση</entry>
<entry lang="el" key="IDT_AUTO_UNMOUNT_ON">Εκφόρτωση όλων όταν:</entry>
<entry lang="el" key="IDT_AUTO_DISMOUNT">Αυτοεκφόρτωση</entry>
<entry lang="el" key="IDT_AUTO_DISMOUNT_ON">Εκφόρτωση όλων όταν:</entry>
<entry lang="en" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader Screen Options</entry>
<entry lang="el" key="IDT_CONFIRM_PASSWORD">Επιβεβαίωση κωδικού:</entry>
<entry lang="el" key="IDT_CURRENT">Τρέχων</entry>
<entry lang="en" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">Display this custom message in the pre-boot authentication screen (24 characters maximum):</entry>
<entry lang="el" key="IDT_DEFAULT_MOUNT_OPTIONS">Εξ'ορισμού επιλογές φόρτωσης</entry>
<entry lang="el" key="IDT_UNMOUNT_ACTION">Επιλογές συντομεύσεων</entry>
<entry lang="el" key="IDT_DISMOUNT_ACTION">Επιλογές συντομεύσεων</entry>
<entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry>
<entry lang="en" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Enable extended disk control codes support</entry>
<entry lang="en" key="IDT_FAVORITE_LABEL">Label of selected favorite volume:</entry>
@@ -291,11 +291,10 @@
<entry lang="el" key="IDT_NEW_PASSWORD">Κωδικός:</entry>
<entry lang="en" key="IDT_PARALLELIZATION_OPTIONS">Thread-Based Parallelization</entry>
<entry lang="en" key="IDT_PKCS11_LIB_PATH">PKCS #11 Library Path</entry>
<entry lang="el" key="IDT_KDF">KDF:</entry>
<entry lang="el" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="el" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="el" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="el" key="IDT_PW_CACHE_OPTIONS">Cache κωδικού</entry>
<entry lang="en" key="IDT_SECURITY_OPTIONS">Security Options</entry>
<entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry>
<entry lang="el" key="IDT_TASKBAR_ICON">Εργασία VeraCrypt στο παρασκήνιο</entry>
<entry lang="el" key="IDT_TRAVELER_MOUNT">Τόμος VeraCrypt προς φόρτωση (σχετικό με την πηγή του φορητού δίσκου):</entry>
<entry lang="el" key="IDT_TRAVEL_INSERTION">Με την εισαγωγή φορητού δίσκου: </entry>
@@ -357,7 +356,7 @@
<entry lang="el" key="IDT_KEYFILE_WARNING">ΠΡΟΣΟΧΗ: Αν χάσετε ένα αρχείο-κλειδί ή κάποιο bit από τα πρώτα 1024 ΚΒ του αλλάξει, θα είναι αδύνατο να φορτώσετε τόμους που το χρησιμοποιούν!</entry>
<entry lang="el" key="IDT_KEY_UNIT">bits</entry>
<entry lang="en" key="IDT_NUMBER_KEYFILES">Number of keyfiles:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size (in Bytes):</entry>
<entry lang="en" key="IDT_KEYFILES_BASE_NAME">Keyfiles base name:</entry>
<entry lang="el" key="IDT_LANGPACK_AUTHORS">Μετάφραση:</entry>
<entry lang="el" key="IDT_PLAINTEXT">Μέγεθος απλού κειμένου:</entry>
@@ -390,7 +389,6 @@
<entry lang="en" key="ADMINISTRATOR">Administrator</entry>
<entry lang="el" key="ADMIN_PRIVILEGES_DRIVER">Για να φορτώσετε τον οδηγό VeraCrypt, πρέπει να συνθεθείτε ως διαχειριστής.</entry>
<entry lang="el" key="ADMIN_PRIVILEGES_WARN_DEVICES">Παρακαλώ σημειώστε ότι για να κρυπτογραφήσετε/διαμορφώσετε ένα διαμέρισμα/συσκευή πρέπει να έχετε δικαιώματα διαχειριστή.\n\nΑυτό δεν ισχύει για τους τόμους σε αρχεία.</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="el" key="ADMIN_PRIVILEGES_WARN_HIDVOL">Για να δημιουργήσετε κρυφό τόμο πρέπει να έχετε δικαιώματα διαχειριστή.\n\nΣυνέχεια;</entry>
<entry lang="el" key="ADMIN_PRIVILEGES_WARN_NTFS">Παρακαλώ σημειώστε ότι για να διαμορφώσετε τον τόμο σε NTFS πρέπει να έχετε δικαιώματα διαχειριστή.\n\nΧωρίς δικαιώματα διαχειριστή μπορείτε να διαμορφώσετε τον τόμο σε FAT.</entry>
<entry lang="el" key="AES_HELP">Κρυπτογράφος εγκεκριμένος από την FIPS (Rijndael, δημοσιεύτηκε το 1998) που μπορεί να χρησιμοποιηθεί από υπηρεσίες των Η.Π.Α. για προστασία μέχρι άκρως απορρήτων πληροφοριών. Κλειδί 256-bit, μπλοκ 128-bit, 14 γύροι (AES-256). Κατάσταση λειτουργίας XTS.</entry>
@@ -423,8 +421,8 @@
<entry lang="en" key="DEVICE_FREE_PB">Size of %s is %.2f PB</entry>
<entry lang="el" key="DEVICE_IN_USE_FORMAT">ΠΡΟΣΟΧΗ: Η συσκευή/διαμέρισμα είναι σε χρήση από το λειτουργικό σύστημα ή εφαρμογές. Η διαμόρφωση της μπορεί να προκαλέσει απώλεια δεδομένων και αστάθεια συστήματος.\n\nΣυνέχεια;</entry>
<entry lang="en" key="DEVICE_IN_USE_INPLACE_ENC">Warning: The partition is in use by the operating system or applications. You should close any applications that might be using the partition (including antivirus software).\n\nContinue?</entry>
<entry lang="el" key="FORMAT_CANT_UNMOUNT_FILESYS">Σφάλμα: Η συσκευή/διαμέρισμα περιέχει ένα σύστημα αρχείων που δεν μπόρεσε να εκφορτωθεί. Το σύστημα αρχείων μπορεί να είναι σε χρήση από το λειτουργικό σύστημα. Η διαμόρφωση της συσκευής/διαμερίσματος πιθανότατα θα προκαλέσει απώλεια δεδομένων και αστάθεια συστήματος.\n\nΓια να επιλύσετε το πρόβλημα προτείνουμε να διαγράψετε πρώτα το διαμέρισμα και να το ξαναδημιουργήσετε χωρίς διαμόρφωση.</entry>
<entry lang="en" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Error: The filesystem could not be locked and/or unmounted. It may be in use by the operating system or applications (for example, antivirus software). Encrypting the partition might cause data corruption and system instability.\n\nPlease close any applications that might be using the filesystem (including antivirus software) and try again. If it does not help, please follow the below steps.</entry>
<entry lang="el" key="FORMAT_CANT_DISMOUNT_FILESYS">Σφάλμα: Η συσκευή/διαμέρισμα περιέχει ένα σύστημα αρχείων που δεν μπόρεσε να εκφορτωθεί. Το σύστημα αρχείων μπορεί να είναι σε χρήση από το λειτουργικό σύστημα. Η διαμόρφωση της συσκευής/διαμερίσματος πιθανότατα θα προκαλέσει απώλεια δεδομένων και αστάθεια συστήματος.\n\nΓια να επιλύσετε το πρόβλημα προτείνουμε να διαγράψετε πρώτα το διαμέρισμα και να το ξαναδημιουργήσετε χωρίς διαμόρφωση.</entry>
<entry lang="en" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Error: The filesystem could not be locked and/or dismounted. It may be in use by the operating system or applications (for example, antivirus software). Encrypting the partition might cause data corruption and system instability.\n\nPlease close any applications that might be using the filesystem (including antivirus software) and try again. If it does not help, please follow the below steps.</entry>
<entry lang="el" key="DEVICE_IN_USE_INFO">ΠΡΟΣΟΧΗ: Ορισμένες από τις φορτωμένες συσκευές/διαμερίσματα ήταν ήδη σε χρήση!\n\nΗ παράβλεψη μπορεί να οδηγήσει σε ανεπιθύμητα αποτελέσματα και αστάθεια συστήματος.\n\nΣυνιστούμε να κλείσετε κάθε εφαρμογή που μπορεί να χρησιμοποιεί τις συσκευές/διαμερίσματα.</entry>
<entry lang="el" key="DEVICE_PARTITIONS_ERR">Η επιλεγμένη συσκευή περιέχει διαμερίσματα.\n\nΗ διαμόρφωση της μπορεί να δημιουργήσει αστάθεια συστήματος και/ή απώλεια δεδομένων. Παρακαλώ επιλέξτε ένα διαμέρισμα στη συσκευή ή διαγράψτε όλα τα διαμερίσματα από τη συσκευή για να τη διαμορφώσει το VeraCrypt εν ασφαλεία.</entry>
<entry lang="en" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">The selected non-system device contains partitions.\n\nEncrypted device-hosted VeraCrypt volumes can be created within devices that do not contain any partitions (including hard disks and solid-state drives). A device that contains partitions can be entirely encrypted in place (using a single master key) only if it is the drive where Windows is installed and from which it boots.\n\nIf you want to encrypt the selected non-system device using a single master key, you will need to remove all partitions on the device first to enable VeraCrypt to format it safely (formatting a device that contains partitions might cause system instability and/or data corruption). Alternatively, you can encrypt each partition on the drive individually (each partition will be encrypted using a different master key).\n\nNote: If you want to remove all partitions from a GPT disk, you may need to convert it to a MBR disk (using e.g. the Computer Management tool) in order to remove hidden partitions.</entry>
@@ -525,7 +523,7 @@
<entry lang="el" key="HIDVOL_FORMAT_FINISHED_TITLE">Ο κρυφός τόμος δημιουργήθηκε</entry>
<entry lang="en" key="HIDVOL_FORMAT_FINISHED_HELP">The hidden VeraCrypt volume has been successfully created and is ready for use. If all the instructions have been followed and if the precautions and requirements listed in the section "Security Requirements and Precautions Pertaining to Hidden Volumes" in the VeraCrypt User's Guide are followed, it should be impossible to prove that the hidden volume exists, even when the outer volume is mounted.\n\nWARNING: IF YOU DO NOT PROTECT THE HIDDEN VOLUME (FOR INFORMATION ON HOW TO DO SO, REFER TO THE SECTION "PROTECTION OF HIDDEN VOLUMES AGAINST DAMAGE" IN THE VERACRYPT USER'S GUIDE), DO NOT WRITE TO THE OUTER VOLUME. OTHERWISE, YOU MAY OVERWRITE AND DAMAGE THE HIDDEN VOLUME!</entry>
<entry lang="en" key="FIRST_HIDDEN_OS_BOOT_INFO">You have started the hidden operating system. As you may have noticed, the hidden operating system appears to be installed on the same partition as the original operating system. However, in reality, it is installed within the partition behind it (in the hidden volume). All read and write operations are being transparently redirected from the original system partition to the hidden volume.\n\nNeither the operating system nor applications will know that data written to and read from the system partition are actually written to and read from the partition behind it (from/to a hidden volume). Any such data is encrypted and decrypted on the fly as usual (with an encryption key different from the one that will be used for the decoy operating system).\n\n\nPlease click Next to continue.</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP_SYSENC">The outer volume has been created and mounted as drive %hc:. To this outer volume you should now copy some sensitive-looking files that you actually do NOT want to hide. They will be there for anyone forcing you to disclose the password for the first partition behind the system partition, where both the outer volume and the hidden volume (containing the hidden operating system) will reside. You will be able to reveal the password for this outer volume, and the existence of the hidden volume (and of the hidden operating system) will remain secret.\n\nIMPORTANT: The files you copy to the outer volume should not occupy more than %s. Otherwise, there may not be enough free space on the outer volume for the hidden volume (and you will not be able to continue). After you finish copying, click Next (do not unmount the volume).</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP_SYSENC">The outer volume has been created and mounted as drive %hc:. To this outer volume you should now copy some sensitive-looking files that you actually do NOT want to hide. They will be there for anyone forcing you to disclose the password for the first partition behind the system partition, where both the outer volume and the hidden volume (containing the hidden operating system) will reside. You will be able to reveal the password for this outer volume, and the existence of the hidden volume (and of the hidden operating system) will remain secret.\n\nIMPORTANT: The files you copy to the outer volume should not occupy more than %s. Otherwise, there may not be enough free space on the outer volume for the hidden volume (and you will not be able to continue). After you finish copying, click Next (do not dismount the volume).</entry>
<entry lang="el" key="HIDVOL_HOST_FILLING_HELP">Ο εξωτερικός τόμος δημιουργήθηκε επιτυχώς και φορτώθηκε ως οδηγός %hc:. Σε αυτόν τον τόμο θα πρέπει να γράψετε αρχεία που ΔΕΝ θέλετε να κρύψετε. Τα αρχεία θα είναι εμφανή για όποιον σας εξαναγκάσει να αποκαλύψετε τον κωδικό σας. Θα αποκαλύψετε μόνο τον κωδικό του εξωτερικού τόμου, όχι του κρυφού. Τα πραγματικά σημαντικά σας αρχεία θα είναι στον κρυφό τόμο που θα δημιουργηθεί στη συνέχεια. Όταν τελειώσετε την αντιγραφή πιέστε "Επόμενο". Μην εκφορτώσετε τον τόμο.\n\nΣημείωση: Αφού πιέσετε "Επόμενο", το cluster bitmap του εξωτερικού τόμου θα ανιχνευθεί για να καθορισθεί το μέγεθος του συνεχούς ελεύθερου χώρου του οποίου το τέλος ευθυγραμμίζεται με το τέλος του τόμου. Αυτή η περιοχή θα περιέχει τον κρυφό τόμο, συνεπώς θα περιορίσει το μέγιστο δυνατό του μέγεθος. Η ανίχνευση του cluster bitmap διασφαλίζει ότι δεν θα διαγραφούν δεδομένα του εξωτερικού τόμου από τον κρυφό τόμο.</entry>
<entry lang="el" key="HIDVOL_HOST_FILLING_TITLE">Περιεχόμενα εξωτερικού τόμου</entry>
<entry lang="el" key="HIDVOL_HOST_PRE_CIPHER_HELP">\n\nΣτα επόμενα βήματα θα ορίσετε τις επιλογές για τον εξωτερικό τόμο (μέσα στον οποίο θα δημιουργηθεί ο κρυφός τόμος αργότερα).</entry>
@@ -590,7 +588,7 @@
<entry lang="en" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">Error: The files you copied to the outer volume occupy too much space. Therefore, there is not enough free space on the outer volume for the hidden volume.\n\nNote that the hidden volume must be as large as the system partition (the partition where the currently running operating system is installed). The reason is that the hidden operating system needs to be created by copying the content of the system partition to the hidden volume.\n\n\nThe process of creation of the hidden operating system cannot continue.</entry>
<entry lang="el" key="OPENFILES_DRIVER">Ο οδηγός αδυνατεί να εκφορτώσει τον τόμο. Κάποια αρχεία του τόμου πιθανόν να είναι ακόμα σε χρήση.</entry>
<entry lang="el" key="OPENFILES_LOCK">Αδύνατον να κλειδωθεί ο τόμος. Υπάρχουν ακόμα ανοιχτά αρχεία στον τόμο. Γι' αυτό δεν μπορεί να εκφορτωθεί.</entry>
<entry lang="en" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt cannot lock the volume because it is in use by the system or applications (there may be open files on the volume).\n\nDo you want to force unmount on the volume?</entry>
<entry lang="en" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt cannot lock the volume because it is in use by the system or applications (there may be open files on the volume).\n\nDo you want to force dismount on the volume?</entry>
<entry lang="el" key="OPEN_VOL_TITLE">Επιλέξτε έναν τόμο VeraCrypt</entry>
<entry lang="el" key="OPEN_TITLE">Καθορίστε διαδρομή και όνομα αρχείου</entry>
<entry lang="en" key="SELECT_PKCS11_MODULE">Select PKCS #11 Library</entry>
@@ -613,7 +611,7 @@
<entry lang="en" key="FAVORITE_PIM_CHANGED">This volume is registered as a System Favorite and its PIM was changed.\nDo you want VeraCrypt to automatically update the System Favorite configuration (administrator privileges required)?\n\nPlease note that if you answer no, you'll have to update the System Favorite manually.</entry>
<entry lang="en" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">IMPORTANT: If you did not destroy your VeraCrypt Rescue Disk, your system partition/drive can still be decrypted using the old password (by booting the VeraCrypt Rescue Disk and entering the old password). You should create a new VeraCrypt Rescue Disk and then destroy the old one.\n\nDo you want to create a new VeraCrypt Rescue Disk?</entry>
<entry lang="el" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">Σημειώστε ότι ο Δίσκος Ασφαλείας VeraCrypt σας εξακολουθεί να χρησιμοποιεί τον προηγούμενο αλγόριθμο. Αν θεωρείτε τον προηγούμενο αλγόριθμο ανασφαλή, θα πρέπει να δημιουργήσετε έναν νέο Δίσκο Ασφαλείας και να καταστρέψετε τον παλιό.\n\nΘέλετε να δημιουργήσετε έναν νέο Δίσκο Ασφαλείας VeraCrypt;</entry>
<entry lang="en" key="KEYFILES_NOTE">Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="en" key="KEYFILES_NOTE">Any kind of file (for example, .mp3, .jpg, .zip, .avi) may be used as a VeraCrypt keyfile. Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="el" key="KEYFILE_CHANGED">Τα αρχεία-κλειδιά προστέθηκαν/αφαιρέθηκαν επιτυχώς.</entry>
<entry lang="en" key="KEYFILE_EXPORTED">Keyfile exported.</entry>
<entry lang="el" key="PKCS5_PRF_CHANGED">Ο αλγόριθμος του κλειδιού δημιουργίας header ορίσθηκε επιτυχώς.</entry>
@@ -729,7 +727,7 @@
<entry lang="en" key="DLL_FILES">Library Modules</entry>
<entry lang="el" key="FORMAT_NTFS_STOP">Η διαμόρφωση NTFS δεν μπορεί να συνεχιστεί.</entry>
<entry lang="el" key="CANT_MOUNT_VOLUME">Αδύνατη η φόρτωση του τόμου.</entry>
<entry lang="el" key="CANT_UNMOUNT_VOLUME">Αδύνατη η εκφόρτωση του τόμου.</entry>
<entry lang="el" key="CANT_DISMOUNT_VOLUME">Αδύνατη η εκφόρτωση του τόμου.</entry>
<entry lang="el" key="FORMAT_NTFS_FAILED">Τα Windows απέτυχαν στη διαμόρφωση του τόμου σε NTFS.\n\nΠαρακαλώ επιλέξτε έναν διαφορετικό τύπο συστήματος αρχείων (αν είναι δυνατόν) και προσπαθήστε ξανά. Εναλλακτικά θα μπορούσατε να αφήσετε τον τόμο αδιαμόρφωτο (επιλέξτε "Κανένα" ως σύστημα αρχείων), βγείτε από αυτόν τον Οδηγό, φορτώστε τον τόμο και κατόπιν χρησιμοποιείστε ένα εργαλείο είτε του συστήματος είτε ενός τρίτου κατασκευαστή για να διαμορφώσετε τον φορτωμένο τόμο (ο τόμος θα παραμείνει κρυπτογραφημένος).</entry>
<entry lang="el" key="FORMAT_NTFS_FAILED_ASK_FAT">Τα Windows απέτυχαν στη διαμόρφωση του τόμου σε NTFS.\n\nΘέλετε να τον διαμορφώσετε σε FAT;</entry>
<entry lang="el" key="DEFAULT">Εξ'ορισμού</entry>
@@ -771,7 +769,7 @@
<entry lang="en" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">An error prevented VeraCrypt from encrypting the partition. Please try fixing any previously reported problems and then try again. If the problems persist, it might help to follow the below steps.</entry>
<entry lang="en" key="INPLACE_ENC_GENERIC_ERR_RESUME">An error prevented VeraCrypt from resuming the process of encryption/decryption of the partition/volume.\n\nPlease try fixing any previously reported problems and then try resuming the process again if possible. Note that the volume cannot be mounted until it has been fully encrypted or fully decrypted.</entry>
<entry lang="en" key="INPLACE_DEC_GENERIC_ERR">An error prevented VeraCrypt from decrypting the volume. Please try fixing any previously reported problems and then try again if possible.</entry>
<entry lang="el" key="CANT_UNMOUNT_OUTER_VOL">Σφάλμα: Αδυναμία εκφόρτωσης του εξωτερικού τόμου!\n\nΟ τόμος δεν μπορεί να εκφορτωθεί αν περιέχει αρχεία ή φακέλους σε χρήση.\n\nΠαρακαλώ κλείστε κάθε πρόγραμμα που μπορεί να χρησιμοποιεί αρχεία ή φακέλους του τόμου και επιλέξτε "Επανάληψη".</entry>
<entry lang="el" key="CANT_DISMOUNT_OUTER_VOL">Σφάλμα: Αδυναμία εκφόρτωσης του εξωτερικού τόμου!\n\nΟ τόμος δεν μπορεί να εκφορτωθεί αν περιέχει αρχεία ή φακέλους σε χρήση.\n\nΠαρακαλώ κλείστε κάθε πρόγραμμα που μπορεί να χρησιμοποιεί αρχεία ή φακέλους του τόμου και επιλέξτε "Επανάληψη".</entry>
<entry lang="el" key="CANT_GET_OUTER_VOL_INFO">Σφάλμα: Αδυναμία ανάκτησης πληροφοριών για τον εξωτερικό τόμο! Η δημιουργία του τόμου δεν μπορεί να συνεχιστεί.</entry>
<entry lang="el" key="CANT_ACCESS_OUTER_VOL">Σφάλμα: Αδυναμία πρόσβασης στον εξωτερικό τόμο! Η δημιουργία του τόμου δεν μπορεί να συνεχισθεί.</entry>
<entry lang="el" key="CANT_MOUNT_OUTER_VOL">Σφάλμα: Αδυναμία φόρτωσης του εξωτερικού τόμου! Η δημιουργία του τόμου δεν μπορεί να συνεχισθεί.</entry>
@@ -813,7 +811,7 @@
<entry lang="en" key="SECONDARY_KEY_SIZE_LRW">Tweak Key Size (LRW Mode)</entry>
<entry lang="el" key="BITS">bits</entry>
<entry lang="el" key="BLOCK_SIZE">Μέγεθος μπλοκ</entry>
<entry lang="el" key="KDF">KDF</entry>
<entry lang="el" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="el" key="PKCS5_ITERATIONS">PKCS-5 αριθμός επαναλήψεων</entry>
<entry lang="el" key="VOLUME_CREATE_DATE">Δημιουργία τόμου</entry>
<entry lang="el" key="VOLUME_HEADER_DATE">Τελευταία τροποποίηση header</entry>
@@ -855,7 +853,7 @@
<entry lang="en" key="TC_INSTALLER_IS_RUNNING">VeraCrypt Installer is currently running on this system and performing or preparing installation or update of VeraCrypt. Before you proceed, please wait for it to finish or close it. If you cannot close it, please restart your computer before proceeding.</entry>
<entry lang="el" key="INSTALL_FAILED">Η εγκατάσταση απέτυχε.</entry>
<entry lang="el" key="UNINSTALL_FAILED">Η απεγκατάσταση απέτυχε.</entry>
<entry lang="el" key="DIST_PACKAGE_CORRUPTED">Αυτό το πακέτο εγκατάστασης είναι φθαρμένο. Παρακαλώ δοκιμάστε να το κατεβάσετε ξανά (κατά προτίμηση από τον ιστοχώρο του VeraCrypt στη https://veracrypt.jp).</entry>
<entry lang="el" key="DIST_PACKAGE_CORRUPTED">Αυτό το πακέτο εγκατάστασης είναι φθαρμένο. Παρακαλώ δοκιμάστε να το κατεβάσετε ξανά (κατά προτίμηση από τον ιστοχώρο του VeraCrypt στη https://www.veracrypt.fr).</entry>
<entry lang="el" key="CANNOT_WRITE_FILE_X">Αδυναμία εγγραφής αρχείου %s</entry>
<entry lang="el" key="EXTRACTING_VERB">Εξαγωγή</entry>
<entry lang="el" key="CANNOT_READ_FROM_PACKAGE">Αδυναμία ανάγνωσης δεδομένων από το πακέτο.</entry>
@@ -882,7 +880,7 @@
<entry lang="el" key="INSTALL_COMPLETED">Η εγκατάσταση ολοκληρώθηκε.</entry>
<entry lang="el" key="CANT_CREATE_FOLDER">Ο φάκελος '%s' δεν μπόρεσε να δημιουργηθεί</entry>
<entry lang="el" key="CLOSE_TC_FIRST">Ο οδηγός συσκευής του VeraCrypt δεν μπόρεσε να εκφορτωθεί.\n\nΠαρακαλώ κλείστε πρώτα όλα τα ανοιχτά παράθυρα του VeraCrypt. Αν αυτό δε βοηθήσει, επανεκκινήστε τα Windows και δοκιμάστε ξανά.</entry>
<entry lang="el" key="UNMOUNT_ALL_FIRST">Όλοι οι τόμοι VeraCrypt πρέπει να εκφορτωθούν πριν την εγκατάσταση ή απεγκατάσταση του VeraCrypt.</entry>
<entry lang="el" key="DISMOUNT_ALL_FIRST">Όλοι οι τόμοι VeraCrypt πρέπει να εκφορτωθούν πριν την εγκατάσταση ή απεγκατάσταση του VeraCrypt.</entry>
<entry lang="en" key="UNINSTALL_OLD_VERSION_FIRST">An obsolete version of VeraCrypt is currently installed on this system. It needs to be uninstalled before you can install this new version of VeraCrypt.\n\nAs soon as you close this message box, the uninstaller of the old version will be launched. Note that no volume will be decrypted when you uninstall VeraCrypt. After you uninstall the old version of VeraCrypt, run the installer of the new version of VeraCrypt again.</entry>
<entry lang="el" key="REG_INSTALL_FAILED">Η εγκατάσταση των καταχωρήσεων μητρώου απέτυχε</entry>
<entry lang="el" key="DRIVER_INSTALL_FAILED">Η εγκατάσταση του οδηγού συσκευής απέτυχε. Παρακάλω επανεκκινήστε τα Windows και δοκιμάστε να ξαναεγκαταστήσετε το VeraCrypt.</entry>
@@ -903,7 +901,7 @@
<entry lang="el" key="MINUTES">λεπτά</entry>
<entry lang="el" key="SECONDS">δ</entry>
<entry lang="el" key="OPEN">Άνοιγμα</entry>
<entry lang="el" key="UNMOUNT">Εκφόρτωση</entry>
<entry lang="el" key="DISMOUNT">Εκφόρτωση</entry>
<entry lang="el" key="SHOW_TC">Δείξε το VeraCrypt</entry>
<entry lang="el" key="HIDE_TC">Κρύψε το VeraCrypt</entry>
<entry lang="el" key="TOTAL_DATA_READ">Αναγνωσμένα δεδομένα από την φόρτωση</entry>
@@ -940,7 +938,7 @@
<entry lang="en" key="ENTER_HEADER_BACKUP_PASSWORD">Enter password for the header stored in backup file</entry>
<entry lang="el" key="KEYFILE_CREATED">Το αρχείο-κλειδί δημιουργήθηκε επιτυχώς.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_NUMBER">The number of keyfiles you supplied is invalid.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be at least 64 bytes.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be comprized between 64 and 1048576 bytes.</entry>
<entry lang="en" key="KEYFILE_EMPTY_BASE_NAME">Please enter a name for the keyfile(s) to be generated</entry>
<entry lang="en" key="KEYFILE_INVALID_BASE_NAME">The base name of the keyfile(s) is invalid</entry>
<entry lang="en" key="KEYFILE_ALREADY_EXISTS">The keyfile '%s' already exists.\nDo you want to overwrite it? The generation process will be stopped if you answer No.</entry>
@@ -975,7 +973,7 @@
<entry lang="en" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - System Favorite Volumes</entry>
<entry lang="en" key="SYS_FAVORITES_HELP_LINK">What are system favorite volumes?</entry>
<entry lang="en" key="SYS_FAVORITES_REQUIRE_PBA">The system partition/drive does not appear to be encrypted.\n\nSystem favorite volumes can be mounted using only a pre-boot authentication password. Therefore, to enable use of system favorite volumes, you need to encrypt the system partition/drive first.</entry>
<entry lang="el" key="UNMOUNT_FIRST">Παρακαλώ εκφορτώστε τον τόμο πριν συνεχίσετε.</entry>
<entry lang="el" key="DISMOUNT_FIRST">Παρακαλώ εκφορτώστε τον τόμο πριν συνεχίσετε.</entry>
<entry lang="el" key="CANNOT_SET_TIMER">Σφάλμα: Αδυναμία ορισμού χρονομετρητή.</entry>
<entry lang="el" key="IDPM_CHECK_FILESYS">Ελέγχος συστήματος αρχείων</entry>
<entry lang="el" key="IDPM_REPAIR_FILESYS">Διόρθωση συστήματος αρχείων</entry>
@@ -997,7 +995,7 @@
<entry lang="el" 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="el" key="UNSUPPORTED_CHARS_IN_PWD_RECOM">Προειδοποίηση: Ο κωδικός περιέχει χαρακτήρες μη-ASCII.\n\nΑυτό μπορεί να προκαλέσει αδυναμία φόρτωσης του τόμου όταν αλλάξουν οι ρυθμίσεις του συστήματος σας.\n\nΘα πρέπει να αλλάξετε όλους τους μη-ASCII χαρακτήρες με χαρακτήρες 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="en" key="EXE_FILE_EXTENSION_CONFIRM">WARNING: We strongly recommend that you avoid file extensions that are used for executable files (such as .exe, .sys, or .dll) and other similarly problematic file extensions. Using such file extensions causes Windows and antivirus software to interfere with the container, which adversely affects the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension or change it (e.g., to '.hc').\n\nAre you sure you want to use the problematic file extension?</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you unmount the volume.</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you dismount the volume.</entry>
<entry lang="el" key="HOMEPAGE">Ιστοτόπος</entry>
<entry lang="el" key="LARGE_IDE_WARNING_XP">ΠΡΟΣΟΧΗ: Φαίνεται ότι δεν έχετε εφαρμόσει κανένα Service Pack στα Windows σας. Δε θα πρέπει να γράψετε σε δίσκους IDE μεγαλύτερους από 128 GB στα Windows XP χωρίς τουλάχιστον Service Pack 1! Αν το κάνετε, δεδομένα του δίσκου (άσχετα αν είναι τόμου VeraCrypt) μπορεί να αλλοιωθούν. Σημειώστε ότι αυτός είναι ένας περιορισμός των Windows, όχι ελάττωμα του VeraCrypt.</entry>
<entry lang="el" key="LARGE_IDE_WARNING_2K">ΠΡΟΣΟΧΗ: Φαίνεται ότι δεν έχετε εφαρμόσει τουλάχιστον το Service Pack 3 στα Windows σας. Δε θα πρέπει να γράψετε σε δίσκους IDE μεγαλύτερους από 128 GB στα Windows 2000 χωρίς τουλάχιστον Service Pack 3! Αν το κάνετε, δεδομένα του δίσκου (άσχετα αν είναι τόμου VeraCrypt) μπορεί να αλλοιωθούν. Σημειώστε ότι αυτός είναι ένας περιορισμός των Windows, όχι ελάττωμα του VeraCrypt.\n\nΣημείωση: Ισως χρειαστεί να ενεργοποιήσετε την υποστήριξη 48-bit LBA στο μητρώο. Περισσότερες πληροφορίες στη http://support.microsoft.com/kb/305098/EN-US</entry>
@@ -1009,11 +1007,11 @@
<entry lang="el" key="NO_SYSENC_PARTITION_SELECTED">Δεν επιλέχθηκε διαμέρισμα.\n\nΕπιλέξτε 'Επιλογή συσκευής' για να επιλέξετε ένα εκφορτωμένο διαμέρισμα που φυσιολογικά χρειάζεται προ-εκκίνησης έλεγχο αυθεντικότητας (π.χ. ένα διαμέρισμα που βρίσκεται στο κρυπτογραφημένο οδηγό συστήματος ενός άλλου λειτουργικού συστήματος που δεν τρέχει, ή το κρυπτογραφημένο διαμέρισμα του συστήματος ενός άλλου λειτουργικού συστήματος).\n\nΣημείωση: Το επιλεγμένο διαμέρισμα θα φορτωθεί σαν ένας κανονικός τόμος VeraCrypt χωρίς προ-εκκίνησης έλεγχο αυθεντικότητας. Αυτό είναι χρήσιμο π.χ. για λειτουργίες αντιγράφων ασφαλείας ή επιδιόρθωσης.</entry>
<entry lang="el" key="CONFIRM_SAVE_DEFAULT_KEYFILES">ΠΡΟΣΟΧΗ: Αν ορισθούν και επιλεγούν εξ'ορισμού αρχεία-κλειδιά, τόμοι οι οποίοι δε χρησιμοποιούν αυτά τα αρχεία-κλειδιά δε θα μπορούν να φορτωθούν. Συνεπώς, αφού ενεργοποιήσετε εξ'ορισμού κλειδιά, έχετε υπόψη να αποεπιλέξετε το πεδίο "Χρήση αρχείων-κλειδιών" όποτε φορτώνετε τέτοιους τόμους.\n\nΕίστε σίγουρος ότι θέλετε να αποθηκεύσετε τα επιλεγμένα αρχεία-κλειδιά/διαδρομές ως εξ'ορισμού;</entry>
<entry lang="el" key="HK_AUTOMOUNT_DEVICES">Αυτοφόρτωση συσκευών</entry>
<entry lang="el" key="HK_UNMOUNT_ALL">Εκφόρτωση όλων</entry>
<entry lang="el" key="HK_DISMOUNT_ALL">Εκφόρτωση όλων</entry>
<entry lang="el" key="HK_WIPE_CACHE">Διαγραφή cache</entry>
<entry lang="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All &amp; Wipe Cache</entry>
<entry lang="el" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Εξαναγκασμένη εκφόρτωση όλων &amp; διαγραφή cache</entry>
<entry lang="el" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Εξαναγκασμένη εκφόρτωση όλων, διαγραφή cache &amp; έξοδος</entry>
<entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All &amp; Wipe Cache</entry>
<entry lang="el" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Εξαναγκασμένη εκφόρτωση όλων &amp; διαγραφή cache</entry>
<entry lang="el" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Εξαναγκασμένη εκφόρτωση όλων, διαγραφή cache &amp; έξοδος</entry>
<entry lang="el" key="HK_MOUNT_FAVORITE_VOLUMES">Φόρτωση αγαπημένων τόμων</entry>
<entry lang="el" key="HK_SHOW_HIDE_MAIN_WINDOW">Εμφάνιση/απόκρυψη κύριου παραθύρου VeraCrypt</entry>
<entry lang="el" key="PRESS_A_KEY_TO_ASSIGN">(Κάντε κλικ εδώ και πιέστε ένα πλήκτρο)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="en" key="PAGING_FILE_CREATION_PREVENTED">Paging file creation has been prevented.\n\nPlease note that, due to Windows issues, paging files cannot be located on non-system VeraCrypt volumes (including system favorite volumes). VeraCrypt supports creation of paging files only on an encrypted system partition/drive.</entry>
<entry lang="en" key="SYS_ENC_HIBERNATION_PREVENTED">An error or incompatibility prevents VeraCrypt from encrypting the hibernation file. Therefore, hibernation has been prevented.\n\nNote: When a computer hibernates (or enters a power-saving mode), the content of its system memory is written to a hibernation storage file residing on the system drive. VeraCrypt would not be able to prevent encryption keys and the contents of sensitive files opened in RAM from being saved unencrypted to the hibernation storage file.</entry>
<entry lang="en" key="HIDDEN_OS_HIBERNATION_PREVENTED">Hibernation has been prevented.\n\nVeraCrypt does not support hibernation on hidden operating systems that use an extra boot partition. Please note that the boot partition is shared by both the decoy and the hidden system. Therefore, in order to prevent data leaks and problems while resuming from hibernation, VeraCrypt has to prevent the hidden system from writing to the shared boot partition and from hibernating.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">VeraCrypt volume mounted as %c: has been unmounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt volumes have been unmounted.</entry>
<entry lang="en" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt volumes have been unmounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_UNMOUNTED">Successfully unmounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="el" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">ΠΡΟΣΟΧΗ: Αν αυτή η δυνατότητα απενεργοποιηθεί, οι τόμοι που περιέχουν ανοιχτά αρχεία/φακέλους δε θα μπορούν να εκφορτωθούν.\n\nΕίστε σίγουρος ότι θέλετε να απενεργοποιήσετε αυτή τη δυνατότητα;</entry>
<entry lang="el" key="WARN_PREF_AUTO_UNMOUNT">ΠΡΟΣΟΧΗ: Τόμοι που περιέχουν ανοιχτά αρχεία/φακέλους ΔΕ θα αυτοεκφορτωθούν.\n\nΓια να το αποφύγετε αυτό ενεργοποιήστε την ακόλουθη επιλογή σε αυτό το παράθυρο διαλόγου:"Ακόμα και αν ο τόμος περιέχει ανοιχτά αρχεία/φακέλους"</entry>
<entry lang="en" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-unmount volumes in such cases.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">VeraCrypt volume mounted as %c: has been dismounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt volumes have been dismounted.</entry>
<entry lang="en" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt volumes have been dismounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_DISMOUNTED">Successfully dismounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="el" key="CONFIRM_NO_FORCED_AUTODISMOUNT">ΠΡΟΣΟΧΗ: Αν αυτή η δυνατότητα απενεργοποιηθεί, οι τόμοι που περιέχουν ανοιχτά αρχεία/φακέλους δε θα μπορούν να εκφορτωθούν.\n\nΕίστε σίγουρος ότι θέλετε να απενεργοποιήσετε αυτή τη δυνατότητα;</entry>
<entry lang="el" key="WARN_PREF_AUTO_DISMOUNT">ΠΡΟΣΟΧΗ: Τόμοι που περιέχουν ανοιχτά αρχεία/φακέλους ΔΕ θα αυτοεκφορτωθούν.\n\nΓια να το αποφύγετε αυτό ενεργοποιήστε την ακόλουθη επιλογή σε αυτό το παράθυρο διαλόγου:"Ακόμα και αν ο τόμος περιέχει ανοιχτά αρχεία/φακέλους"</entry>
<entry lang="en" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-dismount volumes in such cases.</entry>
<entry lang="en" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">You have scheduled the process of encryption/decryption of a partition/volume. The process has not been completed yet.\n\nDo you want to resume the process now?</entry>
<entry lang="el" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">Έχετε προγραμματίσει τη διαδικασία κρυπτογράφησης ή αποκρυπτογράφησης του διαμερίσματος/συσκευής του συστήματος. Η διαδικασία δεν ολοκληρώθηκε ακόμα.\n\nΘέλετε να εκκινήσετε (συνεχίσετε) τη διαδικασία τώρα;</entry>
<entry lang="en" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">Do you want to be prompted about whether you want to resume the currently scheduled processes of encryption/decryption of non-system partitions/volumes?</entry>
@@ -1040,7 +1038,7 @@
<entry lang="en" key="DO_NOT_PROMPT_ME">No, do not prompt me</entry>
<entry lang="en" key="NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL_NOTE">IMPORTANT: Keep in mind that you can resume the process of encryption/decryption of any non-system partition/volume by selecting 'Volumes' &gt; 'Resume Interrupted Process' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="el" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">Έχετε προγραμματίσει τη διαδικασία κρυπτογράφησης ή αποκρυπτογράφησης του διαμερίσματος/συσκευής του συστήματος. Ωστόσο ο προ-εκκίνησης έλεγχος απέτυχε (ή παρακάμφθηκε).\n\nΣημείωση: Αν αποκρυπτογραφήσατε το διαμέρισμα/συσκευή του συστήματος στο προ-εκκίνησης περιβάλλον, ίσως χρειαστεί να τερματίσετε τη διαδικασία επιλέγοντας 'Σύστημα' &gt; 'Μόνιμη αποκρυπτογράφηση διαμερίσματος/οδηγού συστήματος' από την μπάρα μενού του κύριου παραθύρου του VeraCrypt.</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="el" key="CONFIRM_EXIT_UNIVERSAL">Έξοδος;</entry>
<entry lang="el" key="CHOOSE_ENCRYPT_OR_DECRYPT">Το VeraCrypt δεν έχει αρκετές πληροφορίες για να προσδιορίσει αν θα κρυπτογραφήσει ή θα αποκρυπτογραφήσει.</entry>
<entry lang="el" key="CHOOSE_ENCRYPT_OR_DECRYPT_FINALIZE_DECRYPT_NOTE">Το VeraCrypt δεν έχει επαρκείς πληροφορίες για να καθορίσει αν θα κρυπτογραφήσει ή θα αποκρυπτογραφήσει.\n\nΣημείωση: Αν αποκρυπτογραφήσατε το διαμέρισμα/συσκευή του συστήματος στο προ-εκκίνησης περιβάλλον, ίσως χρειαστεί να τερματίσετε τη διαδικασία επιλέγοντας Αποκρυπτογράφηση.</entry>
@@ -1063,7 +1061,7 @@
<entry lang="el" key="SYS_AUTOMOUNT_DISABLED">Το σύστημα σας δεν έχει ρυθμιστεί να αυτοφορτώνει νέους τόμους. Μπορεί να είναι αδύνατο να φορτωθούν τόμοι-συσκευές του VeraCrypt. Η αυτοφόρτωση μπορεί να ενεργοποιηθεί εκτελώντας την ακόλουθη εντολή και κάνοντας επανεκκίνηση.\n\nmountvol.exe /E</entry>
<entry lang="el" key="SYS_ASSIGN_DRIVE_LETTER">Παρακαλώ ορίστε ένα γράμμα οδηγού για το διαμέρισμα/συσκευή πριν συνεχίσετε ("Πίνακας Ελέγχου" &gt; "Επιδόσεις και Συντήρηση" &gt; "Εργαλεία Διαχείρισης" &gt; "Διαχείριση Υπολογιστή" &gt; "Διαχείριση Δίσκων").\n\nΣημειώστε ότι αυτό είναι μια απαίτηση του λειτουργικού συστήματος.</entry>
<entry lang="el" key="MOUNT_TC_VOLUME">Φόρτωση τόμου VeraCrypt</entry>
<entry lang="el" key="UNMOUNT_ALL_TC_VOLUMES">Εκφόρτωση όλων των τόμων VeraCrypt</entry>
<entry lang="el" key="DISMOUNT_ALL_TC_VOLUMES">Εκφόρτωση όλων των τόμων VeraCrypt</entry>
<entry lang="el" key="UAC_INIT_ERROR">Το VeraCrypt απέτυχε να αποκτήσει δικαιώματα Διαχειριστή.</entry>
<entry lang="el" key="ERR_ACCESS_DENIED">Η πρόσβαση απορρίφθηκε από το λειτουργικό σύστημα.\n\nΠιθανή αιτία: Το λειτουργικό σύστημα απαιτεί να έχετε άδεια ανάγνωσης/εγγραφής (ή δικαιώματα διαχειριστή) για συγκεκριμένους φακέλους, αρχεία και συσκευές για να σας επιτρέπεται να διαβάζετε και να γράφετε δεδομένα από/σε αυτά. Φυσιολογικά, σε ένα χρήστης χωρίς δικαιώματα διαχειριστή επιτρέπεται να δημιουργήσει, προσπελάσει και τροποποιήσει αρχεία στο φάκελο των Εγγράφων του.</entry>
<entry lang="en" key="SECTOR_SIZE_UNSUPPORTED">Error: The drive uses an unsupported sector size.\n\nIt is currently not possible to create partition/device-hosted volumes on drives that use sectors larger than 4096 bytes. However, note that you can create file-hosted volumes (containers) on such drives.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="en" key="HIDDEN_OS_CREATION_PREINFO_HELP">In the next steps, VeraCrypt will create the hidden operating system by copying the content of the system partition to the hidden volume (data being copied will be encrypted on the fly with an encryption key different from the one that will be used for the decoy operating system).\n\nPlease note that the process will be performed in the pre-boot environment (before Windows starts) and it may take a long time to complete; several hours or even several days (depending on the size of the system partition and on the performance of your computer).\n\nYou will be able to interrupt the process, shut down your computer, start the operating system and then resume the process. However, if you interrupt it, the entire process of copying the system will have to start from the beginning (because the content of the system partition must not change during cloning).</entry>
<entry lang="en" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">Do you want to cancel the entire process of creation of the hidden operating system?\n\nNote: You will NOT be able to resume the process if you cancel it now.</entry>
<entry lang="el" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">Θέλετε να ακυρώσετε τον προέλεγχο της κρυπτογράφησης συστήματος;</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="el" key="SYS_DRIVE_NOT_ENCRYPTED">Το διαμέρισμα/οδηγός του συστήματος δε φαίνεται κρυπτογραφημένο (ούτε μερικώς ούτε ολόκληρο).</entry>
<entry lang="el" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">Το διαμέρισμα/οδηγός του συστήματος είναι κρυπτογραφημένο (μερικώς ή ολόκληρο).\n\nΠαρακαλώ αποκρυπτογραφήστε το ολοκληρωτικά πριν συνεχίσετε. Για να το κάνετε αυτό, επιλέξτε 'Σύστημα' &gt; 'Μόνιμη αποκρυπτογράφηση διαμερίσματος/οδηγού συστήματος' από το μενού του κύριου παράθυρου του VeraCrypt.</entry>
<entry lang="en" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">When the system partition/drive is encrypted (partially or fully), you cannot downgrade VeraCrypt (but you can upgrade it or reinstall the same version).</entry>
@@ -1285,17 +1283,17 @@
<entry lang="en" key="TOKEN_DATA_OBJECT_LABEL">File name</entry>
<entry lang="en" key="BOOT_PASSWORD_CACHE_KEYBOARD_WARNING">IMPORTANT: Please note that pre-boot authentication passwords are always typed using the standard US keyboard layout. Therefore, a volume that uses a password typed using any other keyboard layout may be impossible to mount using a pre-boot authentication password (note that this is not a bug in VeraCrypt). To allow such a volume to be mounted using a pre-boot authentication password, follow these steps:\n\n1) Click 'Select File' or 'Select Device' and select the volume.\n2) Select 'Volumes' > 'Change Volume Password'.\n3) Enter the current password for the volume.\n4) Change the keyboard layout to English (US) by clicking the Language bar icon in the Windows taskbar and selecting 'EN English (United States)'.\n5) In VeraCrypt, in the field for the new password, type the pre-boot authentication password.\n6) Confirm the new password by retyping it in the confirmation field and click 'OK'.\nWARNING: Please keep in mind that if you follow these steps, the volume password will always have to be typed using the US keyboard layout (which is automatically ensured only in the pre-boot environment).</entry>
<entry lang="en" key="SYS_FAVORITES_KEYBOARD_WARNING">System favorite volumes will be mounted using the pre-boot authentication password. If any system favorite volume uses a different password, it will not be mounted.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Unmount All', auto-unmount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and unmount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be unmounted. Therefore, if you need e.g. to unmount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Unmount All' function, 'Auto-Unmount' functions, 'Unmount All' hot keys, etc.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Dismount All', auto-dismount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and dismount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be dismounted. Therefore, if you need e.g. to dismount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Dismount All' function, 'Auto-Dismount' functions, 'Dismount All' hot keys, etc.</entry>
<entry lang="en" key="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry>
<entry lang="en" key="COMMAND_LINE_ERROR">Error while parsing command line.</entry>
<entry lang="el" key="RESCUE_DISK">Δίσκος Ασφαλείας</entry>
<entry lang="en" key="SELECT_FILE_AND_MOUNT">Select &amp;File and Mount...</entry>
<entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &amp;Device and Mount...</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and dismount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="MOUNT_SYSTEM_FAVORITES_ON_BOOT">Mount system favorite volumes when Windows starts (in the initial phase of the startup procedure)</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly unmounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always unmount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly unmounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly dismounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always dismount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly dismounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="FILESYS_REPAIR_CONFIRM_BACKUP">Warning: Repairing a damaged filesystem using the Microsoft 'chkdsk' tool might cause loss of files in damaged areas. Therefore, it is recommended that you first back up the files stored on the VeraCrypt volume to another, healthy, VeraCrypt volume.\n\nDo you want to repair the filesystem now?</entry>
<entry lang="en" key="MOUNTED_CONTAINER_FORCED_READ_ONLY">Volume '%s' has been mounted as read-only because write access was denied.\n\nPlease make sure the security permissions of the file container allow you to write to it (right-click the container and select Properties &gt; Security).\n\nNote that, due to a Windows issue, you may see this warning even after setting the appropriate security permissions. This is not caused by a bug in VeraCrypt. A possible solution is to move your container to, e.g., your 'Documents' folder.\n\nIf you intend to keep your volume read-only, set the read-only attribute of the container (right-click the container and select Properties &gt; Read-only), which will suppress this warning.</entry>
<entry lang="en" key="MOUNTED_DEVICE_FORCED_READ_ONLY">Volume '%s' had to be mounted as read-only because write access was denied.\n\nPlease make sure no other application (e.g. antivirus software) is accessing the partition/device on which the volume is hosted.</entry>
@@ -1306,8 +1304,8 @@
<entry lang="en" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Note that the number of threads is currently limited, which will affect benchmark results (worse performance).\n\nTo utilize the full potential of the processor(s), select 'Settings' > 'Performance' and disable the corresponding option.</entry>
<entry lang="en" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">Do you want VeraCrypt to attempt to disable write protection of the partition/drive?</entry>
<entry lang="en" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">WARNING: This setting may degrade performance.\n\nAre you sure you want to use this setting?</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-unmounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always unmount the volume in VeraCrypt first.\n\nUnexpected spontaneous unmount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-dismounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always dismount the volume in VeraCrypt first.\n\nUnexpected spontaneous dismount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="UNSUPPORTED_TRUECRYPT_FORMAT">This volume was created with TrueCrypt %x.%x but VeraCrypt supports only TrueCrypt volumes created with TrueCrypt 6.x/7.x series</entry>
<entry lang="el" key="TEST">Έλεγχος</entry>
<entry lang="el" key="KEYFILE">Αρχείο-κλειδί</entry>
@@ -1453,7 +1451,7 @@
<entry lang="en" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Add All Mounted Volumes to Favorites...</entry>
<entry lang="en" key="TASKICON_PREF_MENU_ITEMS">Task Icon Menu Items</entry>
<entry lang="en" key="TASKICON_PREF_OPEN_VOL">Open Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_DISMOUNT_VOL">Dismount Mounted Volumes</entry>
<entry lang="en" key="DISK_FREE">Free space available: {0}</entry>
<entry lang="en" key="VOLUME_SIZE_HELP">Please specify the size of the container to create. Note that the minimum possible size of a volume is 292 KiB.</entry>
<entry lang="en" key="LINUX_CONFIRM_INNER_VOLUME_CALC">WARNING: You have selected a filesystem other than FAT for the outer volume.\nPlease Note that in this case VeraCrypt can't calculate the exact maximum allowed size for the hidden volume and it will use only an estimation that can be wrong.\nThus, it is your responsibility to use an adequate value for the size of the hidden volume so that it does not overlap the outer volume.\n\nDo you want to continue using the selected filesystem for the outer volume?</entry>
@@ -1483,14 +1481,14 @@
<entry lang="en" key="LINUX_DO_NOT_MOUNT">Do &amp;not mount</entry>
<entry lang="en" key="LINUX_MOUNT_AT_DIR">Mount at directory:</entry>
<entry lang="en" key="LINUX_SELECT">Se&amp;lect...</entry>
<entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount All Volumes When</entry>
<entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry>
<entry lang="en" key="LINUX_ENTERING_POWERSAVING">System is entering power saving mode</entry>
<entry lang="en" key="LINUX_LOGIN_ACTION">Actions to Perform when User Logs On</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Close all Explorer windows of volume being dismounted</entry>
<entry lang="en" key="LINUX_HOTKEYS">Hotkeys</entry>
<entry lang="en" key="LINUX_SYSTEM_HOTKEYS">System-Wide Hotkeys</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/unmount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_UNMOUNT">Display confirmation message box after unmount</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/dismount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_DISMOUNT">Display confirmation message box after dismount</entry>
<entry lang="en" key="LINUX_VC_QUITS">VeraCrypt quits</entry>
<entry lang="en" key="LINUX_OPEN_FINDER">Open Finder window for successfully mounted volume</entry>
<entry lang="en" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Please note that this setting takes effect only if use of the kernel cryptographic services is disabled.</entry>
@@ -1510,11 +1508,11 @@
<entry lang="en" key="LINUX_DYNAMIC_NOTICE">Please note that if your operating system does not allocate files from the beginning of the free space, the maximum possible hidden volume size may be much smaller than the size of the free space on the outer volume. This is not a bug in VeraCrypt but a limitation of the operating system.</entry>
<entry lang="en" key="LINUX_MAX_HIDDEN_SIZE">Maximum possible hidden volume size for this volume is {0}.</entry>
<entry lang="en" key="LINUX_OPEN_OUTER_VOL">Open Outer Volume</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not unmount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not dismount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">Error: You are trying to encrypt a system drive.\n\nVeraCrypt can encrypt a system drive only under Windows.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">Error: You are trying to encrypt a system partition.\n\nVeraCrypt can encrypt system partitions only under Windows.</entry>
<entry lang="en" key="LINUX_WARNING_FORMAT_DESTROY_FS">WARNING: Formatting of the device will destroy all data on filesystem '{0}'.\n\nDo you want to continue?</entry>
<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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please dismount '{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>
@@ -1522,8 +1520,7 @@
<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>
<entry lang="en" key="LINUX_VOL_DISMOUNTED">Volume {0} has been dismounted.</entry>
<entry lang="en" key="LINUX_OOM">Out of memory.</entry>
<entry lang="en" key="LINUX_CANT_GET_ADMIN_PRIV">Failed to obtain administrator privileges</entry>
<entry lang="en" key="LINUX_COMMAND_GET_ERROR">Command {0} returned error {1}.</entry>
@@ -1553,7 +1550,7 @@
<entry lang="en" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Error: The drive uses a sector size other than 512 bytes.\n\nDue to limitations of components available on your platform, partition/device-hosted volumes cannot be created/used on the drive.\n\nPossible solutions:\n- Create a file-hosted volume (container) on the drive.\n- Use a drive with 512-byte sectors.\n- Use VeraCrypt on another platform.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">The host file/device is already in use.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Volume slot unavailable.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires macFUSE 2.5 or above.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires OSXFUSE 2.5 or above.</entry>
<entry lang="en" key="EXCEPTION_OCCURRED">Exception occurred</entry>
<entry lang="en" key="ENTER_PASSWORD">Enter password</entry>
<entry lang="en" key="ENTER_TC_VOL_PASSWORD">Enter VeraCrypt Volume Password</entry>
@@ -1570,124 +1567,6 @@
<entry lang="en" key="VOLUME_HOST_IN_USE">WARNING: The host file/device {0} is already in use!\n\nIgnoring this can cause undesired results including system instability. All applications that might be using the host file/device should be closed before mounting the volume.\n\nContinue mounting?</entry>
<entry lang="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
<entry lang="en" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">VeraCrypt cannot be upgraded because the system partition/drive was encrypted using an algorithm that is not supported anymore.\nPlease decrypt your system before upgrading VeraCrypt and then encrypt it again.</entry>
<entry lang="en" key="LINUX_EX2MSG_TERMINALNOTFOUND">Supported terminal application could not be found, you need either xterm, konsole or gnome-terminal (with dbus-x11).</entry>
<entry lang="en" key="IDM_MOUNT_NO_CACHE">Mount Without Cache</entry>
<entry lang="en" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nExpand a VeraCrypt volume on the fly without reformatting\n\n\nAll kind of volumes (container files, disks and partitions) formatted with NTFS are supported. The only condition is that there must be enough free space on the host drive or host device of the VeraCrypt volume.\n\nDo not use this software to expand an outer volume containing a hidden volume, because this destroys the hidden volume!\n</entry>
<entry lang="en" key="IDC_STEPSEXPAND">1. Select the VeraCrypt volume to be expanded\n2. Click the 'Mount' button</entry>
<entry lang="en" key="IDT_VOL_NAME">Volume: </entry>
<entry lang="en" key="IDT_FILE_SYS">File system: </entry>
<entry lang="en" key="IDT_CURRENT_SIZE">Current size: </entry>
<entry lang="en" key="IDT_NEW_SIZE">New size: </entry>
<entry lang="en" key="IDT_NEW_SIZE_BOX_TITLE">Enter new volume size</entry>
<entry lang="en" key="IDC_INIT_NEWSPACE">Fill new space with random data</entry>
<entry lang="en" key="IDC_QUICKEXPAND">Quick Expand</entry>
<entry lang="en" key="IDT_INIT_SPACE">Fill new space: </entry>
<entry lang="en" key="EXPANDER_FREE_SPACE">%s free space available on host drive</entry>
<entry lang="en" key="EXPANDER_HELP_DEVICE">This is a device-based VeraCrypt volume.\n\nThe new volume size will be choosen automatically as the size of the host device.</entry>
<entry lang="en" key="EXPANDER_HELP_FILE">Please specify the new size of the VeraCrypt volume (must be at least %I64u KB larger than the current size).</entry>
<entry lang="en" key="QUICK_EXPAND_WARNING">WARNING: You should use Quick Expand only in the following cases:\n\n1) The device where the file container is located contains no sensitive data and you do not need plausible deniability.\n2) The device where the file container is located has already been securely and fully encrypted.\n\nAre you sure you want to use Quick Expand?</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT">IMPORTANT: Move your mouse as randomly as possible within this window. The longer you move it, the better. This significantly increases the cryptographic strength of the encryption keys. Then click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT_LEGACY">Click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_FINISH_ERROR">Error: volume expansion failed.</entry>
<entry lang="en" key="EXPANDER_FINISH_ABORT">Error: operation aborted by user.</entry>
<entry lang="en" key="EXPANDER_FINISH_OK">Finished. Volume successfully expanded.</entry>
<entry lang="en" key="EXPANDER_CANCEL_WARNING">Warning: Volume expansion is in progress!\n\nStopping now may result in a damaged volume.\n\nDo you really want to cancel?</entry>
<entry lang="en" key="EXPANDER_STARTING_STATUS">Starting volume expansion ...\n</entry>
<entry lang="en" key="EXPANDER_HIDDEN_VOLUME_ERROR">An outer volume containing a hidden volume can't be expanded, because this destroys the hidden volume.\n</entry>
<entry lang="en" key="EXPANDER_SYSTEM_VOLUME_ERROR">A VeraCrypt system volume can't be expanded.</entry>
<entry lang="en" key="EXPANDER_NO_FREE_SPACE">Not enough free space to expand the volume</entry>
<entry lang="en" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Warning: The container file is larger than the VeraCrypt volume area. The data after the VeraCrypt volume area will be overwritten.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_FAT">Warning: The VeraCrypt volume contains a FAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_EXFAT">Warning: The VeraCrypt volume contains an exFAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_UNKNOWN_FS">Warning: The VeraCrypt volume contains an unknown or no file system!\n\nOnly the VeraCrypt volume itself will be expanded, the file system remains unchanged.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">New volume size too small, must be at least %I64u kB larger than the current size.</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">New volume size too large, not enough space on host drive.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Maximum file size of %I64u MB on host drive exceeded.</entry>
<entry lang="en" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Error: Failed to get necessary privileges to enable Quick Expand!\nPlease uncheck Quick Expand option and try again.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Maximum VeraCrypt volume size of %I64u TB exceeded!\n</entry>
<entry lang="en" key="FULL_FORMAT">Full Format</entry>
<entry lang="en" key="FAST_CREATE">Fast Create</entry>
<entry lang="en" key="WARN_FAST_CREATE">WARNING: You should use Fast Create only in the following cases:\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 Fast Create?</entry>
<entry lang="en" key="IDC_ENABLE_EMV_SUPPORT">Enable EMV Support</entry>
<entry lang="en" key="COMMAND_APDU_INVALID">The APDU command sent to the card is not valid.</entry>
<entry lang="en" key="EXTENDED_APDU_UNSUPPORTED">Extended APDU commands cannot be used with the current token.</entry>
<entry lang="en" key="SCARD_MODULE_INIT_FAILED">Error when loading the WinSCard / PCSC library.</entry>
<entry lang="en" key="EMV_UNKNOWN_CARD_TYPE">The card in the reader is not a supported EMV card.</entry>
<entry lang="en" key="EMV_SELECT_AID_FAILED">The AID of the card in the reader could not be selected.</entry>
<entry lang="en" key="EMV_ICC_CERT_NOTFOUND">ICC Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_ISSUER_CERT_NOTFOUND">Issuer Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_CPLC_NOTFOUND">CPLC was not found in the EMV card.</entry>
<entry lang="en" key="EMV_PAN_NOTFOUND">No Primary Account Number (PAN) found in the EMV card.</entry>
<entry lang="en" key="INVALID_EMV_PATH">EMV path is invalid.</entry>
<entry lang="en" key="EMV_KEYFILE_DATA_NOTFOUND">Unable to build a keyfile from the EMV card's data.\n\nOne of the following is missing:\n- ICC Public Key Certificate.\n- Issuer Public Key Certificate.\n- CPLC data.</entry>
<entry lang="en" key="SCARD_W_REMOVED_CARD">No card in the reader.\n\nPlease make sure the card is correctly slotted.</entry>
<entry lang="en" key="FORMAT_EXTERNAL_FAILED">Windows format.com command failed to format the volume as NTFS/exFAT/ReFS: Error 0x%.8X.\n\nFalling back to using Windows FormatEx API.</entry>
<entry lang="en" key="FORMATEX_API_FAILED">Windows FormatEx API failed to format the volume as NTFS/exFAT/ReFS.\n\nFailure status = %s.</entry>
<entry lang="en" key="EXPANDER_WRITING_RANDOM_DATA">Writing random data to new space ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Writing re-encrypted backup header ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Writing re-encrypted primary header ...\n</entry>
<entry lang="en" key="EXPANDER_WIPING_OLD_HEADER">Wiping old backup header ...\n</entry>
<entry lang="en" key="EXPANDER_MOUNTING_VOLUME">Mounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_UNMOUNTING_VOLUME">Unmounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_EXTENDING_FILESYSTEM">Extending file system ...\n</entry>
<entry lang="en" key="PARTIAL_SYSENC_MOUNT_READONLY">Warning: The system partition you attempted to mount was not fully encrypted. As a safety measure to prevent potential corruption or unwanted modifications, volume '%s' was mounted as read-only.</entry>
<entry lang="en" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Important information on using third-party file extensions</entry>
<entry lang="en" key="IDC_DISABLE_MEMORY_PROTECTION">Disable memory protection for Accessibility tools compatibility</entry>
<entry lang="en" key="DISABLE_MEMORY_PROTECTION_WARNING">WARNING: Disabling memory protection significantly reduces security. Enable this option ONLY if you rely on Accessibility tools, like Screen Readers, to interact with VeraCrypt's UI.</entry>
<entry lang="el" key="LINUX_LANGUAGE">Γλώσσα</entry>
<entry lang="en" key="LINUX_SELECT_SYS_DEFAULT_LANG">Select system's default language</entry>
<entry lang="en" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">For the language change to come into effect, VeraCrypt needs to be restarted.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE">WARNING: The volume's master key is vulnerable to an attack that compromises data security.\n\nPlease create a new volume and transfer the data to it.</entry>
<entry lang="en" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">WARNING: The encrypted system's master key is vulnerable to an attack that compromises data security.\nPlease decrypt the system partition/drive and then re-encrypt it.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">WARNING: The volume's master key has a security vulnerability.</entry>
<entry lang="en" key="MOUNTPOINT_BLOCKED">ERROR: The volume mount point is blocked because it overrides a protected system directory.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="MOUNTPOINT_NOTALLOWED">ERROR: The volume mount point is not allowed because it overrides a directory that is part of the PATH environment variable.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="INSECURE_MODE">[INSECURE MODE]</entry>
<entry lang="en" key="IDC_DISABLE_SCREEN_PROTECTION">Disable protection against screenshots and screen recording</entry>
<entry lang="en" key="DISABLE_SCREEN_PROTECTION_WARNING">WARNING: Disabling screen protection significantly reduces security. Enable this option ONLY if you have a specific need to capture VeraCrypt's interface. This may expose sensitive data to screenshot tools and screen recording features such as Windows 11 Recall.</entry>
<entry lang="en" key="MEMORY_COST">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="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>
<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>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+181 -302
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
@@ -135,8 +135,8 @@
<entry lang="es" key="IDC_FAVORITE_REMOVE">Elimina&amp;r</entry>
<entry lang="es" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Usar etiqueta favorita como etiqueta de la unidad de Explorer</entry>
<entry lang="es" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Configuración global</entry>
<entry lang="es" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Mostrar mensaje emergente tras desmontar con éxito usando atajos de teclado</entry>
<entry lang="es" key="IDC_HK_UNMOUNT_PLAY_SOUND">Reproducir notificación sonora tras desmontar con éxito usando atajos de teclado</entry>
<entry lang="es" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Mostrar mensaje emergente tras desmontar con éxito usando atajos de teclado</entry>
<entry lang="es" key="IDC_HK_DISMOUNT_PLAY_SOUND">Reproducir notificación sonora tras desmontar con éxito usando atajos de teclado</entry>
<entry lang="es" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="es" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="es" key="IDC_HK_MOD_SHIFT">Mayus.</entry>
@@ -156,12 +156,12 @@
<entry lang="es" key="IDC_PIM_HELP">(Vacío ó 0 para iteraciones por defecto)</entry>
<entry lang="es" key="IDC_PREF_BKG_TASK_ENABLE">Activado</entry>
<entry lang="es" key="IDC_PREF_CACHE_PASSWORDS">Guardar contraseñas en caché</entry>
<entry lang="es" key="IDC_PREF_UNMOUNT_INACTIVE">Desmontar volumen automáticamente cuando hayan dejado de leerse/escribirse datos por</entry>
<entry lang="es" key="IDC_PREF_UNMOUNT_LOGOFF">Si el usuario cierra sesión</entry>
<entry lang="es" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">Sesión de usuario bloqueada</entry>
<entry lang="es" key="IDC_PREF_UNMOUNT_POWERSAVING">Si se entra en "ahorro de energía"</entry>
<entry lang="es" key="IDC_PREF_UNMOUNT_SCREENSAVER">Si se activa el salvapantallas</entry>
<entry lang="es" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Forzar desmontaje automático aunque el volumen tenga archivos abiertos</entry>
<entry lang="es" key="IDC_PREF_DISMOUNT_INACTIVE">Desmontar volumen automáticamente cuando hayan dejado de leerse/escribirse datos por</entry>
<entry lang="es" key="IDC_PREF_DISMOUNT_LOGOFF">Si el usuario cierra sesión</entry>
<entry lang="es" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">Sesión de usuario bloqueada</entry>
<entry lang="es" key="IDC_PREF_DISMOUNT_POWERSAVING">Si se entra en "ahorro de energía"</entry>
<entry lang="es" key="IDC_PREF_DISMOUNT_SCREENSAVER">Si se activa el salvapantallas</entry>
<entry lang="es" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Forzar desmontaje automático aunque el volumen tenga archivos abiertos</entry>
<entry lang="es" key="IDC_PREF_LOGON_MOUNT_DEVICES">Montar todos los volúmenes alojados en dispositivos</entry>
<entry lang="es" key="IDC_PREF_LOGON_START">Iniciar VeraCrypt en segundo plano</entry>
<entry lang="es" key="IDC_PREF_MOUNT_READONLY">Montar volúmenes como sólo lectura</entry>
@@ -169,7 +169,7 @@
<entry lang="es" key="IDC_PREF_OPEN_EXPLORER">Abrir en el &amp;explorador el volumen montado con éxito</entry>
<entry lang="es" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">Cachear contraseña temporalmente durante operaciones de montaje de volúmenes favoritos"</entry>
<entry lang="es" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Usar icono distinto en la barra de tareas si hay volúmenes montados</entry>
<entry lang="es" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Eliminar contraseñas guardadas al desmontar automáticamente</entry>
<entry lang="es" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Eliminar contraseñas guardadas al desmontar automáticamente</entry>
<entry lang="es" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Eliminar contraseñas guardadas al salir</entry>
<entry lang="es" key="IDC_PRESERVE_TIMESTAMPS">Conservar modificaciones de fecha/hora de los contenedores</entry>
<entry lang="es" key="IDC_RESET_HOTKEYS">Por defecto</entry>
@@ -269,14 +269,14 @@
<entry lang="es" key="IDT_ACCELERATION_OPTIONS">Aceleración Hardware</entry>
<entry lang="es" key="IDT_ASSIGN_HOTKEY">Atajo de teclado</entry>
<entry lang="es" key="IDT_AUTORUN">Configuración de Autoarranque (autorun.inf)</entry>
<entry lang="es" key="IDT_AUTO_UNMOUNT">Desmontar automáticamente</entry>
<entry lang="es" key="IDT_AUTO_UNMOUNT_ON">Desmontar todo cuando:</entry>
<entry lang="es" key="IDT_AUTO_DISMOUNT">Desmontar automáticamente</entry>
<entry lang="es" key="IDT_AUTO_DISMOUNT_ON">Desmontar todo cuando:</entry>
<entry lang="es" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Opciones de Pantalla del Cargador de Arranque</entry>
<entry lang="es" key="IDT_CONFIRM_PASSWORD">Confirmar Contraseña:</entry>
<entry lang="es" key="IDT_CURRENT">Actual</entry>
<entry lang="es" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">Mostrar este mensaje personalizado en la pantalla de pre-arranque (24 caracteres max.):</entry>
<entry lang="es" key="IDT_DEFAULT_MOUNT_OPTIONS">Opciones de Montaje Predeterminadas</entry>
<entry lang="es" key="IDT_UNMOUNT_ACTION">Opciones de Atajos de Teclado</entry>
<entry lang="es" key="IDT_DISMOUNT_ACTION">Opciones de Atajos de Teclado</entry>
<entry lang="es" key="IDT_DRIVER_OPTIONS">Configuración del controlador</entry>
<entry lang="es" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Habilitar soporte para códigos de control de disco extendido</entry>
<entry lang="es" key="IDT_FAVORITE_LABEL">Etiqueta del volumen favorito seleccionado:</entry>
@@ -291,11 +291,10 @@
<entry lang="es" key="IDT_NEW_PASSWORD">Contraseña:</entry>
<entry lang="es" key="IDT_PARALLELIZATION_OPTIONS">Paralelización basada en hilos</entry>
<entry lang="es" key="IDT_PKCS11_LIB_PATH">Ruta de Librería PKCS #11</entry>
<entry lang="es" key="IDT_KDF">KDF:</entry>
<entry lang="es" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="es" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="es" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="es" key="IDT_PW_CACHE_OPTIONS">Caché de Contraseñas</entry>
<entry lang="es" key="IDT_SECURITY_OPTIONS">Opciones de seguridad</entry>
<entry lang="es" key="IDT_EMV_OPTIONS">EMV Opciones</entry>
<entry lang="es" key="IDT_TASKBAR_ICON">VeraCrypt en Segundo Plano</entry>
<entry lang="es" key="IDT_TRAVELER_MOUNT">Volumen VeraCrypt a montar (relativo a raíz del disco viajero):</entry>
<entry lang="es" key="IDT_TRAVEL_INSERTION">Tras la inserción del disco viajero: </entry>
@@ -357,7 +356,7 @@
<entry lang="es" key="IDT_KEYFILE_WARNING">PRECAUCIÓN: ¡si pierde un archivo-llave o si cambian sus primeros 1024 KB, será imposible montar los volúmenes que usan ese archivo-llave!</entry>
<entry lang="es" key="IDT_KEY_UNIT">bits</entry>
<entry lang="es" key="IDT_NUMBER_KEYFILES">Número de archivos-clave:</entry>
<entry lang="es" key="IDT_KEYFILES_SIZE">Tamaño de los ficheros-llave:</entry>
<entry lang="es" key="IDT_KEYFILES_SIZE">Tamaño de los ficheros-llave (en Bytes):</entry>
<entry lang="es" key="IDT_KEYFILES_BASE_NAME">Nombre base de los ficheros-llave:</entry>
<entry lang="es" key="IDT_LANGPACK_AUTHORS">Traducido por:</entry>
<entry lang="es" key="IDT_PLAINTEXT">Tamaño del texto legible:</entry>
@@ -390,7 +389,6 @@
<entry lang="es" key="ADMINISTRATOR">Administrador</entry>
<entry lang="es" key="ADMIN_PRIVILEGES_DRIVER">Para cargar el controlador de VeraCrypt necesita iniciar sesión con privilegios de administrador.</entry>
<entry lang="es" key="ADMIN_PRIVILEGES_WARN_DEVICES">Tenga en cuenta que para cifrar/formatear una partición/dispositivo necesita iniciar sesión con privilegios de administrador.\n\nEsto no se aplica a los volúmenes alojados en archivos.</entry>
<entry lang="es" key="ADMIN_PRIVILEGES_WARN_MANAGE_VOLUME">No se ha podido activar la creación rápida de archivos: Se requieren privilegios de administrador.\nPor favor, reinicie el programa como administrador para activar esta función.\n\n ¿Desea continuar sin la creación rápida de archivos?</entry>
<entry lang="es" key="ADMIN_PRIVILEGES_WARN_HIDVOL">Para crear un volumen oculto necesita iniciar sesión con privilegios de administrador.\n\n¿Desea continuar?</entry>
<entry lang="es" key="ADMIN_PRIVILEGES_WARN_NTFS">Tenga en cuenta que para formatear el volumen como NTFS necesita iniciar sesión con privilegios de administrador.\n\nSin los privilegios de administrador, sólo puede formatear el volumen como FAT.</entry>
<entry lang="es" key="AES_HELP">Algoritmo aprobado por FIPS (Rijndael, publicado en 1998) que podría ser usado por departamentos y agencias gubernamentales de EEUU para proteger información clasificada hasta el nivel Alto Secreto. Clave de 256-bit, bloque de 128-bit, 14 rondas (AES-256). El modo de operación es XTS.</entry>
@@ -423,8 +421,8 @@
<entry lang="es" key="DEVICE_FREE_PB">El tamaño de %s es %.2f PB</entry>
<entry lang="es" key="DEVICE_IN_USE_FORMAT">AVISO: El dispositivo/partición está siendo utilizado por el sistema operativo o una aplicación. Formatear el dispositivo/partición puede causar corrupción de datos e inestabilidad del sistema.\n\n¿Continuar?</entry>
<entry lang="es" key="DEVICE_IN_USE_INPLACE_ENC">AVISO: La partición está siendo usada por el sistema operativo o una aplicación. Debería cerrar cualquier aplicación que pueda estar usando la partición (incluyendo antivirus).\n\n¿Continuar?</entry>
<entry lang="es" key="FORMAT_CANT_UNMOUNT_FILESYS">Error: El dispositivo/partición contiene un sistema de archivos que no puede ser desmontado. El sistema de archivos puede estar en uso por el sistema operativo. Formatear el dispositivo/partición muy probablemente causará corrupción de datos e inestabilidad del sistema.\n\nPara solucionarlo, recomendamos que primero borre la partición y luego la vuelva a crear sin formatearla. Para hacerlo siga estos pasos:\n1) Clic derecho en 'Mi PC' o 'Equipo' en el 'Menú inicio' y seleccione 'Administrar'. Aparecerá la ventana 'Administración de equipos'.\n2) En dicha ventana, seleccione 'Almacenamiento' &gt; 'Administración de discos'.\n3) Clic derecho en la partición que desea cifrar y seleccione 'Borrar la partición', 'Borrar Volumen' o 'Borrar unidad lógica'.\n4) Clic en 'Aceptar'. Si Windows pregunta si quiere reiniciar el ordenador, hágalo. Entonces repita los pasos 1 y 2 y continúe desde el paso 5. 5)\nClic derecho en el área no asignada/espacio libre y seleccione 'Partición nueva', 'Volumen simple nuevo' o 'Unidad lógica nueva'.\n6) El 'Asistente de partición nueva' o 'Asistente de volumen simple nuevo' deberá aparecer; siga las instrucciones. Cuando en el asistente indique 'Formatear Partición', seleccione 'No formatear esta partición' o 'No formatear este volumen'. En el mismo asistente, clic en 'Siguiente' y despues en 'Finalizar'.\n7) La ruta del dispositivo seleccionado en VeraCrypt podría ser incorrecta ahora. Por tanto, salga del Asistente de Creación de Volúmenes VeraCrypt (si aún está en ejecución) y ábralo de nuevo.\n8) Intente cifrar nuevamente el dispositivo/partición.\n\nSi VeraCrypt falla repetidamente al cifrar el dispositivo/partición, considere crear un contenedor de archivos en su lugar.</entry>
<entry lang="es" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Error: El sistema de archivos no pudo ser bloqueado y/o desmontado. Podría estar siendo usado por el sistema operativo o alguna aplicación (como un antivirus). Cifrar la partición podría causar corrupción de datos e inestabilidad del sistema.\n\nPor favor cierre cualquier aplicación que pueda estar usando el sistema de archivos (incluyendo antivirus) y reinténtelo. Si esto no funciona, siga los pasos que hay más abajo.</entry>
<entry lang="es" key="FORMAT_CANT_DISMOUNT_FILESYS">Error: El dispositivo/partición contiene un sistema de archivos que no puede ser desmontado. El sistema de archivos puede estar en uso por el sistema operativo. Formatear el dispositivo/partición muy probablemente causará corrupción de datos e inestabilidad del sistema.\n\nPara solucionarlo, recomendamos que primero borre la partición y luego la vuelva a crear sin formatearla. Para hacerlo siga estos pasos:\n1) Clic derecho en 'Mi PC' o 'Equipo' en el 'Menú inicio' y seleccione 'Administrar'. Aparecerá la ventana 'Administración de equipos'.\n2) En dicha ventana, seleccione 'Almacenamiento' &gt; 'Administración de discos'.\n3) Clic derecho en la partición que desea cifrar y seleccione 'Borrar la partición', 'Borrar Volumen' o 'Borrar unidad lógica'.\n4) Clic en 'Aceptar'. Si Windows pregunta si quiere reiniciar el ordenador, hágalo. Entonces repita los pasos 1 y 2 y continúe desde el paso 5. 5)\nClic derecho en el área no asignada/espacio libre y seleccione 'Partición nueva', 'Volumen simple nuevo' o 'Unidad lógica nueva'.\n6) El 'Asistente de partición nueva' o 'Asistente de volumen simple nuevo' deberá aparecer; siga las instrucciones. Cuando en el asistente indique 'Formatear Partición', seleccione 'No formatear esta partición' o 'No formatear este volumen'. En el mismo asistente, clic en 'Siguiente' y despues en 'Finalizar'.\n7) La ruta del dispositivo seleccionado en VeraCrypt podría ser incorrecta ahora. Por tanto, salga del Asistente de Creación de Volúmenes VeraCrypt (si aún está en ejecución) y ábralo de nuevo.\n8) Intente cifrar nuevamente el dispositivo/partición.\n\nSi VeraCrypt falla repetidamente al cifrar el dispositivo/partición, considere crear un contenedor de archivos en su lugar.</entry>
<entry lang="es" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Error: El sistema de archivos no pudo ser bloqueado y/o desmontado. Podría estar siendo usado por el sistema operativo o alguna aplicación (como un antivirus). Cifrar la partición podría causar corrupción de datos e inestabilidad del sistema.\n\nPor favor cierre cualquier aplicación que pueda estar usando el sistema de archivos (incluyendo antivirus) y reinténtelo. Si esto no funciona, siga los pasos que hay más abajo.</entry>
<entry lang="es" key="DEVICE_IN_USE_INFO">AVISO: ¡Algunos de los dispositivos/particiones montados ya estaban en uso!\n\nIgnorar esto puede causar resultados no deseados incluyendo inestabilidad del sistema.\n\nSe recomienda encarecidamente que cierre cualquier aplicación que esté usando el dispositivo/partición.</entry>
<entry lang="es" key="DEVICE_PARTITIONS_ERR">El dispositivo seleccionado contiene particiones.\n\nFormatear el dispositivo puede causar inestabilidad del sistema y/o corrupción de datos. Seleccione una partición en el dispositivo o elimine todas las particiones del dispositivo para permitir que VeraCrypt lo formatee con seguridad.</entry>
<entry lang="es" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">El dispositivo secundario seleccionado contiene particiones.\n\nLos volúmenes VeraCrypt cifrados alojados en dispositivos pueden ser creados en dispositivos que no contienen particiones (incluyendo discos duros y unidades de estado sólido). Un dispositivo que contiene particiones puede ser cifrado por completo sin modificarlas (usando una única clave maestra) sólo si es la unidad donde Windows está instalado y desde la que arranca.\n\nSi desea cifrar el dispositivo secundario seleccionado usando una única clave maestra, necesitará eliminar antes todas las particiones del dispositivo para permitir que VeraCrypt lo formatee con seguridad (formatear un dispositivo que contiene particiones podría causar inestabilidad del sistema y/o corrupción de datos). Como alternativa, puede cifrar cada partición del dispositivo individualmente (cada partición será cifrada usando una clave maestra diferente).\n\nNota: Si desea eliminar todas las particiones de un disco GPT, podría necesitar convertirlo primero en un disco MBR (usando p.e. el Administrador de Equipos) para eliminar particiones ocultas.</entry>
@@ -590,7 +588,7 @@
<entry lang="es" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">Error: Los archivos que copió al volumen externo ocupan demasiado espacio. Por tanto, no hay suficiente espacio libre en el volumen externo para el volumen oculto.\n\nTenga en cuenta que el volumen oculto debe ser al menos tan grande como la partición del sistema (la partición donde el sistema operativo en ejecución está instalado). La razón es que el sistema operativo oculto necesita ser creado copiando el contenido de la partición del sistema al volumen oculto.\n\n\nEl proceso de creación del sistema operativo oculto no puede continuar.</entry>
<entry lang="es" key="OPENFILES_DRIVER">El controlador no puede desmontar el volumen. Algunos archivos situados en el volumen probablemente siguen abiertos.</entry>
<entry lang="es" key="OPENFILES_LOCK">No se puede bloquear el volumen. Todavía hay archivos abiertos en él. Por lo tanto, no puede ser desmontado.</entry>
<entry lang="es" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt no puede bloquear el volumen porque está siendo usado por el sistema o alguna aplicación (puede haber archivos abiertos en el volumen).\n\n¿Quieres forzar el desmontaje del volumen?</entry>
<entry lang="es" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt no puede bloquear el volumen porque está siendo usado por el sistema o alguna aplicación (puede haber archivos abiertos en el volumen).\n\n¿Quieres forzar el desmontaje del volumen?</entry>
<entry lang="es" key="OPEN_VOL_TITLE">Seleccione un volumen VeraCrypt</entry>
<entry lang="es" key="OPEN_TITLE">Especifique la ubicación y el nombre del archivo</entry>
<entry lang="es" key="SELECT_PKCS11_MODULE">Seleccione librería PKCS #11</entry>
@@ -613,7 +611,7 @@
<entry lang="es" key="FAVORITE_PIM_CHANGED">Este volumen está registrado como un Favorito de Sistema y su PIM asociado ha sido cambiado.\n¿Quiere que VeraCrypt automáticamente actualice la configuración de Favoritos de Sistema (se require permisos de administración)?\n\nPor favor, sea consciente de que si responde que no, deberá actualizar el Sistema de Favoritos manualmente.</entry>
<entry lang="es" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">IMPORTANTE: Si no destruyó su Disco de Rescate VeraCrypt, su partición/unidad del sistema aún puede ser descifrada usando la contraseña antigua (arrancando el Disco de Rescate VeraCrypt e introduciendo la contraseña antigua). Debería ud. crear un nuevo Disco de Rescate VeraCrypt y destruir el antiguo.\n\n¿Desea crear un nuevo Disco de Rescate VeraCrypt?</entry>
<entry lang="es" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">Recuerde que el Disco de Rescate VeraCrypt aún usa el algoritmo anterior. Si considera el algoritmo anterior inseguro, debería crear un nuevo Disco de Rescate VeraCrypt y destruir el antiguo.\n\n¿Desea crear un nuevo Disco de Rescate VeraCrypt?</entry>
<entry lang="es" key="KEYFILES_NOTE">VeraCrypt nunca modifica el contenido del archivo. Puede seleccionar más de un archivo-clave (el orden no importa). Si añade una carpeta, todos los archivos no ocultos que contenga serán usados como archivos-clave. Haga clic en 'Añadir Archivos Token' para seleccionar archivos-clave almacenados en tokens de seguridad o tarjetas inteligentes (o para importar archivos-clave a tokens o tarjetas).</entry>
<entry lang="es" key="KEYFILES_NOTE">Cualquier tipo de archivo (.mp3, .jpg, .zip, .avi) puede usarse como archivo-clave. VeraCrypt nunca modifica el contenido del archivo. Puede seleccionar más de un archivo-clave (el orden no importa). Si añade una carpeta, todos los archivos no ocultos que contenga serán usados como archivos-clave. Haga clic en 'Añadir Archivos Token' para seleccionar archivos-clave almacenados en tokens de seguridad o tarjetas inteligentes (o para importar archivos-clave a tokens o tarjetas).</entry>
<entry lang="es" key="KEYFILE_CHANGED">Archivo(s)-clave agregado(s)/eliminado(s) con éxito.</entry>
<entry lang="es" key="KEYFILE_EXPORTED">Archivo-llave exportado.</entry>
<entry lang="es" key="PKCS5_PRF_CHANGED">Algoritmo de derivación de clave de cabecera establecido con éxito.</entry>
@@ -729,7 +727,7 @@
<entry lang="es" key="DLL_FILES">Módulos de Librería</entry>
<entry lang="es" key="FORMAT_NTFS_STOP">El formateo NTFS/exFAT/ReFS no puede continuar.</entry>
<entry lang="es" key="CANT_MOUNT_VOLUME">No se puede montar el volumen.</entry>
<entry lang="es" key="CANT_UNMOUNT_VOLUME">No se puede desmontar el volumen.</entry>
<entry lang="es" key="CANT_DISMOUNT_VOLUME">No se puede desmontar el volumen.</entry>
<entry lang="es" key="FORMAT_NTFS_FAILED">Windows falló al formatear el volumen como NTFS/exFAT/ReFS.\n\nPor favor seleccione un tipo diferente de sistema de archivos (si es posible) y reinténtelo. Alternativamente, puede dejar el volumen sin formato (seleccione 'Ninguno' como sistema de archivos), salir del asistente, montar el volumen, y usar una herramienta del sistema o de terceros para formatear el volumen montado (el volumen permanecerá cifrado).</entry>
<entry lang="es" key="FORMAT_NTFS_FAILED_ASK_FAT">Windows fallo al formatear el volumen como NTFS.\n\n¿Desea formatear el volumen como FAT en su lugar?</entry>
<entry lang="es" key="DEFAULT">Por defecto</entry>
@@ -771,7 +769,7 @@
<entry lang="es" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">Un error evitó que VeraCrypt cifrara la partición. Por favor intente arreglar cualquier problema reportado previamente y reinténtelo. Si el problema continúa, podría ayudar el seguir los siguientes pasos.</entry>
<entry lang="es" key="INPLACE_ENC_GENERIC_ERR_RESUME">Un error evitó que VeraCrypt continuara el proceso de cifrado/descifrado de la partición/volumen.\n\nPor favor intente arreglar cualquier problema reportado previamente y trate de continuar el proceso de nuevo. Recuerde que el volumen no puede montarse hasta que haya sido cifrado o descifrado por completo.</entry>
<entry lang="es" key="INPLACE_DEC_GENERIC_ERR">Ha ocurrido un error durante el proceso descifrado del volumen. Por favor, trate de solucionar los problemas antes indicados y reintente nuevamente.</entry>
<entry lang="es" key="CANT_UNMOUNT_OUTER_VOL">Error: ¡No se puede desmontar el volumen externo!\n\nEl volumen no puede ser desmontado si contiene carpetas o archivos que estén siendo usados por el sistema o una aplicación.\n\nCierre los programas que puedan estar usando las carpetas o archivos del volumen y pulse Reintentar.</entry>
<entry lang="es" key="CANT_DISMOUNT_OUTER_VOL">Error: ¡No se puede desmontar el volumen externo!\n\nEl volumen no puede ser desmontado si contiene carpetas o archivos que estén siendo usados por el sistema o una aplicación.\n\nCierre los programas que puedan estar usando las carpetas o archivos del volumen y pulse Reintentar.</entry>
<entry lang="es" key="CANT_GET_OUTER_VOL_INFO">Error: ¡No se puede obtener información acerca del volumen externo! La creación del volumen no puede continuar.</entry>
<entry lang="es" key="CANT_ACCESS_OUTER_VOL">Error: ¡No se puede acceder al volumen externo! La creación del volumen no puede continuar.</entry>
<entry lang="es" key="CANT_MOUNT_OUTER_VOL">Error: ¡No se puede montar el volumen externo! la creación del volumen no puede continuar.</entry>
@@ -813,7 +811,7 @@
<entry lang="es" key="SECONDARY_KEY_SIZE_LRW">Tamaño de Clave Tweak (Modo LRW)</entry>
<entry lang="es" key="BITS">bits</entry>
<entry lang="es" key="BLOCK_SIZE">Tamaño de bloque</entry>
<entry lang="es" key="KDF">KDF</entry>
<entry lang="es" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="es" key="PKCS5_ITERATIONS">Cuenta de iteraciones PKCS-5</entry>
<entry lang="es" key="VOLUME_CREATE_DATE">Volumen Creado</entry>
<entry lang="es" key="VOLUME_HEADER_DATE">Última modificación de la cabecera</entry>
@@ -855,7 +853,7 @@
<entry lang="es" key="TC_INSTALLER_IS_RUNNING">El Instalador de VeraCrypt ya se está ejecutando en este sistema y está preparando o llevando a cabo la instalación o actualización de VeraCrypt. Antes de continuar, espere a que termine o ciérrelo. Si no puede cerrarlo, reinicie su ordenador antes de continuar.</entry>
<entry lang="es" key="INSTALL_FAILED">La Instalación falló.</entry>
<entry lang="es" key="UNINSTALL_FAILED">La Desinstalación falló.</entry>
<entry lang="es" key="DIST_PACKAGE_CORRUPTED">Este paquete de distribución está dañado. Intente descargarlo nuevamente (preferentemente desde la página oficial de VeraCrypt en https://veracrypt.jp).</entry>
<entry lang="es" key="DIST_PACKAGE_CORRUPTED">Este paquete de distribución está dañado. Intente descargarlo nuevamente (preferentemente desde la página oficial de VeraCrypt en https://www.veracrypt.fr).</entry>
<entry lang="es" key="CANNOT_WRITE_FILE_X">No se puede escribir el archivo %s</entry>
<entry lang="es" key="EXTRACTING_VERB">Extrayendo</entry>
<entry lang="es" key="CANNOT_READ_FROM_PACKAGE">No se puede leer información del paquete.</entry>
@@ -882,7 +880,7 @@
<entry lang="es" key="INSTALL_COMPLETED">Instalación completada.</entry>
<entry lang="es" key="CANT_CREATE_FOLDER">La carpeta '%s' no pudo ser creada</entry>
<entry lang="es" key="CLOSE_TC_FIRST">No se puede detener el controlador de dispositivos VeraCrypt.\n\nCierre todas las ventanas abiertas de VeraCrypt primero. Si no funciona, reinicie Windows y reinténtelo.</entry>
<entry lang="es" key="UNMOUNT_ALL_FIRST">Se deben desmontar todos los volúmenes VeraCrypt antes de instalar/desinstalar VeraCrypt.</entry>
<entry lang="es" key="DISMOUNT_ALL_FIRST">Se deben desmontar todos los volúmenes VeraCrypt antes de instalar/desinstalar VeraCrypt.</entry>
<entry lang="es" key="UNINSTALL_OLD_VERSION_FIRST">Una versión obsoleta de VeraCrypt está instalada en este sistema. Debe ser desinstalada antes de instalar esta nueva versión de VeraCrypt.\n\nTan pronto como cierre este mensaje, se lanzará el desinstalador de la versión antigua. Tenga en cuenta que ningún volumen será descifrado al desinstalar VeraCrypt. Tras desinstalar la versión antigua de VeraCrypt, ejecute el instalador de la versión nueva otra vez.</entry>
<entry lang="es" key="REG_INSTALL_FAILED">La instalación de las entradas del registro ha fallado</entry>
<entry lang="es" key="DRIVER_INSTALL_FAILED">La instalación del controlador de dispositivos ha fallado. Reinicie Windows e intente instalar VeraCrypt de nuevo.</entry>
@@ -903,7 +901,7 @@
<entry lang="es" key="MINUTES">minutos</entry>
<entry lang="es" key="SECONDS">s</entry>
<entry lang="es" key="OPEN">Abrir</entry>
<entry lang="es" key="UNMOUNT">Desmontar</entry>
<entry lang="es" key="DISMOUNT">Desmontar</entry>
<entry lang="es" key="SHOW_TC">Mostrar VeraCrypt</entry>
<entry lang="es" key="HIDE_TC">Ocultar VeraCrypt</entry>
<entry lang="es" key="TOTAL_DATA_READ">Datos leídos desde el montaje</entry>
@@ -940,7 +938,7 @@
<entry lang="es" key="ENTER_HEADER_BACKUP_PASSWORD">Introduzca contraseña para la cabecera almacenada en archivo de respaldo</entry>
<entry lang="es" key="KEYFILE_CREATED">Se ha creado con éxito el archivo-llave.</entry>
<entry lang="es" key="KEYFILE_INCORRECT_NUMBER">El número de archivos-clave que proporcionó es inválido.</entry>
<entry lang="es" key="KEYFILE_INCORRECT_SIZE">El tamaño del fichero de claves debe ser de al menos 64 bytes.</entry>
<entry lang="es" key="KEYFILE_INCORRECT_SIZE">El tamaño del archivo-clave debe estar comprendido entre 64 y 1048576 bytes.</entry>
<entry lang="es" key="KEYFILE_EMPTY_BASE_NAME">Por favor, introduzca un nombre para que se genere el fichero-llave</entry>
<entry lang="es" key="KEYFILE_INVALID_BASE_NAME">El nombre base del/de los fichero(s)-llave es inválido</entry>
<entry lang="es" key="KEYFILE_ALREADY_EXISTS">El fichero-llave '%s' ya existe.\n¿Quiere sobrescribirlo? Se detendrá el proceso si responde No.</entry>
@@ -975,7 +973,7 @@
<entry lang="es" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - Volúmenes Favoritos del Sistema</entry>
<entry lang="es" key="SYS_FAVORITES_HELP_LINK">¿Qué son los volúmenes favoritos del sistema?</entry>
<entry lang="es" key="SYS_FAVORITES_REQUIRE_PBA">La partición/unidad del sistema no parece estar cifrada.\n\nLos volúmenes favoritos del sistema sólo pueden ser montados usando una contraseña de autenticación de pre-arranque. Por tanto, para habilitar el uso de los volúmenes favoritos del sistema, es necesario cifrar la partición/unidad del sistema primero.</entry>
<entry lang="es" key="UNMOUNT_FIRST">Por favor desmonte el volumen antes de continuar.</entry>
<entry lang="es" key="DISMOUNT_FIRST">Por favor desmonte el volumen antes de continuar.</entry>
<entry lang="es" key="CANNOT_SET_TIMER">Error: No se puede establecer el temporizador.</entry>
<entry lang="es" key="IDPM_CHECK_FILESYS">Comprobar Sistema de Archivos</entry>
<entry lang="es" key="IDPM_REPAIR_FILESYS">Reparar Sistema de Archivos</entry>
@@ -1009,11 +1007,11 @@
<entry lang="es" key="NO_SYSENC_PARTITION_SELECTED">No hay ninguna partición seleccionada.\n\nPulse 'Seleccionar Dispositivo' para seleccionar una partición desmontada que normalmente requiere autenticación de pre-arranque (por ejemplo, una partición ubicada en la unidad del sistema cifrada de otro sistema operativo, que no se esté ejecutando, o la partición del sistema cifrada de otro sistema operativo).\n\nNota: La partición seleccionada será montada como un volumen VeraCrypt normal sin autenticación de pre-arranque. Esto es útil p.e. para operaciones de reparación o copia de seguridad.</entry>
<entry lang="es" key="CONFIRM_SAVE_DEFAULT_KEYFILES">AVISO: Si se activa 'Archivos-clave por defecto', los volúmenes que no usen estos archivos-clave no se podrán montar. Por tanto, tras activar los archivos-clave por defecto, recuerde desactivar la casilla 'Usar archivos-clave' (bajo el cuadro de texto de la contraseña) al montar dichos volúmenes.\n\n¿Seguro que desea guardar los archivos-clave y ubicaciones seleccionadas como predeterminados?</entry>
<entry lang="es" key="HK_AUTOMOUNT_DEVICES">Montar dispositivos autom.</entry>
<entry lang="es" key="HK_UNMOUNT_ALL">Desmontar Todo</entry>
<entry lang="es" key="HK_DISMOUNT_ALL">Desmontar Todo</entry>
<entry lang="es" key="HK_WIPE_CACHE">Borrar Caché</entry>
<entry lang="es" key="HK_UNMOUNT_ALL_AND_WIPE">Desmontar Todo &amp; Borrar Caché</entry>
<entry lang="es" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Desmontar Todo &amp; Borrar Caché (forzar)</entry>
<entry lang="es" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Desmontar Todo, Borrar Caché &amp; Salir (forzar)</entry>
<entry lang="es" key="HK_DISMOUNT_ALL_AND_WIPE">Desmontar Todo &amp; Borrar Caché</entry>
<entry lang="es" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Desmontar Todo &amp; Borrar Caché (forzar)</entry>
<entry lang="es" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Desmontar Todo, Borrar Caché &amp; Salir (forzar)</entry>
<entry lang="es" key="HK_MOUNT_FAVORITE_VOLUMES">Montar Volúmenes Favoritos</entry>
<entry lang="es" key="HK_SHOW_HIDE_MAIN_WINDOW">Mostrar/Ocultar ventana principal de VeraCrypt</entry>
<entry lang="es" key="PRESS_A_KEY_TO_ASSIGN">(Haga clic aquí y pulse una tecla)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="es" key="PAGING_FILE_CREATION_PREVENTED">Se ha evitado la creación del archivo de paginación.\n\nTenga en cuenta que, debido a un problema de Windows, los archivos de paginación no pueden ubicarse en volúmenes VeraCrypt secundarios (incluyendo los volúmenes favoritos del sistema). VeraCrypt sólo soporta la creación de archivos de paginación en una unidad/partición cifrada del sistema.</entry>
<entry lang="es" key="SYS_ENC_HIBERNATION_PREVENTED">Un error o incompatibilidad impide que VeraCrypt cifre el archivo de hibernación. Por tanto, la hibernación ha sido evitada.\n\nNota: Cuando un ordenador hiberna (o entra en modo de ahorro de energía), el contenido de su memoria se escribe en un archivo de almacenamiento de hibernación que reside en la unidad del sistema. Puede que VeraCrypt no sea capaz de evitar que las claves de cifrado y los contenidos de archivos sensibles abiertos en la RAM sean guardados sin cifrar en el archivo de hibernación.</entry>
<entry lang="es" key="HIDDEN_OS_HIBERNATION_PREVENTED">Se ha impedido la hibernación.\n\nVeraCrypt no soporta la hibernación en sistemas operativos ocultos que usan una partición de arranque adicional. Recuerde que la partición de arranque es compartida por el sistema operativo señuelo y por el oculto. Por tanto, para evitar filtraciones de datos y problemas al reanudar tras la hibernación, VeraCrypt debe impedir que el sistema operativo oculto hiberne o escriba en la partición de arranque compartida.</entry>
<entry lang="es" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">El volumen VeraCrypt montado como %c: ha sido desmontado.</entry>
<entry lang="es" key="MOUNTED_VOLUMES_UNMOUNTED">Los volúmenes VeraCrypt han sido desmontados.</entry>
<entry lang="es" key="VOLUMES_UNMOUNTED_CACHE_WIPED">Los volúmenes VeraCrypt han sido desmontados y la caché de contraseñas ha sido borrada.</entry>
<entry lang="es" key="SUCCESSFULLY_UNMOUNTED">Desmontado con éxito</entry>
<entry lang="es" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">El volumen VeraCrypt montado como %c: ha sido desmontado.</entry>
<entry lang="es" key="MOUNTED_VOLUMES_DISMOUNTED">Los volúmenes VeraCrypt han sido desmontados.</entry>
<entry lang="es" key="VOLUMES_DISMOUNTED_CACHE_WIPED">Los volúmenes VeraCrypt han sido desmontados y la caché de contraseñas ha sido borrada.</entry>
<entry lang="es" key="SUCCESSFULLY_DISMOUNTED">Desmontado con éxito</entry>
<entry lang="es" key="CONFIRM_BACKGROUND_TASK_DISABLED">AVISO: Si VeraCrypt en Segundo Plano no está habilitado, tampoco lo estarán las siguientes funciones:\n\n1) Atajos de teclado\n2) Desmontaje automático (p.e. al cerrar sesión, retirar involuntariamente el dispositivo, etc.)\n3) Montaje automático de volúmenes favoritos\n4) Notificaciones (p.e., cuando se evita el daño a un volumen oculto)\n5) Icono en área de notificación.\n\nNota: Puede cerrar el Segundo Plano haciendo clic derecho en el icono del área de notificación y seleccionando 'Salir'.\n\n¿Seguro que desea deshabilitar permanentemente VeraCrypt en Segundo Plano?</entry>
<entry lang="es" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">AVISO: Si esta opción es deshabilitada, no se podrán desmontar automáticamente volúmenes que contengan archivos/directorios abiertos. ¿Seguro que desea deshabilitar esta opción?</entry>
<entry lang="es" key="WARN_PREF_AUTO_UNMOUNT">AVISO: los volúmenes que contengan archivos/directorios abiertos no se desmontarán autom.\n\n Para evitarlo, habilite la siguiente opción en esta misma ventana: 'Forzar desmontaje automático aunque el volumen tenga archivos abiertos'</entry>
<entry lang="es" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">AVISO: Cuando la batería esté baja, Windows puede no enviar los mensajes apropiados a las aplicaciones en ejecución cuando el ordenador esté entrando en modo de ahorro de energía. Por tanto, VeraCrypt podría no desmontar autom. los volúmenes correctamente.</entry>
<entry lang="es" key="CONFIRM_NO_FORCED_AUTODISMOUNT">AVISO: Si esta opción es deshabilitada, no se podrán desmontar automáticamente volúmenes que contengan archivos/directorios abiertos. ¿Seguro que desea deshabilitar esta opción?</entry>
<entry lang="es" key="WARN_PREF_AUTO_DISMOUNT">AVISO: los volúmenes que contengan archivos/directorios abiertos no se desmontarán autom.\n\n Para evitarlo, habilite la siguiente opción en esta misma ventana: 'Forzar desmontaje automático aunque el volumen tenga archivos abiertos'</entry>
<entry lang="es" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">AVISO: Cuando la batería esté baja, Windows puede no enviar los mensajes apropiados a las aplicaciones en ejecución cuando el ordenador esté entrando en modo de ahorro de energía. Por tanto, VeraCrypt podría no desmontar autom. los volúmenes correctamente.</entry>
<entry lang="es" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Ha programado el proceso de cifrado de una partición/volumen. El proceso aún no ha sido completado.\n\n¿Desea continuar el proceso ahora?</entry>
<entry lang="es" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">Ha programado el proceso de cifrado o descifrado de la partición/unidad del sistema. El proceso aún no ha sido completado.\n\n¿Desea iniciar (continuar) el proceso ahora?</entry>
<entry lang="es" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">¿Desea que se le pregunte si quiere o no continuar los procesos actualmente programados de cifrado/descifrado de particiones/volúmenes secundarios?</entry>
@@ -1063,7 +1061,7 @@
<entry lang="es" key="SYS_AUTOMOUNT_DISABLED">Su sistema no está configurado para montar automáticamente nuevos volúmenes. Puede ser imposible montar volúmenes VeraCrypt alojados en dispositivos. Se puede habilitar el montaje automático ejecutando el siguiente comando y reiniciando el sistema.\n\nmountvol.exe /E</entry>
<entry lang="es" key="SYS_ASSIGN_DRIVE_LETTER">Asigne una letra de unidad a la partición/dispositivo antes de proceder ('Panel de Control' &gt; 'Sistema y mantenimiento' &gt; 'Herramientas Administrativas' - 'Crear y formatear particiones de disco duro').\n\nTenga en cuenta que este es un requisito del sistema operativo.</entry>
<entry lang="es" key="MOUNT_TC_VOLUME">Montar volumen VeraCrypt</entry>
<entry lang="es" key="UNMOUNT_ALL_TC_VOLUMES">Desmontar todos los volúmenes VeraCrypt</entry>
<entry lang="es" key="DISMOUNT_ALL_TC_VOLUMES">Desmontar todos los volúmenes VeraCrypt</entry>
<entry lang="es" key="UAC_INIT_ERROR">VeraCrypt no ha podido obtener privilegios de Administrador.</entry>
<entry lang="es" key="ERR_ACCESS_DENIED">Acceso denegado por el sistema operativo.\n\nCausa posible: el sistema operativo requiere que tenga permisos de lectura/escritura (o privilegios de administrador) sobre ciertas carpetas, archivos y dispositivos, para permitirle leer/escribir información de/en ellos. Normalmente, un usuario sin privilegios de administrador tiene permitido crear, leer y modificar archivos en su carpeta 'Mis documentos'.</entry>
<entry lang="es" key="SECTOR_SIZE_UNSUPPORTED">Error: La unidad usa un tamaño de sector no soportado.\n\nActualmente no es posible crear volúmenes alojados en dispositivos o particiones que usen sectores mayores de 4096 bytes. Sin embargo, recuerde que puede crear volúmenes alojados en archivo (contenedores) en estas unidades.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="es" key="HIDDEN_OS_CREATION_PREINFO_HELP">En los siguientes pasos, VeraCrypt creará el sistema operativo oculto copiando el contenido de la partición del sistema al volumen oculto (los datos que se copien serán cifrados al vuelo con una clave de cifrado diferente de la que se usará para el sistema operativo señuelo).\n\nTenga en cuenta que el proceso se realizará en el entorno de pre-arranque (antes del inicio de Windows) y puede tardar mucho en completarse; varias horas o incluso días (dependiendo del tamaño de la partición del sistema y del rendimiento de su ordenador).\n\nPodrá interrumpir el proceso, apagar su ordenador, iniciar el sistema operativo y luego continuar el proceso. No obstante, si lo interrumpe, el proceso de copiado tendrá que comenzar desde el principio (porque el contenido de la partición del sistema no debe cambiar durante la clonación).</entry>
<entry lang="es" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">¿Desea cancelar el proceso entero de creación del sistema operativo oculto?\n\nNota: NO podrá continuar el proceso más tarde si lo cancela ahora.</entry>
<entry lang="es" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">¿Desea cancelar la prueba del cifrado del sistema?</entry>
<entry lang="es" key="BOOT_PRETEST_FAILED_RETRY">Ha fallado la prueba del cifrado del sistema VeraCrypt. ¿Desea intentarlo de nuevo?\n\nSi selecciona 'No', el componente de autenticación de pre-arranque será desinstalado.\n\nNotas:\n\n- Si el Cargador de Arranque VeraCrypt no le pidió que introdujera la contraseña antes de que Windows se iniciara, es posible que su sistema operativo no arranque desde la unidad en la que está instalado. Esto no está soportado.\n\n- Si usó un algoritmo de cifrado distinto a AES y la prueba falló (e introdujo la contraseña), la causa puede ser un controlador diseñado inapropiadamente. Seleccione 'No', y trate de cifrar la partición/unidad del sistema otra vez, pero use el algoritmo de cifrado AES (que tiene los requisitos de memoria más bajos).\n\n- Para más causas y soluciones posibles, vea https://veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="es" key="BOOT_PRETEST_FAILED_RETRY">Ha fallado la prueba del cifrado del sistema VeraCrypt. ¿Desea intentarlo de nuevo?\n\nSi selecciona 'No', el componente de autenticación de pre-arranque será desinstalado.\n\nNotas:\n\n- Si el Cargador de Arranque VeraCrypt no le pidió que introdujera la contraseña antes de que Windows se iniciara, es posible que su sistema operativo no arranque desde la unidad en la que está instalado. Esto no está soportado.\n\n- Si usó un algoritmo de cifrado distinto a AES y la prueba falló (e introdujo la contraseña), la causa puede ser un controlador diseñado inapropiadamente. Seleccione 'No', y trate de cifrar la partición/unidad del sistema otra vez, pero use el algoritmo de cifrado AES (que tiene los requisitos de memoria más bajos).\n\n- Para más causas y soluciones posibles, vea https://www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="es" key="SYS_DRIVE_NOT_ENCRYPTED">La partición/unidad del sistema no parece estar cifrada (ni parcial ni completamente).</entry>
<entry lang="es" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">Su partición/unidad del sistema está cifrada (parcial o completamente).\n\nDescifre por completo su partición/unidad del sistema antes de continuar. Para ello, seleccione 'Sistema' &gt; 'Descifrar Permanentemente la Partición/Unidad del Sistema' desde el menú de la ventana principal de VeraCrypt.</entry>
<entry lang="es" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">Si la partición/unidad del sistema está cifrada (parcial o completamente), no puede usar una versión anterior de VeraCrypt (pero puede actualizarlo o reinstalar la misma versión).</entry>
@@ -1306,8 +1304,8 @@
<entry lang="es" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Recuerde que el número de hilos está actualmente limitado, lo que afectará a los resultados (peor rendimiento).\n\nPara utilizar toda la potencia de los procesadores, seleccione 'Configuración' &gt; 'Rendimiento' y desmarque la casilla correspondiente.</entry>
<entry lang="es" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">¿Desea que VeraCrypt intente desactivar la protección contra escritura de la partición/unidad?</entry>
<entry lang="es" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">AVISO: Esta configuración puede perjudicar el rendimiento.\n\n¿Seguro que desea aplicarla?</entry>
<entry lang="es" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">AVISO: volumen VeraCrypt auto-desmontado</entry>
<entry lang="es" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Antes de eliminar o desactivar un dispositivo que contenga un volumen montado, debería desmontar el volumen en VeraCrypt primero.\n\nLos desmontajes espontáneos inesperados a menudo son causados por cables que fallan intermitentemente, carcasas defectuosas, etc.</entry>
<entry lang="es" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">AVISO: volumen VeraCrypt auto-desmontado</entry>
<entry lang="es" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Antes de eliminar o desactivar un dispositivo que contenga un volumen montado, debería desmontar el volumen en VeraCrypt primero.\n\nLos desmontajes espontáneos inesperados a menudo son causados por cables que fallan intermitentemente, carcasas defectuosas, etc.</entry>
<entry lang="es" key="UNSUPPORTED_TRUECRYPT_FORMAT">Este volumen se creó con TrueCrypt %x.%x pero VeraCrypt sólo soporta volúmenes de TrueCrypt creados con TrueCrypt 6.x/7.x</entry>
<entry lang="es" key="TEST">Probar</entry>
<entry lang="es" key="KEYFILE">Archivo-clave</entry>
@@ -1429,266 +1427,147 @@
<entry lang="es" key="VOLUME_TOO_LARGE_FOR_HOST">ERROR: El tamaño del contenedor de archivo es más grande que el espacio en disco disponible.</entry>
<entry lang="es" key="IDC_ALLOW_WINDOWS_DEFRAG">Permitir al Defragmentador de Discos de Windows defragmentar una partición/disco no de sistema</entry>
<entry lang="es" key="CONFIRM_ALLOW_WINDOWS_DEFRAG">ADVERTENCIA: Defragmentar particiones/discos no de sistema puede filtrar metadatos acerca de su contenido o causar dificultades con los volúmenes ocultos que puedan contener.\n\n¿Continuar?</entry>
<entry lang="es" key="VIRTUAL_DEVICE">Dispositivo Virtual</entry>
<entry lang="es" key="MOUNTED_VOLUME_NOT_ASSOCIATED">El volumen montado seleccionado no está asociado a su letra de unidad en Windows, por lo que no se puede abrir en el Explorador de Windows.</entry>
<entry lang="es" key="IDC_CLEAR_KEYS_ON_NEW_DEVICE_INSERTION">Borrar las claves de cifrado de la memoria si se inserta un nuevo dispositivo</entry>
<entry lang="es" key="CLEAR_KEYS_ON_DEVICE_INSERTION_WARNING">NOTAS IMPORTANTES:\n - Por favor, tenga en cuenta que esta opción no persistirá después de un apagado/reinicio por lo que tendrá que seleccionarla de nuevo la próxima vez que se inicie la máquina.\n\n - Con esta opción activada y después de conectar un nuevo dispositivo, la máquina se congelará y eventualmente se bloqueará con un BSOD ya que Windows no puede acceder al disco encriptado después de que sus claves se borren de la memoria.\n</entry>
<entry lang="en" key="VIRTUAL_DEVICE">Virtual Device</entry>
<entry lang="en" key="MOUNTED_VOLUME_NOT_ASSOCIATED">The selected mounted volume is not associated with its drive letter in Windows and so it can not be opened in Windows Explorer.</entry>
<entry lang="en" key="IDC_CLEAR_KEYS_ON_NEW_DEVICE_INSERTION">Clear encryption keys from memory if a new device is inserted</entry>
<entry lang="en" key="CLEAR_KEYS_ON_DEVICE_INSERTION_WARNING">IMPORTANT NOTES:\n - Please keep in mind that this option will not persist after a shutdown/reboot so you will need to select it again next time the machine is started.\n\n - With this option enabled and after a new device is connected, the machine will freeze and it will eventually crash with a BSOD since Windows can not access the encrypted disk after its keys are cleared from memory.\n</entry>
<entry lang="es" key="STARTING">Iniciando</entry>
<entry lang="es" key="IDC_ENABLE_CPU_RNG">Utilizar el generador aleatorio de hardware de la CPU como fuente adicional de entropía.</entry>
<entry lang="es" key="IDC_USE_LEGACY_MAX_PASSWORD_LENGTH">Utilice la longitud máxima de contraseña heredada (64 caracteres)</entry>
<entry lang="es" key="IDC_ENABLE_RAM_ENCRYPTION">Activar la encriptación de claves y contraseñas almacenadas en RAM</entry>
<entry lang="en" key="IDC_ENABLE_CPU_RNG">Use CPU hardware random generator as an additional source of entropy</entry>
<entry lang="en" key="IDC_USE_LEGACY_MAX_PASSWORD_LENGTH">Use legacy maximum password length (64 characters)</entry>
<entry lang="en" key="IDC_ENABLE_RAM_ENCRYPTION">Activate encryption of keys and passwords stored in RAM</entry>
<entry lang="es" key="IDT_BENCHMARK">Comparación:</entry>
<entry lang="es" key="IDC_DISABLE_MOUNT_MANAGER">Sólo crear dispositivo virtual sin montar en la letra de unidad seleccionada</entry>
<entry lang="en" key="IDC_DISABLE_MOUNT_MANAGER">Only create virtual device without mounting on selected drive letter</entry>
<entry lang="es" key="LEGACY_PASSWORD_UTF8_TOO_LONG">La contraseña introducida es demasiado larga: su representación en UTF-8 excede de 64 bytes.</entry>
<entry lang="es" key="HIDDEN_CREDS_SAME_AS_OUTER">El volumen oculto no puede tener la misma contraseña, PIM y archivos de claves que el volumen externo.</entry>
<entry lang="es" key="SYSENC_BITLOCKER_CONFLICT">VeraCrypt no permite encriptar una unidad del sistema que ya esté encriptada por BitLocker.</entry>
<entry lang="es" key="IDC_UPDATE_BOOTLOADER_ON_SHUTDOWN">Soluciona automáticamente los problemas de configuración de arranque que pueden impedir que se inicie Windows.</entry>
<entry lang="es" key="IDC_FORCE_NEXT_BOOT_VERACRYPT">Forzar a la máquina a arrancar con VeraCrypt en el siguiente inicio</entry>
<entry lang="es" key="IDC_FORCE_VERACRYPT_BOOT_ENTRY">Forzar la presencia de la entrada VeraCrypt en el menú de arranque del firmware EFI</entry>
<entry lang="es" key="IDC_FORCE_VERACRYPT_FIRST_BOOT_ENTRY">Forzar que la entrada VeraCrypt sea la primera en el menú de arranque del firmware EFI.</entry>
<entry lang="es" key="RAM_ENCRYPTION_DISABLE_HIBERNATE">ADVERTENCIA: La encriptación de RAM no es compatible con las funciones Hibernar e Inicio rápido de Windows. VeraCrypt necesita desactivarlas antes de activar la encriptación de RAM.\n\n¿Continua?</entry>
<entry lang="es" key="CONFIRM_DISABLE_FAST_STARTUP">ADVERTENCIA: El inicio rápido de Windows está activado y se sabe que causa problemas cuando se trabaja con volúmenes VeraCrypt. Se recomienda desactivarlo para mejorar la seguridad y la usabilidad.\n\n¿Quiere deshabilitar el inicio rápido de Windows?</entry>
<entry lang="es" key="QUICK_FORMAT_HELP">Para que tu sistema operativo pueda montar tu nuevo volumen, tiene que estar formateado con un sistema de ficheros. Por favor, seleccione un tipo de sistema de archivos.\n\nSi va a alojar su volumen en un dispositivo o partición, puede optar por el 'Formato rápido', que omite la encriptación del espacio libre del volumen.</entry>
<entry lang="es" key="IDC_ENABLE_HARDWARE_ENCRYPTION_NEG">No acelere el cifrado/descifrado AES utilizando las instrucciones AES del procesador</entry>
<entry lang="es" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Añadir todos los volúmenes montados a Favoritos...</entry>
<entry lang="es" key="TASKICON_PREF_MENU_ITEMS">Elementos del menú de iconos de tareas</entry>
<entry lang="es" key="TASKICON_PREF_OPEN_VOL">Abrir volúmenes montados</entry>
<entry lang="es" key="TASKICON_PREF_UNMOUNT_VOL">Desmontar volúmenes montados</entry>
<entry lang="es" key="DISK_FREE">Espacio libre disponible: {0}</entry>
<entry lang="es" key="VOLUME_SIZE_HELP">Especifique el tamaño del contenedor a crear. Tenga en cuenta que el tamaño mínimo posible de un volumen es de 292 KiB.</entry>
<entry lang="es" key="LINUX_CONFIRM_INNER_VOLUME_CALC">ADVERTENCIA: Has seleccionado un sistema de archivos que no es FAT para el volumen externo.\nTen en cuenta que en este caso VeraCrypt no puede calcular el tamaño máximo exacto permitido para el volumen oculto y sólo utilizará una estimación que puede ser errónea.\nPor lo tanto, es tu responsabilidad utilizar un valor adecuado para el tamaño del volumen oculto para que no se sobreponga al volumen externo.\n¿Deseas continuar utilizando el sistema de archivos seleccionado para el volumen externo?</entry>
<entry lang="es" key="LINUX_PREF_TAB_SECURITY">Seguridad</entry>
<entry lang="es" key="LINUX_PREF_TAB_MOUNT_OPTIONS">Opciones de Montaje</entry>
<entry lang="es" key="LINUX_PREF_TAB_BACKGROUND_TASK">Tarea de fondo</entry>
<entry lang="es" key="LINUX_PREF_TAB_SYSTEM_INTEGRATION">Integración de Sistema</entry>
<entry lang="es" key="LINUX_PREF_TAB_SYSTEM_INTEGRATION_EXPLORER">Explorador de Sistemas de Archivos</entry>
<entry lang="es" key="LINUX_PREF_TAB_PERFORMANCE">Rendimiento</entry>
<entry lang="es" key="LINUX_PREF_TAB_KEYFILES">Archivos de Clave</entry>
<entry lang="es" key="LINUX_PREF_TAB_TOKENS">Tokens de Seguridad</entry>
<entry lang="es" key="LINUX_PREF_KERNEL_SERVICES">Servicios del Kernel</entry>
<entry lang="es" key="LINUX_PREF_KERNEL_CRYPT">No utilizar servicios criptográficos del kernel</entry>
<entry lang="es" key="LINUX_PREF_TAB_MOUNT_OPTIONS_FS">Sistema de Archivos</entry>
<entry lang="es" key="IDT_LINUX_PREF_TAB_MOUNT_OPTIONS">Opciones de Montaje:</entry>
<entry lang="es" key="LINUX_CROSS_SUPPORT">Soporte Multiplataforma</entry>
<entry lang="es" key="LINUX_CROSS_SUPPORT_OTHER">Montaré el volumen en otras plataformas</entry>
<entry lang="es" key="LINUX_CROSS_SUPPORT_OTHER_HELP">Elija esta opción si necesita usar el volumen en otras plataformas.</entry>
<entry lang="es" key="LINUX_CROSS_SUPPORT_ONLY">Sólo montaré el volumen en {0}</entry>
<entry lang="es" key="LINUX_CROSS_SUPPORT_ONLY_HELP">Elija esta opción si no necesita usar el volumen en otras plataformas.</entry>
<entry lang="es" key="LINUX_DESELECT">Deseleccionar</entry>
<entry lang="es" key="LINUX_ADMIN_PW_QUERY">Ingrese su contraseña de usuario o contraseña de administrador:</entry>
<entry lang="es" key="LINUX_ADMIN_PW_QUERY_TITLE">Se requieren privilegios de administrador</entry>
<entry lang="es" key="LINUX_VC_RUNNING_ALREADY">VeraCrypt ya está en funcionamiento.</entry>
<entry lang="es" key="LINUX_SYSTEM_ENC_PW_LENGTH_NOTE">La contraseña de Encriptación del Sistema es más larga de {0} caracteres.</entry>
<entry lang="es" key="LINUX_MOUNT_SYSTEM_ENC_PREBOOT">Montar partición usando encriptación de sistema (autenticación prearranque)</entry>
<entry lang="es" key="LINUX_DO_NOT_MOUNT">No montar</entry>
<entry lang="es" key="LINUX_MOUNT_AT_DIR">Montar en el directorio:</entry>
<entry lang="es" key="LINUX_SELECT">Seleccionar..."</entry>
<entry lang="es" key="LINUX_UNMOUNT_ALL_WHEN">Desmontar Todos los Volúmenes Cuando</entry>
<entry lang="es" key="LINUX_ENTERING_POWERSAVING">El sistema está entrando en modo de ahorro de energía</entry>
<entry lang="es" key="LINUX_LOGIN_ACTION">Acciones a Realizar cuando el Usuario Inicia Sesión</entry>
<entry lang="es" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Cerrar todas las ventanas del Explorador del volumen que se está desmontando</entry>
<entry lang="es" key="LINUX_HOTKEYS">Teclas de Acceso Rápido</entry>
<entry lang="es" key="LINUX_SYSTEM_HOTKEYS">Teclas de Acceso Rápido del Sistema</entry>
<entry lang="es" key="LINUX_SOUND_NOTIFICATION">Reproducir sonido de notificación del sistema después de montar/desmontar</entry>
<entry lang="es" key="LINUX_CONFIRM_AFTER_UNMOUNT">Mostrar cuadro de mensaje de confirmación después de desmontar</entry>
<entry lang="es" key="LINUX_VC_QUITS">VeraCrypt se cierra</entry>
<entry lang="es" key="LINUX_OPEN_FINDER">Abrir ventana del Finder para el volumen montado con éxito</entry>
<entry lang="es" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Tenga en cuenta que esta configuración solo tendrá efecto si se deshabilita el uso de los servicios criptográficos del kernel.</entry>
<entry lang="es" key="LINUX_DISABLE_KERNEL_CRYPT_CONFIRM">Desactivar el uso de servicios criptográficos del kernel puede degradar el rendimiento.\n\n¿Está seguro?</entry>
<entry lang="es" key="LINUX_KERNEL_CRYPT_OPTION_CHANGE_MOUNTED_HINT">Tenga en cuenta que desactivar esta opción puede no tener efecto en los volúmenes montados usando servicios criptográficos del kernel.</entry>
<entry lang="es" key="LINUX_REMOUNT_BECAUSEOF_SETTING">Tenga en cuenta que cualquier volumen actualmente montado necesita ser remontado antes de que pueda usar esta configuración.</entry>
<entry lang="es" key="LINUX_UNKNOWN_EXC_OCCURRED">Se produjo una excepción desconocida.</entry>
<entry lang="es" key="LINUX_FIRST_AID">"La Utilidad de Discos se lanzará después de que presione 'OK'.\n\nPor favor seleccione su volumen en la ventana de Utilidad de Discos y presione el botón 'Verificar Disco' o 'Reparar Disco' en la página de 'Primeros Auxilios'.</entry>
<entry lang="es" key="LINUX_MOUNT_ALL_DEV">Montar Todos los Dispositivos</entry>
<entry lang="es" key="LINUX_ERROR_LOADING_CONFIG">Error al cargar los archivos de configuración ubicados en </entry>
<entry lang="es" key="LINUX_SELECT_FREE_SLOT">Por favor, seleccione un espacio libre de unidad de la lista.</entry>
<entry lang="es" key="LINUX_MESSAGE_ON_MOUNT_AGAIN">\n\n¿Desea mostrar este mensaje la próxima vez que monte un volumen de este tipo?</entry>
<entry lang="es" key="LINUX_WARNING">Advertencia</entry>
<entry lang="es" key="LINUX_ERROR">Error</entry>
<entry lang="es" key="LINUX_ONLY_TEXTMODE">Esta característica actualmente solo es compatible en modo texto.</entry>
<entry lang="es" key="LINUX_FREE_SPACE_ON_DRIVE">Espacio libre en la unidad {0}: es {1}.</entry>
<entry lang="es" key="LINUX_DYNAMIC_NOTICE">Tenga en cuenta que si su sistema operativo no asigna archivos desde el principio del espacio libre, el tamaño máximo posible del volumen oculto puede ser mucho menor que el tamaño del espacio libre en el volumen externo. Esto no es un error de VeraCrypt sino una limitación del sistema operativo.</entry>
<entry lang="es" key="LINUX_MAX_HIDDEN_SIZE">El tamaño máximo posible del volumen oculto para este volumen es {0}.</entry>
<entry lang="es" key="LINUX_OPEN_OUTER_VOL">Abrir Volumen Externo</entry>
<entry lang="es" key="LINUX_OUTER_VOL_IS_MOUNTED">El volumen externo ha sido creado y montado con éxito como '{0}'. Ahora debe copiar a este volumen algunos archivos que aparenten ser sensibles pero que realmente NO desee ocultar. Estos archivos estarán allí para cualquier persona que le obligue a revelar su contraseña. Revelará solo la contraseña de este volumen externo, no la del oculto. Los archivos que realmente le importan estarán almacenados en el volumen oculto, que se creará más adelante. Cuando termine de copiar, haga clic en Siguiente. No desmonte el volumen.\n\nNota: Después de hacer clic en Siguiente, el volumen externo será analizado para determinar el tamaño del área ininterrumpida de espacio libre cuyo final esté alineado con el final del volumen. Esta área acomodará el volumen oculto, por lo que limitará su tamaño máximo posible. El procedimiento garantiza que ningún dato en el volumen externo sea sobrescrito por el volumen oculto.</entry>
<entry lang="es" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">Error: Está intentando encriptar una unidad del sistema.\n\nVeraCrypt solo puede encriptar unidades del sistema bajo Windows.</entry>
<entry lang="es" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">Error: Está intentando encriptar una partición del sistema.\n\nVeraCrypt solo puede encriptar particiones del sistema bajo Windows.</entry>
<entry lang="es" key="LINUX_WARNING_FORMAT_DESTROY_FS">ADVERTENCIA: El formateo del dispositivo destruirá todos los datos en el sistema de archivos '{0}'.\n\n¿Quiere continuar?</entry>
<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>
<entry lang="es" key="LINUX_OOM">Memoria insuficiente.</entry>
<entry lang="es" key="LINUX_CANT_GET_ADMIN_PRIV">Fallo al obtener privilegios de administrador</entry>
<entry lang="es" key="LINUX_COMMAND_GET_ERROR">El comando {0} devolvió el error {1}.</entry>
<entry lang="es" key="LINUX_CMD_HELP">Ayuda de Línea de Comandos de VeraCrypt</entry>
<entry lang="es" key="LINUX_HIDDEN_FILES_PRESENT_IN_KEYFILE_PATH">\n\nAdvertencia: Los archivos ocultos están presentes en una ruta de archivo de claves. Si necesita utilizarlos como archivos de claves, elimine el punto inicial de sus nombres. Los archivos ocultos sólo son visibles si están activados en las opciones del sistema.</entry>
<entry lang="es" key="LINUX_EX2MSG_DEVICESECTORSIZEMISMATCH">Desajuste entre el tamaño del sector del dispositivo de almacenamiento y el volumen VC</entry>
<entry lang="es" key="LINUX_EX2MSG_ENCRYPTEDSYSTEMREQUIRED">Esta operación sólo debe realizarse cuando el sistema alojado en el volumen se está ejecutando.</entry>
<entry lang="es" key="LINUX_EX2MSG_INSUFFICIENTDATA">Datos disponibles insuficientes.</entry>
<entry lang="es" key="LINUX_EX2MSG_KERNELCRYPTOSERVICETESTFAILED">Falló la prueba del servicio criptográfico del kernel. Lo más probable es que el servicio criptográfico de su kernel no admita volúmenes superiores a 2 TB.\nPosibles soluciones:\n- Actualice el kernel de Linux a la versión 2.6.33 o posterior.\n- Desactive el uso de los servicios criptográficos del kernel (Configuración > Preferencias > Integración del sistema) o utilice la opción de montaje 'nokernelcrypto' en la línea de comandos.</entry>
<entry lang="es" key="LINUX_EX2MSG_LOOPDEVICESETUPFAILED">Error al configurar un dispositivo de bucle.</entry>
<entry lang="es" key="LINUX_EX2MSG_MISSINGARGUMENT">Falta un argumento obligatorio.</entry>
<entry lang="es" key="LINUX_EX2MSG_MISSINGVOLUMEDATA">Faltan datos de volumen.</entry>
<entry lang="es" key="LINUX_EX2MSG_MOUNTPOINTREQUIRED">Punto de montaje requerido.</entry>
<entry lang="es" key="LINUX_EX2MSG_MOUNTPOINTUNAVAILABLE">El punto de montaje ya está en uso.</entry>
<entry lang="es" key="LINUX_EX2MSG_PASSWORDEMPTY">No se ha especificado contraseña ni archivo de claves.</entry>
<entry lang="es" key="LINUX_EX2MSG_PASSWORDORKEYBOARDLAYOUTINCORRECT">\n\nTenga en cuenta que las contraseñas de autenticación de pre-arranque deben escribirse en el entorno de pre-arranque donde no están disponibles las distribuciones de teclado que no son de EE. UU. Por lo tanto, las contraseñas de autenticación de pre-arranque siempre deben escribirse utilizando la disposición de teclado estándar de EE. UU. (De lo contrario, la contraseña se escribirá incorrectamente en la mayoría de los casos). Sin embargo, tenga en cuenta que NO necesita un teclado estadounidense real; solo necesita cambiar la disposición del teclado en su sistema operativo.</entry>
<entry lang="es" key="LINUX_EX2MSG_PASSWORDORMOUNTOPTIONSINCORRECT">\n\nNota: Si está intentando montar una partición ubicada en una unidad de sistema cifrada sin autenticación de pre-arranque o para montar la partición de sistema cifrada de un sistema operativo que no se está ejecutando, puede hacerlo seleccionando 'Opciones' > 'Montar partición usando cifrado de sistema'.</entry>
<entry lang="es" key="LINUX_EX2MSG_PASSWORDTOOLONG">La contraseña contiene más de {0} caracteres.</entry>
<entry lang="es" key="LINUX_EX2MSG_PARTITIONDEVICEREQUIRED">Partición de dispositivo requerida.</entry>
<entry lang="es" key="LINUX_EX2MSG_PROTECTIONPASSWORDINCORRECT">Contraseña incorrecta para el volumen oculto protegido o el volumen oculto no existe.</entry>
<entry lang="es" key="LINUX_EX2MSG_PROTECTIONPASSWORDKEYFILESINCORRECT">Archivo(s) de claves y/o contraseña incorrectos para el volumen oculto protegido o el volumen oculto no existe.</entry>
<entry lang="es" key="LINUX_EX2MSG_STRINGCONVERSIONFAILED">Se encontraron caracteres inválidos.</entry>
<entry lang="es" key="LINUX_EX2MSG_STRINGFORMATTEREXCEPTION">Error al analizar la cadena formateada.</entry>
<entry lang="es" key="LINUX_EX2MSG_TEMPORARYDIRECTORYFAILURE">No se pudo crear un archivo o directorio en un directorio temporal.\n\nAsegúrese de que el directorio temporal exista, que sus permisos de acceso le permitan acceder a él y que haya suficiente espacio en disco.</entry>
<entry lang="es" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZEHIDDENVOLUMEPROTECTION">Error: La unidad utiliza un tamaño de sector diferente a 512 bytes.\n\nDebido a las limitaciones de los componentes disponibles en su plataforma, los volúmenes externos alojados en la unidad no se pueden montar utilizando la protección de volumen oculto.\n\nPosibles soluciones:\n- Utilice una unidad con sectores de 512 bytes.\n- Cree un volumen alojado en un archivo (contenedor) en la unidad.\n- Haga una copia de seguridad del contenido del volumen oculto y luego actualice el volumen externo.</entry>
<entry lang="es" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZENOKERNELCRYPTO">Error: La unidad utiliza un tamaño de sector diferente a 512 bytes.\n\nDebido a las limitaciones de los componentes disponibles en su plataforma, los volúmenes alojados en particiones/dispositivos en la unidad solo se pueden montar utilizando los servicios criptográficos del kernel.\n\nPosibles soluciones:\n- Habilite el uso de los servicios criptográficos del kernel (Preferencias > Integración del sistema).\n- Utilice un dispositivo con sectores de 512 bytes.\n- Cree un volumen alojado en un archivo (contenedor) en la unidad.</entry>
<entry lang="es" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Error: La unidad utiliza un tamaño de sector diferente a 512 bytes.\n\nDebido a las limitaciones de los componentes disponibles en su plataforma, los volúmenes alojados en particiones/dispositivos no se pueden crear/utilizar en la unidad.\n\nPosibles soluciones:\n- Cree un volumen alojado en un archivo (contenedor) en la unidad.\n- Utilice una unidad con sectores de 512 bytes.\n- Utilice VeraCrypt en otra plataforma.</entry>
<entry lang="es" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">El archivo/dispositivo anfitrión ya está en uso.</entry>
<entry lang="es" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Ranura de volumen no disponible.</entry>
<entry lang="es" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requiere macFUSE 2.5 o superior.</entry>
<entry lang="es" key="EXCEPTION_OCCURRED">Se produjo una excepción</entry>
<entry lang="es" key="ENTER_PASSWORD">Introducir contraseña</entry>
<entry lang="es" key="ENTER_TC_VOL_PASSWORD">Introducir contraseña de volumen VeraCrypt</entry>
<entry lang="es" key="MOUNT">Montar</entry>
<entry lang="es" key="MOUNT_POINT">Directorio de montaje</entry>
<entry lang="es" key="NO_VOLUMES_MOUNTED">No hay volúmenes montados.</entry>
<entry lang="es" key="OPEN_NEW_VOLUME">Especificar un nuevo volumen VeraCrypt</entry>
<entry lang="es" key="PARAMETER_INCORRECT">Parámetro incorrecto</entry>
<entry lang="es" key="SELECT_KEYFILES">Seleccionar archivos de claves</entry>
<entry lang="es" key="START_TC">Iniciar VeraCrypt</entry>
<entry lang="es" key="VOLUME_ALREADY_MOUNTED">El volumen {0} ya está montado.</entry>
<entry lang="es" key="UNKNOWN_OPTION">Opción desconocida</entry>
<entry lang="es" key="VOLUME_LOCATION">Ubicación del volumen</entry>
<entry lang="es" key="VOLUME_HOST_IN_USE">ADVERTENCIA: ¡El archivo/dispositivo host {0} ya está en uso!\n\nIgnorar esto puede causar resultados no deseados, incluida la inestabilidad del sistema. Todas las aplicaciones que puedan estar utilizando el archivo/dispositivo host deben cerrarse antes de montar el volumen.\n\n¿Continuar con el montaje?</entry>
<entry lang="es" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt se instaló previamente utilizando un paquete MSI, por lo que no se puede actualizar utilizando el instalador estándar.\n\nUtilice el paquete MSI para actualizar su instalación de VeraCrypt.</entry>
<entry lang="es" key="IDC_USE_ALL_FREE_SPACE">Utilizar todo el espacio libre disponible</entry>
<entry lang="es" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">VeraCrypt no se puede actualizar porque la partición/unidad del sistema se cifró utilizando un algoritmo que ya no es compatible.\nDescifre su sistema antes de actualizar VeraCrypt y luego vuelva a cifrarlo.</entry>
<entry lang="es" key="LINUX_EX2MSG_TERMINALNOTFOUND">No se pudo encontrar la aplicación de terminal compatible, necesita xterm, konsole o gnome-terminal (con dbus-x11).</entry>
<entry lang="es" key="IDM_MOUNT_NO_CACHE">Montar sin caché</entry>
<entry lang="es" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nExpande un volumen VeraCrypt sobre la marcha sin reformatear\n\n\nSe admiten todo tipo de volúmenes (archivos contenedores, discos y particiones) formateados con NTFS. La única condición es que debe haber suficiente espacio libre en la unidad host o dispositivo host del volumen VeraCrypt.\n\n¡No utilice este software para expandir un volumen externo que contenga un volumen oculto, porque esto destruye el volumen oculto!</entry>
<entry lang="es" key="IDC_STEPSEXPAND">1. Seleccione el volumen VeraCrypt que desea expandir\n2. Haga clic en el botón 'Montar'</entry>
<entry lang="es" key="IDT_VOL_NAME">Volumen: </entry>
<entry lang="es" key="IDT_FILE_SYS">Sistema de archivos: </entry>
<entry lang="es" key="IDT_CURRENT_SIZE">Tamaño actual: </entry>
<entry lang="es" key="IDT_NEW_SIZE">Nuevo tamaño: </entry>
<entry lang="es" key="IDT_NEW_SIZE_BOX_TITLE">Introduzca el nuevo tamaño del volumen</entry>
<entry lang="es" key="IDC_INIT_NEWSPACE">Llenar nuevo espacio con datos aleatorios</entry>
<entry lang="es" key="IDC_QUICKEXPAND">Expansión rápida</entry>
<entry lang="es" key="IDT_INIT_SPACE">Llenar nuevo espacio: </entry>
<entry lang="es" key="EXPANDER_FREE_SPACE">%s espacio libre disponible en la unidad host</entry>
<entry lang="es" key="EXPANDER_HELP_DEVICE">Este es un volumen VeraCrypt basado en dispositivo.\n\nEl nuevo tamaño del volumen se elegirá automáticamente como el tamaño del dispositivo host.</entry>
<entry lang="es" key="EXPANDER_HELP_FILE">Especifique el nuevo tamaño del volumen VeraCrypt (debe ser al menos %I64u KB más grande que el tamaño actual).</entry>
<entry lang="es" key="QUICK_EXPAND_WARNING">ADVERTENCIA: Debe utilizar Expansión rápida solo en los siguientes casos:\n\n1) El dispositivo donde se encuentra el archivo contenedor no contiene datos confidenciales y no necesita una negación plausible.\n2) El dispositivo donde se encuentra el archivo contenedor ya se ha cifrado de forma segura y completa.\n\n¿Está seguro de que desea utilizar Expansión rápida?</entry>
<entry lang="es" key="EXPANDER_STATUS_TEXT">IMPORTANTE: Mueva el mouse de la forma más aleatoria posible dentro de esta ventana. Cuanto más tiempo lo mueva, mejor. Esto aumenta significativamente la fuerza criptográfica de las claves de cifrado. Luego haga clic en 'Continuar' para expandir el volumen.</entry>
<entry lang="es" key="EXPANDER_STATUS_TEXT_LEGACY">Haga clic en 'Continuar' para expandir el volumen.</entry>
<entry lang="es" key="EXPANDER_FINISH_ERROR">Error: la expansión del volumen falló.</entry>
<entry lang="es" key="EXPANDER_FINISH_ABORT">Error: operación abortada por el usuario.</entry>
<entry lang="es" key="EXPANDER_FINISH_OK">Terminado. Volumen expandido con éxito.</entry>
<entry lang="es" key="EXPANDER_CANCEL_WARNING">Advertencia: ¡La expansión del volumen está en progreso!\n\nDetenerse ahora puede resultar en un volumen dañado.\n\n¿Realmente quieres cancelar?</entry>
<entry lang="es" key="EXPANDER_STARTING_STATUS">Iniciando la expansión del volumen ...\n</entry>
<entry lang="es" key="EXPANDER_HIDDEN_VOLUME_ERROR">No se puede expandir un volumen externo que contenga un volumen oculto, porque esto destruye el volumen oculto.\n</entry>
<entry lang="es" key="EXPANDER_SYSTEM_VOLUME_ERROR">No se puede expandir un volumen del sistema VeraCrypt.</entry>
<entry lang="es" key="EXPANDER_NO_FREE_SPACE">No hay suficiente espacio libre para expandir el volumen</entry>
<entry lang="es" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Advertencia: El archivo contenedor es más grande que el área asignada al volumen VeraCrypt. Los datos después del área del volumen VeraCrypt se sobrescribirán.\n\n¿Quiere continuar?</entry>
<entry lang="es" key="EXPANDER_WARNING_FAT">Advertencia: ¡El volumen VeraCrypt contiene un sistema de archivos FAT!\n\nSolo se expandirá el volumen VeraCrypt en sí, pero no el sistema de archivos.\n\n¿Quiere continuar?</entry>
<entry lang="es" key="EXPANDER_WARNING_EXFAT">Advertencia: ¡El volumen VeraCrypt contiene un sistema de archivos exFAT!\n\nSolo se expandirá el volumen VeraCrypt en sí, pero no el sistema de archivos.\n\n¿Quiere continuar?</entry>
<entry lang="es" key="EXPANDER_WARNING_UNKNOWN_FS">Advertencia: ¡El volumen VeraCrypt contiene un sistema de archivos desconocido o ninguno!\n\nSolo se expandirá el volumen VeraCrypt en sí, el sistema de archivos permanece sin cambios.\n\n¿Quiere continuar?</entry>
<entry lang="es" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">Nuevo tamaño de volumen demasiado pequeño, debe ser al menos %I64u kB más grande que el tamaño actual.</entry>
<entry lang="es" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">Nuevo tamaño de volumen demasiado grande, no hay suficiente espacio en la unidad host.</entry>
<entry lang="es" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">¡Se excedió el tamaño máximo de archivo de %I64u MB en el dispositivo anfitrión!</entry>
<entry lang="es" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Error: ¡No se pudieron obtener los privilegios necesarios para habilitar la Expansión rápida!\nDesmarque la opción Expansión rápida e inténtelo de nuevo.</entry>
<entry lang="es" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">¡Se excedió el tamaño máximo de volumen de VeraCrypt de %I64u TB!\n</entry>
<entry lang="es" key="FULL_FORMAT">Formato completo</entry>
<entry lang="es" key="FAST_CREATE">Creación rápida</entry>
<entry lang="es" key="WARN_FAST_CREATE">ADVERTENCIA: Debe utilizar Creación rápida solo en los siguientes casos:\n\n1) El dispositivo no contiene datos confidenciales y no necesita una negación plausible.\n2) El dispositivo ya se ha cifrado de forma segura y completa.\n\n¿Está seguro de que desea utilizar Creación rápida?</entry>
<entry lang="es" key="IDC_ENABLE_EMV_SUPPORT">Habilitar soporte EMV</entry>
<entry lang="es" key="COMMAND_APDU_INVALID">El comando APDU enviado a la tarjeta no es válido.</entry>
<entry lang="es" key="EXTENDED_APDU_UNSUPPORTED">Los comandos APDU extendidos no se pueden usar con el token actual.</entry>
<entry lang="es" key="SCARD_MODULE_INIT_FAILED">Error al cargar la biblioteca WinSCard / PCSC.</entry>
<entry lang="es" key="EMV_UNKNOWN_CARD_TYPE">La tarjeta en el lector no es una tarjeta EMV compatible.</entry>
<entry lang="es" key="EMV_SELECT_AID_FAILED">No se pudo seleccionar el AID de la tarjeta en el lector.</entry>
<entry lang="es" key="EMV_ICC_CERT_NOTFOUND">El certificado de clave pública ICC no se encontró en la tarjeta.</entry>
<entry lang="es" key="EMV_ISSUER_CERT_NOTFOUND">El certificado de clave pública del emisor no se encontró en la tarjeta.</entry>
<entry lang="es" key="EMV_CPLC_NOTFOUND">No se encontró CPLC en la tarjeta EMV.</entry>
<entry lang="es" key="EMV_PAN_NOTFOUND">No se encontró ningún número de cuenta principal (PAN) en la tarjeta EMV.</entry>
<entry lang="es" key="INVALID_EMV_PATH">La ruta EMV no es válida.</entry>
<entry lang="es" key="EMV_KEYFILE_DATA_NOTFOUND">No se puede crear un archivo de claves a partir de los datos de la tarjeta EMV.\n\nFalta uno de los siguientes:\n- Certificado de clave pública ICC.\n- Certificado de clave pública del emisor.\n- Datos de CPLC.</entry>
<entry lang="es" key="SCARD_W_REMOVED_CARD">No hay tarjeta en el lector.\n\nAsegúrese de que la tarjeta esté correctamente insertada.</entry>
<entry lang="es" key="FORMAT_EXTERNAL_FAILED">El comando format.com de Windows no pudo formatear el volumen como NTFS/exFAT/ReFS: Error 0x%.8X.\n\nRecurriendo al uso de la API FormatEx de Windows.</entry>
<entry lang="es" key="FORMATEX_API_FAILED">La API FormatEx de Windows no pudo formatear el volumen como NTFS/exFAT/ReFS.\n\nEstado de error = %s.</entry>
<entry lang="es" key="EXPANDER_WRITING_RANDOM_DATA">Escribiendo datos aleatorios en el nuevo espacio ...\n</entry>
<entry lang="es" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Escribiendo encabezado de copia de seguridad recifrado ...\n</entry>
<entry lang="es" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Escribiendo encabezado principal recifrado ...\n</entry>
<entry lang="es" key="EXPANDER_WIPING_OLD_HEADER">Borrando el encabezado de copia de seguridad anterior ...\n</entry>
<entry lang="es" key="EXPANDER_MOUNTING_VOLUME">Montando volumen ...\n</entry>
<entry lang="es" key="EXPANDER_UNMOUNTING_VOLUME">Desmontando volumen ...\n</entry>
<entry lang="es" key="EXPANDER_EXTENDING_FILESYSTEM">Extendiendo el sistema de archivos ...\n</entry>
<entry lang="es" key="PARTIAL_SYSENC_MOUNT_READONLY">Advertencia: La partición del sistema que intentó montar no estaba completamente cifrada. Como medida de seguridad para evitar posibles daños o modificaciones no deseadas, el volumen '%s' se montó como de solo lectura.</entry>
<entry lang="es" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Información importante sobre el uso de extensiones de archivo de terceros</entry>
<entry lang="es" key="IDC_DISABLE_MEMORY_PROTECTION">Deshabilitar la protección de memoria para compatibilidad con herramientas de accesibilidad</entry>
<entry lang="es" key="DISABLE_MEMORY_PROTECTION_WARNING">ADVERTENCIA: Deshabilitar la protección de memoria reduce significativamente la seguridad. Habilite esta opción SOLO si confía en las herramientas de accesibilidad, como los lectores de pantalla, para interactuar con la interfaz de usuario de VeraCrypt.</entry>
<entry lang="es" key="LINUX_LANGUAGE">Idioma</entry>
<entry lang="es" key="LINUX_SELECT_SYS_DEFAULT_LANG">Seleccionar el idioma predeterminado del sistema</entry>
<entry lang="es" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">Para que el cambio de idioma surta efecto, VeraCrypt necesita reiniciarse.</entry>
<entry lang="es" key="ERR_XTS_MASTERKEY_VULNERABLE">ADVERTENCIA: La clave maestra del volumen es vulnerable a un ataque que compromete la seguridad de los datos.\n\nCree un nuevo volumen y transfiera los datos a él.</entry>
<entry lang="es" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">ADVERTENCIA: La clave maestra del sistema cifrado es vulnerable a un ataque que compromete la seguridad de los datos.\nDescifre la partición/unidad del sistema y luego vuelva a cifrarla.</entry>
<entry lang="es" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">ADVERTENCIA: La clave maestra del volumen tiene una vulnerabilidad de seguridad.</entry>
<entry lang="es" key="MOUNTPOINT_BLOCKED">ERROR: El punto de montaje del volumen está bloqueado porque sobrescribe un directorio protegido del sistema.\n\nElija un punto de montaje diferente.</entry>
<entry lang="es" key="MOUNTPOINT_NOTALLOWED">ERROR: No se permite el punto de montaje del volumen porque sobrescribe un directorio que forma parte de la ruta PATH.\n\nElija un punto de montaje diferente.</entry>
<entry lang="es" key="INSECURE_MODE">[MODO INSEGURO]</entry>
<entry lang="es" key="IDC_DISABLE_SCREEN_PROTECTION">Deshabilitar la protección contra capturas de pantalla y grabación de pantalla</entry>
<entry lang="es" key="DISABLE_SCREEN_PROTECTION_WARNING">ADVERTENCIA: Deshabilitar la protección de pantalla reduce significativamente la seguridad. Habilite esta opción SOLO si necesita capturar la interfaz de VeraCrypt por un motivo específico. Esto puede exponer datos sensibles a herramientas de captura de pantalla y funciones de grabación de pantalla, como Windows 11 Recall.</entry>
<entry lang="es" key="MEMORY_COST">Costo de Memoria</entry>
<entry lang="es" key="IDT_KDF_ALGO">Algoritmo KDF</entry>
<entry lang="es" key="IDD_PREFERENCES_TAB_GENERAL">General</entry>
<entry lang="es" key="IDD_PREFERENCES_TAB_ACTIONS">Acciones</entry>
<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_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>
<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>
</localization>
<entry lang="en" key="HIDDEN_CREDS_SAME_AS_OUTER">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry>
<entry lang="en" key="SYSENC_BITLOCKER_CONFLICT">VeraCrypt does not support encrypting a system drive that is already encrypted by BitLocker.</entry>
<entry lang="en" key="IDC_UPDATE_BOOTLOADER_ON_SHUTDOWN">Automatically fix boot configuration issues that may prevent Windows from starting</entry>
<entry lang="en" key="IDC_FORCE_NEXT_BOOT_VERACRYPT">Force machine to boot on VeraCrypt in the next startup</entry>
<entry lang="en" key="IDC_FORCE_VERACRYPT_BOOT_ENTRY">Force the presence of VeraCrypt entry in the EFI firmware boot menu</entry>
<entry lang="en" key="IDC_FORCE_VERACRYPT_FIRST_BOOT_ENTRY">Force VeraCrypt entry to be the first in the EFI firmware boot menu</entry>
<entry lang="en" key="RAM_ENCRYPTION_DISABLE_HIBERNATE">WARNING: RAM encryption is not compatible with Windows Hibernate and Windows Fast Startup features. VeraCrypt needs to disable them before activating RAM encryption.\n\nContinue?</entry>
<entry lang="en" key="CONFIRM_DISABLE_FAST_STARTUP">WARNING: Windows Fast Startup is enabled and it is known to cause issues when working with VeraCrypt volumes. It is advised to disable it for better security and usability.\n\nDo you want to disable Windows Fast Startup?</entry>
<entry lang="en" key="QUICK_FORMAT_HELP">In order to enable your operating system to mount your new volume, it has to be formatted with a filesystem. Please select a filesystem type.\n\nIf your volume is going to be hosted on a device or partition, you can use 'Quick format' to skip encryption of free space of the volume.</entry>
<entry lang="en" key="IDC_ENABLE_HARDWARE_ENCRYPTION_NEG">Do not accelerate AES encryption/decryption by using the AES instructions of the processor</entry>
<entry lang="en" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Add All Mounted Volumes to Favorites...</entry>
<entry lang="en" key="TASKICON_PREF_MENU_ITEMS">Task Icon Menu Items</entry>
<entry lang="en" key="TASKICON_PREF_OPEN_VOL">Open Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_DISMOUNT_VOL">Dismount Mounted Volumes</entry>
<entry lang="en" key="DISK_FREE">Free space available: {0}</entry>
<entry lang="en" key="VOLUME_SIZE_HELP">Please specify the size of the container to create. Note that the minimum possible size of a volume is 292 KiB.</entry>
<entry lang="en" key="LINUX_CONFIRM_INNER_VOLUME_CALC">WARNING: You have selected a filesystem other than FAT for the outer volume.\nPlease Note that in this case VeraCrypt can't calculate the exact maximum allowed size for the hidden volume and it will use only an estimation that can be wrong.\nThus, it is your responsibility to use an adequate value for the size of the hidden volume so that it does not overlap the outer volume.\n\nDo you want to continue using the selected filesystem for the outer volume?</entry>
<entry lang="en" key="LINUX_PREF_TAB_SECURITY">Security</entry>
<entry lang="en" key="LINUX_PREF_TAB_MOUNT_OPTIONS">Mount Options</entry>
<entry lang="en" key="LINUX_PREF_TAB_BACKGROUND_TASK">Background Task</entry>
<entry lang="en" key="LINUX_PREF_TAB_SYSTEM_INTEGRATION">System Integration</entry>
<entry lang="en" key="LINUX_PREF_TAB_SYSTEM_INTEGRATION_EXPLORER">Filesystem Explorer</entry>
<entry lang="en" key="LINUX_PREF_TAB_PERFORMANCE">Performance</entry>
<entry lang="en" key="LINUX_PREF_TAB_KEYFILES">Keyfiles</entry>
<entry lang="en" key="LINUX_PREF_TAB_TOKENS">Security Tokens</entry>
<entry lang="en" key="LINUX_PREF_KERNEL_SERVICES">Kernel Services</entry>
<entry lang="en" key="LINUX_PREF_KERNEL_CRYPT">Do not use kernel cryptographic services</entry>
<entry lang="en" key="LINUX_PREF_TAB_MOUNT_OPTIONS_FS">Filesystem</entry>
<entry lang="en" key="IDT_LINUX_PREF_TAB_MOUNT_OPTIONS">Mount options:</entry>
<entry lang="en" key="LINUX_CROSS_SUPPORT">Cross-Platform Support</entry>
<entry lang="en" key="LINUX_CROSS_SUPPORT_OTHER">I will mount the volume on other platforms</entry>
<entry lang="en" key="LINUX_CROSS_SUPPORT_OTHER_HELP">Choose this option if you need to use the volume on other platforms.</entry>
<entry lang="en" key="LINUX_CROSS_SUPPORT_ONLY">I will mount the volume only on {0}</entry>
<entry lang="en" key="LINUX_CROSS_SUPPORT_ONLY_HELP">Choose this option if you do not need to use the volume on other platforms.</entry>
<entry lang="en" key="LINUX_DESELECT">Deselect</entry>
<entry lang="en" key="LINUX_ADMIN_PW_QUERY">Enter your user password or administrator password:</entry>
<entry lang="en" key="LINUX_ADMIN_PW_QUERY_TITLE">Administrator privileges required</entry>
<entry lang="en" key="LINUX_VC_RUNNING_ALREADY">VeraCrypt is already running.</entry>
<entry lang="en" key="LINUX_SYSTEM_ENC_PW_LENGTH_NOTE">System Encryption password is longer than {0} characters.</entry>
<entry lang="en" key="LINUX_MOUNT_SYSTEM_ENC_PREBOOT">Mount partition &amp;using system encryption (preboot authentication)</entry>
<entry lang="en" key="LINUX_DO_NOT_MOUNT">Do &amp;not mount</entry>
<entry lang="en" key="LINUX_MOUNT_AT_DIR">Mount at directory:</entry>
<entry lang="en" key="LINUX_SELECT">Se&amp;lect...</entry>
<entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry>
<entry lang="en" key="LINUX_ENTERING_POWERSAVING">System is entering power saving mode</entry>
<entry lang="en" key="LINUX_LOGIN_ACTION">Actions to Perform when User Logs On</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Close all Explorer windows of volume being dismounted</entry>
<entry lang="en" key="LINUX_HOTKEYS">Hotkeys</entry>
<entry lang="en" key="LINUX_SYSTEM_HOTKEYS">System-Wide Hotkeys</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/dismount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_DISMOUNT">Display confirmation message box after dismount</entry>
<entry lang="en" key="LINUX_VC_QUITS">VeraCrypt quits</entry>
<entry lang="en" key="LINUX_OPEN_FINDER">Open Finder window for successfully mounted volume</entry>
<entry lang="en" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Please note that this setting takes effect only if use of the kernel cryptographic services is disabled.</entry>
<entry lang="en" key="LINUX_DISABLE_KERNEL_CRYPT_CONFIRM">Disabling the use of kernel cryptographic services can degrade performance.\n\nAre you sure?</entry>
<entry lang="en" key="LINUX_KERNEL_CRYPT_OPTION_CHANGE_MOUNTED_HINT">Please note that disabling this option may have no effect on volumes mounted using kernel cryptographic services.</entry>
<entry lang="en" key="LINUX_REMOUNT_BECAUSEOF_SETTING">Please note that any currently mounted volumes need to be remounted before they can use this setting.</entry>
<entry lang="en" key="LINUX_UNKNOWN_EXC_OCCURRED">Unknown exception occurred.</entry>
<entry lang="en" key="LINUX_FIRST_AID">"Disk Utility will be launched after you press 'OK'.\n\nPlease select your volume in the Disk Utility window and press 'Verify Disk' or 'Repair Disk' button on the 'First Aid' page.</entry>
<entry lang="en" key="LINUX_MOUNT_ALL_DEV">Mount All Devices</entry>
<entry lang="en" key="LINUX_ERROR_LOADING_CONFIG">Error while loading configuration files located in </entry>
<entry lang="en" key="LINUX_SELECT_FREE_SLOT">Please select a free drive slot from the list.</entry>
<entry lang="en" key="LINUX_MESSAGE_ON_MOUNT_AGAIN">\n\nDo you want to show this message next time you mount such a volume?</entry>
<entry lang="en" key="LINUX_WARNING">Warning</entry>
<entry lang="en" key="LINUX_ERROR">Error</entry>
<entry lang="en" key="LINUX_ONLY_TEXTMODE">This feature is currently supported only in text mode.</entry>
<entry lang="en" key="LINUX_FREE_SPACE_ON_DRIVE">Free space on drive {0}: is {1}.</entry>
<entry lang="en" key="LINUX_DYNAMIC_NOTICE">Please note that if your operating system does not allocate files from the beginning of the free space, the maximum possible hidden volume size may be much smaller than the size of the free space on the outer volume. This is not a bug in VeraCrypt but a limitation of the operating system.</entry>
<entry lang="en" key="LINUX_MAX_HIDDEN_SIZE">Maximum possible hidden volume size for this volume is {0}.</entry>
<entry lang="en" key="LINUX_OPEN_OUTER_VOL">Open Outer Volume</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not dismount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">Error: You are trying to encrypt a system drive.\n\nVeraCrypt can encrypt a system drive only under Windows.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">Error: You are trying to encrypt a system partition.\n\nVeraCrypt can encrypt system partitions only under Windows.</entry>
<entry lang="en" key="LINUX_WARNING_FORMAT_DESTROY_FS">WARNING: Formatting of the device will destroy all data on filesystem '{0}'.\n\nDo you want to continue?</entry>
<entry lang="en" key="LINUX_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please dismount '{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_DISMOUNTED">Volume {0} has been dismounted.</entry>
<entry lang="en" key="LINUX_OOM">Out of memory.</entry>
<entry lang="en" key="LINUX_CANT_GET_ADMIN_PRIV">Failed to obtain administrator privileges</entry>
<entry lang="en" key="LINUX_COMMAND_GET_ERROR">Command {0} returned error {1}.</entry>
<entry lang="en" key="LINUX_CMD_HELP">VeraCrypt Command Line Help</entry>
<entry lang="en" key="LINUX_HIDDEN_FILES_PRESENT_IN_KEYFILE_PATH">\n\nWarning: Hidden files are present in a keyfile path. If you need to use them as keyfiles, remove the leading dot from their filenames. Hidden files are visible only if enabled in system options.</entry>
<entry lang="en" key="LINUX_EX2MSG_DEVICESECTORSIZEMISMATCH">Storage device and VC volume sector size mismatch</entry>
<entry lang="en" key="LINUX_EX2MSG_ENCRYPTEDSYSTEMREQUIRED">This operation must be performed only when the system hosted on the volume is running.</entry>
<entry lang="en" key="LINUX_EX2MSG_INSUFFICIENTDATA">Not enough data available.</entry>
<entry lang="en" key="LINUX_EX2MSG_KERNELCRYPTOSERVICETESTFAILED">Kernel cryptographic service test failed. The cryptographic service of your kernel most likely does not support volumes larger than 2 TB.\n\nPossible solutions:\n- Upgrade the Linux kernel to version 2.6.33 or later.\n- Disable use of the kernel cryptographic services (Settings > Preferences > System Integration) or use 'nokernelcrypto' mount option on the command line.</entry>
<entry lang="en" key="LINUX_EX2MSG_LOOPDEVICESETUPFAILED">Failed to set up a loop device.</entry>
<entry lang="en" key="LINUX_EX2MSG_MISSINGARGUMENT">A required argument is missing.</entry>
<entry lang="en" key="LINUX_EX2MSG_MISSINGVOLUMEDATA">Volume data missing.</entry>
<entry lang="en" key="LINUX_EX2MSG_MOUNTPOINTREQUIRED">Mount point required.</entry>
<entry lang="en" key="LINUX_EX2MSG_MOUNTPOINTUNAVAILABLE">Mount point is already in use.</entry>
<entry lang="en" key="LINUX_EX2MSG_PASSWORDEMPTY">No password or keyfile specified.</entry>
<entry lang="en" key="LINUX_EX2MSG_PASSWORDORKEYBOARDLAYOUTINCORRECT">\n\nNote that pre-boot authentication passwords need to be typed in the pre-boot environment where non-US keyboard layouts are not available. Therefore, pre-boot authentication passwords must always be typed using the standard US keyboard layout (otherwise, the password will be typed incorrectly in most cases). However, note that you do NOT need a real US keyboard; you just need to change the keyboard layout in your operating system.</entry>
<entry lang="en" key="LINUX_EX2MSG_PASSWORDORMOUNTOPTIONSINCORRECT">\n\nNote: If you are attempting to mount a partition located on an encrypted system drive without pre-boot authentication or to mount the encrypted system partition of an operating system that is not running, you can do so by selecting 'Options >' > 'Mount partition using system encryption'.</entry>
<entry lang="en" key="LINUX_EX2MSG_PASSWORDTOOLONG">Password is longer than {0} characters.</entry>
<entry lang="en" key="LINUX_EX2MSG_PARTITIONDEVICEREQUIRED">Partition device required.</entry>
<entry lang="en" key="LINUX_EX2MSG_PROTECTIONPASSWORDINCORRECT">Incorrect password to the protected hidden volume or the hidden volume does not exist.</entry>
<entry lang="en" key="LINUX_EX2MSG_PROTECTIONPASSWORDKEYFILESINCORRECT">Incorrect keyfile(s) and/or password to the protected hidden volume or the hidden volume does not exist.</entry>
<entry lang="en" key="LINUX_EX2MSG_STRINGCONVERSIONFAILED">Invalid characters encountered.</entry>
<entry lang="en" key="LINUX_EX2MSG_STRINGFORMATTEREXCEPTION">Error while parsing formatted string.</entry>
<entry lang="en" key="LINUX_EX2MSG_TEMPORARYDIRECTORYFAILURE">Failed to create a file or directory in a temporary directory.\n\nPlease make sure that the temporary directory exists, its security permissions allow you to access it, and there is sufficient disk space.</entry>
<entry lang="en" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZEHIDDENVOLUMEPROTECTION">Error: The drive uses a sector size other than 512 bytes.\n\nDue to limitations of components available on your platform, outer volumes hosted on the drive cannot be mounted using hidden volume protection.\n\nPossible solutions:\n- Use a drive with 512-byte sectors.\n- Create a file-hosted volume (container) on the drive.\n- Backup the contents of the hidden volume and then update the outer volume.</entry>
<entry lang="en" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZENOKERNELCRYPTO">Error: The drive uses a sector size other than 512 bytes.\n\nDue to limitations of components available on your platform, partition/device-hosted volumes on the drive can only be mounted using kernel cryptographic services.\n\nPossible solutions:\n- Enable use of the kernel cryptographic services (Preferences > System Integration).\n- Use a drive with 512-byte sectors.\n- Create a file-hosted volume (container) on the drive.</entry>
<entry lang="en" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Error: The drive uses a sector size other than 512 bytes.\n\nDue to limitations of components available on your platform, partition/device-hosted volumes cannot be created/used on the drive.\n\nPossible solutions:\n- Create a file-hosted volume (container) on the drive.\n- Use a drive with 512-byte sectors.\n- Use VeraCrypt on another platform.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">The host file/device is already in use.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Volume slot unavailable.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires OSXFUSE 2.5 or above.</entry>
<entry lang="en" key="EXCEPTION_OCCURRED">Exception occurred</entry>
<entry lang="en" key="ENTER_PASSWORD">Enter password</entry>
<entry lang="en" key="ENTER_TC_VOL_PASSWORD">Enter VeraCrypt Volume Password</entry>
<entry lang="en" key="MOUNT">Mount</entry>
<entry lang="en" key="MOUNT_POINT">Mount Directory</entry>
<entry lang="en" key="NO_VOLUMES_MOUNTED">No volumes mounted.</entry>
<entry lang="en" key="OPEN_NEW_VOLUME">Specify a New VeraCrypt Volume</entry>
<entry lang="en" key="PARAMETER_INCORRECT">Parameter incorrect</entry>
<entry lang="en" key="SELECT_KEYFILES">Select Keyfiles</entry>
<entry lang="en" key="START_TC">Start VeraCrypt</entry>
<entry lang="en" key="VOLUME_ALREADY_MOUNTED">The volume {0} is already mounted.</entry>
<entry lang="en" key="UNKNOWN_OPTION">Unknown option</entry>
<entry lang="en" key="VOLUME_LOCATION">Volume Location</entry>
<entry lang="en" key="VOLUME_HOST_IN_USE">WARNING: The host file/device {0} is already in use!\n\nIgnoring this can cause undesired results including system instability. All applications that might be using the host file/device should be closed before mounting the volume.\n\nContinue mounting?</entry>
<entry lang="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
<xs:complexType>
+71 -192
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
@@ -135,8 +135,8 @@
<entry lang="et" key="IDC_FAVORITE_REMOVE">Eemalda</entry>
<entry lang="en" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Use favorite label as Explorer drive label</entry>
<entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key dismount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key dismount</entry>
<entry lang="et" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="en" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="et" key="IDC_HK_MOD_SHIFT">Shift</entry>
@@ -156,12 +156,12 @@
<entry lang="en" key="IDC_PIM_HELP">(Empty or 0 for default iterations)</entry>
<entry lang="et" key="IDC_PREF_BKG_TASK_ENABLE">Lubatud</entry>
<entry lang="et" key="IDC_PREF_CACHE_PASSWORDS">Hoia salasõna tüüreli mälus</entry>
<entry lang="et" key="IDC_PREF_UNMOUNT_INACTIVE">Auto-haagi lahti konteiner peale mitte kirjutamist/lugemist</entry>
<entry lang="et" key="IDC_PREF_UNMOUNT_LOGOFF">Kasutaja logib välja</entry>
<entry lang="en" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="et" key="IDC_PREF_UNMOUNT_POWERSAVING">Energiasäästurežiimi sisenemisel</entry>
<entry lang="et" key="IDC_PREF_UNMOUNT_SCREENSAVER">Ekraanisäästja käivitub</entry>
<entry lang="et" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Sunni lahti-haakima isegi kui failid/kataloogid on avatud</entry>
<entry lang="et" key="IDC_PREF_DISMOUNT_INACTIVE">Auto-haagi lahti konteiner peale mitte kirjutamist/lugemist</entry>
<entry lang="et" key="IDC_PREF_DISMOUNT_LOGOFF">Kasutaja logib välja</entry>
<entry lang="en" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="et" key="IDC_PREF_DISMOUNT_POWERSAVING">Energiasäästurežiimi sisenemisel</entry>
<entry lang="et" key="IDC_PREF_DISMOUNT_SCREENSAVER">Ekraanisäästja käivitub</entry>
<entry lang="et" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Sunni lahti-haakima isegi kui failid/kataloogid on avatud</entry>
<entry lang="et" key="IDC_PREF_LOGON_MOUNT_DEVICES">Haagi kõik seadme-baasil VeraCrypt konteinerid</entry>
<entry lang="en" key="IDC_PREF_LOGON_START">Start VeraCrypt Background Task</entry>
<entry lang="et" key="IDC_PREF_MOUNT_READONLY">Haagi konteiner kirjutuskaitstuna</entry>
@@ -169,7 +169,7 @@
<entry lang="et" key="IDC_PREF_OPEN_EXPLORER">Ava edukalt haagitud konteiner Exploreris</entry>
<entry lang="en" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">Temporarily cache password during "Mount Favorite Volumes" operations</entry>
<entry lang="en" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Use a different taskbar icon when there are mounted volumes</entry>
<entry lang="et" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Kustuta kogutud salasõnad automaatsel lahtihaakimisel</entry>
<entry lang="et" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Kustuta kogutud salasõnad automaatsel lahtihaakimisel</entry>
<entry lang="et" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Kustuta väljumisel kogutud salasõnad</entry>
<entry lang="en" key="IDC_PRESERVE_TIMESTAMPS">Preserve modification timestamp of file containers</entry>
<entry lang="et" key="IDC_RESET_HOTKEYS">Algseadista</entry>
@@ -269,14 +269,14 @@
<entry lang="en" key="IDT_ACCELERATION_OPTIONS">Hardware Acceleration</entry>
<entry lang="et" key="IDT_ASSIGN_HOTKEY">Otsetee</entry>
<entry lang="et" key="IDT_AUTORUN">AutoRun konfiguratsioon (autorun.inf)</entry>
<entry lang="et" key="IDT_AUTO_UNMOUNT">Auto-lahtihaakimine</entry>
<entry lang="et" key="IDT_AUTO_UNMOUNT_ON">Haagi kõik lahti kui:</entry>
<entry lang="et" key="IDT_AUTO_DISMOUNT">Auto-lahtihaakimine</entry>
<entry lang="et" key="IDT_AUTO_DISMOUNT_ON">Haagi kõik lahti kui:</entry>
<entry lang="en" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader Screen Options</entry>
<entry lang="et" key="IDT_CONFIRM_PASSWORD">Kinnita salasõna:</entry>
<entry lang="et" key="IDT_CURRENT">Jooksev</entry>
<entry lang="en" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">Display this custom message in the pre-boot authentication screen (24 characters maximum):</entry>
<entry lang="et" key="IDT_DEFAULT_MOUNT_OPTIONS">Vaikimisi haakevalikud</entry>
<entry lang="et" key="IDT_UNMOUNT_ACTION">Kiirklahvide valikud</entry>
<entry lang="et" key="IDT_DISMOUNT_ACTION">Kiirklahvide valikud</entry>
<entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry>
<entry lang="en" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Enable extended disk control codes support</entry>
<entry lang="en" key="IDT_FAVORITE_LABEL">Label of selected favorite volume:</entry>
@@ -291,11 +291,10 @@
<entry lang="et" key="IDT_NEW_PASSWORD">Salasõna:</entry>
<entry lang="en" key="IDT_PARALLELIZATION_OPTIONS">Thread-Based Parallelization</entry>
<entry lang="en" key="IDT_PKCS11_LIB_PATH">PKCS #11 Library Path</entry>
<entry lang="et" key="IDT_KDF">KDF:</entry>
<entry lang="en" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="et" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="en" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="et" key="IDT_PW_CACHE_OPTIONS">Salasõna vahemälu</entry>
<entry lang="en" key="IDT_SECURITY_OPTIONS">Security Options</entry>
<entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry>
<entry lang="et" key="IDT_TASKBAR_ICON">VeraCrypt taustakäsk</entry>
<entry lang="en" key="IDT_TRAVELER_MOUNT">VeraCrypt volume to mount (relative to traveler disk root):</entry>
<entry lang="en" key="IDT_TRAVEL_INSERTION">Upon insertion of traveler disk: </entry>
@@ -357,7 +356,7 @@
<entry lang="et" key="IDT_KEYFILE_WARNING">HOIATUS: Kui sa kaotad võtmefaili või isegi üks bit selle esimesest 1024 kilobaidist muutub, muutub võimatuks selle võtmefailiga konteinerite haakimine!</entry>
<entry lang="et" key="IDT_KEY_UNIT">bitti</entry>
<entry lang="en" key="IDT_NUMBER_KEYFILES">Number of keyfiles:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size (in Bytes):</entry>
<entry lang="en" key="IDT_KEYFILES_BASE_NAME">Keyfiles base name:</entry>
<entry lang="et" key="IDT_LANGPACK_AUTHORS">Tõlkija:</entry>
<entry lang="et" key="IDT_PLAINTEXT">Lihtteksti suurus:</entry>
@@ -390,7 +389,6 @@
<entry lang="en" key="ADMINISTRATOR">Administrator</entry>
<entry lang="et" key="ADMIN_PRIVILEGES_DRIVER">VeraCrypti tüüreli laadimiseks pead sa olema sisse logitud Administratori õigustes.</entry>
<entry lang="et" key="ADMIN_PRIVILEGES_WARN_DEVICES">Pane tähele, et krüptida/formaatida partitsiooni/seadet, pead sa olema sisse logitud Administraatori õigustes. See ei kehti faili-baasil konteineritele.</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="et" key="ADMIN_PRIVILEGES_WARN_HIDVOL">Peidetud konteineri loomiseks pead sa olema sisse logitud Administraatori õigustes.\n\nJätkan?</entry>
<entry lang="et" key="ADMIN_PRIVILEGES_WARN_NTFS">Pane tähele, et formaatida konteiner kui NTFS, pead sa olema sisse logitud Administraatori õigustes. Ilma Administraatori õigusteta saad sa konteineri formaatida kui FAT.</entry>
<entry lang="en" key="AES_HELP">FIPS-approved cipher (Rijndael, published in 1998) that may be used by U.S. government departments and agencies to protect classified information up to the Top Secret level. 256-bit key, 128-bit block, 14 rounds (AES-256). Mode of operation is XTS.</entry>
@@ -423,8 +421,8 @@
<entry lang="en" key="DEVICE_FREE_PB">Size of %s is %.2f PB</entry>
<entry lang="et" key="DEVICE_IN_USE_FORMAT">HOIATUS: Seade/partitsioon on kasutuses rakenduste või operatsioonisüsteemi poolt. Seadme/partitsiooni formaatimine võib põhjustada andmekadu ja süsteemi ebastabiilsust.\n\nJätkan?</entry>
<entry lang="en" key="DEVICE_IN_USE_INPLACE_ENC">Warning: The partition is in use by the operating system or applications. You should close any applications that might be using the partition (including antivirus software).\n\nContinue?</entry>
<entry lang="et" key="FORMAT_CANT_UNMOUNT_FILESYS">Viga: seade/partitsioon sisaldab failisüsteemi, mida ei saa lahti haakida. Failisüsteem võib olla kasutuses operatsioonisüsteemi poolt. Seadme/partitsiooni formaatimine põhjustab väga tõenäoliselt andmete kao ja süsteemi ebastabiilsuse.\n\nSelle lahendamiseks soovitame, et sa kõigepealt kustutad selle partitsiooni ja siis lood ilma formaatimata uuesti. Selle tegemiseks järgi järgmisi juhtnööre: 1) Parem-klikk 'Arvuti' (või 'Minu Arvuti') ikooni peal Start menüüs ja vali 'Manage'. 'Computer Managemant' aken peaks kuvatama. 2) 'Computer Managemant' aknas vali 'Storage' &gt; 'Disk Management'. 3) Parem-klikk partitsiooni, mida soovid krüpteerida ja vali 'Delete Partition' või 'Delete Volume' või 'Delete Logical Drive'. 4) Kliki 'Jah'. Kui Windows käseb taaskäivitada, tee seda. Siis korda samme 1 ja 2 ja jätka sammuga 5. 5) Parem-kliki kasutamata/vaba ruumi peal ja vali 'New Partition' või 'New Simple Volume' või 'New Logical Drive'. 6) 'New Partition Wizard' või 'New Simple Volume Wizard' aken peaks ilmuma; järgi selle instruktsioone. Viisardi aknal tiitliga 'Format Partition' vali 'Do not format this partition' või 'Do not format this volume'. Samas viisardis kliki 'Next' ja siis 'Finish'. 7) Pane tähele, et seadme tee VeraCryptis võib olla vale. Seetõttu välju VeraCrypti konteineri loomise nõustaja (kui see ikka käib) ja käivita see uuesti. 8) Proovi krüptida seadet/partitsiooni uuesti.\n\nKui VeraCrypt korduvalt ebaõnnestub seadme/partitsiooni krüpteerimisega, võid kaaluda faili baasil konteineri loomist.</entry>
<entry lang="en" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Error: The filesystem could not be locked and/or unmounted. It may be in use by the operating system or applications (for example, antivirus software). Encrypting the partition might cause data corruption and system instability.\n\nPlease close any applications that might be using the filesystem (including antivirus software) and try again. If it does not help, please follow the below steps.</entry>
<entry lang="et" key="FORMAT_CANT_DISMOUNT_FILESYS">Viga: seade/partitsioon sisaldab failisüsteemi, mida ei saa lahti haakida. Failisüsteem võib olla kasutuses operatsioonisüsteemi poolt. Seadme/partitsiooni formaatimine põhjustab väga tõenäoliselt andmete kao ja süsteemi ebastabiilsuse.\n\nSelle lahendamiseks soovitame, et sa kõigepealt kustutad selle partitsiooni ja siis lood ilma formaatimata uuesti. Selle tegemiseks järgi järgmisi juhtnööre: 1) Parem-klikk 'Arvuti' (või 'Minu Arvuti') ikooni peal Start menüüs ja vali 'Manage'. 'Computer Managemant' aken peaks kuvatama. 2) 'Computer Managemant' aknas vali 'Storage' &gt; 'Disk Management'. 3) Parem-klikk partitsiooni, mida soovid krüpteerida ja vali 'Delete Partition' või 'Delete Volume' või 'Delete Logical Drive'. 4) Kliki 'Jah'. Kui Windows käseb taaskäivitada, tee seda. Siis korda samme 1 ja 2 ja jätka sammuga 5. 5) Parem-kliki kasutamata/vaba ruumi peal ja vali 'New Partition' või 'New Simple Volume' või 'New Logical Drive'. 6) 'New Partition Wizard' või 'New Simple Volume Wizard' aken peaks ilmuma; järgi selle instruktsioone. Viisardi aknal tiitliga 'Format Partition' vali 'Do not format this partition' või 'Do not format this volume'. Samas viisardis kliki 'Next' ja siis 'Finish'. 7) Pane tähele, et seadme tee VeraCryptis võib olla vale. Seetõttu välju VeraCrypti konteineri loomise nõustaja (kui see ikka käib) ja käivita see uuesti. 8) Proovi krüptida seadet/partitsiooni uuesti.\n\nKui VeraCrypt korduvalt ebaõnnestub seadme/partitsiooni krüpteerimisega, võid kaaluda faili baasil konteineri loomist.</entry>
<entry lang="en" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Error: The filesystem could not be locked and/or dismounted. It may be in use by the operating system or applications (for example, antivirus software). Encrypting the partition might cause data corruption and system instability.\n\nPlease close any applications that might be using the filesystem (including antivirus software) and try again. If it does not help, please follow the below steps.</entry>
<entry lang="et" key="DEVICE_IN_USE_INFO">HOIATUS: Mõni haagitud seade/partitsioon on juba kasutuses!\n\nSelle ignoreerimine võib põhjustada soovimatuid tagajärgi k.a süsteemi ebastabiilsust.\n\nSoovitame rangelt sulgeda rakendused, mis võivad kasutada seadmeid/partitsioone.</entry>
<entry lang="et" key="DEVICE_PARTITIONS_ERR">Valitud seade sisaldab partitsioone.\n\nSeadme formaatimine võib põhjustada süsteemi ebastabiilsust ja/või andmete korrumpeerumist. Palun vali kas üks partitsioon seadmel või eemalda kõik partitsioonid, et VeraCrypt saaks seadme turvaliselt formaatida.</entry>
<entry lang="en" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">The selected non-system device contains partitions.\n\nEncrypted device-hosted VeraCrypt volumes can be created within devices that do not contain any partitions (including hard disks and solid-state drives). A device that contains partitions can be entirely encrypted in place (using a single master key) only if it is the drive where Windows is installed and from which it boots.\n\nIf you want to encrypt the selected non-system device using a single master key, you will need to remove all partitions on the device first to enable VeraCrypt to format it safely (formatting a device that contains partitions might cause system instability and/or data corruption). Alternatively, you can encrypt each partition on the drive individually (each partition will be encrypted using a different master key).\n\nNote: If you want to remove all partitions from a GPT disk, you may need to convert it to a MBR disk (using e.g. the Computer Management tool) in order to remove hidden partitions.</entry>
@@ -525,7 +523,7 @@
<entry lang="et" key="HIDVOL_FORMAT_FINISHED_TITLE">Peidetud konteiner lodud</entry>
<entry lang="en" key="HIDVOL_FORMAT_FINISHED_HELP">The hidden VeraCrypt volume has been successfully created and is ready for use. If all the instructions have been followed and if the precautions and requirements listed in the section "Security Requirements and Precautions Pertaining to Hidden Volumes" in the VeraCrypt User's Guide are followed, it should be impossible to prove that the hidden volume exists, even when the outer volume is mounted.\n\nWARNING: IF YOU DO NOT PROTECT THE HIDDEN VOLUME (FOR INFORMATION ON HOW TO DO SO, REFER TO THE SECTION "PROTECTION OF HIDDEN VOLUMES AGAINST DAMAGE" IN THE VERACRYPT USER'S GUIDE), DO NOT WRITE TO THE OUTER VOLUME. OTHERWISE, YOU MAY OVERWRITE AND DAMAGE THE HIDDEN VOLUME!</entry>
<entry lang="en" key="FIRST_HIDDEN_OS_BOOT_INFO">You have started the hidden operating system. As you may have noticed, the hidden operating system appears to be installed on the same partition as the original operating system. However, in reality, it is installed within the partition behind it (in the hidden volume). All read and write operations are being transparently redirected from the original system partition to the hidden volume.\n\nNeither the operating system nor applications will know that data written to and read from the system partition are actually written to and read from the partition behind it (from/to a hidden volume). Any such data is encrypted and decrypted on the fly as usual (with an encryption key different from the one that will be used for the decoy operating system).\n\n\nPlease click Next to continue.</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP_SYSENC">The outer volume has been created and mounted as drive %hc:. To this outer volume you should now copy some sensitive-looking files that you actually do NOT want to hide. They will be there for anyone forcing you to disclose the password for the first partition behind the system partition, where both the outer volume and the hidden volume (containing the hidden operating system) will reside. You will be able to reveal the password for this outer volume, and the existence of the hidden volume (and of the hidden operating system) will remain secret.\n\nIMPORTANT: The files you copy to the outer volume should not occupy more than %s. Otherwise, there may not be enough free space on the outer volume for the hidden volume (and you will not be able to continue). After you finish copying, click Next (do not unmount the volume).</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP_SYSENC">The outer volume has been created and mounted as drive %hc:. To this outer volume you should now copy some sensitive-looking files that you actually do NOT want to hide. They will be there for anyone forcing you to disclose the password for the first partition behind the system partition, where both the outer volume and the hidden volume (containing the hidden operating system) will reside. You will be able to reveal the password for this outer volume, and the existence of the hidden volume (and of the hidden operating system) will remain secret.\n\nIMPORTANT: The files you copy to the outer volume should not occupy more than %s. Otherwise, there may not be enough free space on the outer volume for the hidden volume (and you will not be able to continue). After you finish copying, click Next (do not dismount the volume).</entry>
<entry lang="et" key="HIDVOL_HOST_FILLING_HELP">Väline konteiner on edukalt loodud ja haagitud kui draiv %hc:. Sellesse konteinerisse peaksid sa nüüd kopeerima tundliku välimusega faile, mida sa tegelikult EI TAHA peita. Need failid on neile, kes sunnivad sind salasõna avaldama. Vajadusel avaldad ainult selle välise konteineri, mitte peidetud konteineri salasõna. Failid, mida tegelikult tahad kaitsta, on salvestatud peidetud konteinerisse, mille loome hiljem. Kopeerimise lõpetamisel kliki 'Edasi'. Ära haagi konteinerit lahti.\n\nMärkus: peale Edasi klikkimist skanneeritakse välise konteineri klastrikaart leidmaks sekkumata vaba ala suurus, mis on ka peidetud konteineri maksimaalne suurus ja mille lõpp on konteineri lõpp. See ala majutab peidetud konteineri, seega limiteerib selle maksimaalse suuruse. Klastrikaardi skanneerimine tagab, et peidetud konteiner ei kirjuta üle andmeid välises konteineris.</entry>
<entry lang="et" key="HIDVOL_HOST_FILLING_TITLE">Välimise konteineri sisu</entry>
<entry lang="et" key="HIDVOL_HOST_PRE_CIPHER_HELP">\n\nJärgnevatel sammudel sätid valikud välisele konteinerile (mille sisse hiljem luuakse sisemine konteiner).</entry>
@@ -535,9 +533,9 @@
<entry lang="en" key="HIDDEN_OS_PRE_CIPHER_WARNING">IMPORTANT: Please remember the algorithms that you select in this step. You will have to select the same algorithms for the decoy system. Otherwise, the hidden system will be inaccessible! (The decoy system must be encrypted with the same encryption algorithm as the hidden system.)\n\nNote: The reason is that the decoy system and the hidden system will share a single boot loader, which supports only a single algorithm, selected by the user (for each algorithm, there is a special version of the VeraCrypt Boot Loader).</entry>
<entry lang="et" key="HIDVOL_PRE_CIPHER_HELP">\n\nKonteineri klastrikaart on skännitud ja maksimaalne peidetud konteineri maht leitud. Järgnevatel sammudel saad valida valikud ning peidetud konteineri maksimumsuuruse ja selle salasõna.</entry>
<entry lang="et" key="HIDVOL_PRE_CIPHER_TITLE">Peidetud konteiner</entry>
<entry lang="en" key="HIDVOL_PROT_WARN_AFTER_MOUNT">The hidden volume is now protected against damage until the outer volume is unmounted.\n\nWARNING: If any data is attempted to be saved to the hidden volume area, VeraCrypt will start write-protecting the entire volume (both the outer and the hidden part) until it is unmounted. This may cause filesystem corruption on the outer volume, which (if repeated) might adversely affect plausible deniability of the hidden volume. Therefore, you should make every effort to avoid writing to the hidden volume area. Any data being saved to the hidden volume area will not be saved and will be lost. Windows may report this as a write error ("Delayed Write Failed" or "The parameter is incorrect").</entry>
<entry lang="en" key="HIDVOL_PROT_WARN_AFTER_MOUNT_PLURAL">Each of the hidden volumes within the newly mounted volumes is now protected against damage until unmounted.\n\nWARNING: If any data is attempted to be saved to protected hidden volume area of any of these volumes, VeraCrypt will start write-protecting the entire volume (both the outer and the hidden part) until it is unmounted. This may cause filesystem corruption on the outer volume, which (if repeated) might adversely affect plausible deniability of the hidden volume. Therefore, you should make every effort to avoid writing to the hidden volume area. Any data being saved to protected hidden volume areas will not be saved and will be lost. Windows may report this as a write error ("Delayed Write Failed" or "The parameter is incorrect").</entry>
<entry lang="en" key="DAMAGE_TO_HIDDEN_VOLUME_PREVENTED">WARNING: Data were attempted to be saved to the hidden volume area of the volume mounted as %c:! VeraCrypt prevented these data from being saved in order to protect the hidden volume. This may have caused filesystem corruption on the outer volume and Windows may have reported a write error ("Delayed Write Failed" or "The parameter is incorrect"). The entire volume (both the outer and the hidden part) will be write-protected until it is unmounted. If this is not the first time VeraCrypt has prevented data from being saved to the hidden volume area of this volume, plausible deniability of this hidden volume might be adversely affected (due to possible unusual correlated inconsistencies within the outer volume file system). Therefore, you should consider creating a new VeraCrypt volume (with Quick Format disabled) and moving files from this volume to the new volume; this volume should be securely erased (both the outer and the hidden part). We strongly recommend that you restart the operating system now.</entry>
<entry lang="en" key="HIDVOL_PROT_WARN_AFTER_MOUNT">The hidden volume is now protected against damage until the outer volume is dismounted.\n\nWARNING: If any data is attempted to be saved to the hidden volume area, VeraCrypt will start write-protecting the entire volume (both the outer and the hidden part) until it is dismounted. This may cause filesystem corruption on the outer volume, which (if repeated) might adversely affect plausible deniability of the hidden volume. Therefore, you should make every effort to avoid writing to the hidden volume area. Any data being saved to the hidden volume area will not be saved and will be lost. Windows may report this as a write error ("Delayed Write Failed" or "The parameter is incorrect").</entry>
<entry lang="en" key="HIDVOL_PROT_WARN_AFTER_MOUNT_PLURAL">Each of the hidden volumes within the newly mounted volumes is now protected against damage until dismounted.\n\nWARNING: If any data is attempted to be saved to protected hidden volume area of any of these volumes, VeraCrypt will start write-protecting the entire volume (both the outer and the hidden part) until it is dismounted. This may cause filesystem corruption on the outer volume, which (if repeated) might adversely affect plausible deniability of the hidden volume. Therefore, you should make every effort to avoid writing to the hidden volume area. Any data being saved to protected hidden volume areas will not be saved and will be lost. Windows may report this as a write error ("Delayed Write Failed" or "The parameter is incorrect").</entry>
<entry lang="en" key="DAMAGE_TO_HIDDEN_VOLUME_PREVENTED">WARNING: Data were attempted to be saved to the hidden volume area of the volume mounted as %c:! VeraCrypt prevented these data from being saved in order to protect the hidden volume. This may have caused filesystem corruption on the outer volume and Windows may have reported a write error ("Delayed Write Failed" or "The parameter is incorrect"). The entire volume (both the outer and the hidden part) will be write-protected until it is dismounted. If this is not the first time VeraCrypt has prevented data from being saved to the hidden volume area of this volume, plausible deniability of this hidden volume might be adversely affected (due to possible unusual correlated inconsistencies within the outer volume file system). Therefore, you should consider creating a new VeraCrypt volume (with Quick Format disabled) and moving files from this volume to the new volume; this volume should be securely erased (both the outer and the hidden part). We strongly recommend that you restart the operating system now.</entry>
<entry lang="en" key="CANNOT_SATISFY_OVER_4G_FILE_SIZE_REQ">You have indicated intent to store files larger than 4 GB on the volume. This requires the volume to be formatted as NTFS, which, however, will not be possible.</entry>
<entry lang="en" key="CANNOT_CREATE_NON_HIDDEN_NTFS_VOLUMES_UNDER_HIDDEN_OS">Please note that when a hidden operating system is running, non-hidden VeraCrypt volumes cannot be formatted as NTFS. The reason is that the volume would need to be temporarily mounted without write protection in order to allow the operating system to format it as NTFS (whereas formatting as FAT is performed by VeraCrypt, not by the operating system, and without mounting the volume). For further technical details, see below. You can create a non-hidden NTFS volume from within the decoy operating system.</entry>
<entry lang="en" key="HIDDEN_VOL_CREATION_UNDER_HIDDEN_OS_HOWTO">For security reasons, when a hidden operating system is running, hidden volumes can be created only in the 'direct' mode (because outer volumes must always be mounted as read-only). To create a hidden volume securely, follow these steps:\n\n1) Boot the decoy system.\n\n2) Create a normal VeraCrypt volume and, to this volume, copy some sensitive-looking files that you actually do NOT want to hide (the volume will become the outer volume).\n\n3) Boot the hidden system and start the VeraCrypt Volume Creation Wizard. If the volume is file-hosted, move it to the system partition or to another hidden volume (otherwise, the newly created hidden volume would be mounted as read-only and could not be formatted). Follow the instructions in the wizard so as to select the 'direct' hidden volume creation mode.\n\n4) In the wizard, select the volume you created in step 2 and then follow the instructions to create a hidden volume within it.</entry>
@@ -590,7 +588,7 @@
<entry lang="en" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">Error: The files you copied to the outer volume occupy too much space. Therefore, there is not enough free space on the outer volume for the hidden volume.\n\nNote that the hidden volume must be as large as the system partition (the partition where the currently running operating system is installed). The reason is that the hidden operating system needs to be created by copying the content of the system partition to the hidden volume.\n\n\nThe process of creation of the hidden operating system cannot continue.</entry>
<entry lang="et" key="OPENFILES_DRIVER">Tüürel on võimetu konteinerit lahti haakima. Osad failid antud konteineril on tõenäoliselt ikka avatud.</entry>
<entry lang="et" key="OPENFILES_LOCK">Võimetu konteinerit lukustama. Konteineril on ikka failid avatud. Seetõttu ei saa seda lahti haakida.</entry>
<entry lang="en" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt cannot lock the volume because it is in use by the system or applications (there may be open files on the volume).\n\nDo you want to force unmount on the volume?</entry>
<entry lang="en" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt cannot lock the volume because it is in use by the system or applications (there may be open files on the volume).\n\nDo you want to force dismount on the volume?</entry>
<entry lang="et" key="OPEN_VOL_TITLE">Vali VeraCrypti konteiner</entry>
<entry lang="et" key="OPEN_TITLE">Täpsusta failitee ja faili nimi</entry>
<entry lang="en" key="SELECT_PKCS11_MODULE">Select PKCS #11 Library</entry>
@@ -613,7 +611,7 @@
<entry lang="en" key="FAVORITE_PIM_CHANGED">This volume is registered as a System Favorite and its PIM was changed.\nDo you want VeraCrypt to automatically update the System Favorite configuration (administrator privileges required)?\n\nPlease note that if you answer no, you'll have to update the System Favorite manually.</entry>
<entry lang="en" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">IMPORTANT: If you did not destroy your VeraCrypt Rescue Disk, your system partition/drive can still be decrypted using the old password (by booting the VeraCrypt Rescue Disk and entering the old password). You should create a new VeraCrypt Rescue Disk and then destroy the old one.\n\nDo you want to create a new VeraCrypt Rescue Disk?</entry>
<entry lang="en" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">Note that your VeraCrypt Rescue Disk still uses the previous algorithm. If you consider the previous algorithm insecure, you should create a new VeraCrypt Rescue Disk and then destroy the old one.\n\nDo you want to create a new VeraCrypt Rescue Disk?</entry>
<entry lang="en" key="KEYFILES_NOTE">Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="en" key="KEYFILES_NOTE">Any kind of file (for example, .mp3, .jpg, .zip, .avi) may be used as a VeraCrypt keyfile. Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="et" key="KEYFILE_CHANGED">Võtmefail(id) edukalt lisatud/eemaldatud.</entry>
<entry lang="en" key="KEYFILE_EXPORTED">Keyfile exported.</entry>
<entry lang="et" key="PKCS5_PRF_CHANGED">Päise võtme derivatsioonalgoritm edukalt sätitud.</entry>
@@ -632,12 +630,12 @@
<entry lang="en" key="PASSWORD_HIDDEN_OS_TITLE">Password for Hidden Operating System</entry>
<entry lang="et" key="PASSWORD_LENGTH_WARNING">HOIATUS: Lühikesi salasõnu on kerge murda kasutades toore jõu tehnikaid!\n\nMe soovitame valida salasõna, mis koosneb enam kui 20-st sümbolist.\n\nOled kindel, et soovid kasutada lühikest salasõna?</entry>
<entry lang="et" key="PASSWORD_TITLE">Konteineri salasõna</entry>
<entry lang="et" key="PASSWORD_WRONG">Operatsioon ebaõnnestus ühe või mitme järgmise põhjuse tõttu:\n - Vale salasõna.\n - Vale Volume PIM number.\n - Vale PRF (räsi).\n - Ei ole kehtiv maht.\n - Maht kasutab vana algoritmi, mis on eemaldatud.\n - TrueCrypt formaadi mahud ei ole enam toetatud.</entry>
<entry lang="et" key="PASSWORD_OR_KEYFILE_WRONG">Operatsioon ebaõnnestus ühe või mitme järgmise põhjuse tõttu:\n - Vale võtmefail(id).\n - Vale salasõna.\n - Vale Volume PIM number.\n - Vale PRF (räsi).\n - Ei ole kehtiv maht.\n - Maht kasutab vana algoritmi, mis on eemaldatud.\n - TrueCrypt formaadi mahud ei ole enam toetatud.</entry>
<entry lang="et" key="PASSWORD_OR_MODE_WRONG">Operatsioon ebaõnnestus ühe või mitme järgmise põhjuse tõttu:\n - Vale paigaldusrežiim.\n - Vale salasõna.\n - Vale Volume PIM number.\n - Vale PRF (räsi).\n - Ei ole kehtiv maht.\n - Maht kasutab vana algoritmi, mis on eemaldatud.\n - TrueCrypt formaadi mahud ei ole enam toetatud.</entry>
<entry lang="et" key="PASSWORD_OR_KEYFILE_OR_MODE_WRONG">Operatsioon ebaõnnestus ühe või mitme järgmise põhjuse tõttu:\n - Vale paigaldusrežiim.\n - Vale võtmefail(id).\n - Vale salasõna.\n - Vale Volume PIM number.\n - Vale PRF (räsi).\n - Ei ole kehtiv maht.\n - Maht kasutab vana algoritmi, mis on eemaldatud.\n - TrueCrypt formaadi mahud ei ole enam toetatud.</entry>
<entry lang="et" key="PASSWORD_WRONG_AUTOMOUNT">Automaatne paigaldamine ebaõnnestus ühe või mitme järgmise põhjuse tõttu:\n - Vale salasõna.\n - Vale Volume PIM number.\n - Vale PRF (räsi).\n - Ühtegi kehtivat mahtu ei leitud.\n - Maht kasutab vana algoritmi, mis on eemaldatud.\n - TrueCrypt formaadi mahud ei ole enam toetatud.</entry>
<entry lang="et" key="PASSWORD_OR_KEYFILE_WRONG_AUTOMOUNT">Automaatne paigaldamine ebaõnnestus ühe või mitme järgmise põhjuse tõttu:\n - Vale võtmefail(id).\n - Vale salasõna.\n - Vale Volume PIM number.\n - Vale PRF (räsi).\n - Ühtegi kehtivat mahtu ei leitud.\n - Maht kasutab vana algoritmi, mis on eemaldatud.\n - TrueCrypt formaadi mahud ei ole enam toetatud.</entry>
<entry lang="et" key="PASSWORD_WRONG">Vale salasõna või pole VeraCrypti konteiner.</entry>
<entry lang="et" key="PASSWORD_OR_KEYFILE_WRONG">Ebakorrektne võtmefail(id) ja/või salasõna või pole tegemist VeraCrypti konteineriga.</entry>
<entry lang="en" key="PASSWORD_OR_MODE_WRONG">Operation failed due to one or more of the following:\n - Wrong mount mode.\n - Incorrect password.\n - Incorrect Volume PIM number.\n - Incorrect PRF (hash).\n - Not a valid volume.</entry>
<entry lang="en" key="PASSWORD_OR_KEYFILE_OR_MODE_WRONG">Operation failed due to one or more of the following:\n - Wrong mount mode.\n - Incorrect keyfile(s).\n - Incorrect password.\n - Incorrect Volume PIM number.\n - Incorrect PRF (hash).\n - Not a valid volume.</entry>
<entry lang="et" key="PASSWORD_WRONG_AUTOMOUNT">Ebakorrektne salasõna või pole VeraCrypti konteinerit leitud.</entry>
<entry lang="et" key="PASSWORD_OR_KEYFILE_WRONG_AUTOMOUNT">Ebakorrektsed võtmefailid/salasõna või pole VeraCrypti konteinerit leitud.</entry>
<entry lang="et" key="PASSWORD_WRONG_CAPSLOCK_ON">\n\nHOIATUS: Tõstuklahv on sees. See võib põhjustada salasõna ebakorrektset sisestust.</entry>
<entry lang="en" key="PIM_CHANGE_WARNING">Remember Number to Mount Volume</entry>
<entry lang="en" key="PIM_HIDVOL_HOST_TITLE">Outer Volume PIM</entry>
@@ -729,7 +727,7 @@
<entry lang="en" key="DLL_FILES">Library Modules</entry>
<entry lang="et" key="FORMAT_NTFS_STOP">NTFS formaatimist ei saa jätkata.</entry>
<entry lang="et" key="CANT_MOUNT_VOLUME">Ei suuda konteinerit haakida.</entry>
<entry lang="et" key="CANT_UNMOUNT_VOLUME">Ei suuda konteinerit lahti haakida.</entry>
<entry lang="et" key="CANT_DISMOUNT_VOLUME">Ei suuda konteinerit lahti haakida.</entry>
<entry lang="et" key="FORMAT_NTFS_FAILED">Windows ebaõnnestus konteineri NTFS-i formaatimisega.\n\nPalun vali teist tüüpi failisüsteem (kui võimalik) ja proovi uuesti. Alternatiivina saad jätta konteineri formaatimata (vali 'Puudub' failisüsteemina), välju sellest nõustajast, haagi konteiner ja siis kasuta süsteemi või 3-nda osapoole tööriista haagitud konteineri formaatimiseks (konteiner jääb krüpteerituks).</entry>
<entry lang="en" key="FORMAT_NTFS_FAILED_ASK_FAT">Windows failed to format the volume as NTFS.\n\nDo you want to format the volume as FAT instead?</entry>
<entry lang="et" key="DEFAULT">Vaikimisi</entry>
@@ -771,7 +769,7 @@
<entry lang="en" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">An error prevented VeraCrypt from encrypting the partition. Please try fixing any previously reported problems and then try again. If the problems persist, it might help to follow the below steps.</entry>
<entry lang="en" key="INPLACE_ENC_GENERIC_ERR_RESUME">An error prevented VeraCrypt from resuming the process of encryption of the partition.\n\nPlease try fixing any previously reported problems and then try resuming the process again. Note that the volume cannot be mounted until it has been fully encrypted.</entry>
<entry lang="en" key="INPLACE_DEC_GENERIC_ERR">An error prevented VeraCrypt from decrypting the volume. Please try fixing any previously reported problems and then try again if possible.</entry>
<entry lang="et" key="CANT_UNMOUNT_OUTER_VOL">Viga: välise konteineri lahtihaakimine ebaõnnestus!\n\nKonteinerit ei saa lahti haakida, kui see sisaldab faile, katalooge, mis kasutuses süsteemi või mõne rakenduse poolt.\n\nPalun sulge iga programm, mis võib kasutada faile või katalooge ja kliki Proovi uuesti.</entry>
<entry lang="et" key="CANT_DISMOUNT_OUTER_VOL">Viga: välise konteineri lahtihaakimine ebaõnnestus!\n\nKonteinerit ei saa lahti haakida, kui see sisaldab faile, katalooge, mis kasutuses süsteemi või mõne rakenduse poolt.\n\nPalun sulge iga programm, mis võib kasutada faile või katalooge ja kliki Proovi uuesti.</entry>
<entry lang="en" key="CANT_GET_OUTER_VOL_INFO">Error: Cannot obtain information about the outer volume!\nVolume creation cannot continue.</entry>
<entry lang="et" key="CANT_ACCESS_OUTER_VOL">Viga: ei pääse välisele konteinerile ligi! Konteineri loomine katkestatud.</entry>
<entry lang="et" key="CANT_MOUNT_OUTER_VOL">Viga: ei õnnestu välise konteineri haakimine! Konteineri loomine katkestatud.</entry>
@@ -813,7 +811,7 @@
<entry lang="en" key="SECONDARY_KEY_SIZE_LRW">Tweak Key Size (LRW Mode)</entry>
<entry lang="et" key="BITS">bitti</entry>
<entry lang="et" key="BLOCK_SIZE">Bloki maht</entry>
<entry lang="et" key="KDF">KDF</entry>
<entry lang="et" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="et" key="PKCS5_ITERATIONS">PKCS-5 iteratsiooni loend</entry>
<entry lang="et" key="VOLUME_CREATE_DATE">Konteiner loodud</entry>
<entry lang="et" key="VOLUME_HEADER_DATE">Päist viimati muudetud</entry>
@@ -855,7 +853,7 @@
<entry lang="en" key="TC_INSTALLER_IS_RUNNING">VeraCrypt Installer is currently running on this system and performing or preparing installation or update of VeraCrypt. Before you proceed, please wait for it to finish or close it. If you cannot close it, please restart your computer before proceeding.</entry>
<entry lang="en" key="INSTALL_FAILED">Installation failed.</entry>
<entry lang="en" key="UNINSTALL_FAILED">Uninstallation failed.</entry>
<entry lang="en" key="DIST_PACKAGE_CORRUPTED">This distribution package is damaged. Please try downloading it again (preferably from the official VeraCrypt website at https://veracrypt.jp).</entry>
<entry lang="en" key="DIST_PACKAGE_CORRUPTED">This distribution package is damaged. Please try downloading it again (preferably from the official VeraCrypt website at https://www.veracrypt.fr).</entry>
<entry lang="en" key="CANNOT_WRITE_FILE_X">Cannot write file %s</entry>
<entry lang="en" key="EXTRACTING_VERB">Extracting</entry>
<entry lang="en" key="CANNOT_READ_FROM_PACKAGE">Cannot read data from the package.</entry>
@@ -882,7 +880,7 @@
<entry lang="et" key="INSTALL_COMPLETED">Paigaldus lõpetatud.</entry>
<entry lang="et" key="CANT_CREATE_FOLDER">Kataloogi '%s' ei suudeta luua</entry>
<entry lang="et" key="CLOSE_TC_FIRST">VeraCrypti seadme tüüreli laadimine ebaõnnestus.\n\nPalun sulge alustuseks kõik avatud VeraCrypti aknad. Kui see ei aita, palun tee Windowsile taaskäivitus ja proovi siis uuesti.</entry>
<entry lang="et" key="UNMOUNT_ALL_FIRST">Kõik VeraCrypti konteinerid peavad olema enne VeraCrypti paigaldamist või eemaldamist lahti haagitud.</entry>
<entry lang="et" key="DISMOUNT_ALL_FIRST">Kõik VeraCrypti konteinerid peavad olema enne VeraCrypti paigaldamist või eemaldamist lahti haagitud.</entry>
<entry lang="en" key="UNINSTALL_OLD_VERSION_FIRST">An obsolete version of VeraCrypt is currently installed on this system. It needs to be uninstalled before you can install this new version of VeraCrypt.\n\nAs soon as you close this message box, the uninstaller of the old version will be launched. Note that no volume will be decrypted when you uninstall VeraCrypt. After you uninstall the old version of VeraCrypt, run the installer of the new version of VeraCrypt again.</entry>
<entry lang="et" key="REG_INSTALL_FAILED">Registri sissekannete paigaldus ebaõnnestus</entry>
<entry lang="et" key="DRIVER_INSTALL_FAILED">Seadmetüüreli paigaldamine ebaõnnestus. Palun taaskäivita Windows ja proovi VeraCrypti uuesti paigaldada.</entry>
@@ -903,7 +901,7 @@
<entry lang="et" key="MINUTES">minutit</entry>
<entry lang="et" key="SECONDS">s</entry>
<entry lang="et" key="OPEN">Ava</entry>
<entry lang="et" key="UNMOUNT">Haagi lahti</entry>
<entry lang="et" key="DISMOUNT">Haagi lahti</entry>
<entry lang="et" key="SHOW_TC">Kuva VeraCrypt</entry>
<entry lang="et" key="HIDE_TC">Peida VeraCrypt</entry>
<entry lang="et" key="TOTAL_DATA_READ">Haakimisest alates andmeid loetud</entry>
@@ -940,7 +938,7 @@
<entry lang="en" key="ENTER_HEADER_BACKUP_PASSWORD">Enter password for the header stored in backup file</entry>
<entry lang="et" key="KEYFILE_CREATED">Võtmefail on edukalt loodud.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_NUMBER">The number of keyfiles you supplied is invalid.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be at least 64 bytes.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be comprized between 64 and 1048576 bytes.</entry>
<entry lang="en" key="KEYFILE_EMPTY_BASE_NAME">Please enter a name for the keyfile(s) to be generated</entry>
<entry lang="en" key="KEYFILE_INVALID_BASE_NAME">The base name of the keyfile(s) is invalid</entry>
<entry lang="en" key="KEYFILE_ALREADY_EXISTS">The keyfile '%s' already exists.\nDo you want to overwrite it? The generation process will be stopped if you answer No.</entry>
@@ -975,7 +973,7 @@
<entry lang="en" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - System Favorite Volumes</entry>
<entry lang="en" key="SYS_FAVORITES_HELP_LINK">What are system favorite volumes?</entry>
<entry lang="en" key="SYS_FAVORITES_REQUIRE_PBA">The system partition/drive does not appear to be encrypted.\n\nSystem favorite volumes can be mounted using only a pre-boot authentication password. Therefore, to enable use of system favorite volumes, you need to encrypt the system partition/drive first.</entry>
<entry lang="et" key="UNMOUNT_FIRST">Jätkamiseks haagi palun konteiner lahti.</entry>
<entry lang="et" key="DISMOUNT_FIRST">Jätkamiseks haagi palun konteiner lahti.</entry>
<entry lang="en" key="CANNOT_SET_TIMER">Error: Cannot set timer.</entry>
<entry lang="et" key="IDPM_CHECK_FILESYS">Kontrolli failisüsteemi</entry>
<entry lang="et" key="IDPM_REPAIR_FILESYS">Paranda failisüsteem</entry>
@@ -997,7 +995,7 @@
<entry lang="et" key="UNSUPPORTED_CHARS_IN_PWD">Viga: Salasõna peab sisaldama ainult ASCII sümboleid.\n\nMitte-ASCII sümbolid salasõnas võivad põhjustada, et konteineri haakimine on võimatu, kui süsteemi konfiguratsioon muutub.\n\nJärgnevad sümbolid on lubatud:\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="et" key="UNSUPPORTED_CHARS_IN_PWD_RECOM">Hoiatus: salasõna sisaldab mitte-ASCII sümboleid. See võib põhjustada, et konteineri hakkimine muutub võimatuks, kui sinu süsteemi konfiguratsioon muutub.\n\nPeaksid asendama kõik mitte-ASCII sümbolid ASCII sümbolitega. Selleks, kliki 'Konteinerid' -&gt; 'Muuda konteineri salasõna'.\n\nJärgnevad on ASCII sümbolid:\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="en" key="EXE_FILE_EXTENSION_CONFIRM">WARNING: We strongly recommend that you avoid file extensions that are used for executable files (such as .exe, .sys, or .dll) and other similarly problematic file extensions. Using such file extensions causes Windows and antivirus software to interfere with the container, which adversely affects the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension or change it (e.g., to '.hc').\n\nAre you sure you want to use the problematic file extension?</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you unmount the volume.</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you dismount the volume.</entry>
<entry lang="et" key="HOMEPAGE">Koduleht</entry>
<entry lang="et" key="LARGE_IDE_WARNING_XP">Hoiatus: Paistab, et sa pole lisanud ühtegi teeninduspakki oma Windowsi instalatsioonile. Sa ei tohiks kirjutada IDE ketastele suuremad kui 128 GB Windows XP all, millele pole lisatud Service Pack 1 või hilisem! Kui sa teed seda, andmed kettal (hoolimata, kas see on VeraCrypti konteiner või ei) võivad saada viga. Pane tähele, et see on Windowsi piirang, mitte VeraCrypti viga.</entry>
<entry lang="et" key="LARGE_IDE_WARNING_2K">HOIATUS: Paistab, et sa pole lisanud Service Pack 3 või hilisemat oma Windowsi installatsioonile. Sa ei tohiks kirjutada IDE ketastele suuremad kui 128 GB Windows 2000 all, millele pole lisatud Service Pack 3 või hilisem! Kui sa teed seda, andmed kettal (hoolimata, kas see on VeraCrypti konteiner või ei) võivad saada viga. Pane tähele, et see on Windowsi piirang, mitte VeraCrypti viga.\n\nMärkus: Sa pead ka lubama 48-bitise LBA toe registris; lähemat informatsiooni vaata: http://support.microsoft.com/kb/305098/EN-US</entry>
@@ -1006,14 +1004,14 @@
<entry lang="en" key="VOLUME_TOO_LARGE_FOR_WINXP">Warning: Windows XP does not support files larger than 2048 GB (it will report that "Not enough storage is available"). Therefore, you cannot create a file-hosted VeraCrypt volume (container) larger than 2048 GB under Windows XP.\n\nNote that it is still possible to encrypt the entire drive or create a partition-hosted VeraCrypt volume larger than 2048 GB under Windows XP.</entry>
<entry lang="et" key="FREE_SPACE_FOR_WRITING_TO_OUTER_VOLUME">HOIATUS: Kui soovid säilitada võimaluse lisada tulevikus välisesse konteinerisse andmeid/faile, peaksid kaaluma peidetud konteineri väiksemat mahtu.\n\nOled kindel, et soovid jätkata valitud mahuga?</entry>
<entry lang="et" key="NO_VOLUME_SELECTED">Ühtegi konteinerit pole valitud.\n\nKliki 'Vali seade' või 'Vali fail' valimaks VeraCrypti konteiner.</entry>
<entry lang="en" key="NO_SYSENC_PARTITION_SELECTED">No partition selected.\n\nClick 'Select Device' to select a unmounted partition that normally requires pre-boot authentication (for example, a partition located on the encrypted system drive of another operating system, which is not running, or the encrypted system partition of another operating system).\n\nNote: The selected partition will be mounted as a regular VeraCrypt volume without pre-boot authentication. This is useful e.g. for backup or repair operations.</entry>
<entry lang="en" key="NO_SYSENC_PARTITION_SELECTED">No partition selected.\n\nClick 'Select Device' to select a dismounted partition that normally requires pre-boot authentication (for example, a partition located on the encrypted system drive of another operating system, which is not running, or the encrypted system partition of another operating system).\n\nNote: The selected partition will be mounted as a regular VeraCrypt volume without pre-boot authentication. This is useful e.g. for backup or repair operations.</entry>
<entry lang="en" key="CONFIRM_SAVE_DEFAULT_KEYFILES">WARNING: If default keyfiles are set and enabled, volumes that are not using these keyfiles will be impossible to mount. Therefore, after you enable default keyfiles, keep in mind to uncheck the 'Use keyfiles' checkbox (below a password input field) whenever mounting such volumes.\n\nAre you sure you want to save the selected keyfiles/paths as default?</entry>
<entry lang="et" key="HK_AUTOMOUNT_DEVICES">Auto-haagi seadmed</entry>
<entry lang="et" key="HK_UNMOUNT_ALL">Haagi kõik lahti</entry>
<entry lang="et" key="HK_DISMOUNT_ALL">Haagi kõik lahti</entry>
<entry lang="et" key="HK_WIPE_CACHE">Puhasta vahemälu</entry>
<entry lang="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All &amp; Wipe Cache</entry>
<entry lang="et" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Sunni kõiki lahti haakima &amp; Puhasta vahemälu</entry>
<entry lang="et" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Sunni kõiki lahtihaakima, Puhasta vahemälu &amp; Välju</entry>
<entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All &amp; Wipe Cache</entry>
<entry lang="et" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Sunni kõiki lahti haakima &amp; Puhasta vahemälu</entry>
<entry lang="et" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Sunni kõiki lahtihaakima, Puhasta vahemälu &amp; Välju</entry>
<entry lang="et" key="HK_MOUNT_FAVORITE_VOLUMES">Haagi lemmik konteinerid</entry>
<entry lang="et" key="HK_SHOW_HIDE_MAIN_WINDOW">Kuva/Peida VeraCrypti peaaken</entry>
<entry lang="et" key="PRESS_A_KEY_TO_ASSIGN">(Kliki siia ja vajuta klahvil)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="en" key="PAGING_FILE_CREATION_PREVENTED">Paging file creation has been prevented.\n\nPlease note that, due to Windows issues, paging files cannot be located on non-system VeraCrypt volumes (including system favorite volumes). VeraCrypt supports creation of paging files only on an encrypted system partition/drive.</entry>
<entry lang="en" key="SYS_ENC_HIBERNATION_PREVENTED">An error or incompatibility prevents VeraCrypt from encrypting the hibernation file. Therefore, hibernation has been prevented.\n\nNote: When a computer hibernates (or enters a power-saving mode), the content of its system memory is written to a hibernation storage file residing on the system drive. VeraCrypt would not be able to prevent encryption keys and the contents of sensitive files opened in RAM from being saved unencrypted to the hibernation storage file.</entry>
<entry lang="en" key="HIDDEN_OS_HIBERNATION_PREVENTED">Hibernation has been prevented.\n\nVeraCrypt does not support hibernation on hidden operating systems that use an extra boot partition. Please note that the boot partition is shared by both the decoy and the hidden system. Therefore, in order to prevent data leaks and problems while resuming from hibernation, VeraCrypt has to prevent the hidden system from writing to the shared boot partition and from hibernating.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">VeraCrypt volume mounted as %c: has been unmounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt volumes have been unmounted.</entry>
<entry lang="en" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt volumes have been unmounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_UNMOUNTED">Successfully unmounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="et" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">HOIATUS: kui see valik on keelatud, konteinerid, mis sisaldavad avatud faile/katalooge EI ole võimaliks automaatselt lahti haakida.\n\nOled kindel, et soovid selle valiku keelata?</entry>
<entry lang="et" key="WARN_PREF_AUTO_UNMOUNT">HOIATUS: konteinerid, mis sisaldavad avatud faile/katalooge EI haagita automaatselt lahti.\n\nSelle vältimiseks, luba järgnev valik dialoogiaknas: 'Sunni lahti-haakima isegi kui failid/kataloogid on avatud'</entry>
<entry lang="en" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-unmount volumes in such cases.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">VeraCrypt volume mounted as %c: has been dismounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt volumes have been dismounted.</entry>
<entry lang="en" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt volumes have been dismounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_DISMOUNTED">Successfully dismounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="et" key="CONFIRM_NO_FORCED_AUTODISMOUNT">HOIATUS: kui see valik on keelatud, konteinerid, mis sisaldavad avatud faile/katalooge EI ole võimaliks automaatselt lahti haakida.\n\nOled kindel, et soovid selle valiku keelata?</entry>
<entry lang="et" key="WARN_PREF_AUTO_DISMOUNT">HOIATUS: konteinerid, mis sisaldavad avatud faile/katalooge EI haagita automaatselt lahti.\n\nSelle vältimiseks, luba järgnev valik dialoogiaknas: 'Sunni lahti-haakima isegi kui failid/kataloogid on avatud'</entry>
<entry lang="en" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-dismount volumes in such cases.</entry>
<entry lang="en" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">You have scheduled the process of encryption/decryption of a partition/volume. The process has not been completed yet.\n\nDo you want to resume the process now?</entry>
<entry lang="en" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">You have scheduled the process of encryption or decryption of the system partition/drive. The process has not been completed yet.\n\nDo you want to start (resume) the process now?</entry>
<entry lang="en" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">Do you want to be prompted about whether you want to resume the currently scheduled processes of encryption/decryption of non-system partitions/volumes?</entry>
@@ -1040,7 +1038,7 @@
<entry lang="en" key="DO_NOT_PROMPT_ME">No, do not prompt me</entry>
<entry lang="en" key="NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL_NOTE">IMPORTANT: Keep in mind that you can resume the process of encryption/decryption of any non-system partition/volume by selecting 'Volumes' &gt; 'Resume Interrupted Process' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="en" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">You have scheduled the process of encryption or decryption of the system partition/drive. However, pre-boot authentication failed (or was bypassed).\n\nNote: If you decrypted the system partition/drive in the pre-boot environment, you may need to finalize the process by selecting 'System' &gt; 'Permanently Decrypt System Partition/Drive' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="en" key="CONFIRM_EXIT_UNIVERSAL">Exit?</entry>
<entry lang="en" key="CHOOSE_ENCRYPT_OR_DECRYPT">VeraCrypt does not have sufficient information to determine whether to encrypt or decrypt.</entry>
<entry lang="en" key="CHOOSE_ENCRYPT_OR_DECRYPT_FINALIZE_DECRYPT_NOTE">VeraCrypt does not have sufficient information to determine whether to encrypt or decrypt.\n\nNote: If you decrypted the system partition/drive in the pre-boot environment, you may need to finalize the process by clicking Decrypt.</entry>
@@ -1063,7 +1061,7 @@
<entry lang="et" key="SYS_AUTOMOUNT_DISABLED">Sinu süsteem ei ole konfigureeritud automaatselt haakima uusi konteinereid. Võib olla võimatu haakida seadme baasil VeraCrypti konteinereid. Automaatse haakimise saab lubada käivitades järgneva käsu ja taaskäivitades süsteemi.\n\nmountvol.exe /E</entry>
<entry lang="et" key="SYS_ASSIGN_DRIVE_LETTER">Palun omista partitsioonile/seadmele enne jätkamist draivitäht ('Control Panel' &gt; 'System and Maintenance' &gt; 'Administrative Tools' - 'Create and format hard disk partitions').\n\nPane tähele, et see on operatsioonisüsteemi poolne nõue.</entry>
<entry lang="et" key="MOUNT_TC_VOLUME">Haagi VeraCrypti konteiner</entry>
<entry lang="et" key="UNMOUNT_ALL_TC_VOLUMES">Haagi lahti kõik VeraCrypti konteinerid</entry>
<entry lang="et" key="DISMOUNT_ALL_TC_VOLUMES">Haagi lahti kõik VeraCrypti konteinerid</entry>
<entry lang="et" key="UAC_INIT_ERROR">VeraCrypt ei saa kätte Administraatori õigusi.</entry>
<entry lang="et" key="ERR_ACCESS_DENIED">Juurdepääs keelati operatsioonisüsteemi poolt.\n\nVõimalik põhjus: Operatsioonisüsteem nõuab, et sul oleks lugemise/kirutamise (või administraatori) õigused teatud kataloogidele, failidele ja seadmetele, et võimaldada sul andmeid lugeda/kirjutada neisse. Tavaliselt on ilma administraatori õiguseta kasutajal lugemise/kirjutamise õigus enda My Documents kataloogile.</entry>
<entry lang="en" key="SECTOR_SIZE_UNSUPPORTED">Error: The drive uses an unsupported sector size.\n\nIt is currently not possible to create partition/device-hosted volumes on drives that use sectors larger than 4096 bytes. However, note that you can create file-hosted volumes (containers) on such drives.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="en" key="HIDDEN_OS_CREATION_PREINFO_HELP">In the next steps, VeraCrypt will create the hidden operating system by copying the content of the system partition to the hidden volume (data being copied will be encrypted on the fly with an encryption key different from the one that will be used for the decoy operating system).\n\nPlease note that the process will be performed in the pre-boot environment (before Windows starts) and it may take a long time to complete; several hours or even several days (depending on the size of the system partition and on the performance of your computer).\n\nYou will be able to interrupt the process, shut down your computer, start the operating system and then resume the process. However, if you interrupt it, the entire process of copying the system will have to start from the beginning (because the content of the system partition must not change during cloning).</entry>
<entry lang="en" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">Do you want to cancel the entire process of creation of the hidden operating system?\n\nNote: You will NOT be able to resume the process if you cancel it now.</entry>
<entry lang="en" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">Do you want to cancel the system encryption pretest?</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="en" key="SYS_DRIVE_NOT_ENCRYPTED">The system partition/drive does not appear to be encrypted (neither partially nor fully).</entry>
<entry lang="en" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">Your system partition/drive is encrypted (partially or fully).\n\nPlease decrypt your system partition/drive entirely before proceeding. To do so, select 'System' &gt; 'Permanently Decrypt System Partition/Drive' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="en" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">When the system partition/drive is encrypted (partially or fully), you cannot downgrade VeraCrypt (but you can upgrade it or reinstall the same version).</entry>
@@ -1285,17 +1283,17 @@
<entry lang="en" key="TOKEN_DATA_OBJECT_LABEL">File name</entry>
<entry lang="en" key="BOOT_PASSWORD_CACHE_KEYBOARD_WARNING">IMPORTANT: Please note that pre-boot authentication passwords are always typed using the standard US keyboard layout. Therefore, a volume that uses a password typed using any other keyboard layout may be impossible to mount using a pre-boot authentication password (note that this is not a bug in VeraCrypt). To allow such a volume to be mounted using a pre-boot authentication password, follow these steps:\n\n1) Click 'Select File' or 'Select Device' and select the volume.\n2) Select 'Volumes' &gt; 'Change Volume Password'.\n3) Enter the current password for the volume.\n4) Change the keyboard layout to English (US) by clicking the Language bar icon in the Windows taskbar and selecting 'EN English (United States)'.\n5) In VeraCrypt, in the field for the new password, type the pre-boot authentication password.\n6) Confirm the new password by retyping it in the confirmation field and click 'OK'.\nWARNING: Please keep in mind that if you follow these steps, the volume password will always have to be typed using the US keyboard layout (which is automatically ensured only in the pre-boot environment).</entry>
<entry lang="en" key="SYS_FAVORITES_KEYBOARD_WARNING">System favorite volumes will be mounted using the pre-boot authentication password. If any system favorite volume uses a different password, it will not be mounted.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Unmount All', auto-unmount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and unmount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be unmounted. Therefore, if you need e.g. to unmount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Unmount All' function, 'Auto-Unmount' functions, 'Unmount All' hot keys, etc.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Dismount All', auto-dismount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and dismount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be dismounted. Therefore, if you need e.g. to dismount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Dismount All' function, 'Auto-Dismount' functions, 'Dismount All' hot keys, etc.</entry>
<entry lang="en" key="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry>
<entry lang="en" key="COMMAND_LINE_ERROR">Error while parsing command line.</entry>
<entry lang="en" key="RESCUE_DISK">Rescue Disk</entry>
<entry lang="en" key="SELECT_FILE_AND_MOUNT">Select &amp;File and Mount...</entry>
<entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &amp;Device and Mount...</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and dismount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="MOUNT_SYSTEM_FAVORITES_ON_BOOT">Mount system favorite volumes when Windows starts (in the initial phase of the startup procedure)</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly unmounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always unmount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly unmounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly dismounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always dismount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly dismounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="FILESYS_REPAIR_CONFIRM_BACKUP">Warning: Repairing a damaged filesystem using the Microsoft 'chkdsk' tool might cause loss of files in damaged areas. Therefore, it is recommended that you first back up the files stored on the VeraCrypt volume to another, healthy, VeraCrypt volume.\n\nDo you want to repair the filesystem now?</entry>
<entry lang="en" key="MOUNTED_CONTAINER_FORCED_READ_ONLY">Volume '%s' has been mounted as read-only because write access was denied.\n\nPlease make sure the security permissions of the file container allow you to write to it (right-click the container and select Properties &gt; Security).\n\nNote that, due to a Windows issue, you may see this warning even after setting the appropriate security permissions. This is not caused by a bug in VeraCrypt. A possible solution is to move your container to, e.g., your 'Documents' folder.\n\nIf you intend to keep your volume read-only, set the read-only attribute of the container (right-click the container and select Properties &gt; Read-only), which will suppress this warning.</entry>
<entry lang="en" key="MOUNTED_DEVICE_FORCED_READ_ONLY">Volume '%s' had to be mounted as read-only because write access was denied.\n\nPlease make sure no other application (e.g. antivirus software) is accessing the partition/device on which the volume is hosted.</entry>
@@ -1306,8 +1304,8 @@
<entry lang="en" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Note that the number of threads is currently limited, which will affect benchmark results (worse performance).\n\nTo utilize the full potential of the processor(s), select 'Settings' > 'Performance' and disable the corresponding option.</entry>
<entry lang="en" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">Do you want VeraCrypt to attempt to disable write protection of the partition/drive?</entry>
<entry lang="en" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">WARNING: This setting may degrade performance.\n\nAre you sure you want to use this setting?</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-unmounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always unmount the volume in VeraCrypt first.\n\nUnexpected spontaneous unmount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-dismounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always dismount the volume in VeraCrypt first.\n\nUnexpected spontaneous dismount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="UNSUPPORTED_TRUECRYPT_FORMAT">This volume was created with TrueCrypt %x.%x but VeraCrypt supports only TrueCrypt volumes created with TrueCrypt 6.x/7.x series</entry>
<entry lang="en" key="TEST">Test</entry>
<entry lang="et" key="KEYFILE">Võtmefail</entry>
@@ -1453,7 +1451,7 @@
<entry lang="en" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Add All Mounted Volumes to Favorites...</entry>
<entry lang="en" key="TASKICON_PREF_MENU_ITEMS">Task Icon Menu Items</entry>
<entry lang="en" key="TASKICON_PREF_OPEN_VOL">Open Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_DISMOUNT_VOL">Dismount Mounted Volumes</entry>
<entry lang="en" key="DISK_FREE">Free space available: {0}</entry>
<entry lang="en" key="VOLUME_SIZE_HELP">Please specify the size of the container to create. Note that the minimum possible size of a volume is 292 KiB.</entry>
<entry lang="en" key="LINUX_CONFIRM_INNER_VOLUME_CALC">WARNING: You have selected a filesystem other than FAT for the outer volume.\nPlease Note that in this case VeraCrypt can't calculate the exact maximum allowed size for the hidden volume and it will use only an estimation that can be wrong.\nThus, it is your responsibility to use an adequate value for the size of the hidden volume so that it does not overlap the outer volume.\n\nDo you want to continue using the selected filesystem for the outer volume?</entry>
@@ -1483,14 +1481,14 @@
<entry lang="en" key="LINUX_DO_NOT_MOUNT">Do &amp;not mount</entry>
<entry lang="en" key="LINUX_MOUNT_AT_DIR">Mount at directory:</entry>
<entry lang="en" key="LINUX_SELECT">Se&amp;lect...</entry>
<entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount All Volumes When</entry>
<entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry>
<entry lang="en" key="LINUX_ENTERING_POWERSAVING">System is entering power saving mode</entry>
<entry lang="en" key="LINUX_LOGIN_ACTION">Actions to Perform when User Logs On</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Close all Explorer windows of volume being dismounted</entry>
<entry lang="en" key="LINUX_HOTKEYS">Hotkeys</entry>
<entry lang="en" key="LINUX_SYSTEM_HOTKEYS">System-Wide Hotkeys</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/unmount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_UNMOUNT">Display confirmation message box after unmount</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/dismount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_DISMOUNT">Display confirmation message box after dismount</entry>
<entry lang="en" key="LINUX_VC_QUITS">VeraCrypt quits</entry>
<entry lang="en" key="LINUX_OPEN_FINDER">Open Finder window for successfully mounted volume</entry>
<entry lang="en" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Please note that this setting takes effect only if use of the kernel cryptographic services is disabled.</entry>
@@ -1510,11 +1508,11 @@
<entry lang="en" key="LINUX_DYNAMIC_NOTICE">Please note that if your operating system does not allocate files from the beginning of the free space, the maximum possible hidden volume size may be much smaller than the size of the free space on the outer volume. This is not a bug in VeraCrypt but a limitation of the operating system.</entry>
<entry lang="en" key="LINUX_MAX_HIDDEN_SIZE">Maximum possible hidden volume size for this volume is {0}.</entry>
<entry lang="en" key="LINUX_OPEN_OUTER_VOL">Open Outer Volume</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not unmount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not dismount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">Error: You are trying to encrypt a system drive.\n\nVeraCrypt can encrypt a system drive only under Windows.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">Error: You are trying to encrypt a system partition.\n\nVeraCrypt can encrypt system partitions only under Windows.</entry>
<entry lang="en" key="LINUX_WARNING_FORMAT_DESTROY_FS">WARNING: Formatting of the device will destroy all data on filesystem '{0}'.\n\nDo you want to continue?</entry>
<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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please dismount '{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>
@@ -1522,8 +1520,7 @@
<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>
<entry lang="en" key="LINUX_VOL_DISMOUNTED">Volume {0} has been dismounted.</entry>
<entry lang="en" key="LINUX_OOM">Out of memory.</entry>
<entry lang="en" key="LINUX_CANT_GET_ADMIN_PRIV">Failed to obtain administrator privileges</entry>
<entry lang="en" key="LINUX_COMMAND_GET_ERROR">Command {0} returned error {1}.</entry>
@@ -1553,7 +1550,7 @@
<entry lang="en" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Error: The drive uses a sector size other than 512 bytes.\n\nDue to limitations of components available on your platform, partition/device-hosted volumes cannot be created/used on the drive.\n\nPossible solutions:\n- Create a file-hosted volume (container) on the drive.\n- Use a drive with 512-byte sectors.\n- Use VeraCrypt on another platform.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">The host file/device is already in use.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Volume slot unavailable.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires macFUSE 2.5 or above.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires OSXFUSE 2.5 or above.</entry>
<entry lang="en" key="EXCEPTION_OCCURRED">Exception occurred</entry>
<entry lang="en" key="ENTER_PASSWORD">Enter password</entry>
<entry lang="en" key="ENTER_TC_VOL_PASSWORD">Enter VeraCrypt Volume Password</entry>
@@ -1570,124 +1567,6 @@
<entry lang="en" key="VOLUME_HOST_IN_USE">WARNING: The host file/device {0} is already in use!\n\nIgnoring this can cause undesired results including system instability. All applications that might be using the host file/device should be closed before mounting the volume.\n\nContinue mounting?</entry>
<entry lang="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
<entry lang="en" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">VeraCrypt cannot be upgraded because the system partition/drive was encrypted using an algorithm that is not supported anymore.\nPlease decrypt your system before upgrading VeraCrypt and then encrypt it again.</entry>
<entry lang="en" key="LINUX_EX2MSG_TERMINALNOTFOUND">Supported terminal application could not be found, you need either xterm, konsole or gnome-terminal (with dbus-x11).</entry>
<entry lang="en" key="IDM_MOUNT_NO_CACHE">Mount Without Cache</entry>
<entry lang="en" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nExpand a VeraCrypt volume on the fly without reformatting\n\n\nAll kind of volumes (container files, disks and partitions) formatted with NTFS are supported. The only condition is that there must be enough free space on the host drive or host device of the VeraCrypt volume.\n\nDo not use this software to expand an outer volume containing a hidden volume, because this destroys the hidden volume!\n</entry>
<entry lang="en" key="IDC_STEPSEXPAND">1. Select the VeraCrypt volume to be expanded\n2. Click the 'Mount' button</entry>
<entry lang="en" key="IDT_VOL_NAME">Volume: </entry>
<entry lang="en" key="IDT_FILE_SYS">File system: </entry>
<entry lang="en" key="IDT_CURRENT_SIZE">Current size: </entry>
<entry lang="en" key="IDT_NEW_SIZE">New size: </entry>
<entry lang="en" key="IDT_NEW_SIZE_BOX_TITLE">Enter new volume size</entry>
<entry lang="en" key="IDC_INIT_NEWSPACE">Fill new space with random data</entry>
<entry lang="en" key="IDC_QUICKEXPAND">Quick Expand</entry>
<entry lang="en" key="IDT_INIT_SPACE">Fill new space: </entry>
<entry lang="en" key="EXPANDER_FREE_SPACE">%s free space available on host drive</entry>
<entry lang="en" key="EXPANDER_HELP_DEVICE">This is a device-based VeraCrypt volume.\n\nThe new volume size will be choosen automatically as the size of the host device.</entry>
<entry lang="en" key="EXPANDER_HELP_FILE">Please specify the new size of the VeraCrypt volume (must be at least %I64u KB larger than the current size).</entry>
<entry lang="en" key="QUICK_EXPAND_WARNING">WARNING: You should use Quick Expand only in the following cases:\n\n1) The device where the file container is located contains no sensitive data and you do not need plausible deniability.\n2) The device where the file container is located has already been securely and fully encrypted.\n\nAre you sure you want to use Quick Expand?</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT">IMPORTANT: Move your mouse as randomly as possible within this window. The longer you move it, the better. This significantly increases the cryptographic strength of the encryption keys. Then click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT_LEGACY">Click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_FINISH_ERROR">Error: volume expansion failed.</entry>
<entry lang="en" key="EXPANDER_FINISH_ABORT">Error: operation aborted by user.</entry>
<entry lang="en" key="EXPANDER_FINISH_OK">Finished. Volume successfully expanded.</entry>
<entry lang="en" key="EXPANDER_CANCEL_WARNING">Warning: Volume expansion is in progress!\n\nStopping now may result in a damaged volume.\n\nDo you really want to cancel?</entry>
<entry lang="en" key="EXPANDER_STARTING_STATUS">Starting volume expansion ...\n</entry>
<entry lang="en" key="EXPANDER_HIDDEN_VOLUME_ERROR">An outer volume containing a hidden volume can't be expanded, because this destroys the hidden volume.\n</entry>
<entry lang="en" key="EXPANDER_SYSTEM_VOLUME_ERROR">A VeraCrypt system volume can't be expanded.</entry>
<entry lang="en" key="EXPANDER_NO_FREE_SPACE">Not enough free space to expand the volume</entry>
<entry lang="en" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Warning: The container file is larger than the VeraCrypt volume area. The data after the VeraCrypt volume area will be overwritten.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_FAT">Warning: The VeraCrypt volume contains a FAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_EXFAT">Warning: The VeraCrypt volume contains an exFAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_UNKNOWN_FS">Warning: The VeraCrypt volume contains an unknown or no file system!\n\nOnly the VeraCrypt volume itself will be expanded, the file system remains unchanged.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">New volume size too small, must be at least %I64u kB larger than the current size.</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">New volume size too large, not enough space on host drive.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Maximum file size of %I64u MB on host drive exceeded.</entry>
<entry lang="en" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Error: Failed to get necessary privileges to enable Quick Expand!\nPlease uncheck Quick Expand option and try again.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Maximum VeraCrypt volume size of %I64u TB exceeded!\n</entry>
<entry lang="en" key="FULL_FORMAT">Full Format</entry>
<entry lang="en" key="FAST_CREATE">Fast Create</entry>
<entry lang="en" key="WARN_FAST_CREATE">WARNING: You should use Fast Create only in the following cases:\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 Fast Create?</entry>
<entry lang="en" key="IDC_ENABLE_EMV_SUPPORT">Enable EMV Support</entry>
<entry lang="en" key="COMMAND_APDU_INVALID">The APDU command sent to the card is not valid.</entry>
<entry lang="en" key="EXTENDED_APDU_UNSUPPORTED">Extended APDU commands cannot be used with the current token.</entry>
<entry lang="en" key="SCARD_MODULE_INIT_FAILED">Error when loading the WinSCard / PCSC library.</entry>
<entry lang="en" key="EMV_UNKNOWN_CARD_TYPE">The card in the reader is not a supported EMV card.</entry>
<entry lang="en" key="EMV_SELECT_AID_FAILED">The AID of the card in the reader could not be selected.</entry>
<entry lang="en" key="EMV_ICC_CERT_NOTFOUND">ICC Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_ISSUER_CERT_NOTFOUND">Issuer Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_CPLC_NOTFOUND">CPLC was not found in the EMV card.</entry>
<entry lang="en" key="EMV_PAN_NOTFOUND">No Primary Account Number (PAN) found in the EMV card.</entry>
<entry lang="en" key="INVALID_EMV_PATH">EMV path is invalid.</entry>
<entry lang="en" key="EMV_KEYFILE_DATA_NOTFOUND">Unable to build a keyfile from the EMV card's data.\n\nOne of the following is missing:\n- ICC Public Key Certificate.\n- Issuer Public Key Certificate.\n- CPLC data.</entry>
<entry lang="en" key="SCARD_W_REMOVED_CARD">No card in the reader.\n\nPlease make sure the card is correctly slotted.</entry>
<entry lang="en" key="FORMAT_EXTERNAL_FAILED">Windows format.com command failed to format the volume as NTFS/exFAT/ReFS: Error 0x%.8X.\n\nFalling back to using Windows FormatEx API.</entry>
<entry lang="en" key="FORMATEX_API_FAILED">Windows FormatEx API failed to format the volume as NTFS/exFAT/ReFS.\n\nFailure status = %s.</entry>
<entry lang="en" key="EXPANDER_WRITING_RANDOM_DATA">Writing random data to new space ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Writing re-encrypted backup header ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Writing re-encrypted primary header ...\n</entry>
<entry lang="en" key="EXPANDER_WIPING_OLD_HEADER">Wiping old backup header ...\n</entry>
<entry lang="en" key="EXPANDER_MOUNTING_VOLUME">Mounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_UNMOUNTING_VOLUME">Unmounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_EXTENDING_FILESYSTEM">Extending file system ...\n</entry>
<entry lang="en" key="PARTIAL_SYSENC_MOUNT_READONLY">Warning: The system partition you attempted to mount was not fully encrypted. As a safety measure to prevent potential corruption or unwanted modifications, volume '%s' was mounted as read-only.</entry>
<entry lang="en" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Important information on using third-party file extensions</entry>
<entry lang="en" key="IDC_DISABLE_MEMORY_PROTECTION">Disable memory protection for Accessibility tools compatibility</entry>
<entry lang="en" key="DISABLE_MEMORY_PROTECTION_WARNING">WARNING: Disabling memory protection significantly reduces security. Enable this option ONLY if you rely on Accessibility tools, like Screen Readers, to interact with VeraCrypt's UI.</entry>
<entry lang="et" key="LINUX_LANGUAGE">Keel</entry>
<entry lang="en" key="LINUX_SELECT_SYS_DEFAULT_LANG">Select system's default language</entry>
<entry lang="en" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">For the language change to come into effect, VeraCrypt needs to be restarted.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE">WARNING: The volume's master key is vulnerable to an attack that compromises data security.\n\nPlease create a new volume and transfer the data to it.</entry>
<entry lang="en" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">WARNING: The encrypted system's master key is vulnerable to an attack that compromises data security.\nPlease decrypt the system partition/drive and then re-encrypt it.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">WARNING: The volume's master key has a security vulnerability.</entry>
<entry lang="en" key="MOUNTPOINT_BLOCKED">ERROR: The volume mount point is blocked because it overrides a protected system directory.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="MOUNTPOINT_NOTALLOWED">ERROR: The volume mount point is not allowed because it overrides a directory that is part of the PATH environment variable.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="INSECURE_MODE">[INSECURE MODE]</entry>
<entry lang="en" key="IDC_DISABLE_SCREEN_PROTECTION">Disable protection against screenshots and screen recording</entry>
<entry lang="en" key="DISABLE_SCREEN_PROTECTION_WARNING">WARNING: Disabling screen protection significantly reduces security. Enable this option ONLY if you have a specific need to capture VeraCrypt's interface. This may expose sensitive data to screenshot tools and screen recording features such as Windows 11 Recall.</entry>
<entry lang="en" key="MEMORY_COST">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="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>
<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>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+52 -173
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
@@ -135,8 +135,8 @@
<entry lang="eu" key="IDC_FAVORITE_REMOVE">&amp;Kendu</entry>
<entry lang="en" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Use favorite label as Explorer drive label</entry>
<entry lang="eu" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Aukera Globalak</entry>
<entry lang="eu" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Argibide bunbuiloa erakutsi tekla bereziarekin ondo desmuntatu eta gero</entry>
<entry lang="eu" key="IDC_HK_UNMOUNT_PLAY_SOUND">Sistemaren jakinarazpen soinua jarri tekla bereziarekin ondo desmuntatu eta gero</entry>
<entry lang="eu" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Argibide bunbuiloa erakutsi tekla bereziarekin ondo desmuntatu eta gero</entry>
<entry lang="eu" key="IDC_HK_DISMOUNT_PLAY_SOUND">Sistemaren jakinarazpen soinua jarri tekla bereziarekin ondo desmuntatu eta gero</entry>
<entry lang="eu" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="eu" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="eu" key="IDC_HK_MOD_SHIFT">Shift</entry>
@@ -156,12 +156,12 @@
<entry lang="en" key="IDC_PIM_HELP">(Empty or 0 for default iterations)</entry>
<entry lang="eu" key="IDC_PREF_BKG_TASK_ENABLE">Gaituta</entry>
<entry lang="eu" key="IDC_PREF_CACHE_PASSWORDS">Pasahitzak gorde gailuaren memorian</entry>
<entry lang="eu" key="IDC_PREF_UNMOUNT_INACTIVE">Bolumena auto-desmuntatu daturik ez bada idatzi/irakurri</entry>
<entry lang="eu" key="IDC_PREF_UNMOUNT_LOGOFF">Erabiltzailea saioa amaitzen du</entry>
<entry lang="en" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="eu" key="IDC_PREF_UNMOUNT_POWERSAVING">Energia aurrezteko moduan sartzen</entry>
<entry lang="eu" key="IDC_PREF_UNMOUNT_SCREENSAVER">Pantaila-babeslea martxan dago</entry>
<entry lang="eu" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Desmuntaketa eragin bolumenak irekitako fitxategi eta direktorioak dituen arren</entry>
<entry lang="eu" key="IDC_PREF_DISMOUNT_INACTIVE">Bolumena auto-desmuntatu daturik ez bada idatzi/irakurri</entry>
<entry lang="eu" key="IDC_PREF_DISMOUNT_LOGOFF">Erabiltzailea saioa amaitzen du</entry>
<entry lang="en" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="eu" key="IDC_PREF_DISMOUNT_POWERSAVING">Energia aurrezteko moduan sartzen</entry>
<entry lang="eu" key="IDC_PREF_DISMOUNT_SCREENSAVER">Pantaila-babeslea martxan dago</entry>
<entry lang="eu" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Desmuntaketa eragin bolumenak irekitako fitxategi eta direktorioak dituen arren</entry>
<entry lang="eu" key="IDC_PREF_LOGON_MOUNT_DEVICES">Gailuetako VeraCrypt bolumen guztiak muntatu</entry>
<entry lang="eu" key="IDC_PREF_LOGON_START">VeraCrypt-en ezkutuko lana hasi</entry>
<entry lang="eu" key="IDC_PREF_MOUNT_READONLY">Bolumenak &amp;irakurtzeko bakarrik muntatu</entry>
@@ -169,7 +169,7 @@
<entry lang="eu" key="IDC_PREF_OPEN_EXPLORER">Explorer-aren lehioa ireki muntatutako bolumenentzako</entry>
<entry lang="en" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">Temporarily cache password during "Mount Favorite Volumes" operations</entry>
<entry lang="eu" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Ataza-barra ikono ezberdin bat erabili muntatutako bolumenak badaude</entry>
<entry lang="eu" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Gordetako pasahitzak ezabatu automatikoki desmuntatzerakoan</entry>
<entry lang="eu" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Gordetako pasahitzak ezabatu automatikoki desmuntatzerakoan</entry>
<entry lang="eu" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Gordetako pasahitzak ezabatu irtetzerakoan</entry>
<entry lang="eu" key="IDC_PRESERVE_TIMESTAMPS">Fitxategi-ontzietako aldatze data mantendu</entry>
<entry lang="eu" key="IDC_RESET_HOTKEYS">Ezabatu</entry>
@@ -269,14 +269,14 @@
<entry lang="eu" key="IDT_ACCELERATION_OPTIONS">Hardwaren Bidezko Azelerazioa</entry>
<entry lang="eu" key="IDT_ASSIGN_HOTKEY">Lasterbidea</entry>
<entry lang="eu" key="IDT_AUTORUN">AutoRun-aren Konfigurazioa (autorun.inf)</entry>
<entry lang="eu" key="IDT_AUTO_UNMOUNT">Auto-Desmuntatu</entry>
<entry lang="eu" key="IDT_AUTO_UNMOUNT_ON">Hauetan guztia desmuntatu:</entry>
<entry lang="eu" key="IDT_AUTO_DISMOUNT">Auto-Desmuntatu</entry>
<entry lang="eu" key="IDT_AUTO_DISMOUNT_ON">Hauetan guztia desmuntatu:</entry>
<entry lang="eu" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Hasieraketa kargatzailearen pantailako aurkerak</entry>
<entry lang="eu" key="IDT_CONFIRM_PASSWORD">Pasahitza berretsi:</entry>
<entry lang="eu" key="IDT_CURRENT">Oraingoa</entry>
<entry lang="eu" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">Mezu hau hasieraketa aurreko kautotze pantailan erakutsi (24 karaktere gehienez):</entry>
<entry lang="eu" key="IDT_DEFAULT_MOUNT_OPTIONS">Lehenetsitako muntaketa aukerak</entry>
<entry lang="eu" key="IDT_UNMOUNT_ACTION">Tekla berezien aukerak</entry>
<entry lang="eu" key="IDT_DISMOUNT_ACTION">Tekla berezien aukerak</entry>
<entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry>
<entry lang="en" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Enable extended disk control codes support</entry>
<entry lang="eu" key="IDT_FAVORITE_LABEL">Aukeratutako gogoko bolumenaren etiketa:</entry>
@@ -291,11 +291,10 @@
<entry lang="eu" key="IDT_NEW_PASSWORD">Pasahitza:</entry>
<entry lang="eu" key="IDT_PARALLELIZATION_OPTIONS">Prozesuetan Oinarritutako Paralelizazioa</entry>
<entry lang="eu" key="IDT_PKCS11_LIB_PATH">PKCS #11 Liburutegiaren Helbidea</entry>
<entry lang="eu" key="IDT_KDF">KDF:</entry>
<entry lang="en" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="eu" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="en" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="eu" key="IDT_PW_CACHE_OPTIONS">Pasahitzen Memoria</entry>
<entry lang="eu" key="IDT_SECURITY_OPTIONS">Sekurtasun Aukerak</entry>
<entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry>
<entry lang="eu" key="IDT_TASKBAR_ICON">VeraCrypt Ezkutuko Lana</entry>
<entry lang="eu" key="IDT_TRAVELER_MOUNT">Muntatzeko VeraCrypt bolumena (gailu eramangarriaren jatorritik):</entry>
<entry lang="eu" key="IDT_TRAVEL_INSERTION">Gailu eramangarria sartzerakoan: </entry>
@@ -357,7 +356,7 @@
<entry lang="eu" key="IDT_KEYFILE_WARNING">KONTUZ: Gako-fitxategi bat galtzen baduzu edo lehenengo 1024 kilobytetako bit bat aldatzen bada, ezinezkoa izango da gako-fitxategi hori erabiltzen duten bolumenak muntatzea!</entry>
<entry lang="eu" key="IDT_KEY_UNIT">bit-ak</entry>
<entry lang="en" key="IDT_NUMBER_KEYFILES">Number of keyfiles:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size (in Bytes):</entry>
<entry lang="en" key="IDT_KEYFILES_BASE_NAME">Keyfiles base name:</entry>
<entry lang="eu" key="IDT_LANGPACK_AUTHORS">Hauek Izulita:</entry>
<entry lang="eu" key="IDT_PLAINTEXT">Testu Arruntako tamaina:</entry>
@@ -390,7 +389,6 @@
<entry lang="eu" key="ADMINISTRATOR">Administratzailea</entry>
<entry lang="eu" key="ADMIN_PRIVILEGES_DRIVER">TrueCryp-en kontrolatzailea kargatzeko administratzaile baimeneko kontu batekin saioa izan behar duzu.</entry>
<entry lang="eu" key="ADMIN_PRIVILEGES_WARN_DEVICES">Kontutan izan ezazu partizio/gailu bat enkriptatzeko/formateatzeko administratzaile baimeneko kontu batekin saioa izan behar duzula.\n\nHau ez da beharrezkoa fitxategi barneko bolumenentzako.</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="eu" key="ADMIN_PRIVILEGES_WARN_HIDVOL">Ezkutuko bolumena sortzeko administratzaile baimeneko kontu batekin saioa izan behar duzu.\n\nJarraitu?</entry>
<entry lang="eu" key="ADMIN_PRIVILEGES_WARN_NTFS">Ohartu zaitez bolumena NTFS moduan formateatu nahi baduzu administratzaile bezela sesioa zian behar duzula.\n\nAdministratzaile baimenik ez baduzu bolumenari FAT formatua eman diezaiokezu.</entry>
<entry lang="eu" key="AES_HELP">FIPS onartutako zifraketa (Rijndael, 1998ean argitaratua). E.B. gobernuko departamentu eta agentziek erabili dezakete informazio sekretua babesteko Top Secret mailara arte. 256 biteko gakoa, 128 biteko blokea, 14 saio. XTS moduan lan egiten du.</entry>
@@ -423,8 +421,8 @@
<entry lang="eu" key="DEVICE_FREE_PB">%s-ren tamaina %.2f PB-ekoa da</entry>
<entry lang="eu" key="DEVICE_IN_USE_FORMAT">KONTUZ: Sistemak edo aplikazioek gailua/partizioa erabiltzen ari dira. Gailua/partizioa formatatzea datuen hondatzea eta sistemaren ezegonkortasuna sortu dezake.\n\nJarraitu?</entry>
<entry lang="eu" key="DEVICE_IN_USE_INPLACE_ENC">KONTUZ: Sistema eragileak edo aplikazioek partizioa erabiltzen ari dira. Partizioa erabiltzen egon daitezken aplikazio guztiak itxi behar dituzu (software antibirusa barne).\n\nJarraitu?</entry>
<entry lang="eu" key="FORMAT_CANT_UNMOUNT_FILESYS">Errorea: Partizioak/gailuak dismuntatu ezin daitekeen fitxategi sistema dauka. Sistema eragileak fitxategi sistema erabiltzen ari daiteke. Partizioa/gailua formatatzea ziurenik datuak hondatuko ditu eta sistemaren desegonkortasuna sortuko du.\n\nArazo hau konpontzeko formatatu gabe partizioa ezabatu eta berriz sortzeko gomendatzen dugu. Hau egiteko hurrengo pausoak jarraitu:\n1)Eskubiko-klik egin ezazu 'PC' (edo 'Nire PC') ikonoan 'Hasiera Menu'-an, gero 'Kudeatu' aukeratu. 'Ordenagailuaren Kudeaketa' lehioa agertu beharko liteke.\n2)'Ordenagailuaren Kudeaketa' lehioan, 'Bilketa'&gt;'Diskoen Kudeaketa' aukeratu.\n3)Eskubiko-klik egin ezazu zifratu nahi duzun partizioan eta ondorengo aukera bat hautatu: 'Partizioa ezabatu', 'Bolumena Ezabatu' edo 'Unitate Logikoa Ezabatu'.\n4) 'Bai' sakatu. Windows-ek berrabiatzeko eskatzen badizu, hori egin. Gero 1 eta 2 pausuak berriro egin eta 5.arekin jarraitu.\n5)Eskubiko-clik esleitu gabeko/hutsik dagoen eremuan eta honako bat aukeratu: ' Partizio Berria', 'Bolumen Sinple Berria' ero 'Disko Logiko Berria'.\n6)'Partizio Berria Laguntzailea' edo 'Bolumen Sinple Berria Laguntzailea'-ren lehioa ireki beharko liteke; bere aginduak jarraitu itzazu. Laguntzailearen 'Partizioa Formatatu' lehioan, 'Partizioa Hau ez Formatatu' edo 'Bolumen hau ez Formatatu' aukeratu. Gero, laguntzaile horretan, 'Hurrengoa' sakatu eta gero 'Bukatu'. \n7) Ohartu zaitez VeraCrypt-en hautatu duzun unitatearen helbidea oker egon daitekeela orain. Hortaz, VeraCrypt Bolumenak Sortzeko Laguntzailetik atera zaitez (oraindik martxan badago) eta berriro ireki ezazu.\n8)Partizioa/Gailua berriro zifratzen saiatu zaitez\n\nVeraCrypt-ek behin eta berriro huts egiten badu gailua/partizioa enkriptatzerakoan, agian horren ordez fitxategi-edukiontzia izan dezakezu.</entry>
<entry lang="eu" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Errorea: Fitxategi sistema ezin izan da blokeatu/desmuntatu. Agian sistema eragilea edo beste aplikazioren bat (adibidez, antibirusa) erabiltzen ari da.Partizioa zifratzea datuak hondatu eta sistemaren ezegonkortasuna sortu dezake.\n\nMesedez, fitxategi sistema erabiltzen ari daitezkeen aplikazioak itxi itzazu (antibirusa barne) eta berriro saiatu. Honek ez badu laguntzen, behean dauden pausuak jarraitu itzazu..</entry>
<entry lang="eu" key="FORMAT_CANT_DISMOUNT_FILESYS">Errorea: Partizioak/gailuak dismuntatu ezin daitekeen fitxategi sistema dauka. Sistema eragileak fitxategi sistema erabiltzen ari daiteke. Partizioa/gailua formatatzea ziurenik datuak hondatuko ditu eta sistemaren desegonkortasuna sortuko du.\n\nArazo hau konpontzeko formatatu gabe partizioa ezabatu eta berriz sortzeko gomendatzen dugu. Hau egiteko hurrengo pausoak jarraitu:\n1)Eskubiko-klik egin ezazu 'PC' (edo 'Nire PC') ikonoan 'Hasiera Menu'-an, gero 'Kudeatu' aukeratu. 'Ordenagailuaren Kudeaketa' lehioa agertu beharko liteke.\n2)'Ordenagailuaren Kudeaketa' lehioan, 'Bilketa'&gt;'Diskoen Kudeaketa' aukeratu.\n3)Eskubiko-klik egin ezazu zifratu nahi duzun partizioan eta ondorengo aukera bat hautatu: 'Partizioa ezabatu', 'Bolumena Ezabatu' edo 'Unitate Logikoa Ezabatu'.\n4) 'Bai' sakatu. Windows-ek berrabiatzeko eskatzen badizu, hori egin. Gero 1 eta 2 pausuak berriro egin eta 5.arekin jarraitu.\n5)Eskubiko-clik esleitu gabeko/hutsik dagoen eremuan eta honako bat aukeratu: ' Partizio Berria', 'Bolumen Sinple Berria' ero 'Disko Logiko Berria'.\n6)'Partizio Berria Laguntzailea' edo 'Bolumen Sinple Berria Laguntzailea'-ren lehioa ireki beharko liteke; bere aginduak jarraitu itzazu. Laguntzailearen 'Partizioa Formatatu' lehioan, 'Partizioa Hau ez Formatatu' edo 'Bolumen hau ez Formatatu' aukeratu. Gero, laguntzaile horretan, 'Hurrengoa' sakatu eta gero 'Bukatu'. \n7) Ohartu zaitez VeraCrypt-en hautatu duzun unitatearen helbidea oker egon daitekeela orain. Hortaz, VeraCrypt Bolumenak Sortzeko Laguntzailetik atera zaitez (oraindik martxan badago) eta berriro ireki ezazu.\n8)Partizioa/Gailua berriro zifratzen saiatu zaitez\n\nVeraCrypt-ek behin eta berriro huts egiten badu gailua/partizioa enkriptatzerakoan, agian horren ordez fitxategi-edukiontzia izan dezakezu.</entry>
<entry lang="eu" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Errorea: Fitxategi sistema ezin izan da blokeatu/desmuntatu. Agian sistema eragilea edo beste aplikazioren bat (adibidez, antibirusa) erabiltzen ari da.Partizioa zifratzea datuak hondatu eta sistemaren ezegonkortasuna sortu dezake.\n\nMesedez, fitxategi sistema erabiltzen ari daitezkeen aplikazioak itxi itzazu (antibirusa barne) eta berriro saiatu. Honek ez badu laguntzen, behean dauden pausuak jarraitu itzazu..</entry>
<entry lang="eu" key="DEVICE_IN_USE_INFO">KONTUZ: Muntatutako gailu/partizio batzuk erabiltzen ari ziren!\n\nHau kontutan ez hartzeak nahi ez diren ondorioak ekar diztake, sistemaren ezegonkortasuna barne.\n\nGailuak/partizioak erabiltzen ari den edozein programa istea gogor gomendatzen dugu.</entry>
<entry lang="eu" key="DEVICE_PARTITIONS_ERR">Aukeratu duzun gailua partizioak dauzka.\n\nGailua formatatzea sistemaren ezegonkortasuna eta datuen hondatzea sortu dezake. Mesedez, aukeratu gailuaren partizio bat, edo gailuaren partizio guztiak ezabatu VeraCrypt-ek arazorik gabe formatatu dezan.</entry>
<entry lang="eu" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">Aukeratutako sistemarena ez den gailua partizioak dauzka.\n\nGailuan egindako VeraCrypt bolumen zifratuak partizioak ez dauzkaten gailuetan egin daitezke (disko gogorrak eta egoera-solidoko diskak barne). Partizioak dauzkan gailu bat guztiz 'bertan' enkriptatzeko dagoen modu bakarra (gako nagusi bakarra erabiliz) horretan Windows instalatuta badago eta bertatik hasieratzen bada.\n\nSistemakoa ez den gailu hori gako nagusi bakarrarekin zifratu nahi baduzu, lehendabizi bertan dauden partizio guztiak ezabatu beharko dituzu VeraCrypt-ek arazorik gabe formatatu dezan (partizioak dauzkan gailue formatatzea sistemaren ezegonkortasuna eta datuen galera sortu dezake). Alternatiboki, partizio bakoitza banaka zifratu dezakezu (partizio bakoitza gako nagusi ezberdin batekin zifratuko da).\n\nOharra: GPT disko batetik partizio guztiak kendu nahi badituzu, agian MBR diska motara bihurtu beharko duzu (adibidez, Computer Management tresna erabiliz) ezkutuko partizioak ezabatu ahal izateko.</entry>
@@ -590,7 +588,7 @@
<entry lang="eu" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">Errorea: Kanpoko bolumenera kopiatu dituzun fitxategiak leku gehiegi okupatzen dute. Horregatik, kanpoko bolumenean ez dago ezkutuko bolumen batentzako leku huts nahikorik.\n\nOhartu zaitez ezkutuko bolumenak sistemaren partizioaren (orain martxan dagoen sistema eragilea instalatuta dagoen partizioaren) tamaina izan behar duela gutxienez. Ezkutuko sistema eragilea sortzeko sistemaren partizioa ezkutuko bolumenera kopiatu beharra da honen arrazoia.\n\n\nEzkutuko sistema eragilea sortzeko prozesuak ezin du jarraitu.</entry>
<entry lang="eu" key="OPENFILES_DRIVER">Erabiltaileak ezin du bolumena desmuntatu. Ziurenik bolumenan dauden fitxategi batzuk oraindik irekita daude.</entry>
<entry lang="eu" key="OPENFILES_LOCK">Ezin izan da bolumena blokeatu. Bolumenean oraindik fitxategi irekiak daude. Hortaz, ezin da desmuntatu.</entry>
<entry lang="eu" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt-ek ezin du bolumena blokeatu sistema edo aplikazioren bat erabiltzen ari delako.\n\nBolumena desmuntatzera behartu nahi al duzu?</entry>
<entry lang="eu" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt-ek ezin du bolumena blokeatu sistema edo aplikazioren bat erabiltzen ari delako.\n\nBolumena desmuntatzera behartu nahi al duzu?</entry>
<entry lang="eu" key="OPEN_VOL_TITLE">VeraCrypt Bolumena Aukeratu</entry>
<entry lang="eu" key="OPEN_TITLE">Helbidea eta Fitxategiaren Izena Eman</entry>
<entry lang="eu" key="SELECT_PKCS11_MODULE">PKCS #11 Liburutegia Aukeratu</entry>
@@ -613,7 +611,7 @@
<entry lang="en" key="FAVORITE_PIM_CHANGED">This volume is registered as a System Favorite and its PIM was changed.\nDo you want VeraCrypt to automatically update the System Favorite configuration (administrator privileges required)?\n\nPlease note that if you answer no, you'll have to update the System Favorite manually.</entry>
<entry lang="eu" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">GARRANTZITSUA: VeraCrypt-en Salbatze Diska txikitu ez baduzu, zure sistemaren partizio/unitatea oraindik pasahitz zaharrarekin argitu daiteke (VeraCrypt-en Sablatze Diskarekin sistema abiatuz eta pasahitz zaharra sartuz). VeraCrypt Salbatze Diska berri bat sortu eta zaharra txikitu beharko zenuke.\n\nVeraCrypt Salbatze Diska berri bat sortu nahi al duzu?</entry>
<entry lang="eu" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">Ohartu zaitez VeraCrypt-en Salbatze Diskak oraindik algoritmo zaharra erabiltze duela. Algoritmo zaharra segurua ez dela iruditzen bazaizu, VeraCrypt Salbatze Diska berri bat sortu eta gero zaharra txikitu beharko zenuke.\n\nVeraCrypt Salbatze Diska berri bat sortu nahi al duzu?</entry>
<entry lang="eu" key="KEYFILES_NOTE">Kontutan hartu ezazu VeraCrypt-ek ez duela fitxategiaren edukia aldatzen. Karpeta bat aukeratzen baduzu, bertan dauden ezkutu gabeko fitxategi guztiak erabiliko dira gako-fitxategi moduan. 'Agiri Fitxategiak Gehitu' sakatu ezazu segurtasun agiri edo txartel azkarren barruan gordeta dauden gako-fitxategiak aukeratzeko (edo gako-fitxategiak sekurtasun agiri edo txartel azkarretara eramteko).</entry>
<entry lang="eu" key="KEYFILES_NOTE">Edozein fitxategi mota erabili daiteke (adibidez, .mp3, .jpg, .zip, .avi) VeraCrypt gako-fitxategi bezala. Kontutan hartu ezazu VeraCrypt-ek ez duela fitxategiaren edukia aldatzen. Karpeta bat aukeratzen baduzu, bertan dauden ezkutu gabeko fitxategi guztiak erabiliko dira gako-fitxategi moduan. 'Agiri Fitxategiak Gehitu' sakatu ezazu segurtasun agiri edo txartel azkarren barruan gordeta dauden gako-fitxategiak aukeratzeko (edo gako-fitxategiak sekurtasun agiri edo txartel azkarretara eramteko).</entry>
<entry lang="eu" key="KEYFILE_CHANGED">Gako-fitxategia(K) gehitu/kendu da(dira).</entry>
<entry lang="eu" key="KEYFILE_EXPORTED">Gako-fitxategia exportatu egin da.</entry>
<entry lang="eu" key="PKCS5_PRF_CHANGED">Goiburua lortzeko algoritmoa zuzenki ezarri da.</entry>
@@ -729,7 +727,7 @@
<entry lang="eu" key="DLL_FILES">Liburutegi Moduluak</entry>
<entry lang="eu" key="FORMAT_NTFS_STOP">NTFS formataketak ezin du jarraitu.</entry>
<entry lang="eu" key="CANT_MOUNT_VOLUME">Ezin da bolumena muntatu.</entry>
<entry lang="eu" key="CANT_UNMOUNT_VOLUME">Ezin da bolumena desmuntatu.</entry>
<entry lang="eu" key="CANT_DISMOUNT_VOLUME">Ezin da bolumena desmuntatu.</entry>
<entry lang="eu" key="FORMAT_NTFS_FAILED">Windows-ek bolumena NTFS moduan formatatzerakoan huts egin du.\n\nMesedez, fitxategi sistema mota ezberdina aukeratu (ahal bada) eta berriro saiatu. Bestela, bolumena formaturik gabe utzi ("Ezer" aukeratu fitxategi sistema bezela) eta laguntzaile honetatik irten. Gero, bolumena muntatu eta sistemaren edo hirugarren baten tresna bat erabili muntatutako bolumena formatatzeko (bolumena zifratuta jarraituko du).</entry>
<entry lang="eu" key="FORMAT_NTFS_FAILED_ASK_FAT">Windowsek bolumena NTFS erara formateatzerakoan huts egin du.\n\nBolumena FAT erara formateatu nahi al duzu?</entry>
<entry lang="eu" key="DEFAULT">Lehenetsitako</entry>
@@ -771,7 +769,7 @@
<entry lang="eu" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">Errore batek partizioaren zifraketa eragotzi du. Adierazitako erroreak konpontzen saiatu zaitez eta berriro saiatu. Arazoek jarraitzen badute, hurrengo instrukzioak jarraitzeak lagundu dezake.</entry>
<entry lang="eu" key="INPLACE_ENC_GENERIC_ERR_RESUME">Errore batek partizioaren zifratze prozesuaren jarraipena eragotzi du.\nMesedez, hau baino lehen arazorik aipatu badira, hauek konpontzen saiatu eta berriz prozesua jarratzen saiatu zaitez. Ohartu zaitez bolumena ezin dela muntatu guztiz zifratuta dagoen arte.</entry>
<entry lang="en" key="INPLACE_DEC_GENERIC_ERR">An error prevented VeraCrypt from decrypting the volume. Please try fixing any previously reported problems and then try again if possible.</entry>
<entry lang="eu" key="CANT_UNMOUNT_OUTER_VOL">Errorea: Ezin izan da kanpoko bolumena desmuntatu!\n\nBolumena ezin da desmuntatu sistemak edo programek han dauden fitxategi edo karpetak erabiltzen ari badira.\n\nMesedez, bolumenean dauden fitxategiak edo karpetak erabiltzen ari daitekeen programak itxi eta 'Berriro Saiatu klikatu.</entry>
<entry lang="eu" key="CANT_DISMOUNT_OUTER_VOL">Errorea: Ezin izan da kanpoko bolumena desmuntatu!\n\nBolumena ezin da desmuntatu sistemak edo programek han dauden fitxategi edo karpetak erabiltzen ari badira.\n\nMesedez, bolumenean dauden fitxategiak edo karpetak erabiltzen ari daitekeen programak itxi eta 'Berriro Saiatu klikatu.</entry>
<entry lang="eu" key="CANT_GET_OUTER_VOL_INFO">Errorea: Ezin izan da kanpoko bolumenari buruz informazioa eskuratu.\nBolumenaren sorrerak ezin du jarraitu.</entry>
<entry lang="eu" key="CANT_ACCESS_OUTER_VOL">Errorea: Ezin izan da kanpoko bolumenara heldu! Bolumenaren sorrerak ezin du jarraitu.</entry>
<entry lang="eu" key="CANT_MOUNT_OUTER_VOL">Errorea: Kanpoko bolumena ezin da muntatu. Bolumenaren sorrerak ezin du jarraitu.</entry>
@@ -813,7 +811,7 @@
<entry lang="eu" key="SECONDARY_KEY_SIZE_LRW">Tweak Gakoaren Tamaina (LRW Modua)</entry>
<entry lang="eu" key="BITS">bitak</entry>
<entry lang="eu" key="BLOCK_SIZE">Blokearen Tamaina</entry>
<entry lang="eu" key="KDF">KDF</entry>
<entry lang="eu" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="eu" key="PKCS5_ITERATIONS">PKCS-5 Iterazio Zenbaketa</entry>
<entry lang="eu" key="VOLUME_CREATE_DATE">Bolumena sortu da</entry>
<entry lang="eu" key="VOLUME_HEADER_DATE">Goiburuaren azken aldaketa</entry>
@@ -855,7 +853,7 @@
<entry lang="eu" key="TC_INSTALLER_IS_RUNNING">VeraCrypt-en instalatzailea dagoeneko martxan dago sistema honetan instalazio bat egiten edo prestatzen edo VeraCrypt-en eguneraketa batekin. Jarraitu baino lehen, mesedez, bukatzen den arte itxaron ezazu edo itxi ezazu. Ezin baduzu itxi, mesedez, zure ordenagailua berrabiatu ezazu jarraitu baino lehen.</entry>
<entry lang="eu" key="INSTALL_FAILED">Instalazioak huts egin du.</entry>
<entry lang="eu" key="UNINSTALL_FAILED">Desinstalazioak huts egin du.</entry>
<entry lang="eu" key="DIST_PACKAGE_CORRUPTED">Banaketaren pakete hau hondatuta dago. Mesedez, saiatu zaitez berriro deskargatzen (hobe VeraCrypt-en weborri ofizialetik https://veracrypt.jp).</entry>
<entry lang="eu" key="DIST_PACKAGE_CORRUPTED">Banaketaren pakete hau hondatuta dago. Mesedez, saiatu zaitez berriro deskargatzen (hobe VeraCrypt-en weborri ofizialetik https://www.veracrypt.fr).</entry>
<entry lang="eu" key="CANNOT_WRITE_FILE_X">Ezin da %s fitxategia idatzi</entry>
<entry lang="eu" key="EXTRACTING_VERB">Ateratzen</entry>
<entry lang="eu" key="CANNOT_READ_FROM_PACKAGE">Ezin da paketeko informazioa irakurri.</entry>
@@ -882,7 +880,7 @@
<entry lang="eu" key="INSTALL_COMPLETED">Inslatazioa bukatu da.</entry>
<entry lang="eu" key="CANT_CREATE_FOLDER">'%s' karpeta ezin izan da sortu</entry>
<entry lang="eu" key="CLOSE_TC_FIRST">VeraCrypt gailu erabiltzailea ezin da deskargatu.\n\nMesedez, lehendabizi VeraCrypt lehio guztiak itxi itzazu. Honek konpontzen ez badu, Windows berrabiatu eta berriro saiatu zaitez, mesedez.</entry>
<entry lang="eu" key="UNMOUNT_ALL_FIRST">VeraCrypt bolumen guztiak desmuntatu behar dira VeraCrypt instalatu edo desinstalatu baino lehen.</entry>
<entry lang="eu" key="DISMOUNT_ALL_FIRST">VeraCrypt bolumen guztiak desmuntatu behar dira VeraCrypt instalatu edo desinstalatu baino lehen.</entry>
<entry lang="eu" key="UNINSTALL_OLD_VERSION_FIRST">Sisteman VeraCrypt-en bertsio zaharkitu bat instalatuta dago. VeraCrypt-en bertsio berri hau instalatu baino lehen desinstalatu egin behar da.\n\nMezu lehio hau itxi bezain laister, bertsio zaharraren desinstalatzailea abiatuko da. Ohartu zaitez, ez dela bolumenik argituko VeraCrypt desinstalatzerakoan. VeraCrypt-en bertsio zaharra desinstalatu eta gero, VeraCrypt-en bertsio berriaren instalatzailea berriz abiatu ezazu..</entry>
<entry lang="eu" key="REG_INSTALL_FAILED">Erregistroko sarrerak instalatzerakoan huts egin du</entry>
<entry lang="eu" key="DRIVER_INSTALL_FAILED">Gailuaren kontrolatzailearen instalazioak huts egin du. Mesedez, Windows berrabiatu eta VeraCrypt berriro instalatzen saiatu zaitez.</entry>
@@ -903,7 +901,7 @@
<entry lang="eu" key="MINUTES">minutuaks</entry>
<entry lang="eu" key="SECONDS">s</entry>
<entry lang="eu" key="OPEN">Ireki</entry>
<entry lang="eu" key="UNMOUNT">Desmuntatu</entry>
<entry lang="eu" key="DISMOUNT">Desmuntatu</entry>
<entry lang="eu" key="SHOW_TC">VeraCrypt Erakutsi</entry>
<entry lang="eu" key="HIDE_TC">VeraCrypt Ezkutatu</entry>
<entry lang="eu" key="TOTAL_DATA_READ">Muntaketatik Irakurritako Datuak</entry>
@@ -940,7 +938,7 @@
<entry lang="eu" key="ENTER_HEADER_BACKUP_PASSWORD">Babeskopia fitxategian gordetako goiburuaren pasahitza sartu</entry>
<entry lang="eu" key="KEYFILE_CREATED">Gako-fitxategia sortu egin da.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_NUMBER">The number of keyfiles you supplied is invalid.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be at least 64 bytes.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be comprized between 64 and 1048576 bytes.</entry>
<entry lang="en" key="KEYFILE_EMPTY_BASE_NAME">Please enter a name for the keyfile(s) to be generated</entry>
<entry lang="en" key="KEYFILE_INVALID_BASE_NAME">The base name of the keyfile(s) is invalid</entry>
<entry lang="en" key="KEYFILE_ALREADY_EXISTS">The keyfile '%s' already exists.\nDo you want to overwrite it? The generation process will be stopped if you answer No.</entry>
@@ -975,7 +973,7 @@
<entry lang="eu" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - Sistemaren Gogoko Bolumenak</entry>
<entry lang="eu" key="SYS_FAVORITES_HELP_LINK">Zer dira sistemaren gogoko bolumenak?</entry>
<entry lang="eu" key="SYS_FAVORITES_REQUIRE_PBA">Sistemaren partizio/unitatea ez dirudi zifratuta dagoenik.\n\nSistemaren gogoko bolumenak bakarrik hasieraketa aurreko kautotze pasahitz batekin muntatu daitezke. Horregatik, sistemaren gogoko bolumenak erebili ahal izateko, lehendabizi sistemaren partizio/unitatea zifratu behar duzu.</entry>
<entry lang="eu" key="UNMOUNT_FIRST">Mesedez bolumena desmuntatu jarraitu baino lehen.</entry>
<entry lang="eu" key="DISMOUNT_FIRST">Mesedez bolumena desmuntatu jarraitu baino lehen.</entry>
<entry lang="eu" key="CANNOT_SET_TIMER">Errorea: Kronometroa ezin da jarri.</entry>
<entry lang="eu" key="IDPM_CHECK_FILESYS">Fitxategi sistema egiaztatu</entry>
<entry lang="eu" key="IDPM_REPAIR_FILESYS">Fitxategi sistema konpondu</entry>
@@ -1009,11 +1007,11 @@
<entry lang="eu" key="NO_SYSENC_PARTITION_SELECTED">Ez da partiziorik aukeratu\n\n'Gailua Aukeratu' sakatu ezazu normalean hasieraketa-aurreko kautotzea behar duen desmuntatutako partizio bat aukeratzeko (adibidez, beste sistema eragile baten sistemako unitatean dagoen partizio zifratu bat, edo beste sistema eragile baten zifratutako sistemaren partizioa.\n\nOharra: Aukeratutako partizioa VeraCrypt bolumen normal bat bezala muntatuko da, hasieraketa-aurreko kautotzerik gabe. Hau lagungarria da adibidez babeskopia edo konpontze lanetarako.</entry>
<entry lang="eu" key="CONFIRM_SAVE_DEFAULT_KEYFILES">KONTUZ: Lehenetsitako gako-fitxategiak aukeratu badira eta aktibatuta badaude, gako-fitxategi hauek erabiltzen ez dituzten bolumenak ezin izango dira muntatu. Horregatik, lehenetsitako gako-fitxategiak aktibatu eta gero, gogoratu ezazu 'Gako fitxategiak Erabili' aukera desmarkatzeaz (pasahitzaren laukiaren azpian) bolumen hauek muntatzerakoan.\n\nZiur zaude gako-fitxategi/helbide hauek lehenetsitakoak bezela gorde nahi dituzula?</entry>
<entry lang="eu" key="HK_AUTOMOUNT_DEVICES">Gailuak Auto-Muntatu</entry>
<entry lang="eu" key="HK_UNMOUNT_ALL">Denak Desmuntatu</entry>
<entry lang="eu" key="HK_DISMOUNT_ALL">Denak Desmuntatu</entry>
<entry lang="eu" key="HK_WIPE_CACHE">Katxea Ezabatu</entry>
<entry lang="eu" key="HK_UNMOUNT_ALL_AND_WIPE">Guztiak Desmuntatu eta Katxea Ezabatu</entry>
<entry lang="eu" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Guztiak Desmuntarazi eta Katxea Ezabatu</entry>
<entry lang="eu" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Guztiak Desmuntarazi, Katxea Ezabatu eta Irten</entry>
<entry lang="eu" key="HK_DISMOUNT_ALL_AND_WIPE">Guztiak Desmuntatu eta Katxea Ezabatu</entry>
<entry lang="eu" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Guztiak Desmuntarazi eta Katxea Ezabatu</entry>
<entry lang="eu" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Guztiak Desmuntarazi, Katxea Ezabatu eta Irten</entry>
<entry lang="eu" key="HK_MOUNT_FAVORITE_VOLUMES">Gogoko Bolumenak Muntatu</entry>
<entry lang="eu" key="HK_SHOW_HIDE_MAIN_WINDOW">VeraCrypt-en Lehio Nagusia Erakutsi/Ezkutatu</entry>
<entry lang="eu" key="PRESS_A_KEY_TO_ASSIGN">(Hemen clik egin eta tekla bat sakatu)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="eu" key="PAGING_FILE_CREATION_PREVENTED">Paginatze fixategiaren sorrera eragotzi da.\n\nMesedez, ohartu zaitez, Windowsen arazoengatik, ezin direla paginatze fitxategiak sistemakoak ez diren VeraCrypt bolumenetan sortu (sistemaren gogoko bolumenak barne). VeraCrypt-ek zifratutako sistemaren partizio/unitatean bakarrik onartzen du paginatze fitxategien sorrera.</entry>
<entry lang="eu" key="SYS_ENC_HIBERNATION_PREVENTED">Errore batek edo bateragarritasun eza VeraCrypt-i hibernatze fitxategia zifratzea eragotzi dio. Hortaz, hibernazioa ez da egin.\n\nOharra: Orgenagailu batek hibernatzen duenean (edo energia aurrezteko moduan dagoenean), sistemaren memoriaren edukiak disko gogorran dagoen hibernatze fitxategi batean idazten dira. VeraCrypt ezingo zen gai zifratze gakoen eta RAM memorian irekitako fitxategi pribatuen datuen zifratu gabe hibernatze fitxategaren idazkera eragozteko.</entry>
<entry lang="eu" key="HIDDEN_OS_HIBERNATION_PREVENTED">Hibernazioa ergotzi da.\n\nVeraCrypt-ek ez du hibernaziorik onartzen hasieraketa partizio extra bat erabiltzen duten ezkutuko sistema eragiletan. Ohartu zaitez hasieraketa partizio bera erabiltzen dutela sistema eragile amu eta ezkutuak. Horregatik, datuen filtratzea eta hibernaziotik bueltatzerakoan egon daitezkeen arazoak eragozteko, VeraCryptek debekatu behar dio sistema ezkutuari hasieraketa partizio horretan idaztea eta, hortaz, hibernatzea ere.</entry>
<entry lang="eu" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">%c bezala muntatutako VeraCrypt bolumena: desmuntatu egin da.</entry>
<entry lang="eu" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt bolumenak desmuntatu egin dira.</entry>
<entry lang="eu" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt bolumenak desmuntatu egin dira eta pasahitz katxea ezabatu egin da.</entry>
<entry lang="eu" key="SUCCESSFULLY_UNMOUNTED">Ondo desmuntatu egin da</entry>
<entry lang="eu" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">%c bezala muntatutako VeraCrypt bolumena: desmuntatu egin da.</entry>
<entry lang="eu" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt bolumenak desmuntatu egin dira.</entry>
<entry lang="eu" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt bolumenak desmuntatu egin dira eta pasahitz katxea ezabatu egin da.</entry>
<entry lang="eu" key="SUCCESSFULLY_DISMOUNTED">Ondo desmuntatu egin da</entry>
<entry lang="eu" key="CONFIRM_BACKGROUND_TASK_DISABLED">KONTUZ: VeraCrypt-en Ezkutuko Ataza ezgaituta badago, hondorengo funtzioak ere ezgaituta egongo dira:\n\n1) Tekla Bereziak\n2) Auto-desmuntaketa (adib.: saioa amaitzerakoan, gailu ostalaria kentzerakoan,e.a.)\n3) Gogoko bolumenen auto-muntaketa\n4) Jakinarazpenak (adib.: ezkutuko bolumenari kaltea eragotzi zaionean)\n5) Erretiluko ikonoa\n\nOharra: VeraCrypt-en Ezkutuko Ataza edozein momentutan itzali dezakezu erretiluko ikonoan klik eginez eta 'Irten' aukeratuz.\n\nZiur zaude betirako VeraCrypt-en Ezkutuko Ataza ezgaitu nahi duzula?</entry>
<entry lang="eu" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">KONTUZ: Aukera hau ezgaituta badago, fitxategi/karpeta irekiak dituzten bolumenak ezin izango dira auto-desmuntatu.\n\nZiur zaude aukera hau ezgaitu nahi duzula?</entry>
<entry lang="eu" key="WARN_PREF_AUTO_UNMOUNT">KONTUZ: Irekita dauden fitxategi/karpetak dituzten bolumenak EZ dira auto-desmuntatuko.\n\nHau eragozteko hondorengo aukera hautatu ezazu lehio honetan bertan: 'Auto-desmuntaketa eragin bolumenak irekitako Ffitxategi edo karpetak baditu ere'.</entry>
<entry lang="eu" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">KONTUZ: Ordenagailu eramangarriaren bateria baxua denean, izan daiteke Windowsek martxan dauden aplikazioei mezu egokiak ez bidaltzea energia aurrezte moduan sartzen ari denean. Horregatik, kasu horietan VeraCrypt-ek bolumenak auto-desmuntatzerakoan huts egin dezake.</entry>
<entry lang="eu" key="CONFIRM_NO_FORCED_AUTODISMOUNT">KONTUZ: Aukera hau ezgaituta badago, fitxategi/karpeta irekiak dituzten bolumenak ezin izango dira auto-desmuntatu.\n\nZiur zaude aukera hau ezgaitu nahi duzula?</entry>
<entry lang="eu" key="WARN_PREF_AUTO_DISMOUNT">KONTUZ: Irekita dauden fitxategi/karpetak dituzten bolumenak EZ dira auto-desmuntatuko.\n\nHau eragozteko hondorengo aukera hautatu ezazu lehio honetan bertan: 'Auto-desmuntaketa eragin bolumenak irekitako Ffitxategi edo karpetak baditu ere'.</entry>
<entry lang="eu" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">KONTUZ: Ordenagailu eramangarriaren bateria baxua denean, izan daiteke Windowsek martxan dauden aplikazioei mezu egokiak ez bidaltzea energia aurrezte moduan sartzen ari denean. Horregatik, kasu horietan VeraCrypt-ek bolumenak auto-desmuntatzerakoan huts egin dezake.</entry>
<entry lang="eu" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Partizio/Bolumen baten zifraketa programatu duzu. Prozesua oraindik ez da bukatu.\n\nProzesua orain jarraitu nahi al duzu?</entry>
<entry lang="eu" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">Sistemaren partizioaren/unitatearen zifraketa edo argitze prozesua programatu duzu. Prozesu hau ez da oraindik bukatu.\n\n Prozesu hau orain hasi (jarraitu) nahi al duzu?</entry>
<entry lang="eu" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">Sistemakoak ez diren partizio/bolumenen zifraketa prozesu programatuen berriz hasteko mezuak jaso nahi dituzu?</entry>
@@ -1063,7 +1061,7 @@
<entry lang="eu" key="SYS_AUTOMOUNT_DISABLED">Zure sistema ez dago konfiguratuta bolumen berriak auto-muntatzeko. Ezinezkoa izan daiteke gailuan ostatutako VeraCrypt bolumenak muntatzea. Auto-muntatzea aktibatu daiteke hurrengo komandoa exekutatuz eta sistema berrabiatuz.\n\nmountvol.exe /E</entry>
<entry lang="eu" key="SYS_ASSIGN_DRIVE_LETTER">Mesedez unitate letra bat eman iezaiozu partizio/gailuari jarraitu aurretik ( 'Kontrol-panela' &gt; 'Sistema eta Mantentzea' &gt; 'Tresna Administratiboak' - 'Disko gogorrean partizioak egin eta formatatu').\n\nOhartu zaitez hau sistema eragilearen eskakizuna dela.</entry>
<entry lang="eu" key="MOUNT_TC_VOLUME">VeraCrypt bolumena muntatu</entry>
<entry lang="eu" key="UNMOUNT_ALL_TC_VOLUMES">VeraCrypt bolumen guztiak desmuntatu</entry>
<entry lang="eu" key="DISMOUNT_ALL_TC_VOLUMES">VeraCrypt bolumen guztiak desmuntatu</entry>
<entry lang="eu" key="UAC_INIT_ERROR">VeraCrypt-ek huts egin du Administratzaile baimenak lortzerakoan.</entry>
<entry lang="eu" key="ERR_ACCESS_DENIED">Sistema eragileak sartzea debekatu du.\n\nZergati probablea: Sistema eragileak zenbait karpeta, fitzxategi eta unitateetan irakurri eta idazteko baimena (edo administratzaile baimena) izatea behartzen du bertan datuak irakurri eta idatzi ahal izateko. Orokorrean, administratzaile baimenik gabeko erabiltzaile batek bere Dokumentuak karpetan fitxategiak sortu, irakurri eta aldatzeko baimena izaten du.</entry>
<entry lang="eu" key="SECTOR_SIZE_UNSUPPORTED">Errorea: Unitateak onartzen ez den sektore tamaina erabiltzen du.\n\nMomentuz ezin da partizoan/gailuan ostatutako bolumenik sortu 4096 byte baino gehiagoko sektoreak erabiltzen dituzten unitateetan. Hala ere, ohartu zaitez unitate horietan fitxategian ostatutako bolumenak (edukiontziak) sortu daitezkela.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="eu" key="HIDDEN_OS_CREATION_PREINFO_HELP">Hurrengo urratsetan VeraCrypt ezkutuko sistema eragile berria sortuko du sistemaren partizioa ezkutuko bolumenera kopiatuz (kopiatutako datuak segidan zifratuko dira sistema amu bezala dagoen sistema eragileak daukan gako ezberdinarekin).\n\nKontutan izan ezazu prozesu hau hasieraketa aurreko ingurunean (Windows hasi aurretik) egingo dela eta asko iraun dezakela; orduak edo egunak (sistemaren partizioaren tamaina eta ordenagailuaren potentziaren arabera).\n\nProzesua bertan bera uzti ahal izango duzu ordenagailua itzaliz, sistema eragilea hasieratu eta prozesua jarraitu. Hala ere, prozesua mozten baduzu, sistema kopiatzeko prozesu guztia haieratik hasi behar izando da berriro (sistemaren partizioaren edukia ezin daitekeelako aldatu klonatze prozesua martxan dagoenean).</entry>
<entry lang="eu" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">Ezkutuko sistema eragilearen sortzeko prozesua bertan behera utzi nahi al duzu?n\nOharra: Orain uzten baduzu ezingo diozu prozesuari berrekin.</entry>
<entry lang="eu" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">Sistema zifratzeko aurre-azterketa bertan behera utzi nahi al duzu?</entry>
<entry lang="eu" key="BOOT_PRETEST_FAILED_RETRY">VeraCrypt-en sistema zifratzeko aurre-azterketak huts egin du. Berriz saiatu nahi duzu?\n\n'Ez' aukeratzen baduzu, hasieraketa aurreko kautotze osagarria desinstalatuko da.\n\nOharrak:\n\n- VeraCrypt Hasieraketa Kargatzaileak ez badizu pasahitzik eskatu Windows hasi aurretik, agian zure sistema eragilea ez da abiatzen instalatuta dagoen unitatetik. Hori ez dago onartua.\n\n- AES ez den zifraketa algoritmo bat erabili baduzu eta aurre-azterketak huts egin badu (eta pasahitza sartu duzu), gaizki diseinatuta dagoen erabiltzaile baten errua izan daiteke. 'Ez' aukeratu ezazu eta sistemaren partizio/unitatea berriz zifratzen saiatu zatez, baina oraingoan AES zifratze algoritmoa erabiliz (zeinek memoria behar baxuenak dituen).\n\n- Zergati eta konponbide gehiago ikusteko: https://veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="eu" key="BOOT_PRETEST_FAILED_RETRY">VeraCrypt-en sistema zifratzeko aurre-azterketak huts egin du. Berriz saiatu nahi duzu?\n\n'Ez' aukeratzen baduzu, hasieraketa aurreko kautotze osagarria desinstalatuko da.\n\nOharrak:\n\n- VeraCrypt Hasieraketa Kargatzaileak ez badizu pasahitzik eskatu Windows hasi aurretik, agian zure sistema eragilea ez da abiatzen instalatuta dagoen unitatetik. Hori ez dago onartua.\n\n- AES ez den zifraketa algoritmo bat erabili baduzu eta aurre-azterketak huts egin badu (eta pasahitza sartu duzu), gaizki diseinatuta dagoen erabiltzaile baten errua izan daiteke. 'Ez' aukeratu ezazu eta sistemaren partizio/unitatea berriz zifratzen saiatu zatez, baina oraingoan AES zifratze algoritmoa erabiliz (zeinek memoria behar baxuenak dituen).\n\n- Zergati eta konponbide gehiago ikusteko: https://www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="eu" key="SYS_DRIVE_NOT_ENCRYPTED">Sistemaren partizioa/unitatea ez dirudi zifratuta dagoenik (ez zati bat, ez guztiz).</entry>
<entry lang="eu" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">Zure sistemaren partizioa/unitatea (zatika edo guztiz) zifratuta dago.\n\nMesedez, sistemaren partizio/unitate osoa argitu jarraitu aurretik. Hori egiteko, 'Sistema' &gt; 'Sistemaren Partizioa/Unitatea Betirako Argitu' aukeratu VeraCrypt lehio nagusiaren menuan.</entry>
<entry lang="eu" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">Sistemaren partizioa/unitatea (zatika edo guztiz) zifratuta dagoenean, ezin zara VeraCrypt-en bertsio zahar batera aldatu (baina berri bat instalatu edo martxan dagoena berrinstalatu bai).</entry>
@@ -1306,8 +1304,8 @@
<entry lang="eu" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Ohartu zaitez, momentu honetan prozesu kopurua mugatuta dagoela, hau froga multzoaren emaitzetan nabarituko da (errendimentu okerragoa izango du).\n\nProzesadorearen ahalmen osoa erabiltzeko, 'Ezaugarriak' &gt; 'Errendimendua' aukeratu ezazu eta bertan dagokion aukera ezgaitu ezazu.</entry>
<entry lang="eu" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">VeraCrypt partizioaren/unitatearen idazteko babesa ezgaitzen sailatzea nahi duzu?</entry>
<entry lang="eu" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">KONTUZ: Ezarpen honek errendimenduari kalte egin diezaioke.\n\nZiur zaude ezarpen hau erabili nahi duzula?</entry>
<entry lang="eu" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Kontuz: VeraCrypt bolumena auto-desmuntatuta</entry>
<entry lang="eu" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Bolumena daukan gailua fisikoki kendu edo itzali bahino lehen, VeraCrypt bolumena beti desmuntatu beharko zenuke.\n\nOrokorrean, ustekabeko desmuntaketak normalean noizbehinka huts egiten duten kabletan, kontrolatzaileatan, e.a. izaten daukate jatorria.</entry>
<entry lang="eu" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Kontuz: VeraCrypt bolumena auto-desmuntatuta</entry>
<entry lang="eu" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Bolumena daukan gailua fisikoki kendu edo itzali bahino lehen, VeraCrypt bolumena beti desmuntatu beharko zenuke.\n\nOrokorrean, ustekabeko desmuntaketak normalean noizbehinka huts egiten duten kabletan, kontrolatzaileatan, e.a. izaten daukate jatorria.</entry>
<entry lang="en" key="UNSUPPORTED_TRUECRYPT_FORMAT">This volume was created with TrueCrypt %x.%x but VeraCrypt supports only TrueCrypt volumes created with TrueCrypt 6.x/7.x series</entry>
<entry lang="eu" key="TEST">Frogatu</entry>
<entry lang="eu" key="KEYFILE">Gako-fitxategia</entry>
@@ -1453,7 +1451,7 @@
<entry lang="en" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Add All Mounted Volumes to Favorites...</entry>
<entry lang="en" key="TASKICON_PREF_MENU_ITEMS">Task Icon Menu Items</entry>
<entry lang="en" key="TASKICON_PREF_OPEN_VOL">Open Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_DISMOUNT_VOL">Dismount Mounted Volumes</entry>
<entry lang="en" key="DISK_FREE">Free space available: {0}</entry>
<entry lang="en" key="VOLUME_SIZE_HELP">Please specify the size of the container to create. Note that the minimum possible size of a volume is 292 KiB.</entry>
<entry lang="en" key="LINUX_CONFIRM_INNER_VOLUME_CALC">WARNING: You have selected a filesystem other than FAT for the outer volume.\nPlease Note that in this case VeraCrypt can't calculate the exact maximum allowed size for the hidden volume and it will use only an estimation that can be wrong.\nThus, it is your responsibility to use an adequate value for the size of the hidden volume so that it does not overlap the outer volume.\n\nDo you want to continue using the selected filesystem for the outer volume?</entry>
@@ -1483,14 +1481,14 @@
<entry lang="en" key="LINUX_DO_NOT_MOUNT">Do &amp;not mount</entry>
<entry lang="en" key="LINUX_MOUNT_AT_DIR">Mount at directory:</entry>
<entry lang="en" key="LINUX_SELECT">Se&amp;lect...</entry>
<entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount All Volumes When</entry>
<entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry>
<entry lang="en" key="LINUX_ENTERING_POWERSAVING">System is entering power saving mode</entry>
<entry lang="en" key="LINUX_LOGIN_ACTION">Actions to Perform when User Logs On</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Close all Explorer windows of volume being dismounted</entry>
<entry lang="en" key="LINUX_HOTKEYS">Hotkeys</entry>
<entry lang="en" key="LINUX_SYSTEM_HOTKEYS">System-Wide Hotkeys</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/unmount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_UNMOUNT">Display confirmation message box after unmount</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/dismount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_DISMOUNT">Display confirmation message box after dismount</entry>
<entry lang="en" key="LINUX_VC_QUITS">VeraCrypt quits</entry>
<entry lang="en" key="LINUX_OPEN_FINDER">Open Finder window for successfully mounted volume</entry>
<entry lang="en" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Please note that this setting takes effect only if use of the kernel cryptographic services is disabled.</entry>
@@ -1510,11 +1508,11 @@
<entry lang="en" key="LINUX_DYNAMIC_NOTICE">Please note that if your operating system does not allocate files from the beginning of the free space, the maximum possible hidden volume size may be much smaller than the size of the free space on the outer volume. This is not a bug in VeraCrypt but a limitation of the operating system.</entry>
<entry lang="en" key="LINUX_MAX_HIDDEN_SIZE">Maximum possible hidden volume size for this volume is {0}.</entry>
<entry lang="en" key="LINUX_OPEN_OUTER_VOL">Open Outer Volume</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not unmount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not dismount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">Error: You are trying to encrypt a system drive.\n\nVeraCrypt can encrypt a system drive only under Windows.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">Error: You are trying to encrypt a system partition.\n\nVeraCrypt can encrypt system partitions only under Windows.</entry>
<entry lang="en" key="LINUX_WARNING_FORMAT_DESTROY_FS">WARNING: Formatting of the device will destroy all data on filesystem '{0}'.\n\nDo you want to continue?</entry>
<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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please dismount '{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>
@@ -1522,8 +1520,7 @@
<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>
<entry lang="en" key="LINUX_VOL_DISMOUNTED">Volume {0} has been dismounted.</entry>
<entry lang="en" key="LINUX_OOM">Out of memory.</entry>
<entry lang="en" key="LINUX_CANT_GET_ADMIN_PRIV">Failed to obtain administrator privileges</entry>
<entry lang="en" key="LINUX_COMMAND_GET_ERROR">Command {0} returned error {1}.</entry>
@@ -1553,7 +1550,7 @@
<entry lang="en" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Error: The drive uses a sector size other than 512 bytes.\n\nDue to limitations of components available on your platform, partition/device-hosted volumes cannot be created/used on the drive.\n\nPossible solutions:\n- Create a file-hosted volume (container) on the drive.\n- Use a drive with 512-byte sectors.\n- Use VeraCrypt on another platform.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">The host file/device is already in use.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Volume slot unavailable.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires macFUSE 2.5 or above.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires OSXFUSE 2.5 or above.</entry>
<entry lang="en" key="EXCEPTION_OCCURRED">Exception occurred</entry>
<entry lang="en" key="ENTER_PASSWORD">Enter password</entry>
<entry lang="en" key="ENTER_TC_VOL_PASSWORD">Enter VeraCrypt Volume Password</entry>
@@ -1570,124 +1567,6 @@
<entry lang="en" key="VOLUME_HOST_IN_USE">WARNING: The host file/device {0} is already in use!\n\nIgnoring this can cause undesired results including system instability. All applications that might be using the host file/device should be closed before mounting the volume.\n\nContinue mounting?</entry>
<entry lang="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
<entry lang="en" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">VeraCrypt cannot be upgraded because the system partition/drive was encrypted using an algorithm that is not supported anymore.\nPlease decrypt your system before upgrading VeraCrypt and then encrypt it again.</entry>
<entry lang="en" key="LINUX_EX2MSG_TERMINALNOTFOUND">Supported terminal application could not be found, you need either xterm, konsole or gnome-terminal (with dbus-x11).</entry>
<entry lang="en" key="IDM_MOUNT_NO_CACHE">Mount Without Cache</entry>
<entry lang="en" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nExpand a VeraCrypt volume on the fly without reformatting\n\n\nAll kind of volumes (container files, disks and partitions) formatted with NTFS are supported. The only condition is that there must be enough free space on the host drive or host device of the VeraCrypt volume.\n\nDo not use this software to expand an outer volume containing a hidden volume, because this destroys the hidden volume!\n</entry>
<entry lang="en" key="IDC_STEPSEXPAND">1. Select the VeraCrypt volume to be expanded\n2. Click the 'Mount' button</entry>
<entry lang="en" key="IDT_VOL_NAME">Volume: </entry>
<entry lang="en" key="IDT_FILE_SYS">File system: </entry>
<entry lang="en" key="IDT_CURRENT_SIZE">Current size: </entry>
<entry lang="en" key="IDT_NEW_SIZE">New size: </entry>
<entry lang="en" key="IDT_NEW_SIZE_BOX_TITLE">Enter new volume size</entry>
<entry lang="en" key="IDC_INIT_NEWSPACE">Fill new space with random data</entry>
<entry lang="en" key="IDC_QUICKEXPAND">Quick Expand</entry>
<entry lang="en" key="IDT_INIT_SPACE">Fill new space: </entry>
<entry lang="en" key="EXPANDER_FREE_SPACE">%s free space available on host drive</entry>
<entry lang="en" key="EXPANDER_HELP_DEVICE">This is a device-based VeraCrypt volume.\n\nThe new volume size will be choosen automatically as the size of the host device.</entry>
<entry lang="en" key="EXPANDER_HELP_FILE">Please specify the new size of the VeraCrypt volume (must be at least %I64u KB larger than the current size).</entry>
<entry lang="en" key="QUICK_EXPAND_WARNING">WARNING: You should use Quick Expand only in the following cases:\n\n1) The device where the file container is located contains no sensitive data and you do not need plausible deniability.\n2) The device where the file container is located has already been securely and fully encrypted.\n\nAre you sure you want to use Quick Expand?</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT">IMPORTANT: Move your mouse as randomly as possible within this window. The longer you move it, the better. This significantly increases the cryptographic strength of the encryption keys. Then click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT_LEGACY">Click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_FINISH_ERROR">Error: volume expansion failed.</entry>
<entry lang="en" key="EXPANDER_FINISH_ABORT">Error: operation aborted by user.</entry>
<entry lang="en" key="EXPANDER_FINISH_OK">Finished. Volume successfully expanded.</entry>
<entry lang="en" key="EXPANDER_CANCEL_WARNING">Warning: Volume expansion is in progress!\n\nStopping now may result in a damaged volume.\n\nDo you really want to cancel?</entry>
<entry lang="en" key="EXPANDER_STARTING_STATUS">Starting volume expansion ...\n</entry>
<entry lang="en" key="EXPANDER_HIDDEN_VOLUME_ERROR">An outer volume containing a hidden volume can't be expanded, because this destroys the hidden volume.\n</entry>
<entry lang="en" key="EXPANDER_SYSTEM_VOLUME_ERROR">A VeraCrypt system volume can't be expanded.</entry>
<entry lang="en" key="EXPANDER_NO_FREE_SPACE">Not enough free space to expand the volume</entry>
<entry lang="en" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Warning: The container file is larger than the VeraCrypt volume area. The data after the VeraCrypt volume area will be overwritten.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_FAT">Warning: The VeraCrypt volume contains a FAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_EXFAT">Warning: The VeraCrypt volume contains an exFAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_UNKNOWN_FS">Warning: The VeraCrypt volume contains an unknown or no file system!\n\nOnly the VeraCrypt volume itself will be expanded, the file system remains unchanged.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">New volume size too small, must be at least %I64u kB larger than the current size.</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">New volume size too large, not enough space on host drive.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Maximum file size of %I64u MB on host drive exceeded.</entry>
<entry lang="en" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Error: Failed to get necessary privileges to enable Quick Expand!\nPlease uncheck Quick Expand option and try again.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Maximum VeraCrypt volume size of %I64u TB exceeded!\n</entry>
<entry lang="en" key="FULL_FORMAT">Full Format</entry>
<entry lang="en" key="FAST_CREATE">Fast Create</entry>
<entry lang="en" key="WARN_FAST_CREATE">WARNING: You should use Fast Create only in the following cases:\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 Fast Create?</entry>
<entry lang="en" key="IDC_ENABLE_EMV_SUPPORT">Enable EMV Support</entry>
<entry lang="en" key="COMMAND_APDU_INVALID">The APDU command sent to the card is not valid.</entry>
<entry lang="en" key="EXTENDED_APDU_UNSUPPORTED">Extended APDU commands cannot be used with the current token.</entry>
<entry lang="en" key="SCARD_MODULE_INIT_FAILED">Error when loading the WinSCard / PCSC library.</entry>
<entry lang="en" key="EMV_UNKNOWN_CARD_TYPE">The card in the reader is not a supported EMV card.</entry>
<entry lang="en" key="EMV_SELECT_AID_FAILED">The AID of the card in the reader could not be selected.</entry>
<entry lang="en" key="EMV_ICC_CERT_NOTFOUND">ICC Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_ISSUER_CERT_NOTFOUND">Issuer Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_CPLC_NOTFOUND">CPLC was not found in the EMV card.</entry>
<entry lang="en" key="EMV_PAN_NOTFOUND">No Primary Account Number (PAN) found in the EMV card.</entry>
<entry lang="en" key="INVALID_EMV_PATH">EMV path is invalid.</entry>
<entry lang="en" key="EMV_KEYFILE_DATA_NOTFOUND">Unable to build a keyfile from the EMV card's data.\n\nOne of the following is missing:\n- ICC Public Key Certificate.\n- Issuer Public Key Certificate.\n- CPLC data.</entry>
<entry lang="en" key="SCARD_W_REMOVED_CARD">No card in the reader.\n\nPlease make sure the card is correctly slotted.</entry>
<entry lang="en" key="FORMAT_EXTERNAL_FAILED">Windows format.com command failed to format the volume as NTFS/exFAT/ReFS: Error 0x%.8X.\n\nFalling back to using Windows FormatEx API.</entry>
<entry lang="en" key="FORMATEX_API_FAILED">Windows FormatEx API failed to format the volume as NTFS/exFAT/ReFS.\n\nFailure status = %s.</entry>
<entry lang="en" key="EXPANDER_WRITING_RANDOM_DATA">Writing random data to new space ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Writing re-encrypted backup header ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Writing re-encrypted primary header ...\n</entry>
<entry lang="en" key="EXPANDER_WIPING_OLD_HEADER">Wiping old backup header ...\n</entry>
<entry lang="en" key="EXPANDER_MOUNTING_VOLUME">Mounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_UNMOUNTING_VOLUME">Unmounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_EXTENDING_FILESYSTEM">Extending file system ...\n</entry>
<entry lang="en" key="PARTIAL_SYSENC_MOUNT_READONLY">Warning: The system partition you attempted to mount was not fully encrypted. As a safety measure to prevent potential corruption or unwanted modifications, volume '%s' was mounted as read-only.</entry>
<entry lang="en" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Important information on using third-party file extensions</entry>
<entry lang="en" key="IDC_DISABLE_MEMORY_PROTECTION">Disable memory protection for Accessibility tools compatibility</entry>
<entry lang="en" key="DISABLE_MEMORY_PROTECTION_WARNING">WARNING: Disabling memory protection significantly reduces security. Enable this option ONLY if you rely on Accessibility tools, like Screen Readers, to interact with VeraCrypt's UI.</entry>
<entry lang="eu" key="LINUX_LANGUAGE">Hizkuntza</entry>
<entry lang="en" key="LINUX_SELECT_SYS_DEFAULT_LANG">Select system's default language</entry>
<entry lang="en" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">For the language change to come into effect, VeraCrypt needs to be restarted.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE">WARNING: The volume's master key is vulnerable to an attack that compromises data security.\n\nPlease create a new volume and transfer the data to it.</entry>
<entry lang="en" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">WARNING: The encrypted system's master key is vulnerable to an attack that compromises data security.\nPlease decrypt the system partition/drive and then re-encrypt it.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">WARNING: The volume's master key has a security vulnerability.</entry>
<entry lang="en" key="MOUNTPOINT_BLOCKED">ERROR: The volume mount point is blocked because it overrides a protected system directory.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="MOUNTPOINT_NOTALLOWED">ERROR: The volume mount point is not allowed because it overrides a directory that is part of the PATH environment variable.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="INSECURE_MODE">[INSECURE MODE]</entry>
<entry lang="en" key="IDC_DISABLE_SCREEN_PROTECTION">Disable protection against screenshots and screen recording</entry>
<entry lang="en" key="DISABLE_SCREEN_PROTECTION_WARNING">WARNING: Disabling screen protection significantly reduces security. Enable this option ONLY if you have a specific need to capture VeraCrypt's interface. This may expose sensitive data to screenshot tools and screen recording features such as Windows 11 Recall.</entry>
<entry lang="en" key="MEMORY_COST">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="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>
<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>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+83 -204
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
@@ -135,8 +135,8 @@
<entry lang="en" key="IDC_FAVORITE_REMOVE">&amp;Remove</entry>
<entry lang="en" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Use favorite label as Explorer drive label</entry>
<entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key dismount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key dismount</entry>
<entry lang="fa" key="IDC_HK_MOD_ALT">Alt كليد</entry>
<entry lang="en" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="fa" key="IDC_HK_MOD_SHIFT">كليد شيفت</entry>
@@ -156,12 +156,12 @@
<entry lang="en" key="IDC_PIM_HELP">(Empty or 0 for default iterations)</entry>
<entry lang="fa" key="IDC_PREF_BKG_TASK_ENABLE">فعال است</entry>
<entry lang="fa" key="IDC_PREF_CACHE_PASSWORDS">كلمه عبور را در حافظه درايور ذخيره كند</entry>
<entry lang="fa" key="IDC_PREF_UNMOUNT_INACTIVE">اگر اطلاعاتي خوانده و يا نوشته نشد فايل سيستم را اتوماتيك ببند</entry>
<entry lang="fa" key="IDC_PREF_UNMOUNT_LOGOFF">لاگ آف</entry>
<entry lang="en" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="fa" key="IDC_PREF_UNMOUNT_POWERSAVING">مود ذخيره انرژي</entry>
<entry lang="fa" key="IDC_PREF_UNMOUNT_SCREENSAVER">محافظ صفحه نمايش فعال است</entry>
<entry lang="fa" key="IDC_PREF_FORCE_AUTO_UNMOUNT">بصورت اتوماتيك و الزامي درايوها و فايل سيستم باز را ببندد</entry>
<entry lang="fa" key="IDC_PREF_DISMOUNT_INACTIVE">اگر اطلاعاتي خوانده و يا نوشته نشد فايل سيستم را اتوماتيك ببند</entry>
<entry lang="fa" key="IDC_PREF_DISMOUNT_LOGOFF">لاگ آف</entry>
<entry lang="en" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="fa" key="IDC_PREF_DISMOUNT_POWERSAVING">مود ذخيره انرژي</entry>
<entry lang="fa" key="IDC_PREF_DISMOUNT_SCREENSAVER">محافظ صفحه نمايش فعال است</entry>
<entry lang="fa" key="IDC_PREF_FORCE_AUTO_DISMOUNT">بصورت اتوماتيك و الزامي درايوها و فايل سيستم باز را ببندد</entry>
<entry lang="en" key="IDC_PREF_LOGON_MOUNT_DEVICES">Mount all device-hosted VeraCrypt volumes</entry>
<entry lang="en" key="IDC_PREF_LOGON_START">Start VeraCrypt Background Task</entry>
<entry lang="fa" key="IDC_PREF_MOUNT_READONLY">فايل سيستم فقط خواندني را استارت كند</entry>
@@ -169,7 +169,7 @@
<entry lang="fa" key="IDC_PREF_OPEN_EXPLORER">مرورگر را براي فايل سيستم هايي كه با موفقيت مونت شدند بازكن</entry>
<entry lang="en" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">Temporarily cache password during "Mount Favorite Volumes" operations</entry>
<entry lang="en" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Use a different taskbar icon when there are mounted volumes</entry>
<entry lang="en" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Wipe cached passwords on auto-unmount</entry>
<entry lang="en" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Wipe cached passwords on auto-dismount</entry>
<entry lang="en" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Wipe cached passwords on exit</entry>
<entry lang="en" key="IDC_PRESERVE_TIMESTAMPS">Preserve modification timestamp of file containers</entry>
<entry lang="fa" key="IDC_RESET_HOTKEYS">تنظیم مجدد</entry>
@@ -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">Di&amp;smount All</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>
@@ -255,8 +255,8 @@
<entry lang="en" key="IDM_TEST_VECTORS">Test Vectors...</entry>
<entry lang="en" key="IDM_TOKEN_PREFERENCES">Security Tokens...</entry>
<entry lang="en" key="IDM_TRAVELER">Traveler Disk Setup...</entry>
<entry lang="en" key="IDM_UNMOUNTALL">Unmount All Mounted Volumes</entry>
<entry lang="en" key="IDM_UNMOUNT_VOLUME">Unmount Volume</entry>
<entry lang="en" key="IDM_UNMOUNTALL">Dismount All Mounted Volumes</entry>
<entry lang="en" key="IDM_UNMOUNT_VOLUME">Dismount Volume</entry>
<entry lang="en" key="IDM_VERIFY_RESCUE_DISK">Verify Rescue Disk</entry>
<entry lang="en" key="IDM_VERIFY_RESCUE_DISK_ISO">Verify Rescue Disk Image</entry>
<entry lang="en" key="IDM_VERSION_HISTORY">Version History</entry>
@@ -269,14 +269,14 @@
<entry lang="en" key="IDT_ACCELERATION_OPTIONS">Hardware Acceleration</entry>
<entry lang="en" key="IDT_ASSIGN_HOTKEY">Shortcut</entry>
<entry lang="en" key="IDT_AUTORUN">AutoRun Configuration (autorun.inf)</entry>
<entry lang="en" key="IDT_AUTO_UNMOUNT">Auto-Unmount</entry>
<entry lang="en" key="IDT_AUTO_UNMOUNT_ON">Unmount all when:</entry>
<entry lang="en" key="IDT_AUTO_DISMOUNT">Auto-Dismount</entry>
<entry lang="en" key="IDT_AUTO_DISMOUNT_ON">Dismount all when:</entry>
<entry lang="en" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader Screen Options</entry>
<entry lang="fa" key="IDT_CONFIRM_PASSWORD">تایید رمز عبور:</entry>
<entry lang="en" key="IDT_CURRENT">Current</entry>
<entry lang="en" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">Display this custom message in the pre-boot authentication screen (24 characters maximum):</entry>
<entry lang="en" key="IDT_DEFAULT_MOUNT_OPTIONS">Default Mount Options</entry>
<entry lang="en" key="IDT_UNMOUNT_ACTION">Hot Key Options</entry>
<entry lang="en" key="IDT_DISMOUNT_ACTION">Hot Key Options</entry>
<entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry>
<entry lang="en" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Enable extended disk control codes support</entry>
<entry lang="en" key="IDT_FAVORITE_LABEL">Label of selected favorite volume:</entry>
@@ -291,11 +291,10 @@
<entry lang="fa" key="IDT_NEW_PASSWORD">رمز عبور:</entry>
<entry lang="en" key="IDT_PARALLELIZATION_OPTIONS">Thread-Based Parallelization</entry>
<entry lang="en" key="IDT_PKCS11_LIB_PATH">PKCS #11 Library Path</entry>
<entry lang="en" key="IDT_KDF">KDF:</entry>
<entry lang="en" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="en" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="en" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="en" key="IDT_PW_CACHE_OPTIONS">Password Cache</entry>
<entry lang="en" key="IDT_SECURITY_OPTIONS">Security Options</entry>
<entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry>
<entry lang="en" key="IDT_TASKBAR_ICON">VeraCrypt Background Task</entry>
<entry lang="en" key="IDT_TRAVELER_MOUNT">VeraCrypt volume to mount (relative to traveler disk root):</entry>
<entry lang="en" key="IDT_TRAVEL_INSERTION">Upon insertion of traveler disk: </entry>
@@ -357,7 +356,7 @@
<entry lang="en" key="IDT_KEYFILE_WARNING">WARNING: If you lose a keyfile or if any bit of its first 1024 kilobytes changes, it will be impossible to mount volumes that use the keyfile!</entry>
<entry lang="fa" key="IDT_KEY_UNIT">بيت ها</entry>
<entry lang="en" key="IDT_NUMBER_KEYFILES">Number of keyfiles:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size (in Bytes):</entry>
<entry lang="en" key="IDT_KEYFILES_BASE_NAME">Keyfiles base name:</entry>
<entry lang="en" key="IDT_LANGPACK_AUTHORS">Translated by:</entry>
<entry lang="en" key="IDT_PLAINTEXT">Plaintext size:</entry>
@@ -390,7 +389,6 @@
<entry lang="en" key="ADMINISTRATOR">Administrator</entry>
<entry lang="en" key="ADMIN_PRIVILEGES_DRIVER">In order to load the VeraCrypt driver, you need to be logged into an account with administrator privileges.</entry>
<entry lang="en" key="ADMIN_PRIVILEGES_WARN_DEVICES">Please note that in order to encrypt, decrypt or format a partition/device you need to be logged into an account with administrator privileges.\n\nThis does not apply to file-hosted volumes.</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="en" key="ADMIN_PRIVILEGES_WARN_HIDVOL">In order to create a hidden volume you need to be logged into an account with administrator privileges.\n\nContinue?</entry>
<entry lang="en" key="ADMIN_PRIVILEGES_WARN_NTFS">Please note that in order to format the volume as NTFS/exFAT/ReFS you need to be logged into an account with administrator privileges.\n\nWithout administrator privileges, you can format the volume as FAT.</entry>
<entry lang="en" key="AES_HELP">FIPS-approved cipher (Rijndael, published in 1998) that may be used by U.S. government departments and agencies to protect classified information up to the Top Secret level. 256-bit key, 128-bit block, 14 rounds (AES-256). Mode of operation is XTS.</entry>
@@ -423,8 +421,8 @@
<entry lang="en" key="DEVICE_FREE_PB">Size of %s is %.2f PB</entry>
<entry lang="en" key="DEVICE_IN_USE_FORMAT">WARNING: The device/partition is in use by the operating system or applications. Formatting the device/partition might cause data corruption and system instability.\n\nContinue?</entry>
<entry lang="en" key="DEVICE_IN_USE_INPLACE_ENC">Warning: The partition is in use by the operating system or applications. You should close any applications that might be using the partition (including antivirus software).\n\nContinue?</entry>
<entry lang="en" key="FORMAT_CANT_UNMOUNT_FILESYS">Error: The device/partition contains a file system that could not be unmounted. The file system may be in use by the operating system. Formatting the device/partition would very likely cause data corruption and system instability.\n\nTo solve this issue, we recommend that you first delete the partition and then recreate it without formatting. To do so, follow these steps:\n1) Right-click the 'Computer' (or 'My Computer') icon in the 'Start Menu' and select 'Manage'. The 'Computer Management' window should appear.\n2) In the 'Computer Management' window, select 'Storage' &gt; 'Disk Management'.\n3) Right-click the partition you want to encrypt and select either 'Delete Partition', or 'Delete Volume', or 'Delete Logical Drive'.\n4) Click 'Yes'. If Windows asks you to restart the computer, do so. Then repeat the steps 1 and 2 and continue from the step 5.\n5) Right-click the unallocated/free space area and select either 'New Partition', or 'New Simple Volume', or 'New Logical Drive'.\n6) The 'New Partition Wizard' or 'New Simple Volume Wizard' window should appear now; follow its instructions. On the wizard page entitled 'Format Partition', select either 'Do not format this partition' or 'Do not format this volume'. In the same wizard, click 'Next' and then 'Finish'.\n7) Note that the device path you have selected in VeraCrypt may be wrong now. Therefore, exit the VeraCrypt Volume Creation Wizard (if it is still running) and then start it again.\n8) Try encrypting the device/partition again.\n\nIf VeraCrypt repeatedly fails to encrypt the device/partition, you may want to consider creating a file container instead.</entry>
<entry lang="en" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Error: The filesystem could not be locked and/or unmounted. It may be in use by the operating system or applications (for example, antivirus software). Encrypting the partition might cause data corruption and system instability.\n\nPlease close any applications that might be using the filesystem (including antivirus software) and try again. If it does not help, please follow the below steps.</entry>
<entry lang="en" key="FORMAT_CANT_DISMOUNT_FILESYS">Error: The device/partition contains a file system that could not be dismounted. The file system may be in use by the operating system. Formatting the device/partition would very likely cause data corruption and system instability.\n\nTo solve this issue, we recommend that you first delete the partition and then recreate it without formatting. To do so, follow these steps:\n1) Right-click the 'Computer' (or 'My Computer') icon in the 'Start Menu' and select 'Manage'. The 'Computer Management' window should appear.\n2) In the 'Computer Management' window, select 'Storage' &gt; 'Disk Management'.\n3) Right-click the partition you want to encrypt and select either 'Delete Partition', or 'Delete Volume', or 'Delete Logical Drive'.\n4) Click 'Yes'. If Windows asks you to restart the computer, do so. Then repeat the steps 1 and 2 and continue from the step 5.\n5) Right-click the unallocated/free space area and select either 'New Partition', or 'New Simple Volume', or 'New Logical Drive'.\n6) The 'New Partition Wizard' or 'New Simple Volume Wizard' window should appear now; follow its instructions. On the wizard page entitled 'Format Partition', select either 'Do not format this partition' or 'Do not format this volume'. In the same wizard, click 'Next' and then 'Finish'.\n7) Note that the device path you have selected in VeraCrypt may be wrong now. Therefore, exit the VeraCrypt Volume Creation Wizard (if it is still running) and then start it again.\n8) Try encrypting the device/partition again.\n\nIf VeraCrypt repeatedly fails to encrypt the device/partition, you may want to consider creating a file container instead.</entry>
<entry lang="en" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Error: The filesystem could not be locked and/or dismounted. It may be in use by the operating system or applications (for example, antivirus software). Encrypting the partition might cause data corruption and system instability.\n\nPlease close any applications that might be using the filesystem (including antivirus software) and try again. If it does not help, please follow the below steps.</entry>
<entry lang="en" key="DEVICE_IN_USE_INFO">WARNING: Some of the mounted devices/partitions were already in use!\n\nIgnoring this can cause undesired results including system instability.\n\nWe strongly recommend that you close any application that might be using the devices/partitions.</entry>
<entry lang="en" key="DEVICE_PARTITIONS_ERR">The selected device contains partitions.\n\nFormatting the device might cause system instability and/or data corruption. Please either select a partition on the device, or remove all partitions on the device to enable VeraCrypt to format it safely.</entry>
<entry lang="en" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">The selected non-system device contains partitions.\n\nEncrypted device-hosted VeraCrypt volumes can be created within devices that do not contain any partitions (including hard disks and solid-state drives). A device that contains partitions can be entirely encrypted in place (using a single master key) only if it is the drive where Windows is installed and from which it boots.\n\nIf you want to encrypt the selected non-system device using a single master key, you will need to remove all partitions on the device first to enable VeraCrypt to format it safely (formatting a device that contains partitions might cause system instability and/or data corruption). Alternatively, you can encrypt each partition on the drive individually (each partition will be encrypted using a different master key).\n\nNote: If you want to remove all partitions from a GPT disk, you may need to convert it to a MBR disk (using e.g. the Computer Management tool) in order to remove hidden partitions.</entry>
@@ -525,8 +523,8 @@
<entry lang="en" key="HIDVOL_FORMAT_FINISHED_TITLE">Hidden Volume Created</entry>
<entry lang="en" key="HIDVOL_FORMAT_FINISHED_HELP">The hidden VeraCrypt volume has been successfully created and is ready for use. If all the instructions have been followed and if the precautions and requirements listed in the section "Security Requirements and Precautions Pertaining to Hidden Volumes" in the VeraCrypt User's Guide are followed, it should be impossible to prove that the hidden volume exists, even when the outer volume is mounted.\n\nWARNING: IF YOU DO NOT PROTECT THE HIDDEN VOLUME (FOR INFORMATION ON HOW TO DO SO, REFER TO THE SECTION "PROTECTION OF HIDDEN VOLUMES AGAINST DAMAGE" IN THE VERACRYPT USER'S GUIDE), DO NOT WRITE TO THE OUTER VOLUME. OTHERWISE, YOU MAY OVERWRITE AND DAMAGE THE HIDDEN VOLUME!</entry>
<entry lang="en" key="FIRST_HIDDEN_OS_BOOT_INFO">You have started the hidden operating system. As you may have noticed, the hidden operating system appears to be installed on the same partition as the original operating system. However, in reality, it is installed within the partition behind it (in the hidden volume). All read and write operations are being transparently redirected from the original system partition to the hidden volume.\n\nNeither the operating system nor applications will know that data written to and read from the system partition are actually written to and read from the partition behind it (from/to a hidden volume). Any such data is encrypted and decrypted on the fly as usual (with an encryption key different from the one that will be used for the decoy operating system).\n\n\nPlease click Next to continue.</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP_SYSENC">The outer volume has been created and mounted as drive %hc:. To this outer volume you should now copy some sensitive-looking files that you actually do NOT want to hide. They will be there for anyone forcing you to disclose the password for the first partition behind the system partition, where both the outer volume and the hidden volume (containing the hidden operating system) will reside. You will be able to reveal the password for this outer volume, and the existence of the hidden volume (and of the hidden operating system) will remain secret.\n\nIMPORTANT: The files you copy to the outer volume should not occupy more than %s. Otherwise, there may not be enough free space on the outer volume for the hidden volume (and you will not be able to continue). After you finish copying, click Next (do not unmount the volume).</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP">Outer volume has been successfully created and mounted as drive %hc:. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not unmount the volume.\n\nNote: After you click Next, cluster bitmap of the outer volume will be scanned to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. Cluster bitmap scanning ensures that no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP_SYSENC">The outer volume has been created and mounted as drive %hc:. To this outer volume you should now copy some sensitive-looking files that you actually do NOT want to hide. They will be there for anyone forcing you to disclose the password for the first partition behind the system partition, where both the outer volume and the hidden volume (containing the hidden operating system) will reside. You will be able to reveal the password for this outer volume, and the existence of the hidden volume (and of the hidden operating system) will remain secret.\n\nIMPORTANT: The files you copy to the outer volume should not occupy more than %s. Otherwise, there may not be enough free space on the outer volume for the hidden volume (and you will not be able to continue). After you finish copying, click Next (do not dismount the volume).</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP">Outer volume has been successfully created and mounted as drive %hc:. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not dismount the volume.\n\nNote: After you click Next, cluster bitmap of the outer volume will be scanned to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. Cluster bitmap scanning ensures that no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_TITLE">Outer Volume Contents</entry>
<entry lang="en" key="HIDVOL_HOST_PRE_CIPHER_HELP">\n\nIn the next steps, you will set the options for the outer volume (within which the hidden volume will be created later on).</entry>
<entry lang="en" key="HIDVOL_HOST_PRE_CIPHER_HELP_SYSENC">\n\nIn the next steps, you will create a so-called outer VeraCrypt volume within the first partition behind the system partition (as was explained in one of the previous steps).</entry>
@@ -535,9 +533,9 @@
<entry lang="en" key="HIDDEN_OS_PRE_CIPHER_WARNING">IMPORTANT: Please remember the algorithms that you select in this step. You will have to select the same algorithms for the decoy system. Otherwise, the hidden system will be inaccessible! (The decoy system must be encrypted with the same encryption algorithm as the hidden system.)\n\nNote: The reason is that the decoy system and the hidden system will share a single boot loader, which supports only a single algorithm, selected by the user (for each algorithm, there is a special version of the VeraCrypt Boot Loader).</entry>
<entry lang="en" key="HIDVOL_PRE_CIPHER_HELP">\n\nThe volume cluster bitmap has been scanned and the maximum possible size of the hidden volume has been determined. In the next steps you will set the options, the size, and the password for the hidden volume.</entry>
<entry lang="en" key="HIDVOL_PRE_CIPHER_TITLE">Hidden Volume</entry>
<entry lang="en" key="HIDVOL_PROT_WARN_AFTER_MOUNT">The hidden volume is now protected against damage until the outer volume is unmounted.\n\nWARNING: If any data is attempted to be saved to the hidden volume area, VeraCrypt will start write-protecting the entire volume (both the outer and the hidden part) until it is unmounted. This may cause filesystem corruption on the outer volume, which (if repeated) might adversely affect plausible deniability of the hidden volume. Therefore, you should make every effort to avoid writing to the hidden volume area. Any data being saved to the hidden volume area will not be saved and will be lost. Windows may report this as a write error ("Delayed Write Failed" or "The parameter is incorrect").</entry>
<entry lang="en" key="HIDVOL_PROT_WARN_AFTER_MOUNT_PLURAL">Each of the hidden volumes within the newly mounted volumes is now protected against damage until unmounted.\n\nWARNING: If any data is attempted to be saved to protected hidden volume area of any of these volumes, VeraCrypt will start write-protecting the entire volume (both the outer and the hidden part) until it is unmounted. This may cause filesystem corruption on the outer volume, which (if repeated) might adversely affect plausible deniability of the hidden volume. Therefore, you should make every effort to avoid writing to the hidden volume area. Any data being saved to protected hidden volume areas will not be saved and will be lost. Windows may report this as a write error ("Delayed Write Failed" or "The parameter is incorrect").</entry>
<entry lang="en" key="DAMAGE_TO_HIDDEN_VOLUME_PREVENTED">WARNING: Data were attempted to be saved to the hidden volume area of the volume mounted as %c:! VeraCrypt prevented these data from being saved in order to protect the hidden volume. This may have caused filesystem corruption on the outer volume and Windows may have reported a write error ("Delayed Write Failed" or "The parameter is incorrect"). The entire volume (both the outer and the hidden part) will be write-protected until it is unmounted. If this is not the first time VeraCrypt has prevented data from being saved to the hidden volume area of this volume, plausible deniability of this hidden volume might be adversely affected (due to possible unusual correlated inconsistencies within the outer volume file system). Therefore, you should consider creating a new VeraCrypt volume (with Quick Format disabled) and moving files from this volume to the new volume; this volume should be securely erased (both the outer and the hidden part). We strongly recommend that you restart the operating system now.</entry>
<entry lang="en" key="HIDVOL_PROT_WARN_AFTER_MOUNT">The hidden volume is now protected against damage until the outer volume is dismounted.\n\nWARNING: If any data is attempted to be saved to the hidden volume area, VeraCrypt will start write-protecting the entire volume (both the outer and the hidden part) until it is dismounted. This may cause filesystem corruption on the outer volume, which (if repeated) might adversely affect plausible deniability of the hidden volume. Therefore, you should make every effort to avoid writing to the hidden volume area. Any data being saved to the hidden volume area will not be saved and will be lost. Windows may report this as a write error ("Delayed Write Failed" or "The parameter is incorrect").</entry>
<entry lang="en" key="HIDVOL_PROT_WARN_AFTER_MOUNT_PLURAL">Each of the hidden volumes within the newly mounted volumes is now protected against damage until dismounted.\n\nWARNING: If any data is attempted to be saved to protected hidden volume area of any of these volumes, VeraCrypt will start write-protecting the entire volume (both the outer and the hidden part) until it is dismounted. This may cause filesystem corruption on the outer volume, which (if repeated) might adversely affect plausible deniability of the hidden volume. Therefore, you should make every effort to avoid writing to the hidden volume area. Any data being saved to protected hidden volume areas will not be saved and will be lost. Windows may report this as a write error ("Delayed Write Failed" or "The parameter is incorrect").</entry>
<entry lang="en" key="DAMAGE_TO_HIDDEN_VOLUME_PREVENTED">WARNING: Data were attempted to be saved to the hidden volume area of the volume mounted as %c:! VeraCrypt prevented these data from being saved in order to protect the hidden volume. This may have caused filesystem corruption on the outer volume and Windows may have reported a write error ("Delayed Write Failed" or "The parameter is incorrect"). The entire volume (both the outer and the hidden part) will be write-protected until it is dismounted. If this is not the first time VeraCrypt has prevented data from being saved to the hidden volume area of this volume, plausible deniability of this hidden volume might be adversely affected (due to possible unusual correlated inconsistencies within the outer volume file system). Therefore, you should consider creating a new VeraCrypt volume (with Quick Format disabled) and moving files from this volume to the new volume; this volume should be securely erased (both the outer and the hidden part). We strongly recommend that you restart the operating system now.</entry>
<entry lang="en" key="CANNOT_SATISFY_OVER_4G_FILE_SIZE_REQ">You have indicated intent to store files larger than 4 GB on the volume. This requires the volume to be formatted as NTFS/exFAT/ReFS, which, however, will not be possible.</entry>
<entry lang="en" key="CANNOT_CREATE_NON_HIDDEN_NTFS_VOLUMES_UNDER_HIDDEN_OS">Please note that when a hidden operating system is running, non-hidden VeraCrypt volumes cannot be formatted as NTFS/exFAT/ReFS. The reason is that the volume would need to be temporarily mounted without write protection in order to allow the operating system to format it as NTFS (whereas formatting as FAT is performed by VeraCrypt, not by the operating system, and without mounting the volume). For further technical details, see below. You can create a non-hidden NTFS/exFAT/ReFS volume from within the decoy operating system.</entry>
<entry lang="en" key="HIDDEN_VOL_CREATION_UNDER_HIDDEN_OS_HOWTO">For security reasons, when a hidden operating system is running, hidden volumes can be created only in the 'direct' mode (because outer volumes must always be mounted as read-only). To create a hidden volume securely, follow these steps:\n\n1) Boot the decoy system.\n\n2) Create a normal VeraCrypt volume and, to this volume, copy some sensitive-looking files that you actually do NOT want to hide (the volume will become the outer volume).\n\n3) Boot the hidden system and start the VeraCrypt Volume Creation Wizard. If the volume is file-hosted, move it to the system partition or to another hidden volume (otherwise, the newly created hidden volume would be mounted as read-only and could not be formatted). Follow the instructions in the wizard so as to select the 'direct' hidden volume creation mode.\n\n4) In the wizard, select the volume you created in step 2 and then follow the instructions to create a hidden volume within it.</entry>
@@ -566,8 +564,8 @@
<entry lang="en" key="MAX_HIDVOL_SIZE_MB">Maximum possible hidden volume size for this volume is %.2f MB.</entry>
<entry lang="en" key="MAX_HIDVOL_SIZE_GB">Maximum possible hidden volume size for this volume is %.2f GB.</entry>
<entry lang="en" key="MAX_HIDVOL_SIZE_TB">Maximum possible hidden volume size for this volume is %.2f TB.</entry>
<entry lang="en" key="MOUNTED_NOPWCHANGE">Volume password/keyfiles cannot be changed while the volume is mounted. Please unmount the volume first.</entry>
<entry lang="en" key="MOUNTED_NO_PKCS5_PRF_CHANGE">The header key derivation algorithm cannot be changed while the volume is mounted. Please unmount the volume first.</entry>
<entry lang="en" key="MOUNTED_NOPWCHANGE">Volume password/keyfiles cannot be changed while the volume is mounted. Please dismount the volume first.</entry>
<entry lang="en" key="MOUNTED_NO_PKCS5_PRF_CHANGE">The header key derivation algorithm cannot be changed while the volume is mounted. Please dismount the volume first.</entry>
<entry lang="en" key="MOUNT_BUTTON">&amp;Mount</entry>
<entry lang="en" key="NEW_VERSION_REQUIRED">A newer version of VeraCrypt is required to mount this volume.</entry>
<entry lang="en" key="VOL_CREATION_WIZARD_NOT_FOUND">Error: Volume Creation Wizard not found.\n\nPlease make sure that the file 'VeraCrypt Format.exe' is in the folder from which 'VeraCrypt.exe' was launched. If it is not, please reinstall VeraCrypt, or locate 'VeraCrypt Format.exe' on your disk and run it.</entry>
@@ -588,9 +586,9 @@
<entry lang="en" key="NO_PATH_SELECTED">No path selected!</entry>
<entry lang="en" key="NO_SPACE_FOR_HIDDEN_VOL">Not enough free space for the hidden volume! Volume creation cannot continue.</entry>
<entry lang="en" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">Error: The files you copied to the outer volume occupy too much space. Therefore, there is not enough free space on the outer volume for the hidden volume.\n\nNote that the hidden volume must be as large as the system partition (the partition where the currently running operating system is installed). The reason is that the hidden operating system needs to be created by copying the content of the system partition to the hidden volume.\n\n\nThe process of creation of the hidden operating system cannot continue.</entry>
<entry lang="en" key="OPENFILES_DRIVER">The driver is unable to unmount the volume. Some files located on the volume are probably still open.</entry>
<entry lang="en" key="OPENFILES_LOCK">Unable to lock the volume. There are still open files on the volume. Therefore, it cannot be unmounted.</entry>
<entry lang="en" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt cannot lock the volume because it is in use by the system or applications (there may be open files on the volume).\n\nDo you want to force unmount on the volume?</entry>
<entry lang="en" key="OPENFILES_DRIVER">The driver is unable to dismount the volume. Some files located on the volume are probably still open.</entry>
<entry lang="en" key="OPENFILES_LOCK">Unable to lock the volume. There are still open files on the volume. Therefore, it cannot be dismounted.</entry>
<entry lang="en" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt cannot lock the volume because it is in use by the system or applications (there may be open files on the volume).\n\nDo you want to force dismount on the volume?</entry>
<entry lang="en" key="OPEN_VOL_TITLE">Select a VeraCrypt Volume</entry>
<entry lang="en" key="OPEN_TITLE">Specify Path and File Name</entry>
<entry lang="en" key="SELECT_PKCS11_MODULE">Select PKCS #11 Library</entry>
@@ -613,7 +611,7 @@
<entry lang="en" key="FAVORITE_PIM_CHANGED">This volume is registered as a System Favorite and its PIM was changed.\nDo you want VeraCrypt to automatically update the System Favorite configuration (administrator privileges required)?\n\nPlease note that if you answer no, you'll have to update the System Favorite manually.</entry>
<entry lang="en" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">IMPORTANT: If you did not destroy your VeraCrypt Rescue Disk, your system partition/drive can still be decrypted using the old password (by booting the VeraCrypt Rescue Disk and entering the old password). You should create a new VeraCrypt Rescue Disk and then destroy the old one.\n\nDo you want to create a new VeraCrypt Rescue Disk?</entry>
<entry lang="en" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">Note that your VeraCrypt Rescue Disk still uses the previous algorithm. If you consider the previous algorithm insecure, you should create a new VeraCrypt Rescue Disk and then destroy the old one.\n\nDo you want to create a new VeraCrypt Rescue Disk?</entry>
<entry lang="en" key="KEYFILES_NOTE">Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="en" key="KEYFILES_NOTE">Any kind of file (for example, .mp3, .jpg, .zip, .avi) may be used as a VeraCrypt keyfile. Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="en" key="KEYFILE_CHANGED">Keyfile(s) successfully added/removed.</entry>
<entry lang="en" key="KEYFILE_EXPORTED">Keyfile exported.</entry>
<entry lang="en" key="PKCS5_PRF_CHANGED">Header key derivation algorithm successfully set.</entry>
@@ -632,12 +630,12 @@
<entry lang="en" key="PASSWORD_HIDDEN_OS_TITLE">Password for Hidden Operating System</entry>
<entry lang="en" key="PASSWORD_LENGTH_WARNING">WARNING: Short passwords are easy to crack using brute force techniques!\n\nWe recommend choosing a password consisting of 20 or more characters. Are you sure you want to use a short password?</entry>
<entry lang="en" key="PASSWORD_TITLE">Volume Password</entry>
<entry lang="en" key="PASSWORD_WRONG">Operation failed due to one or more of the following:\n - Incorrect password.\n - Incorrect Volume PIM number.\n - Incorrect PRF (hash).\n - Not a valid volume.\n - Volume uses an old algorithm that has been removed.\n - TrueCrypt format volumes are no longer supported.</entry>
<entry lang="en" key="PASSWORD_OR_KEYFILE_WRONG">Operation failed due to one or more of the following:\n - Incorrect keyfile(s).\n - Incorrect password.\n - Incorrect Volume PIM number.\n - Incorrect PRF (hash).\n - Not a valid volume.\n - Volume uses an old algorithm that has been removed.\n - TrueCrypt format volumes are no longer supported.</entry>
<entry lang="en" key="PASSWORD_OR_MODE_WRONG">Operation failed due to one or more of the following:\n - Wrong mount mode.\n - Incorrect password.\n - Incorrect Volume PIM number.\n - Incorrect PRF (hash).\n - Not a valid volume.\n - Volume uses an old algorithm that has been removed.\n - TrueCrypt format volumes are no longer supported.</entry>
<entry lang="en" key="PASSWORD_OR_KEYFILE_OR_MODE_WRONG">Operation failed due to one or more of the following:\n - Wrong mount mode.\n - Incorrect keyfile(s).\n - Incorrect password.\n - Incorrect Volume PIM number.\n - Incorrect PRF (hash).\n - Not a valid volume.\n - Volume uses an old algorithm that has been removed.\n - TrueCrypt format volumes are no longer supported.</entry>
<entry lang="en" key="PASSWORD_WRONG_AUTOMOUNT">Auto-mount failed due to one or more of the following:\n - Incorrect password.\n - Incorrect Volume PIM number.\n - Incorrect PRF (hash).\n - No valid volume found.\n - Volume uses an old algorithm that has been removed.\n - TrueCrypt format volumes are no longer supported.</entry>
<entry lang="en" key="PASSWORD_OR_KEYFILE_WRONG_AUTOMOUNT">Auto-mount failed due to one or more of the following:\n - Incorrect keyfile(s).\n - Incorrect password.\n - Incorrect Volume PIM number.\n - Incorrect PRF (hash).\n - No valid volume found.\n - Volume uses an old algorithm that has been removed.\n - TrueCrypt format volumes are no longer supported.</entry>
<entry lang="en" key="PASSWORD_WRONG">Operation failed due to one or more of the following:\n - Incorrect password.\n - Incorrect Volume PIM number.\n - Incorrect PRF (hash).\n - Not a valid volume.</entry>
<entry lang="en" key="PASSWORD_OR_KEYFILE_WRONG">Operation failed due to one or more of the following:\n - Incorrect keyfile(s).\n - Incorrect password.\n - Incorrect Volume PIM number.\n - Incorrect PRF (hash).\n - Not a valid volume.</entry>
<entry lang="en" key="PASSWORD_OR_MODE_WRONG">Operation failed due to one or more of the following:\n - Wrong mount mode.\n - Incorrect password.\n - Incorrect Volume PIM number.\n - Incorrect PRF (hash).\n - Not a valid volume.</entry>
<entry lang="en" key="PASSWORD_OR_KEYFILE_OR_MODE_WRONG">Operation failed due to one or more of the following:\n - Wrong mount mode.\n - Incorrect keyfile(s).\n - Incorrect password.\n - Incorrect Volume PIM number.\n - Incorrect PRF (hash).\n - Not a valid volume.</entry>
<entry lang="en" key="PASSWORD_WRONG_AUTOMOUNT">Auto-mount failed due to one or more of the following:\n - Incorrect password.\n - Incorrect Volume PIM number.\n - Incorrect PRF (hash).\n - No valid volume found.</entry>
<entry lang="en" key="PASSWORD_OR_KEYFILE_WRONG_AUTOMOUNT">Auto-mount failed due to one or more of the following:\n - Incorrect keyfile(s).\n - Incorrect password.\n - Incorrect Volume PIM number.\n - Incorrect PRF (hash).\n - No valid volume found.</entry>
<entry lang="en" key="PASSWORD_WRONG_CAPSLOCK_ON">\n\nWarning: Caps Lock is on. This may cause you to enter your password incorrectly.</entry>
<entry lang="en" key="PIM_CHANGE_WARNING">Remember Number to Mount Volume</entry>
<entry lang="en" key="PIM_HIDVOL_HOST_TITLE">Outer Volume PIM</entry>
@@ -694,10 +692,10 @@
<entry lang="en" key="MORE_INFO_ABOUT">More information on %s</entry>
<entry lang="fa" key="UNKNOWN">ناشناس</entry>
<entry lang="en" key="ERR_UNKNOWN">An unspecified or unknown error occurred (%d).</entry>
<entry lang="en" key="UNMOUNTALL_LOCK_FAILED">Some volumes contain files or folders being used by applications or system.\n\nForce unmount?</entry>
<entry lang="en" key="UNMOUNT_BUTTON">&amp;Unmount</entry>
<entry lang="en" key="UNMOUNT_FAILED">Unmount failed!</entry>
<entry lang="en" key="UNMOUNT_LOCK_FAILED">Volume contains files or folders being used by applications or system.\n\nForce unmount?</entry>
<entry lang="en" key="UNMOUNTALL_LOCK_FAILED">Some volumes contain files or folders being used by applications or system.\n\nForce dismount?</entry>
<entry lang="en" key="UNMOUNT_BUTTON">&amp;Dismount</entry>
<entry lang="en" key="UNMOUNT_FAILED">Dismount failed!</entry>
<entry lang="en" key="UNMOUNT_LOCK_FAILED">Volume contains files or folders being used by applications or system.\n\nForce dismount?</entry>
<entry lang="en" key="NO_VOLUME_MOUNTED_TO_DRIVE">No volume is mounted to the specified drive letter.</entry>
<entry lang="en" key="VOL_ALREADY_MOUNTED">The volume you are trying to mount is already mounted. </entry>
<entry lang="en" key="VOL_MOUNT_FAILED">An error occurred when attempting to mount volume.</entry>
@@ -729,7 +727,7 @@
<entry lang="en" key="DLL_FILES">Library Modules</entry>
<entry lang="en" key="FORMAT_NTFS_STOP">NTFS/exFAT/ReFS formatting cannot continue.</entry>
<entry lang="en" key="CANT_MOUNT_VOLUME">Cannot mount volume.</entry>
<entry lang="en" key="CANT_UNMOUNT_VOLUME">Cannot unmount volume.</entry>
<entry lang="en" key="CANT_DISMOUNT_VOLUME">Cannot dismount volume.</entry>
<entry lang="en" key="FORMAT_NTFS_FAILED">Windows failed to format the volume as NTFS/exFAT/ReFS.\n\nPlease select a different type of file system (if possible) and try again. Alternatively, you could leave the volume unformatted (select 'None' as the filesystem), exit this wizard, mount the volume, and then use either a system or a third-party tool to format the mounted volume (the volume will remain encrypted).</entry>
<entry lang="en" key="FORMAT_NTFS_FAILED_ASK_FAT">Windows failed to format the volume as NTFS/exFAT/ReFS.\n\nDo you want to format the volume as FAT instead?</entry>
<entry lang="fa" key="DEFAULT">پیش فرض</entry>
@@ -771,7 +769,7 @@
<entry lang="en" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">An error prevented VeraCrypt from encrypting the partition. Please try fixing any previously reported problems and then try again. If the problems persist, it might help to follow the below steps.</entry>
<entry lang="en" key="INPLACE_ENC_GENERIC_ERR_RESUME">An error prevented VeraCrypt from resuming the process of encryption/decryption of the partition/volume.\n\nPlease try fixing any previously reported problems and then try resuming the process again if possible. Note that the volume cannot be mounted until it has been fully encrypted or fully decrypted.</entry>
<entry lang="en" key="INPLACE_DEC_GENERIC_ERR">An error prevented VeraCrypt from decrypting the volume. Please try fixing any previously reported problems and then try again if possible.</entry>
<entry lang="en" key="CANT_UNMOUNT_OUTER_VOL">Error: Cannot unmount the outer volume!\n\nVolume cannot be unmounted if it contains files or folders being used by a program or the system.\n\nPlease close any program that might be using files or directories on the volume and click Retry.</entry>
<entry lang="en" key="CANT_DISMOUNT_OUTER_VOL">Error: Cannot dismount the outer volume!\n\nVolume cannot be dismounted if it contains files or folders being used by a program or the system.\n\nPlease close any program that might be using files or directories on the volume and click Retry.</entry>
<entry lang="en" key="CANT_GET_OUTER_VOL_INFO">Error: Cannot obtain information about the outer volume!\nVolume creation cannot continue.</entry>
<entry lang="en" key="CANT_ACCESS_OUTER_VOL">Error: Cannot access the outer volume! Volume creation cannot continue.</entry>
<entry lang="en" key="CANT_MOUNT_OUTER_VOL">Error: Cannot mount the outer volume! Volume creation cannot continue.</entry>
@@ -813,7 +811,7 @@
<entry lang="en" key="SECONDARY_KEY_SIZE_LRW">Tweak Key Size (LRW Mode)</entry>
<entry lang="fa" key="BITS">بيت ها</entry>
<entry lang="fa" key="BLOCK_SIZE">بلوكه كردن سايز</entry>
<entry lang="en" key="KDF">KDF</entry>
<entry lang="en" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="en" key="PKCS5_ITERATIONS">PKCS-5 Iteration Count</entry>
<entry lang="en" key="VOLUME_CREATE_DATE">Volume Created</entry>
<entry lang="en" key="VOLUME_HEADER_DATE">Header Last Modified</entry>
@@ -855,7 +853,7 @@
<entry lang="en" key="TC_INSTALLER_IS_RUNNING">VeraCrypt Installer is currently running on this system and performing or preparing installation or update of VeraCrypt. Before you proceed, please wait for it to finish or close it. If you cannot close it, please restart your computer before proceeding.</entry>
<entry lang="en" key="INSTALL_FAILED">Installation failed.</entry>
<entry lang="en" key="UNINSTALL_FAILED">Uninstallation failed.</entry>
<entry lang="en" key="DIST_PACKAGE_CORRUPTED">This distribution package is damaged. Please try downloading it again (preferably from the official VeraCrypt website at https://veracrypt.jp).</entry>
<entry lang="en" key="DIST_PACKAGE_CORRUPTED">This distribution package is damaged. Please try downloading it again (preferably from the official VeraCrypt website at https://www.veracrypt.fr).</entry>
<entry lang="en" key="CANNOT_WRITE_FILE_X">Cannot write file %s</entry>
<entry lang="en" key="EXTRACTING_VERB">Extracting</entry>
<entry lang="en" key="CANNOT_READ_FROM_PACKAGE">Cannot read data from the package.</entry>
@@ -882,7 +880,7 @@
<entry lang="en" key="INSTALL_COMPLETED">Installation completed.</entry>
<entry lang="en" key="CANT_CREATE_FOLDER">The folder '%s' could not be created</entry>
<entry lang="en" key="CLOSE_TC_FIRST">The VeraCrypt device driver cannot be unloaded.\n\nPlease close all open VeraCrypt windows first. If it does not help, please restart Windows and then try again.</entry>
<entry lang="en" key="UNMOUNT_ALL_FIRST">All VeraCrypt volumes must be unmounted before installing or uninstalling VeraCrypt.</entry>
<entry lang="en" key="DISMOUNT_ALL_FIRST">All VeraCrypt volumes must be dismounted before installing or uninstalling VeraCrypt.</entry>
<entry lang="en" key="UNINSTALL_OLD_VERSION_FIRST">An obsolete version of VeraCrypt is currently installed on this system. It needs to be uninstalled before you can install this new version of VeraCrypt.\n\nAs soon as you close this message box, the uninstaller of the old version will be launched. Note that no volume will be decrypted when you uninstall VeraCrypt. After you uninstall the old version of VeraCrypt, run the installer of the new version of VeraCrypt again.</entry>
<entry lang="en" key="REG_INSTALL_FAILED">The installation of the registry entries has failed</entry>
<entry lang="en" key="DRIVER_INSTALL_FAILED">The installation of the device driver has failed. Please restart Windows and then try installing VeraCrypt again.</entry>
@@ -903,7 +901,7 @@
<entry lang="fa" key="MINUTES">دقیقه</entry>
<entry lang="en" key="SECONDS">s</entry>
<entry lang="fa" key="OPEN">باز کردن</entry>
<entry lang="en" key="UNMOUNT">Unmount</entry>
<entry lang="en" key="DISMOUNT">Dismount</entry>
<entry lang="en" key="SHOW_TC">Show VeraCrypt</entry>
<entry lang="en" key="HIDE_TC">Hide VeraCrypt</entry>
<entry lang="en" key="TOTAL_DATA_READ">Data Read since Mount</entry>
@@ -940,7 +938,7 @@
<entry lang="en" key="ENTER_HEADER_BACKUP_PASSWORD">Enter password for the header stored in backup file</entry>
<entry lang="en" key="KEYFILE_CREATED">Keyfiles have been successfully created.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_NUMBER">The number of keyfiles you supplied is invalid.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be at least 64 bytes.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be comprized between 64 and 1048576 bytes.</entry>
<entry lang="en" key="KEYFILE_EMPTY_BASE_NAME">Please enter a name for the keyfile(s) to be generated</entry>
<entry lang="en" key="KEYFILE_INVALID_BASE_NAME">The base name of the keyfile(s) is invalid</entry>
<entry lang="en" key="KEYFILE_ALREADY_EXISTS">The keyfile '%s' already exists.\nDo you want to overwrite it? The generation process will be stopped if you answer No.</entry>
@@ -975,7 +973,7 @@
<entry lang="en" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - System Favorite Volumes</entry>
<entry lang="en" key="SYS_FAVORITES_HELP_LINK">What are system favorite volumes?</entry>
<entry lang="en" key="SYS_FAVORITES_REQUIRE_PBA">The system partition/drive does not appear to be encrypted.\n\nSystem favorite volumes can be mounted using only a pre-boot authentication password. Therefore, to enable use of system favorite volumes, you need to encrypt the system partition/drive first.</entry>
<entry lang="en" key="UNMOUNT_FIRST">Please unmount the volume before proceeding.</entry>
<entry lang="en" key="DISMOUNT_FIRST">Please dismount the volume before proceeding.</entry>
<entry lang="en" key="CANNOT_SET_TIMER">Error: Cannot set timer.</entry>
<entry lang="en" key="IDPM_CHECK_FILESYS">Check Filesystem</entry>
<entry lang="en" key="IDPM_REPAIR_FILESYS">Repair Filesystem</entry>
@@ -997,7 +995,7 @@
<entry lang="en" key="UNSUPPORTED_CHARS_IN_PWD">Error: Password must contain only ASCII characters.\n\nNon-ASCII characters in password might cause the volume to be impossible to mount when your system configuration changes.\n\nThe following characters are allowed:\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="en" key="UNSUPPORTED_CHARS_IN_PWD_RECOM">Warning: Password contains non-ASCII characters. This may cause the volume to be impossible to mount when your system configuration changes.\n\nYou should replace all non-ASCII characters in the password with ASCII characters. To do so, click 'Volumes' -&gt; 'Change Volume Password'.\n\nThe following are ASCII characters:\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="en" key="EXE_FILE_EXTENSION_CONFIRM">WARNING: We strongly recommend that you avoid file extensions that are used for executable files (such as .exe, .sys, or .dll) and other similarly problematic file extensions. Using such file extensions causes Windows and antivirus software to interfere with the container, which adversely affects the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension or change it (e.g., to '.hc').\n\nAre you sure you want to use the problematic file extension?</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you unmount the volume.</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you dismount the volume.</entry>
<entry lang="fa" key="HOMEPAGE">صفحه اصلی</entry>
<entry lang="en" key="LARGE_IDE_WARNING_XP">WARNING: It appears that you have not applied any Service Pack to your Windows installation. You should not write to IDE disks larger than 128 GB under Windows XP to which you did not apply Service Pack 1 or later! If you do, data on the disk (no matter if it is a VeraCrypt volume or not) may get corrupted. Note that this is a limitation of Windows, not a bug in VeraCrypt.</entry>
<entry lang="en" key="LARGE_IDE_WARNING_2K">WARNING: It appears that you have not applied Service Pack 3 or later to your Windows installation. You should not write to IDE disks larger than 128 GB under Windows 2000 to which you did not apply Service Pack 3 or later! If you do, data on the disk (no matter if it is a VeraCrypt volume or not) may get corrupted. Note that this is a limitation of Windows, not a bug in VeraCrypt.\n\nNote: You may also need to enable the 48-bit LBA support in the registry; for more information, see http://support.microsoft.com/kb/305098/EN-US</entry>
@@ -1006,14 +1004,14 @@
<entry lang="en" key="VOLUME_TOO_LARGE_FOR_WINXP">Warning: Windows XP does not support files larger than 2048 GB (it will report that "Not enough storage is available"). Therefore, you cannot create a file-hosted VeraCrypt volume (container) larger than 2048 GB under Windows XP.\n\nNote that it is still possible to encrypt the entire drive or create a partition-hosted VeraCrypt volume larger than 2048 GB under Windows XP.</entry>
<entry lang="en" key="FREE_SPACE_FOR_WRITING_TO_OUTER_VOLUME">WARNING: If you want to be able to add more data/files to the outer volume in future, you should consider choosing a smaller size for the hidden volume.\n\nAre you sure you want to continue with the size you specified?</entry>
<entry lang="en" key="NO_VOLUME_SELECTED">No volume selected.\n\nClick 'Select Device' or 'Select File' to select a VeraCrypt volume.</entry>
<entry lang="en" key="NO_SYSENC_PARTITION_SELECTED">No partition selected.\n\nClick 'Select Device' to select a unmounted partition that normally requires pre-boot authentication (for example, a partition located on the encrypted system drive of another operating system, which is not running, or the encrypted system partition of another operating system).\n\nNote: The selected partition will be mounted as a regular VeraCrypt volume without pre-boot authentication. This is useful e.g. for backup or repair operations.</entry>
<entry lang="en" key="NO_SYSENC_PARTITION_SELECTED">No partition selected.\n\nClick 'Select Device' to select a dismounted partition that normally requires pre-boot authentication (for example, a partition located on the encrypted system drive of another operating system, which is not running, or the encrypted system partition of another operating system).\n\nNote: The selected partition will be mounted as a regular VeraCrypt volume without pre-boot authentication. This is useful e.g. for backup or repair operations.</entry>
<entry lang="en" key="CONFIRM_SAVE_DEFAULT_KEYFILES">WARNING: If default keyfiles are set and enabled, volumes that are not using these keyfiles will be impossible to mount. Therefore, after you enable default keyfiles, keep in mind to uncheck the 'Use keyfiles' checkbox (below a password input field) whenever mounting such volumes.\n\nAre you sure you want to save the selected keyfiles/paths as default?</entry>
<entry lang="en" key="HK_AUTOMOUNT_DEVICES">Auto-Mount Devices</entry>
<entry lang="en" key="HK_UNMOUNT_ALL">Unmount All</entry>
<entry lang="en" key="HK_DISMOUNT_ALL">Dismount All</entry>
<entry lang="en" key="HK_WIPE_CACHE">Wipe Cache</entry>
<entry lang="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All &amp; Wipe Cache</entry>
<entry lang="en" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Force Unmount All &amp; Wipe Cache</entry>
<entry lang="en" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Force Unmount All, Wipe Cache &amp; Exit</entry>
<entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All &amp; Wipe Cache</entry>
<entry lang="en" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Force Dismount All &amp; Wipe Cache</entry>
<entry lang="en" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Force Dismount All, Wipe Cache &amp; Exit</entry>
<entry lang="en" key="HK_MOUNT_FAVORITE_VOLUMES">Mount Favorite Volumes</entry>
<entry lang="en" key="HK_SHOW_HIDE_MAIN_WINDOW">Show/Hide Main VeraCrypt Window</entry>
<entry lang="en" key="PRESS_A_KEY_TO_ASSIGN">(Click here and press a key)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="en" key="PAGING_FILE_CREATION_PREVENTED">Paging file creation has been prevented.\n\nPlease note that, due to Windows issues, paging files cannot be located on non-system VeraCrypt volumes (including system favorite volumes). VeraCrypt supports creation of paging files only on an encrypted system partition/drive.</entry>
<entry lang="en" key="SYS_ENC_HIBERNATION_PREVENTED">An error or incompatibility prevents VeraCrypt from encrypting the hibernation file. Therefore, hibernation has been prevented.\n\nNote: When a computer hibernates (or enters a power-saving mode), the content of its system memory is written to a hibernation storage file residing on the system drive. VeraCrypt would not be able to prevent encryption keys and the contents of sensitive files opened in RAM from being saved unencrypted to the hibernation storage file.</entry>
<entry lang="en" key="HIDDEN_OS_HIBERNATION_PREVENTED">Hibernation has been prevented.\n\nVeraCrypt does not support hibernation on hidden operating systems that use an extra boot partition. Please note that the boot partition is shared by both the decoy and the hidden system. Therefore, in order to prevent data leaks and problems while resuming from hibernation, VeraCrypt has to prevent the hidden system from writing to the shared boot partition and from hibernating.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">VeraCrypt volume mounted as %c: has been unmounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt volumes have been unmounted.</entry>
<entry lang="en" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt volumes have been unmounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_UNMOUNTED">Successfully unmounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="en" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">WARNING: If this option is disabled, volumes containing open files/directories will not be possible to auto-unmount.\n\nAre you sure you want to disable this option?</entry>
<entry lang="en" key="WARN_PREF_AUTO_UNMOUNT">WARNING: Volumes containing open files/directories will NOT be auto-unmounted.\n\nTo prevent this, enable the following option in this dialog window: 'Force auto-unmount even if volume contains open files or directories'</entry>
<entry lang="en" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-unmount volumes in such cases.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">VeraCrypt volume mounted as %c: has been dismounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt volumes have been dismounted.</entry>
<entry lang="en" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt volumes have been dismounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_DISMOUNTED">Successfully dismounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="en" key="CONFIRM_NO_FORCED_AUTODISMOUNT">WARNING: If this option is disabled, volumes containing open files/directories will not be possible to auto-dismount.\n\nAre you sure you want to disable this option?</entry>
<entry lang="en" key="WARN_PREF_AUTO_DISMOUNT">WARNING: Volumes containing open files/directories will NOT be auto-dismounted.\n\nTo prevent this, enable the following option in this dialog window: 'Force auto-dismount even if volume contains open files or directories'</entry>
<entry lang="en" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-dismount volumes in such cases.</entry>
<entry lang="en" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">You have scheduled the process of encryption/decryption of a partition/volume. The process has not been completed yet.\n\nDo you want to resume the process now?</entry>
<entry lang="en" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">You have scheduled the process of encryption or decryption of the system partition/drive. The process has not been completed yet.\n\nDo you want to start (resume) the process now?</entry>
<entry lang="en" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">Do you want to be prompted about whether you want to resume the currently scheduled processes of encryption/decryption of non-system partitions/volumes?</entry>
@@ -1040,7 +1038,7 @@
<entry lang="en" key="DO_NOT_PROMPT_ME">No, do not prompt me</entry>
<entry lang="en" key="NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL_NOTE">IMPORTANT: Keep in mind that you can resume the process of encryption/decryption of any non-system partition/volume by selecting 'Volumes' &gt; 'Resume Interrupted Process' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="en" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">You have scheduled the process of encryption or decryption of the system partition/drive. However, pre-boot authentication failed (or was bypassed).\n\nNote: If you decrypted the system partition/drive in the pre-boot environment, you may need to finalize the process by selecting 'System' &gt; 'Permanently Decrypt System Partition/Drive' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="fa" key="CONFIRM_EXIT_UNIVERSAL">خروج؟</entry>
<entry lang="en" key="CHOOSE_ENCRYPT_OR_DECRYPT">VeraCrypt does not have sufficient information to determine whether to encrypt or decrypt.</entry>
<entry lang="en" key="CHOOSE_ENCRYPT_OR_DECRYPT_FINALIZE_DECRYPT_NOTE">VeraCrypt does not have sufficient information to determine whether to encrypt or decrypt.\n\nNote: If you decrypted the system partition/drive in the pre-boot environment, you may need to finalize the process by clicking Decrypt.</entry>
@@ -1063,7 +1061,7 @@
<entry lang="en" key="SYS_AUTOMOUNT_DISABLED">Your system is not configured to auto-mount new volumes. It may be impossible to mount device-hosted VeraCrypt volumes. Auto-mounting can be enabled by executing the following command and restarting the system.\n\nmountvol.exe /E</entry>
<entry lang="en" key="SYS_ASSIGN_DRIVE_LETTER">Please assign a drive letter to the partition/device before proceeding ('Control Panel' &gt; 'System and Maintenance' &gt; 'Administrative Tools' - 'Create and format hard disk partitions').\n\nNote that this is a requirement of the operating system.</entry>
<entry lang="en" key="MOUNT_TC_VOLUME">Mount VeraCrypt volume</entry>
<entry lang="en" key="UNMOUNT_ALL_TC_VOLUMES">Unmount all VeraCrypt volumes</entry>
<entry lang="en" key="DISMOUNT_ALL_TC_VOLUMES">Dismount all VeraCrypt volumes</entry>
<entry lang="en" key="UAC_INIT_ERROR">VeraCrypt failed to obtain Administrator privileges.</entry>
<entry lang="en" key="ERR_ACCESS_DENIED">Access was denied by the operating system.\n\nPossible cause: The operating system requires that you have read/write permission (or administrator privileges) for certain folders, files, and devices, in order for you to be allowed to read and write data to/from them. Normally, a user without administrator privileges is allowed to create, read and modify files in his or her Documents folder.</entry>
<entry lang="en" key="SECTOR_SIZE_UNSUPPORTED">Error: The drive uses an unsupported sector size.\n\nIt is currently not possible to create partition/device-hosted volumes on drives that use sectors larger than 4096 bytes. However, note that you can create file-hosted volumes (containers) on such drives.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="en" key="HIDDEN_OS_CREATION_PREINFO_HELP">In the next steps, VeraCrypt will create the hidden operating system by copying the content of the system partition to the hidden volume (data being copied will be encrypted on the fly with an encryption key different from the one that will be used for the decoy operating system).\n\nPlease note that the process will be performed in the pre-boot environment (before Windows starts) and it may take a long time to complete; several hours or even several days (depending on the size of the system partition and on the performance of your computer).\n\nYou will be able to interrupt the process, shut down your computer, start the operating system and then resume the process. However, if you interrupt it, the entire process of copying the system will have to start from the beginning (because the content of the system partition must not change during cloning).</entry>
<entry lang="en" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">Do you want to cancel the entire process of creation of the hidden operating system?\n\nNote: You will NOT be able to resume the process if you cancel it now.</entry>
<entry lang="en" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">Do you want to cancel the system encryption pretest?</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="en" key="SYS_DRIVE_NOT_ENCRYPTED">The system partition/drive does not appear to be encrypted (neither partially nor fully).</entry>
<entry lang="en" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">Your system partition/drive is encrypted (partially or fully).\n\nPlease decrypt your system partition/drive entirely before proceeding. To do so, select 'System' &gt; 'Permanently Decrypt System Partition/Drive' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="en" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">When the system partition/drive is encrypted (partially or fully), you cannot downgrade VeraCrypt (but you can upgrade it or reinstall the same version).</entry>
@@ -1285,17 +1283,17 @@
<entry lang="en" key="TOKEN_DATA_OBJECT_LABEL">File name</entry>
<entry lang="en" key="BOOT_PASSWORD_CACHE_KEYBOARD_WARNING">IMPORTANT: Please note that pre-boot authentication passwords are always typed using the standard US keyboard layout. Therefore, a volume that uses a password typed using any other keyboard layout may be impossible to mount using a pre-boot authentication password (note that this is not a bug in VeraCrypt). To allow such a volume to be mounted using a pre-boot authentication password, follow these steps:\n\n1) Click 'Select File' or 'Select Device' and select the volume.\n2) Select 'Volumes' &gt; 'Change Volume Password'.\n3) Enter the current password for the volume.\n4) Change the keyboard layout to English (US) by clicking the Language bar icon in the Windows taskbar and selecting 'EN English (United States)'.\n5) In VeraCrypt, in the field for the new password, type the pre-boot authentication password.\n6) Confirm the new password by retyping it in the confirmation field and click 'OK'.\nWARNING: Please keep in mind that if you follow these steps, the volume password will always have to be typed using the US keyboard layout (which is automatically ensured only in the pre-boot environment).</entry>
<entry lang="en" key="SYS_FAVORITES_KEYBOARD_WARNING">System favorite volumes will be mounted using the pre-boot authentication password. If any system favorite volume uses a different password, it will not be mounted.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Unmount All', auto-unmount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and unmount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be unmounted. Therefore, if you need e.g. to unmount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Unmount All' function, 'Auto-Unmount' functions, 'Unmount All' hot keys, etc.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Dismount All', auto-dismount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and dismount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be dismounted. Therefore, if you need e.g. to dismount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Dismount All' function, 'Auto-Dismount' functions, 'Dismount All' hot keys, etc.</entry>
<entry lang="en" key="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry>
<entry lang="en" key="COMMAND_LINE_ERROR">Error while parsing command line.</entry>
<entry lang="en" key="RESCUE_DISK">Rescue Disk</entry>
<entry lang="en" key="SELECT_FILE_AND_MOUNT">Select &amp;File and Mount...</entry>
<entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &amp;Device and Mount...</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and dismount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="MOUNT_SYSTEM_FAVORITES_ON_BOOT">Mount system favorite volumes when Windows starts (in the initial phase of the startup procedure)</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly unmounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always unmount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly unmounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly dismounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always dismount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly dismounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="FILESYS_REPAIR_CONFIRM_BACKUP">Warning: Repairing a damaged filesystem using the Microsoft 'chkdsk' tool might cause loss of files in damaged areas. Therefore, it is recommended that you first back up the files stored on the VeraCrypt volume to another, healthy, VeraCrypt volume.\n\nDo you want to repair the filesystem now?</entry>
<entry lang="en" key="MOUNTED_CONTAINER_FORCED_READ_ONLY">Volume '%s' has been mounted as read-only because write access was denied.\n\nPlease make sure the security permissions of the file container allow you to write to it (right-click the container and select Properties &gt; Security).\n\nNote that, due to a Windows issue, you may see this warning even after setting the appropriate security permissions. This is not caused by a bug in VeraCrypt. A possible solution is to move your container to, e.g., your 'Documents' folder.\n\nIf you intend to keep your volume read-only, set the read-only attribute of the container (right-click the container and select Properties &gt; Read-only), which will suppress this warning.</entry>
<entry lang="en" key="MOUNTED_DEVICE_FORCED_READ_ONLY">Volume '%s' had to be mounted as read-only because write access was denied.\n\nPlease make sure no other application (e.g. antivirus software) is accessing the partition/device on which the volume is hosted.</entry>
@@ -1306,8 +1304,8 @@
<entry lang="en" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Note that the number of threads is currently limited, which will affect benchmark results (worse performance).\n\nTo utilize the full potential of the processor(s), select 'Settings' &gt; 'Performance' and disable the corresponding option.</entry>
<entry lang="en" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">Do you want VeraCrypt to attempt to disable write protection of the partition/drive?</entry>
<entry lang="en" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">WARNING: This setting may degrade performance.\n\nAre you sure you want to use this setting?</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-unmounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always unmount the volume in VeraCrypt first.\n\nUnexpected spontaneous unmount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-dismounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always dismount the volume in VeraCrypt first.\n\nUnexpected spontaneous dismount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="UNSUPPORTED_TRUECRYPT_FORMAT">This volume was created with TrueCrypt %x.%x but VeraCrypt supports only TrueCrypt volumes created with TrueCrypt 6.x/7.x series</entry>
<entry lang="fa" key="TEST">آزمایش</entry>
<entry lang="en" key="KEYFILE">Keyfile</entry>
@@ -1453,7 +1451,7 @@
<entry lang="en" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Add All Mounted Volumes to Favorites...</entry>
<entry lang="en" key="TASKICON_PREF_MENU_ITEMS">Task Icon Menu Items</entry>
<entry lang="en" key="TASKICON_PREF_OPEN_VOL">Open Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_DISMOUNT_VOL">Dismount Mounted Volumes</entry>
<entry lang="en" key="DISK_FREE">Free space available: {0}</entry>
<entry lang="en" key="VOLUME_SIZE_HELP">Please specify the size of the container to create. Note that the minimum possible size of a volume is 292 KiB.</entry>
<entry lang="en" key="LINUX_CONFIRM_INNER_VOLUME_CALC">WARNING: You have selected a filesystem other than FAT for the outer volume.\nPlease Note that in this case VeraCrypt can't calculate the exact maximum allowed size for the hidden volume and it will use only an estimation that can be wrong.\nThus, it is your responsibility to use an adequate value for the size of the hidden volume so that it does not overlap the outer volume.\n\nDo you want to continue using the selected filesystem for the outer volume?</entry>
@@ -1483,14 +1481,14 @@
<entry lang="en" key="LINUX_DO_NOT_MOUNT">Do &amp;not mount</entry>
<entry lang="en" key="LINUX_MOUNT_AT_DIR">Mount at directory:</entry>
<entry lang="en" key="LINUX_SELECT">Se&amp;lect...</entry>
<entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount All Volumes When</entry>
<entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry>
<entry lang="en" key="LINUX_ENTERING_POWERSAVING">System is entering power saving mode</entry>
<entry lang="en" key="LINUX_LOGIN_ACTION">Actions to Perform when User Logs On</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Close all Explorer windows of volume being dismounted</entry>
<entry lang="en" key="LINUX_HOTKEYS">Hotkeys</entry>
<entry lang="en" key="LINUX_SYSTEM_HOTKEYS">System-Wide Hotkeys</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/unmount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_UNMOUNT">Display confirmation message box after unmount</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/dismount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_DISMOUNT">Display confirmation message box after dismount</entry>
<entry lang="en" key="LINUX_VC_QUITS">VeraCrypt quits</entry>
<entry lang="en" key="LINUX_OPEN_FINDER">Open Finder window for successfully mounted volume</entry>
<entry lang="en" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Please note that this setting takes effect only if use of the kernel cryptographic services is disabled.</entry>
@@ -1510,11 +1508,11 @@
<entry lang="en" key="LINUX_DYNAMIC_NOTICE">Please note that if your operating system does not allocate files from the beginning of the free space, the maximum possible hidden volume size may be much smaller than the size of the free space on the outer volume. This is not a bug in VeraCrypt but a limitation of the operating system.</entry>
<entry lang="en" key="LINUX_MAX_HIDDEN_SIZE">Maximum possible hidden volume size for this volume is {0}.</entry>
<entry lang="en" key="LINUX_OPEN_OUTER_VOL">Open Outer Volume</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not unmount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not dismount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">Error: You are trying to encrypt a system drive.\n\nVeraCrypt can encrypt a system drive only under Windows.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">Error: You are trying to encrypt a system partition.\n\nVeraCrypt can encrypt system partitions only under Windows.</entry>
<entry lang="en" key="LINUX_WARNING_FORMAT_DESTROY_FS">WARNING: Formatting of the device will destroy all data on filesystem '{0}'.\n\nDo you want to continue?</entry>
<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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please dismount '{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>
@@ -1522,8 +1520,7 @@
<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>
<entry lang="en" key="LINUX_VOL_DISMOUNTED">Volume {0} has been dismounted.</entry>
<entry lang="en" key="LINUX_OOM">Out of memory.</entry>
<entry lang="en" key="LINUX_CANT_GET_ADMIN_PRIV">Failed to obtain administrator privileges</entry>
<entry lang="en" key="LINUX_COMMAND_GET_ERROR">Command {0} returned error {1}.</entry>
@@ -1553,7 +1550,7 @@
<entry lang="en" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Error: The drive uses a sector size other than 512 bytes.\n\nDue to limitations of components available on your platform, partition/device-hosted volumes cannot be created/used on the drive.\n\nPossible solutions:\n- Create a file-hosted volume (container) on the drive.\n- Use a drive with 512-byte sectors.\n- Use VeraCrypt on another platform.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">The host file/device is already in use.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Volume slot unavailable.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires macFUSE 2.5 or above.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires OSXFUSE 2.5 or above.</entry>
<entry lang="en" key="EXCEPTION_OCCURRED">Exception occurred</entry>
<entry lang="en" key="ENTER_PASSWORD">Enter password</entry>
<entry lang="en" key="ENTER_TC_VOL_PASSWORD">Enter VeraCrypt Volume Password</entry>
@@ -1570,124 +1567,6 @@
<entry lang="en" key="VOLUME_HOST_IN_USE">WARNING: The host file/device {0} is already in use!\n\nIgnoring this can cause undesired results including system instability. All applications that might be using the host file/device should be closed before mounting the volume.\n\nContinue mounting?</entry>
<entry lang="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
<entry lang="en" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">VeraCrypt cannot be upgraded because the system partition/drive was encrypted using an algorithm that is not supported anymore.\nPlease decrypt your system before upgrading VeraCrypt and then encrypt it again.</entry>
<entry lang="en" key="LINUX_EX2MSG_TERMINALNOTFOUND">Supported terminal application could not be found, you need either xterm, konsole or gnome-terminal (with dbus-x11).</entry>
<entry lang="en" key="IDM_MOUNT_NO_CACHE">Mount Without Cache</entry>
<entry lang="en" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nExpand a VeraCrypt volume on the fly without reformatting\n\n\nAll kind of volumes (container files, disks and partitions) formatted with NTFS are supported. The only condition is that there must be enough free space on the host drive or host device of the VeraCrypt volume.\n\nDo not use this software to expand an outer volume containing a hidden volume, because this destroys the hidden volume!\n</entry>
<entry lang="en" key="IDC_STEPSEXPAND">1. Select the VeraCrypt volume to be expanded\n2. Click the 'Mount' button</entry>
<entry lang="en" key="IDT_VOL_NAME">Volume: </entry>
<entry lang="en" key="IDT_FILE_SYS">File system: </entry>
<entry lang="en" key="IDT_CURRENT_SIZE">Current size: </entry>
<entry lang="en" key="IDT_NEW_SIZE">New size: </entry>
<entry lang="en" key="IDT_NEW_SIZE_BOX_TITLE">Enter new volume size</entry>
<entry lang="en" key="IDC_INIT_NEWSPACE">Fill new space with random data</entry>
<entry lang="en" key="IDC_QUICKEXPAND">Quick Expand</entry>
<entry lang="en" key="IDT_INIT_SPACE">Fill new space: </entry>
<entry lang="en" key="EXPANDER_FREE_SPACE">%s free space available on host drive</entry>
<entry lang="en" key="EXPANDER_HELP_DEVICE">This is a device-based VeraCrypt volume.\n\nThe new volume size will be choosen automatically as the size of the host device.</entry>
<entry lang="en" key="EXPANDER_HELP_FILE">Please specify the new size of the VeraCrypt volume (must be at least %I64u KB larger than the current size).</entry>
<entry lang="en" key="QUICK_EXPAND_WARNING">WARNING: You should use Quick Expand only in the following cases:\n\n1) The device where the file container is located contains no sensitive data and you do not need plausible deniability.\n2) The device where the file container is located has already been securely and fully encrypted.\n\nAre you sure you want to use Quick Expand?</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT">IMPORTANT: Move your mouse as randomly as possible within this window. The longer you move it, the better. This significantly increases the cryptographic strength of the encryption keys. Then click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT_LEGACY">Click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_FINISH_ERROR">Error: volume expansion failed.</entry>
<entry lang="en" key="EXPANDER_FINISH_ABORT">Error: operation aborted by user.</entry>
<entry lang="en" key="EXPANDER_FINISH_OK">Finished. Volume successfully expanded.</entry>
<entry lang="en" key="EXPANDER_CANCEL_WARNING">Warning: Volume expansion is in progress!\n\nStopping now may result in a damaged volume.\n\nDo you really want to cancel?</entry>
<entry lang="en" key="EXPANDER_STARTING_STATUS">Starting volume expansion ...\n</entry>
<entry lang="en" key="EXPANDER_HIDDEN_VOLUME_ERROR">An outer volume containing a hidden volume can't be expanded, because this destroys the hidden volume.\n</entry>
<entry lang="en" key="EXPANDER_SYSTEM_VOLUME_ERROR">A VeraCrypt system volume can't be expanded.</entry>
<entry lang="en" key="EXPANDER_NO_FREE_SPACE">Not enough free space to expand the volume</entry>
<entry lang="en" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Warning: The container file is larger than the VeraCrypt volume area. The data after the VeraCrypt volume area will be overwritten.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_FAT">Warning: The VeraCrypt volume contains a FAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_EXFAT">Warning: The VeraCrypt volume contains an exFAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_UNKNOWN_FS">Warning: The VeraCrypt volume contains an unknown or no file system!\n\nOnly the VeraCrypt volume itself will be expanded, the file system remains unchanged.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">New volume size too small, must be at least %I64u kB larger than the current size.</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">New volume size too large, not enough space on host drive.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Maximum file size of %I64u MB on host drive exceeded.</entry>
<entry lang="en" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Error: Failed to get necessary privileges to enable Quick Expand!\nPlease uncheck Quick Expand option and try again.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Maximum VeraCrypt volume size of %I64u TB exceeded!\n</entry>
<entry lang="en" key="FULL_FORMAT">Full Format</entry>
<entry lang="en" key="FAST_CREATE">Fast Create</entry>
<entry lang="en" key="WARN_FAST_CREATE">WARNING: You should use Fast Create only in the following cases:\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 Fast Create?</entry>
<entry lang="en" key="IDC_ENABLE_EMV_SUPPORT">Enable EMV Support</entry>
<entry lang="en" key="COMMAND_APDU_INVALID">The APDU command sent to the card is not valid.</entry>
<entry lang="en" key="EXTENDED_APDU_UNSUPPORTED">Extended APDU commands cannot be used with the current token.</entry>
<entry lang="en" key="SCARD_MODULE_INIT_FAILED">Error when loading the WinSCard / PCSC library.</entry>
<entry lang="en" key="EMV_UNKNOWN_CARD_TYPE">The card in the reader is not a supported EMV card.</entry>
<entry lang="en" key="EMV_SELECT_AID_FAILED">The AID of the card in the reader could not be selected.</entry>
<entry lang="en" key="EMV_ICC_CERT_NOTFOUND">ICC Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_ISSUER_CERT_NOTFOUND">Issuer Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_CPLC_NOTFOUND">CPLC was not found in the EMV card.</entry>
<entry lang="en" key="EMV_PAN_NOTFOUND">No Primary Account Number (PAN) found in the EMV card.</entry>
<entry lang="en" key="INVALID_EMV_PATH">EMV path is invalid.</entry>
<entry lang="en" key="EMV_KEYFILE_DATA_NOTFOUND">Unable to build a keyfile from the EMV card's data.\n\nOne of the following is missing:\n- ICC Public Key Certificate.\n- Issuer Public Key Certificate.\n- CPLC data.</entry>
<entry lang="en" key="SCARD_W_REMOVED_CARD">No card in the reader.\n\nPlease make sure the card is correctly slotted.</entry>
<entry lang="en" key="FORMAT_EXTERNAL_FAILED">Windows format.com command failed to format the volume as NTFS/exFAT/ReFS: Error 0x%.8X.\n\nFalling back to using Windows FormatEx API.</entry>
<entry lang="en" key="FORMATEX_API_FAILED">Windows FormatEx API failed to format the volume as NTFS/exFAT/ReFS.\n\nFailure status = %s.</entry>
<entry lang="en" key="EXPANDER_WRITING_RANDOM_DATA">Writing random data to new space ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Writing re-encrypted backup header ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Writing re-encrypted primary header ...\n</entry>
<entry lang="en" key="EXPANDER_WIPING_OLD_HEADER">Wiping old backup header ...\n</entry>
<entry lang="en" key="EXPANDER_MOUNTING_VOLUME">Mounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_UNMOUNTING_VOLUME">Unmounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_EXTENDING_FILESYSTEM">Extending file system ...\n</entry>
<entry lang="en" key="PARTIAL_SYSENC_MOUNT_READONLY">Warning: The system partition you attempted to mount was not fully encrypted. As a safety measure to prevent potential corruption or unwanted modifications, volume '%s' was mounted as read-only.</entry>
<entry lang="en" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Important information on using third-party file extensions</entry>
<entry lang="en" key="IDC_DISABLE_MEMORY_PROTECTION">Disable memory protection for Accessibility tools compatibility</entry>
<entry lang="en" key="DISABLE_MEMORY_PROTECTION_WARNING">WARNING: Disabling memory protection significantly reduces security. Enable this option ONLY if you rely on Accessibility tools, like Screen Readers, to interact with VeraCrypt's UI.</entry>
<entry lang="en" key="LINUX_LANGUAGE">Language</entry>
<entry lang="en" key="LINUX_SELECT_SYS_DEFAULT_LANG">Select system's default language</entry>
<entry lang="en" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">For the language change to come into effect, VeraCrypt needs to be restarted.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE">WARNING: The volume's master key is vulnerable to an attack that compromises data security.\n\nPlease create a new volume and transfer the data to it.</entry>
<entry lang="en" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">WARNING: The encrypted system's master key is vulnerable to an attack that compromises data security.\nPlease decrypt the system partition/drive and then re-encrypt it.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">WARNING: The volume's master key has a security vulnerability.</entry>
<entry lang="en" key="MOUNTPOINT_BLOCKED">ERROR: The volume mount point is blocked because it overrides a protected system directory.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="MOUNTPOINT_NOTALLOWED">ERROR: The volume mount point is not allowed because it overrides a directory that is part of the PATH environment variable.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="INSECURE_MODE">[INSECURE MODE]</entry>
<entry lang="en" key="IDC_DISABLE_SCREEN_PROTECTION">Disable protection against screenshots and screen recording</entry>
<entry lang="en" key="DISABLE_SCREEN_PROTECTION_WARNING">WARNING: Disabling screen protection significantly reduces security. Enable this option ONLY if you have a specific need to capture VeraCrypt's interface. This may expose sensitive data to screenshot tools and screen recording features such as Windows 11 Recall.</entry>
<entry lang="en" key="MEMORY_COST">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="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>
<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>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+1132 -1253
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+52 -172
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.25.9">
<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" />
@@ -135,8 +135,8 @@
<entry lang="he" key="IDC_FAVORITE_REMOVE">&amp;הסר</entry>
<entry lang="he" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">השתמש בתווית האהובה כתווית הכונן של Explorer</entry>
<entry lang="he" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">הגדרות כלליות</entry>
<entry lang="he" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">הצגת טיפ לאחר הניתוק המהיר</entry>
<entry lang="he" key="IDC_HK_UNMOUNT_PLAY_SOUND">הפעל צליל התראה למערכת לאחר ניתוק בעזרת קיצור מקלדת</entry>
<entry lang="he" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">הצגת טיפ לאחר הניתוק המהיר</entry>
<entry lang="he" key="IDC_HK_DISMOUNT_PLAY_SOUND">הפעל צליל התראה למערכת לאחר ניתוק בעזרת קיצור מקלדת</entry>
<entry lang="he" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="he" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="he" key="IDC_HK_MOD_SHIFT">Shift</entry>
@@ -156,12 +156,12 @@
<entry lang="he" key="IDC_PIM_HELP">(ריק או 0 עבור איטרציות ברירת מחדל)</entry>
<entry lang="he" key="IDC_PREF_BKG_TASK_ENABLE">מופעל</entry>
<entry lang="he" key="IDC_PREF_CACHE_PASSWORDS">סיסמאות מטמון בזיכרון מנהל ההתקן</entry>
<entry lang="he" key="IDC_PREF_UNMOUNT_INACTIVE">נתק אמצעי אחסון אם לא נכתב או נקרא לתוכו מידע לאחר זמן מה</entry>
<entry lang="he" key="IDC_PREF_UNMOUNT_LOGOFF">המשתמש מתנתק</entry>
<entry lang="he" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">הפעלת המשתמש במצב נעולה</entry>
<entry lang="he" key="IDC_PREF_UNMOUNT_POWERSAVING">להפעיל מצב חיסכון בחשמל</entry>
<entry lang="he" key="IDC_PREF_UNMOUNT_SCREENSAVER">הפעלת שומר מסך</entry>
<entry lang="he" key="IDC_PREF_FORCE_AUTO_UNMOUNT">כפה על ניתוק אוטומטי גם אם אמצעי האחסון מכיל קבצים פתוחים או ספריות</entry>
<entry lang="he" key="IDC_PREF_DISMOUNT_INACTIVE">נתק אמצעי אחסון אם לא נכתב או נקרא לתוכו מידע לאחר זמן מה</entry>
<entry lang="he" key="IDC_PREF_DISMOUNT_LOGOFF">המשתמש מתנתק</entry>
<entry lang="he" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">הפעלת המשתמש במצב נעולה</entry>
<entry lang="he" key="IDC_PREF_DISMOUNT_POWERSAVING">להפעיל מצב חיסכון בחשמל</entry>
<entry lang="he" key="IDC_PREF_DISMOUNT_SCREENSAVER">הפעלת שומר מסך</entry>
<entry lang="he" key="IDC_PREF_FORCE_AUTO_DISMOUNT">כפה על ניתוק אוטומטי גם אם אמצעי האחסון מכיל קבצים פתוחים או ספריות</entry>
<entry lang="he" key="IDC_PREF_LOGON_MOUNT_DEVICES">לטעון את כל אמצעי האחסון המארחים VeraCrypt</entry>
<entry lang="he" key="IDC_PREF_LOGON_START">התחל את משימת הרקע של VeraCrypt</entry>
<entry lang="he" key="IDC_PREF_MOUNT_READONLY">טעינה אמצעי אחסון לקריאה בלבד</entry>
@@ -169,7 +169,7 @@
<entry lang="he" key="IDC_PREF_OPEN_EXPLORER">פתח את חלון סייר עבור אמצעי אחסון המותקן בהצלחה</entry>
<entry lang="he" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">שמירה זמנית של הסיסמא במהלך ביצוע טעינה אוטמטית של אמצעי אחסון</entry>
<entry lang="he" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">השתמש בסמל של שורת המשימות אחרת כשיש אמצעי אחסון מותקנים</entry>
<entry lang="he" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">מחק סיסמאות שנשמרו במטמון בניתוק אוטומטי</entry>
<entry lang="he" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">מחק סיסמאות שנשמרו במטמון בניתוק אוטומטי</entry>
<entry lang="he" key="IDC_PREF_WIPE_CACHE_ON_EXIT">מחק סיסמאות במטמון בעת היציאה</entry>
<entry lang="he" key="IDC_PRESERVE_TIMESTAMPS">שמור על חותמת הזמן לשינוי מכולות הקבצים</entry>
<entry lang="he" key="IDC_RESET_HOTKEYS">אתחול</entry>
@@ -269,14 +269,14 @@
<entry lang="he" key="IDT_ACCELERATION_OPTIONS">האצת חומרה</entry>
<entry lang="he" key="IDT_ASSIGN_HOTKEY">קיצור</entry>
<entry lang="he" key="IDT_AUTORUN">תצורת הפעלה אוטומטית (autorun.inf)</entry>
<entry lang="he" key="IDT_AUTO_UNMOUNT">ניתוק אוטומטי</entry>
<entry lang="he" key="IDT_AUTO_UNMOUNT_ON">בטל הכל כאשר:</entry>
<entry lang="he" key="IDT_AUTO_DISMOUNT">ניתוק אוטומטי</entry>
<entry lang="he" key="IDT_AUTO_DISMOUNT_ON">בטל הכל כאשר:</entry>
<entry lang="he" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">אפשרויות מסך מטעין אתחול</entry>
<entry lang="he" key="IDT_CONFIRM_PASSWORD">אשר סיסמה:</entry>
<entry lang="he" key="IDT_CURRENT">נוכחי</entry>
<entry lang="he" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">הצג הודעה מותאמת אישית זו במסך אימות טרום האתחול (24 תווים לכל היותר):</entry>
<entry lang="he" key="IDT_DEFAULT_MOUNT_OPTIONS">אפשרויות ברירת מחדל להתקנה</entry>
<entry lang="he" key="IDT_UNMOUNT_ACTION">אפשרויות קיצורי מקלדת</entry>
<entry lang="he" key="IDT_DISMOUNT_ACTION">אפשרויות קיצורי מקלדת</entry>
<entry lang="he" key="IDT_DRIVER_OPTIONS">תצורת מנהל התקן</entry>
<entry lang="he" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">אפשר תמיכה בקודי בקרת דיסק מורחבים</entry>
<entry lang="he" key="IDT_FAVORITE_LABEL">תווית האמצעי אחסון המועדף שנבחר:</entry>
@@ -291,11 +291,10 @@
<entry lang="he" key="IDT_NEW_PASSWORD">סיסמה:</entry>
<entry lang="he" key="IDT_PARALLELIZATION_OPTIONS">מקביליות מבוססת טרדים</entry>
<entry lang="he" key="IDT_PKCS11_LIB_PATH">נתיב הספרייה PKCS # 11</entry>
<entry lang="he" key="IDT_KDF">KDF:</entry>
<entry lang="he" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="he" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="he" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="he" key="IDT_PW_CACHE_OPTIONS">מטמון סיסמה</entry>
<entry lang="he" key="IDT_SECURITY_OPTIONS">אפשרויות אבטחה</entry>
<entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry>
<entry lang="he" key="IDT_TASKBAR_ICON">משימת רקע של VeraCrypt</entry>
<entry lang="he" key="IDT_TRAVELER_MOUNT">אמצעי אחסון VeraCrypt לעלות (ביחס לשורש הדיסק הנייד):</entry>
<entry lang="he" key="IDT_TRAVEL_INSERTION">עם הכנסת דיסק הנייד:</entry>
@@ -357,7 +356,7 @@
<entry lang="he" key="IDT_KEYFILE_WARNING">אזהרה: אם אתה מאבד קובץ מפתח או אם כל חלק מה 1024 קילובייט הראשונים שלו משתנה, אי אפשר יהיה לעלות אמצעי אחסוןים המשתמשים בקובץ המפתחות!</entry>
<entry lang="he" key="IDT_KEY_UNIT">ביטים</entry>
<entry lang="he" key="IDT_NUMBER_KEYFILES">מספר קובצי המפתח:</entry>
<entry lang="he" key="IDT_KEYFILES_SIZE">גודל מפתחות:</entry>
<entry lang="he" key="IDT_KEYFILES_SIZE">גודל מפתחות (בבתים):</entry>
<entry lang="he" key="IDT_KEYFILES_BASE_NAME">שם בסיס קובץ המפתח:</entry>
<entry lang="he" key="IDT_LANGPACK_AUTHORS">תורגם ע&amp;quot;י:</entry>
<entry lang="he" key="IDT_PLAINTEXT">גודל טקסט רגיל:</entry>
@@ -390,7 +389,6 @@
<entry lang="he" key="ADMINISTRATOR">מנהל</entry>
<entry lang="he" key="ADMIN_PRIVILEGES_DRIVER">על מנת לטעון את מנהל ההתקן של VeraCrypt, עליך להיכנס לחשבון עם הרשאות מנהל.</entry>
<entry lang="he" key="ADMIN_PRIVILEGES_WARN_DEVICES">שים לב שכדי להצפין, לפענח או לעצב מחיצה / התקן אתה צריך להיות מחובר לחשבון עם הרשאות מנהל. \n \n זה לא חל על אמצעי אחסון המתארחים בקבצים.</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="he" key="ADMIN_PRIVILEGES_WARN_HIDVOL">על מנת ליצור אמצעי אחסון מוסתר עליך להיכנס לחשבון עם הרשאות מנהל. \n \n להמשיך?</entry>
<entry lang="he" key="ADMIN_PRIVILEGES_WARN_NTFS">שים לב שכדי לעצב את אמצעי האחסון כ- NTFS / exFAT / ReFS אתה צריך להיות מחובר לחשבון עם הרשאות מנהל. \n \n ללא הרשאות מנהל, אתה יכול לעצב את אמצעי האחסון כ- FAT.</entry>
<entry lang="he" key="AES_HELP">צופן מאושר על ידי FIPS (Rijndael, פורסם בשנת 1998) אשר עשוי לשמש את משרדי הממשלה והסוכנויות בארה&amp;quot;ב כדי להגן על מידע מסווג עד לרמה הסודית ביותר.מקש 256 סיביות, בלוק 128 סיביות, 14 סיבובים (AES-256).אופן הפעולה הוא XTS.</entry>
@@ -423,8 +421,8 @@
<entry lang="he" key="DEVICE_FREE_PB">הגודל של %s הוא %.2f פ&amp;quot;ב</entry>
<entry lang="he" key="DEVICE_IN_USE_FORMAT">אזהרה: ההתקן / המחיצה נמצאים בשימוש על ידי מערכת ההפעלה או היישומים.עיצוב ההתקן / המחיצה עלול לגרום לשחיתות נתונים וחוסר יציבות במערכת. \n \n להמשיך?</entry>
<entry lang="he" key="DEVICE_IN_USE_INPLACE_ENC">אזהרה: המחיצה נמצאת בשימוש על ידי מערכת ההפעלה או האפליקציות.עליך לסגור יישומים שעשויים להשתמש במחיצה (כולל תוכנת אנטי-וירוס). \n \n להמשיך?</entry>
<entry lang="he" key="FORMAT_CANT_UNMOUNT_FILESYS">שגיאה: ההתקן / המחיצה מכילה מערכת קבצים שלא ניתן היה לנתק אותה. מערכת הקבצים עשויה להיות בשימוש על ידי מערכת ההפעלה. עיצוב ההתקן / המחיצה עלול ככל הנראה לגרום לשחיתות נתונים ולחוסר יציבות במערכת. \n \n כדי לפתור בעיה זו, אנו ממליצים למחוק תחילה את המחיצה ואז ליצור אותה מחדש ללא עיצוב. לשם כך, בצע את השלבים הבאים: \n1) לחץ באמצעות לחצן העכבר הימני על סמל &amp;apos;המחשב&amp;apos; (או &amp;apos;המחשב שלי&amp;apos;) ב&amp;apos;תפריט התחל &amp;apos;ובחר&amp;apos; נהל &amp;apos;. חלון &amp;apos;ניהול מחשבים&amp;apos; אמור להופיע. \n2) בחלון &amp;apos;ניהול מחשבים&amp;apos; בחר &amp;apos;אחסון&amp;apos;&gt; &amp;apos;ניהול דיסקים&amp;apos;. \n3) לחץ באמצעות לחצן העכבר הימני על המחיצה שברצונך להצפין ובחר באפשרות &amp;apos;מחק מחיצה&amp;apos;, או &amp;apos;מחק אמצעי אחסון&amp;apos;, או &amp;apos;מחק כונן לוגי&amp;apos;. \n4) לחץ על &amp;apos;כן&amp;apos;. אם Windows מבקש ממך להפעיל מחדש את המחשב, עשה זאת. לאחר מכן חזור על שלבים 1 ו- 2 והמשיך משלב 5. \n5) לחץ באמצעות לחצן העכבר הימני על אזור השטח הלא מוקצה / פנוי ובחר &amp;apos;מחיצה חדשה&amp;apos;, או &amp;apos;אמצעי אחסון פשוט חדש&amp;apos;, או &amp;apos;כונן לוגי חדש&amp;apos;. \n6 ) החלון &amp;apos;אשף המחיצה החדש&amp;apos; או &amp;apos;אשף אמצעי אחסון פשוט חדש&amp;apos; אמור להופיע כעת; עקוב אחר הוראותיו. בדף האשף שכותרתו &amp;apos;פורמט מחיצה&amp;apos;, בחר באפשרות &amp;apos;אל תפרמט מחיצה זו&amp;apos; או &amp;apos;אל תפרמט אמצעי אחסון זה&amp;apos;. באותו אשף, לחץ על &amp;apos;הבא&amp;apos; ואז על &amp;apos;סיום&amp;apos;. \n7) שים לב שנתיב ההתקן שבחרת ב- VeraCrypt עשוי להיות שגוי כעת. לכן צא מאשף יצירת האמצעי אחסון של VeraCrypt (אם הוא עדיין פועל) ואז הפעל אותו שוב. \n8) נסה להצפין שוב את ההתקן / המחיצה. \n \n אם VeraCrypt שוב ושוב לא מצליח להצפין את ההתקן / המחיצה, ייתכן שתרצה שקול ליצור במקום מיכל קבצים.</entry>
<entry lang="he" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">שגיאה: לא ניתן היה לנעול ו / או לנתק את מערכת הקבצים.זה עשוי להיות בשימוש על ידי מערכת ההפעלה או היישומים (למשל, תוכנת אנטי-וירוס).הצפנת המחיצה עלולה לגרום לשחיתות נתונים ולחוסר יציבות במערכת. \n \n אנא סגור יישומים העשויים להשתמש במערכת הקבצים (כולל תוכנת אנטי-וירוס) ונסה שוב.אם זה לא עוזר, בצע את השלבים הבאים.</entry>
<entry lang="he" key="FORMAT_CANT_DISMOUNT_FILESYS">שגיאה: ההתקן / המחיצה מכילה מערכת קבצים שלא ניתן היה לנתק אותה. מערכת הקבצים עשויה להיות בשימוש על ידי מערכת ההפעלה. עיצוב ההתקן / המחיצה עלול ככל הנראה לגרום לשחיתות נתונים ולחוסר יציבות במערכת. \n \n כדי לפתור בעיה זו, אנו ממליצים למחוק תחילה את המחיצה ואז ליצור אותה מחדש ללא עיצוב. לשם כך, בצע את השלבים הבאים: \n1) לחץ באמצעות לחצן העכבר הימני על סמל &amp;apos;המחשב&amp;apos; (או &amp;apos;המחשב שלי&amp;apos;) ב&amp;apos;תפריט התחל &amp;apos;ובחר&amp;apos; נהל &amp;apos;. חלון &amp;apos;ניהול מחשבים&amp;apos; אמור להופיע. \n2) בחלון &amp;apos;ניהול מחשבים&amp;apos; בחר &amp;apos;אחסון&amp;apos;&gt; &amp;apos;ניהול דיסקים&amp;apos;. \n3) לחץ באמצעות לחצן העכבר הימני על המחיצה שברצונך להצפין ובחר באפשרות &amp;apos;מחק מחיצה&amp;apos;, או &amp;apos;מחק אמצעי אחסון&amp;apos;, או &amp;apos;מחק כונן לוגי&amp;apos;. \n4) לחץ על &amp;apos;כן&amp;apos;. אם Windows מבקש ממך להפעיל מחדש את המחשב, עשה זאת. לאחר מכן חזור על שלבים 1 ו- 2 והמשיך משלב 5. \n5) לחץ באמצעות לחצן העכבר הימני על אזור השטח הלא מוקצה / פנוי ובחר &amp;apos;מחיצה חדשה&amp;apos;, או &amp;apos;אמצעי אחסון פשוט חדש&amp;apos;, או &amp;apos;כונן לוגי חדש&amp;apos;. \n6 ) החלון &amp;apos;אשף המחיצה החדש&amp;apos; או &amp;apos;אשף אמצעי אחסון פשוט חדש&amp;apos; אמור להופיע כעת; עקוב אחר הוראותיו. בדף האשף שכותרתו &amp;apos;פורמט מחיצה&amp;apos;, בחר באפשרות &amp;apos;אל תפרמט מחיצה זו&amp;apos; או &amp;apos;אל תפרמט אמצעי אחסון זה&amp;apos;. באותו אשף, לחץ על &amp;apos;הבא&amp;apos; ואז על &amp;apos;סיום&amp;apos;. \n7) שים לב שנתיב ההתקן שבחרת ב- VeraCrypt עשוי להיות שגוי כעת. לכן צא מאשף יצירת האמצעי אחסון של VeraCrypt (אם הוא עדיין פועל) ואז הפעל אותו שוב. \n8) נסה להצפין שוב את ההתקן / המחיצה. \n \n אם VeraCrypt שוב ושוב לא מצליח להצפין את ההתקן / המחיצה, ייתכן שתרצה שקול ליצור במקום מיכל קבצים.</entry>
<entry lang="he" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">שגיאה: לא ניתן היה לנעול ו / או לנתק את מערכת הקבצים.זה עשוי להיות בשימוש על ידי מערכת ההפעלה או היישומים (למשל, תוכנת אנטי-וירוס).הצפנת המחיצה עלולה לגרום לשחיתות נתונים ולחוסר יציבות במערכת. \n \n אנא סגור יישומים העשויים להשתמש במערכת הקבצים (כולל תוכנת אנטי-וירוס) ונסה שוב.אם זה לא עוזר, בצע את השלבים הבאים.</entry>
<entry lang="he" key="DEVICE_IN_USE_INFO">אזהרה: חלק מההתקנים / מחיצות המותקנות כבר היו בשימוש! \n \n התעלמות מכך עלולה לגרום לתוצאות לא רצויות כולל חוסר יציבות במערכת. \n \n אנו ממליצים בחום לסגור כל יישום שעשוי להשתמש בהתקנים / מחיצות.</entry>
<entry lang="he" key="DEVICE_PARTITIONS_ERR">ההתקן שנבחר מכיל מחיצות. \n \n עיצוב ההתקן עלול לגרום לחוסר יציבות במערכת ו / או לשחיתות נתונים.אנא בחר מחיצה בהתקן, או הסר את כל המחיצות בהתקן כדי לאפשר ל- VeraCrypt לעצב אותה בבטחה.</entry>
<entry lang="he" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">ההתקן שאינו מערכת שנבחר מכיל מחיצות. \n \n ניתן ליצור אמצעי אחסון מסוג VeraCrypt המתארח בהתקןים שאינם מכילים מחיצות כלשהן (כולל דיסקים קשיחים וכונני מצב מוצק).התקן המכיל מחיצות יכול להיות מוצפן לחלוטין במקום (באמצעות מפתח יחיד יחיד) רק אם זהו הכונן בו מותקן Windows וממנו הוא מתחל. \n \n אם ברצונך להצפין את ההתקן שאינו מערכת שנבחר באמצעותמפתח ראשי יחיד, יהיה עליכם להסיר תחילה את כל המחיצות בהתקן כדי לאפשר ל- VeraCrypt לעצב אותו בבטחה (עיצוב התקן המכיל מחיצות עלול לגרום לחוסר יציבות במערכת ו / או לפגיעה בנתונים).לחלופין, תוכל להצפין כל מחיצה בכונן בנפרד (כל מחיצה תוצפן באמצעות מפתח ראשי אחר). \n \n הערה: אם ברצונך להסיר את כל המחיצות מדיסק GPT, ייתכן שיהיה עליך להמיר אותה ל- MBR.דיסק (באמצעות למשל כלי ניהול המחשב) על מנת להסיר מחיצות נסתרות.</entry>
@@ -590,7 +588,7 @@
<entry lang="he" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">שגיאה: הקבצים שהעתקת לאמצעי אחסון החיצוני תופסים מקום רב מדי.לכן, אין מספיק מקום פנוי באמצעי אחסון החיצוני עבור אמצעי האחסון הנסתר. \n \n שים לב שהאמצעי אחסון הנסתר חייב להיות גדול כמו מחיצת המערכת (המחיצה בה מותקנת מערכת ההפעלה הפועלת כעת).הסיבה היא שיש ליצור את מערכת ההפעלה הנסתרת על ידי העתקת תוכן מחיצת המערכת לאמצעי אחסון הנסתר. \n \n \n לא ניתן להמשיך בתהליך היצירה של מערכת ההפעלה הנסתרת.</entry>
<entry lang="he" key="OPENFILES_DRIVER">מנהל ההתקן אינו מסוגל לנתק את אמצעי האחסון.קבצים מסוימים שנמצאים על אמצעי האחסון כנראה עדיין פתוחים.</entry>
<entry lang="he" key="OPENFILES_LOCK">לא ניתן לנעול את אמצעי האחסון.עדיין יש קבצים פתוחים בעוצמת הקול.לכן, לא ניתן לנתק אותו.</entry>
<entry lang="he" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt לא יכול לנעול את אמצעי האחסון מכיוון שהוא נמצא בשימוש על ידי המערכת או היישומים (יתכן שישנם קבצים פתוחים בעוצמת הקול). \n \n האם ברצונך לכפות הורדה על אמצעי האחסון?</entry>
<entry lang="he" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt לא יכול לנעול את אמצעי האחסון מכיוון שהוא נמצא בשימוש על ידי המערכת או היישומים (יתכן שישנם קבצים פתוחים בעוצמת הקול). \n \n האם ברצונך לכפות הורדה על אמצעי האחסון?</entry>
<entry lang="he" key="OPEN_VOL_TITLE">בחר אמצעי אחסון VeraCrypt</entry>
<entry lang="he" key="OPEN_TITLE">ציין נתיב ושם קובץ</entry>
<entry lang="he" key="SELECT_PKCS11_MODULE">בחר PKCS # 11 Library</entry>
@@ -613,7 +611,7 @@
<entry lang="he" key="FAVORITE_PIM_CHANGED">אמצעי אחסון זה רשום כמועדף על המערכת וה- PIM שלו השתנה. \n האם ברצונך ש- VeraCrypt יתעדכן אוטומטית את תצורת המערכת המועדפת (נדרשות הרשאות מנהל)? \n \n שים לב שאם תענה לא, יהיה עליך לעדכן אתמועדף על המערכת באופן ידני.</entry>
<entry lang="he" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">חשוב: אם לא הרסת את דיסק ההצלה של VeraCrypt, ניתן עדיין לפענח את מחיצת המערכת / כונן המערכת באמצעות הסיסמה הישנה (על ידי אתחול דיסק ההצלה של VeraCrypt והזנת הסיסמה הישנה).עליכם ליצור דיסק הצלה חדש של VeraCrypt ואז להרוס את הישן. \n \n האם ברצונכם ליצור דיסק הצלה חדש של VeraCrypt?</entry>
<entry lang="he" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">שים לב שדיסק ההצלה של VeraCrypt שלך עדיין משתמש באלגוריתם הקודם.אם אתה מחשיב את האלגוריתם הקודם כלא מאובטח, עליך ליצור דיסק הצלה חדש של VeraCrypt ואז להשמיד את הישן. \n \n האם ברצונך ליצור דיסק הצלה חדש של VeraCrypt?</entry>
<entry lang="he" key="KEYFILES_NOTE">שים לב ש- VeraCrypt לעולם לא משנה את תוכן קובץ המפתחות.אתה יכול לבחור יותר מקובץ מפתח אחד (הסדר לא משנה).אם תוסיף תיקיה, כל הקבצים שאינם מוסתרים שנמצאו בה ישמשו כקובצי מפתח.לחץ על &amp;apos;הוסף קבצי אמצעי אבטחה&amp;apos; כדי לבחור קובצי מפתח המאוחסנים באמצעי האבטחה או בכרטיסים חכמים (או לייבוא קובצי אמצעי אבטחה לאמצעי האבטחה או כרטיסי חכם).</entry>
<entry lang="he" key="KEYFILES_NOTE">כל סוג של קובץ (למשל .mp3, .jpg, .zip, .avi) עשוי לשמש כקובץ מפתח VeraCrypt.שים לב ש- VeraCrypt לעולם לא משנה את תוכן קובץ המפתחות.אתה יכול לבחור יותר מקובץ מפתח אחד (הסדר לא משנה).אם תוסיף תיקיה, כל הקבצים שאינם מוסתרים שנמצאו בה ישמשו כקובצי מפתח.לחץ על &amp;apos;הוסף קבצי אמצעי אבטחה&amp;apos; כדי לבחור קובצי מפתח המאוחסנים באמצעי האבטחה או בכרטיסים חכמים (או לייבוא קובצי אמצעי אבטחה לאמצעי האבטחה או כרטיסי חכם).</entry>
<entry lang="he" key="KEYFILE_CHANGED">קובץ מפתח הוסיף / הוסר בהצלחה.</entry>
<entry lang="he" key="KEYFILE_EXPORTED">קובץ מפתח מיוצא.</entry>
<entry lang="he" key="PKCS5_PRF_CHANGED">אלגוריתם גזירת מפתח הכותרת הוגדר בהצלחה.</entry>
@@ -729,7 +727,7 @@
<entry lang="he" key="DLL_FILES">מודולי ספרייה</entry>
<entry lang="he" key="FORMAT_NTFS_STOP">לא ניתן להמשיך בעיצוב NTFS / exFAT / ReFS.</entry>
<entry lang="he" key="CANT_MOUNT_VOLUME">לא ניתן לעלות על אמצעי האחסון.</entry>
<entry lang="he" key="CANT_UNMOUNT_VOLUME">לא ניתן להוריד את אמצעי האחסון.</entry>
<entry lang="he" key="CANT_DISMOUNT_VOLUME">לא ניתן להוריד את אמצעי האחסון.</entry>
<entry lang="he" key="FORMAT_NTFS_FAILED">Windows לא הצליח לעצב את אמצעי האחסון כ- NTFS / exFAT / ReFS. \n \n אנא בחר סוג אחר של מערכת קבצים (אם ניתן) ונסה שוב.לחלופין, אתה יכול להשאיר את אמצעי האחסון ללא עיצוב (בחר &amp;apos;ללא&amp;apos; כמערכת הקבצים), לצאת מאשף זה, לעלות על אמצעי האחסון ואז להשתמש במערכת או בכלי של צד שלישי כדי לעצב את אמצעי האחסון המותקנת (אמצעי האחסון תישאר מוצפנת).</entry>
<entry lang="he" key="FORMAT_NTFS_FAILED_ASK_FAT">Windows לא הצליח לעצב את אמצעי האחסון כ- NTFS / exFAT / ReFS. \n \n האם ברצונך לעצב את אמצעי האחסון כ- FAT במקום זאת?</entry>
<entry lang="he" key="DEFAULT">ברירת מחדל</entry>
@@ -771,7 +769,7 @@
<entry lang="he" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">שגיאה מנעה מ- VeraCrypt להצפין את המחיצה.נסה לתקן את הבעיות שדווחו בעבר ואז נסה שוב.אם הבעיות נמשכות, זה עשוי לעזור לבצע את השלבים הבאים.</entry>
<entry lang="he" key="INPLACE_ENC_GENERIC_ERR_RESUME">שגיאה מנעה מ- VeraCrypt לחדש את תהליך ההצפנה / פענוח של המחיצה / אמצעי האחסון. \n \n אנא נסה לתקן את הבעיות שדווחו בעבר ואז נסה לחדש את התהליך במידת האפשר.שים לב כי לא ניתן להתקין את אמצעי האחסון לפני שהוא מוצפן לחלוטין או מפוענח לחלוטין.</entry>
<entry lang="he" key="INPLACE_DEC_GENERIC_ERR">שגיאה מנעה מ- VeraCrypt לפענח את אמצעי האחסון.נסה לתקן את הבעיות שדווחו בעבר ואז נסה שוב במידת האפשר.</entry>
<entry lang="he" key="CANT_UNMOUNT_OUTER_VOL">שגיאה: לא ניתן לנתק את אמצעי האחסון החיצונית! \n \n לא ניתן לנתק את אמצעי האחסון אם הוא מכיל קבצים או תיקיות המשמשים תוכנית או המערכת. \n \n אנא סגור כל תוכנית שעשויה להשתמש בקבצים או ספריות בכרך ולחץ על נסה שוב.</entry>
<entry lang="he" key="CANT_DISMOUNT_OUTER_VOL">שגיאה: לא ניתן לנתק את אמצעי האחסון החיצונית! \n \n לא ניתן לנתק את אמצעי האחסון אם הוא מכיל קבצים או תיקיות המשמשים תוכנית או המערכת. \n \n אנא סגור כל תוכנית שעשויה להשתמש בקבצים או ספריות בכרך ולחץ על נסה שוב.</entry>
<entry lang="he" key="CANT_GET_OUTER_VOL_INFO">שגיאה: לא ניתן לקבל מידע על אמצעי האחסון החיצוני! \n יצירת אמצעי אחסון אינה יכולה להמשיך.</entry>
<entry lang="he" key="CANT_ACCESS_OUTER_VOL">שגיאה: אין אפשרות לגשת לאמצעי אחסון החיצוני!לא ניתן להמשיך ליצור יצירה.</entry>
<entry lang="he" key="CANT_MOUNT_OUTER_VOL">שגיאה: לא ניתן לטעון את אמצעי האחסון החיצונית!לא ניתן להמשיך ליצור יצירה.</entry>
@@ -813,7 +811,7 @@
<entry lang="he" key="SECONDARY_KEY_SIZE_LRW">גודל מפתח לצבוט (מצב LRW)</entry>
<entry lang="he" key="BITS">ביטים</entry>
<entry lang="he" key="BLOCK_SIZE">גודל בלוק</entry>
<entry lang="he" key="KDF">KDF</entry>
<entry lang="he" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="he" key="PKCS5_ITERATIONS">ספירת איטרציה של PKCS-5</entry>
<entry lang="he" key="VOLUME_CREATE_DATE">אמצעי אחסון נוצר</entry>
<entry lang="he" key="VOLUME_HEADER_DATE">הכותרת שונה לאחרונה</entry>
@@ -855,7 +853,7 @@
<entry lang="he" key="TC_INSTALLER_IS_RUNNING">VeraCrypt Installer פועל כעת במערכת זו ומבצע או מכין התקנה או עדכון של VeraCrypt.לפני שתמשיך, אנא המתן עד שיסיים או יסגור אותו.אם אינך יכול לסגור אותו, הפעל מחדש את המחשב לפני שתמשיך.</entry>
<entry lang="he" key="INSTALL_FAILED">ההתקנה נכשלה.</entry>
<entry lang="he" key="UNINSTALL_FAILED">ההתקנה נכשלה.</entry>
<entry lang="he" key="DIST_PACKAGE_CORRUPTED">חבילת הפצה זו נפגעה. נסה להוריד אותה שוב (רצוי מהאתר הרשמי של VeraCrypt בכתובת https://veracrypt.jp).</entry>
<entry lang="he" key="DIST_PACKAGE_CORRUPTED">חבילת הפצה זו נפגעה. נסה להוריד אותה שוב (רצוי מהאתר הרשמי של VeraCrypt בכתובת https://www.veracrypt.fr).</entry>
<entry lang="he" key="CANNOT_WRITE_FILE_X">לא ניתן לכתוב את הקובץ %s</entry>
<entry lang="he" key="EXTRACTING_VERB">חילוץ</entry>
<entry lang="he" key="CANNOT_READ_FROM_PACKAGE">לא ניתן לקרוא נתונים מהחבילה.</entry>
@@ -882,7 +880,7 @@
<entry lang="he" key="INSTALL_COMPLETED">ההתקנה הושלמה.</entry>
<entry lang="he" key="CANT_CREATE_FOLDER">לא ניתן היה ליצור את התיקיה &amp;apos; %s&amp;apos;</entry>
<entry lang="he" key="CLOSE_TC_FIRST">לא ניתן לנתק את מנהל ההתקן של VeraCrypt. \n \n סגור תחילה את כל חלונות VeraCrypt הפתוחים.אם זה לא עוזר, אנא הפעל מחדש את Windows ואז נסה שוב.</entry>
<entry lang="he" key="UNMOUNT_ALL_FIRST">יש לנתק את כל אמצעי האחסון של VeraCrypt לפני התקנת או התקנת VeraCrypt.</entry>
<entry lang="he" key="DISMOUNT_ALL_FIRST">יש לנתק את כל אמצעי האחסון של VeraCrypt לפני התקנת או התקנת VeraCrypt.</entry>
<entry lang="he" key="UNINSTALL_OLD_VERSION_FIRST">גרסה מיושנת של VeraCrypt מותקנת כעת במערכת זו.יש להסיר את ההתקנה לפני שתוכל להתקין גרסה חדשה זו של VeraCrypt. \n \n ברגע שתסגור את תיבת ההודעה הזו, מסיר ההתקנה של הגרסה הישנה יושק.שים לב שאף אמצעי אחסון לא יפענח בעת הסרת ההתקנה של VeraCrypt.לאחר שתסיר את ההתקנה של הגרסה הישנה של VeraCrypt, הפעל שוב את מתקין הגירסה החדשה של VeraCrypt.</entry>
<entry lang="he" key="REG_INSTALL_FAILED">התקנת ערכי הרישום נכשלה</entry>
<entry lang="he" key="DRIVER_INSTALL_FAILED">התקנת מנהל ההתקן נכשלה.הפעל מחדש את Windows ואז נסה להתקין את VeraCrypt שוב.</entry>
@@ -903,7 +901,7 @@
<entry lang="he" key="MINUTES">דקות</entry>
<entry lang="he" key="SECONDS">שניות</entry>
<entry lang="he" key="OPEN">פתיחה</entry>
<entry lang="he" key="UNMOUNT">ניתוק</entry>
<entry lang="he" key="DISMOUNT">ניתוק</entry>
<entry lang="he" key="SHOW_TC">הצג את VeraCrypt</entry>
<entry lang="he" key="HIDE_TC">הסתר את VeraCrypt</entry>
<entry lang="he" key="TOTAL_DATA_READ">נתונים שנקראו מאז הטעינה</entry>
@@ -940,7 +938,7 @@
<entry lang="he" key="ENTER_HEADER_BACKUP_PASSWORD">הזן סיסמה לכותרת המאוחסנת בקובץ הגיבוי</entry>
<entry lang="he" key="KEYFILE_CREATED">קבצי המפתחות נוצרו בהצלחה.</entry>
<entry lang="he" key="KEYFILE_INCORRECT_NUMBER">מספר קבצי המפתחות שסיפקת אינו חוקי.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be at least 64 bytes.</entry>
<entry lang="he" key="KEYFILE_INCORRECT_SIZE">יש להכין את גודל הקליפ בין 64 ל -1048576 בתים.</entry>
<entry lang="he" key="KEYFILE_EMPTY_BASE_NAME">אנא הזן שם לקובץ המפתחות שייווצר</entry>
<entry lang="he" key="KEYFILE_INVALID_BASE_NAME">שם הבסיס של קובץ המפתחות לא חוקי</entry>
<entry lang="he" key="KEYFILE_ALREADY_EXISTS">קובץ המפתח %s כבר קיים.\nהאם ברצונך להחליף אותו?\nהתהליך ייפסק אם תבחר שלא.</entry>
@@ -975,7 +973,7 @@
<entry lang="he" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - אמצעי אחסון מועדפים על המערכת</entry>
<entry lang="he" key="SYS_FAVORITES_HELP_LINK">מהם האמצעי אחסון האהובים על המערכת?</entry>
<entry lang="he" key="SYS_FAVORITES_REQUIRE_PBA">מחיצת המערכת / כונן לא נראה מוצפן. \n \n ניתן להתקין אמצעי אחסון מועדפים באמצעות סיסמת אימות לפני האתחול בלבד.לכן, כדי לאפשר שימוש באמצעי אחסון המועדפים על המערכת, עליך קודם להצפין את מחיצת המערכת / כונן המערכת.</entry>
<entry lang="he" key="UNMOUNT_FIRST">אנא הורד את אמצעי האחסון לפני שתמשיך.</entry>
<entry lang="he" key="DISMOUNT_FIRST">אנא הורד את אמצעי האחסון לפני שתמשיך.</entry>
<entry lang="he" key="CANNOT_SET_TIMER">שגיאה: לא ניתן להגדיר טיימר.</entry>
<entry lang="he" key="IDPM_CHECK_FILESYS">בדוק את מערכת הקבצים</entry>
<entry lang="he" key="IDPM_REPAIR_FILESYS">תיקון מערכת קבצים</entry>
@@ -1009,11 +1007,11 @@
<entry lang="he" key="NO_SYSENC_PARTITION_SELECTED">לא נבחרה מחיצה. \n \n לחץ על &amp;apos;בחר התקן&amp;apos; כדי לבחור מחיצה מנותקת שבדרך כלל דורשת אימות לפני אתחול (למשל, מחיצה הממוקמת בכונן המערכת המוצפן של מערכת הפעלה אחרת, שאינה פועלת, או המערכת המוצפנת.מחיצה של מערכת הפעלה אחרת). \n \n הערה: המחיצה שנבחרה תותקן כאמצעי אחסון VeraCrypt רגיל ללא אימות לפני האתחול.זה שימושי למשללצורך פעולות גיבוי או תיקון.</entry>
<entry lang="he" key="CONFIRM_SAVE_DEFAULT_KEYFILES">אזהרה: אם מוגדרים ומאופשרים על מקשי ברירת מחדל, לא ניתן יהיה להתקין אמצעי אחסון שאינם משתמשים בקבצי מפתח אלה.לכן, לאחר הפעלת קובצי ברירת מחדל של מפתחות, זכור לבטל את הסימון של תיבת הסימון &amp;apos;השתמש בקבצי מפתח&amp;apos; (מתחת לשדה הזנת סיסמה) בכל התקנה של אמצעי אחסון כאלה. \n \n האם אתה בטוח שברצונך לשמור את קובצי המפתחות / נתיבים שנבחרו כברירת מחדל?</entry>
<entry lang="he" key="HK_AUTOMOUNT_DEVICES">טעינה אוטומטית של התקןים</entry>
<entry lang="he" key="HK_UNMOUNT_ALL">לנתק הכל</entry>
<entry lang="he" key="HK_DISMOUNT_ALL">לנתק הכל</entry>
<entry lang="he" key="HK_WIPE_CACHE">מחק את המטמון</entry>
<entry lang="he" key="HK_UNMOUNT_ALL_AND_WIPE">בטל טעינה של כולם &amp; נקה מטמון</entry>
<entry lang="he" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">אלץ ביטול טעינה של כולם &amp; נקה מטמון</entry>
<entry lang="he" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">אל ביטול טעינה של כולם, נקה מטמון &amp; יציאה</entry>
<entry lang="he" key="HK_DISMOUNT_ALL_AND_WIPE">בטל טעינה של כולם &amp; נקה מטמון</entry>
<entry lang="he" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">אלץ ביטול טעינה של כולם &amp; נקה מטמון</entry>
<entry lang="he" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">אל ביטול טעינה של כולם, נקה מטמון &amp; יציאה</entry>
<entry lang="he" key="HK_MOUNT_FAVORITE_VOLUMES">טען אמצעי אחסון אהובים</entry>
<entry lang="he" key="HK_SHOW_HIDE_MAIN_WINDOW">הצג / הסתר חלון VeraCrypt ראשי</entry>
<entry lang="he" key="PRESS_A_KEY_TO_ASSIGN">(לחץ כאן ולחץ על מקש)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="he" key="PAGING_FILE_CREATION_PREVENTED">נמנעה יצירת קובץ החלפה. \n \n שים לב, עקב בעיות ב- Windows, לא ניתן לאתר קבצי החלפה בכמויות VeraCrypt שאינן של המערכת (כולל אמצעי אחסון מועדפים על המערכת).VeraCrypt תומך ביצירת קבצי החלפה רק במחיצת מערכת / כונן מוצפן.</entry>
<entry lang="he" key="SYS_ENC_HIBERNATION_PREVENTED">שגיאה או חוסר תאימות מונעים מ- VeraCrypt להצפין את קובץ המצב.לכן, מצב שינה נמנע. \n \n הערה: כאשר מחשב נמצא במצב שינה (או נכנס למצב חיסכון בחשמל), תוכן זיכרון המערכת שלו נכתב לקובץ אחסון תרדמה השוכן בכונן המערכת.VeraCrypt לא יוכל למנוע מפתחות הצפנה ותוכן של קבצים רגישים שנפתחו ב- RAM נשמר ללא הצפנה לקובץ האחסון למצב שינה.</entry>
<entry lang="he" key="HIDDEN_OS_HIBERNATION_PREVENTED">מצב שינה נמנע. \n \n VeraCrypt אינו תומך במצב שינה במערכות הפעלה נסתרות המשתמשות במחיצת אתחול נוספת.שים לב כי מחיצת האתחול משותפת הן לפיתוי והן למערכת הנסתרת.לכן, על מנת למנוע דליפות נתונים ובעיות בעת חידוש מצב שינה, על VeraCrypt למנוע מהמערכת הנסתרת לכתוב למחיצת האתחול המשותפת ולמצב שינה.</entry>
<entry lang="he" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">אמצעי האחסון של VeraCrypt המותקן כ-%c: הוסר.</entry>
<entry lang="he" key="MOUNTED_VOLUMES_UNMOUNTED">אמצעי האחסון של VeraCrypt הוצאו.</entry>
<entry lang="he" key="VOLUMES_UNMOUNTED_CACHE_WIPED">אמצעי האחסון של VeraCrypt הוצאו ונמחקו מטמון הסיסמה.</entry>
<entry lang="he" key="SUCCESSFULLY_UNMOUNTED">הורדה בהצלחה</entry>
<entry lang="he" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">אמצעי האחסון של VeraCrypt המותקן כ-%c: הוסר.</entry>
<entry lang="he" key="MOUNTED_VOLUMES_DISMOUNTED">אמצעי האחסון של VeraCrypt הוצאו.</entry>
<entry lang="he" key="VOLUMES_DISMOUNTED_CACHE_WIPED">אמצעי האחסון של VeraCrypt הוצאו ונמחקו מטמון הסיסמה.</entry>
<entry lang="he" key="SUCCESSFULLY_DISMOUNTED">הורדה בהצלחה</entry>
<entry lang="he" key="CONFIRM_BACKGROUND_TASK_DISABLED">אזהרה: אם משימת הרקע של VeraCrypt אינה זמינה, הפונקציות הבאות יושבתו: \n \n1) קיצורי מקלדת \n2) הורדה אוטומטית (למשל, בעת התנתקות, הסרת התקני מארח בשוגג, פסק זמן וכו &amp;apos;) \n3) טעינה אוטומטית של אמצעי האחסון המועדפים \n4) התראות (למשל, כאשר נמנעת פגיעה באמצעי אחסון מוסתר) \n5) סמל מגש \n \n הערה: ניתן לכבות את משימת הרקע בכל עת על ידי לחיצה ימנית על סמל מגש VeraCrypt ובחירה&amp;apos;יציאה&amp;apos;. \n \n האם אתה בטוח שברצונך להשבית לצמיתות את משימת הרקע של VeraCrypt?</entry>
<entry lang="he" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">אזהרה: אם אפשרות זו מושבתת, לא ניתן יהיה לפרוק אוטומטית אמצעי אחסון המכילים קבצים / ספריות פתוחים. \n \n האם אתה בטוח שברצונך להשבית אפשרות זו?</entry>
<entry lang="he" key="WARN_PREF_AUTO_UNMOUNT">אזהרה: אמצעי אחסון המכילים קבצים / ספריות פתוחות לא יפורקו אוטומטית. \n \n כדי למנוע זאת, הפעל את האפשרות הבאה בחלון דו-שיח זה: &amp;apos;כפה על הורדה אוטומטית גם אם אמצעי האחסון מכיל קבצים פתוחים או ספריות&amp;apos;.</entry>
<entry lang="he" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">אזהרה: כאשר הסוללה במחשב הנייד נמוכה, Windows עשויה להשמיט את שליחת ההודעות המתאימות ליישומים פועלים כאשר המחשב עובר למצב חיסכון בחשמל.לכן, VeraCrypt עלול להיכשל בניתוק אוטומטי של אמצעי אחסון במקרים כאלה.</entry>
<entry lang="he" key="CONFIRM_NO_FORCED_AUTODISMOUNT">אזהרה: אם אפשרות זו מושבתת, לא ניתן יהיה לפרוק אוטומטית אמצעי אחסון המכילים קבצים / ספריות פתוחים. \n \n האם אתה בטוח שברצונך להשבית אפשרות זו?</entry>
<entry lang="he" key="WARN_PREF_AUTO_DISMOUNT">אזהרה: אמצעי אחסון המכילים קבצים / ספריות פתוחות לא יפורקו אוטומטית. \n \n כדי למנוע זאת, הפעל את האפשרות הבאה בחלון דו-שיח זה: &amp;apos;כפה על הורדה אוטומטית גם אם אמצעי האחסון מכיל קבצים פתוחים או ספריות&amp;apos;.</entry>
<entry lang="he" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">אזהרה: כאשר הסוללה במחשב הנייד נמוכה, Windows עשויה להשמיט את שליחת ההודעות המתאימות ליישומים פועלים כאשר המחשב עובר למצב חיסכון בחשמל.לכן, VeraCrypt עלול להיכשל בניתוק אוטומטי של אמצעי אחסון במקרים כאלה.</entry>
<entry lang="he" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">קבעתם את תהליך ההצפנה / פענוח של מחיצה / אמצעי אחסון.התהליך עדיין לא הושלם. \n \n האם ברצונך לחדש את התהליך כעת?</entry>
<entry lang="he" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">קבעתם את תהליך ההצפנה או הפענוח של מחיצת המערכת / כונן המערכת.התהליך עדיין לא הושלם. \n \n האם ברצונך להתחיל (לחדש) את התהליך כעת?</entry>
<entry lang="he" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">האם ברצונך להתבקש האם ברצונך לחדש את התהליכים המתוזמנים כרגע של הצפנה / פענוח של מחיצות / אמצעי אחסון שאינם של המערכת?</entry>
@@ -1063,7 +1061,7 @@
<entry lang="he" key="SYS_AUTOMOUNT_DISABLED">המערכת שלך אינה מוגדרת לטעינה אוטומטית של אמצעי אחסון חדשים.יתכן שאי אפשר לעלות אמצעי אחסון של VeraCrypt המתארחים בהתקןים.ניתן לאפשר טעינה אוטומטית על ידי ביצוע הפקודה הבאה והפעלת המערכת מחדש. \n \nmountvol.exe / E</entry>
<entry lang="he" key="SYS_ASSIGN_DRIVE_LETTER">אנא הקצה אות כונן למחיצה / התקן לפני שתמשיך (&amp;apos;לוח הבקרה&amp;apos;&gt; &amp;apos;מערכת ותחזוקה&amp;apos;&gt; &amp;apos;כלי ניהול&amp;apos; - &amp;apos;צור ועצב מחיצות דיסק קשיח&amp;apos;). \n \n שים לב שזו דרישה שלמערכת הפעלה.</entry>
<entry lang="he" key="MOUNT_TC_VOLUME">טען VeraCrypt אמצעי אחסון</entry>
<entry lang="he" key="UNMOUNT_ALL_TC_VOLUMES">בטל את כל אמצעי האחסון של VeraCrypt</entry>
<entry lang="he" key="DISMOUNT_ALL_TC_VOLUMES">בטל את כל אמצעי האחסון של VeraCrypt</entry>
<entry lang="he" key="UAC_INIT_ERROR">VeraCrypt לא הצליח להשיג הרשאות מנהל.</entry>
<entry lang="he" key="ERR_ACCESS_DENIED">הגישה נדחתה על ידי מערכת ההפעלה. \n \n סיבה אפשרית: מערכת ההפעלה דורשת שיהיה לך הרשאת קריאה / כתיבה (או הרשאות מנהל) עבור תיקיות, קבצים והתקנים מסוימים, בכדי שתאפשר לך לקרוא ולכתוב.נתונים אליהם / מהם.בדרך כלל, משתמש ללא הרשאות מנהל רשאי ליצור, לקרוא ולשנות קבצים בתיקיית המסמכים שלו.</entry>
<entry lang="he" key="SECTOR_SIZE_UNSUPPORTED">שגיאה: הכונן משתמש בגודל סקטור שאינו נתמך. \n \n כרגע לא ניתן ליצור אמצעי אחסון של מחיצות / התקנים בכוננים המשתמשים במגזרים הגדולים מ- 4096 בתים.עם זאת, שים לב שאתה יכול ליצור אמצעי אחסון מתארחים (קבצים) בכוננים כאלה.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="he" key="HIDDEN_OS_CREATION_PREINFO_HELP">בשלבים הבאים VeraCrypt תיצור את מערכת ההפעלה הנסתרת על ידי העתקת תוכן מחיצת המערכת לאמצעי אחסון הנסתר (הנתונים המועתקים יוצפנו על ידי תנועה עם מפתח הצפנה שונה מזה שישמש להפעלת הפיתוימערכת). \n \n שים לב שהתהליך יבוצע בסביבת טרום האתחול (לפני הפעלת Windows) וייתכן שיימשך זמן רב עד להשלמתו;מספר שעות או אפילו מספר ימים (תלוי בגודל מחיצת המערכת ובביצועי המחשב שלך). \n \n תוכל להפריע לתהליך, לכבות את המחשב, להפעיל את מערכת ההפעלה ואז לחדש את התהליך.עם זאת, אם תפריע לה, כל תהליך ההעתקה של המערכת יצטרך להתחיל מההתחלה (מכיוון שהתוכן של מחיצת המערכת לא יכול להשתנות במהלך השיבוט).</entry>
<entry lang="he" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">האם ברצונך לבטל את כל תהליך היצירה של מערכת ההפעלה הנסתרת? \n \n הערה: לא תוכל לחדש את התהליך אם תבטל אותו כעת.</entry>
<entry lang="he" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">האם ברצונך לבטל את הצפנת המערכת לפני כן?</entry>
<entry lang="he" key="BOOT_PRETEST_FAILED_RETRY">בדיקת ההצפנה של מערכת VeraCrypt נכשל.האם ברצונך לנסות שוב? \n \n אם תבחר &amp;apos;לא&amp;apos;, יוסר הסרת התקנה של רכיב האימות לפני האתחול. \n \n הערות: \n \n- אם מטען האתחול של VeraCrypt לא ביקש ממך להזין את הסיסמה.לפני תחילת Windows, ייתכן שמערכת ההפעלה שלך לא אתחול מהכונן עליו היא מותקנת.זה לא נתמך. \n \n- אם השתמשת באלגוריתם הצפנה שאינו AES והבדיקה המוקדמת נכשלה (והזנת את הסיסמה), ייתכן שהיא נגרמה על ידי מנהל התקן שאינו מתאים.בחר &amp;apos;לא&amp;apos;, ונסה להצפין שוב את מחיצת המערכת / כונן, אך השתמש באלגוריתם ההצפנה AES (בעל דרישות הזיכרון הנמוכות ביותר). \n \n- לקבלת סיבות ופתרונות אפשריים נוספים, ראה: https: // veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="he" key="BOOT_PRETEST_FAILED_RETRY">בדיקת ההצפנה של מערכת VeraCrypt נכשל.האם ברצונך לנסות שוב? \n \n אם תבחר &amp;apos;לא&amp;apos;, יוסר הסרת התקנה של רכיב האימות לפני האתחול. \n \n הערות: \n \n- אם מטען האתחול של VeraCrypt לא ביקש ממך להזין את הסיסמה.לפני תחילת Windows, ייתכן שמערכת ההפעלה שלך לא אתחול מהכונן עליו היא מותקנת.זה לא נתמך. \n \n- אם השתמשת באלגוריתם הצפנה שאינו AES והבדיקה המוקדמת נכשלה (והזנת את הסיסמה), ייתכן שהיא נגרמה על ידי מנהל התקן שאינו מתאים.בחר &amp;apos;לא&amp;apos;, ונסה להצפין שוב את מחיצת המערכת / כונן, אך השתמש באלגוריתם ההצפנה AES (בעל דרישות הזיכרון הנמוכות ביותר). \n \n- לקבלת סיבות ופתרונות אפשריים נוספים, ראה: https: // www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="he" key="SYS_DRIVE_NOT_ENCRYPTED">מחיצת המערכת / כונן המערכת לא נראה מוצפן (לא באופן חלקי ולא מלא).</entry>
<entry lang="he" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">מחיצת / כונן המערכת שלך מוצפנת (חלקית או מלאה). \n \n אנא פענח את מחיצת המערכת / כונן לחלוטין לפני שתמשיך.לשם כך בחר &amp;apos;מערכת&amp;apos;&gt; &amp;apos;פענוח מחיצת מערכת / כונן לצמיתות&amp;apos; משורת התפריטים של חלון VeraCrypt הראשי.</entry>
<entry lang="he" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">כאשר מחיצת המערכת / כונן מוצפן (באופן חלקי או מלא), אינך יכול לשדרג לאחור את VeraCrypt (אך תוכל לשדרג אותו או להתקין מחדש את אותה גירסה).</entry>
@@ -1306,8 +1304,8 @@
<entry lang="he" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">שים לב שמספר השרשורים כרגע מוגבל, אשר ישפיע על תוצאות הביצועים (ביצועים גרועים יותר). \n \n כדי לנצל את מלוא הפוטנציאל של המעבדים, בחר &amp;apos;הגדרות&amp;apos;&gt; &amp;apos;ביצועים&amp;apos; והשבית את האפשרות המתאימה.</entry>
<entry lang="he" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">האם אתה רוצה ש- VeraCrypt ינסה להשבית את הגנת הכתיבה של המחיצה / הכונן?</entry>
<entry lang="he" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">אזהרה: הגדרה זו עשויה לפגוע בביצועים. \n \n האם אתה בטוח שברצונך להשתמש בהגדרה זו?</entry>
<entry lang="he" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">אזהרה: אמצעי אחסון VeraCrypt פורק אוטומטית</entry>
<entry lang="he" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">לפני שמסירים או מכבים פיזית התקן המכיל אמצעי אחסון מותקן, עליכם תמיד לנתק את אמצעי האחסון ב- VeraCrypt. \n \n הורדה ספונטנית בלתי צפויה נגרמת בדרך כלל מכבל, כונן (מארז) וכו &amp;apos;.</entry>
<entry lang="he" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">אזהרה: אמצעי אחסון VeraCrypt פורק אוטומטית</entry>
<entry lang="he" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">לפני שמסירים או מכבים פיזית התקן המכיל אמצעי אחסון מותקן, עליכם תמיד לנתק את אמצעי האחסון ב- VeraCrypt. \n \n הורדה ספונטנית בלתי צפויה נגרמת בדרך כלל מכבל, כונן (מארז) וכו &amp;apos;.</entry>
<entry lang="he" key="UNSUPPORTED_TRUECRYPT_FORMAT">אמצעי אחסון זה נוצר באמצעות TrueCrypt%x.%X אך VeraCrypt תומך רק בכמויות TrueCrypt שנוצרו באמצעות סדרת TrueCrypt 6.x / 7.x</entry>
<entry lang="he" key="TEST">בדיקה</entry>
<entry lang="he" key="KEYFILE">קובץ מפתח</entry>
@@ -1453,7 +1451,7 @@
<entry lang="he" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">הוסף את כל האמצעי אחסון המותקנים למועדפים ...</entry>
<entry lang="he" key="TASKICON_PREF_MENU_ITEMS">פריטי תפריט סמל משימה</entry>
<entry lang="he" key="TASKICON_PREF_OPEN_VOL">אמצעי אחסון רכובים פתוחים</entry>
<entry lang="he" key="TASKICON_PREF_UNMOUNT_VOL">לנתק אמצעי אחסון רכובים</entry>
<entry lang="he" key="TASKICON_PREF_DISMOUNT_VOL">לנתק אמצעי אחסון רכובים</entry>
<entry lang="he" key="DISK_FREE">מקום פנוי בדיסק: {0}</entry>
<entry lang="he" key="VOLUME_SIZE_HELP">אנא ציין את גודל המכולה ליצירה.שים לב שהגודל המינימלי האפשרי של אמצעי אחסון הוא 292 ק&amp;quot;ב.</entry>
<entry lang="he" key="LINUX_CONFIRM_INNER_VOLUME_CALC">אזהרה: בחרת מערכת קבצים שאינה FAT עבור אמצעי האחסון החיצוני. \n שים לב שבמקרה זה VeraCrypt אינו יכול לחשב את הגודל המקסימלי המותר המותר עבור אמצעי האחסון הנסתר והוא ישתמש רק בהערכה שיכולה להיות שגויה. \n כךבאחריותך להשתמש בערך הולם לגודל האמצעי אחסון הנסתר, כך שהוא לא חופף את האמצעי אחסון החיצוני. \n \n האם ברצונך להמשיך להשתמש במערכת הקבצים שנבחרה עבור הכרך החיצוני?</entry>
@@ -1474,6 +1472,7 @@
<entry lang="he" key="LINUX_CROSS_SUPPORT_OTHER_HELP">בחר באפשרות זו אם אתה צריך להשתמש בעוצמת הקול בפלטפורמות אחרות.</entry>
<entry lang="he" key="LINUX_CROSS_SUPPORT_ONLY">אעלה את אמצעי האחסון רק ב- {0}</entry>
<entry lang="he" key="LINUX_CROSS_SUPPORT_ONLY_HELP">בחר באפשרות זו אם אינך צריך להשתמש בעוצמת הקול בפלטפורמות אחרות.</entry>
<entry lang="he" key="LINUX_CROSS_SUPPORT_ONLY_HELP">בחר באפשרות זו אם אינך צריך להשתמש בעוצמת הקול בפלטפורמות אחרות.</entry>
<entry lang="he" key="LINUX_DESELECT">בטל את הבחירה</entry>
<entry lang="he" key="LINUX_ADMIN_PW_QUERY">הזן את סיסמת המשתמש או את סיסמת מנהל המערכת שלך:</entry>
<entry lang="he" key="LINUX_ADMIN_PW_QUERY_TITLE">נדרשות הרשאות מנהל</entry>
@@ -1483,14 +1482,14 @@
<entry lang="he" key="LINUX_DO_NOT_MOUNT">אל תעלה</entry>
<entry lang="he" key="LINUX_MOUNT_AT_DIR">טעינה בספריה:</entry>
<entry lang="he" key="LINUX_SELECT">בחר..</entry>
<entry lang="he" key="LINUX_UNMOUNT_ALL_WHEN">נתק את כל האמצעי אחסון מתי</entry>
<entry lang="he" key="LINUX_DISMOUNT_ALL_WHEN">נתק את כל האמצעי אחסון מתי</entry>
<entry lang="he" key="LINUX_ENTERING_POWERSAVING">המערכת עוברת למצב חיסכון בחשמל</entry>
<entry lang="he" key="LINUX_LOGIN_ACTION">פעולות לביצוע כאשר המשתמש מתחבר</entry>
<entry lang="he" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">סגור את כל חלונות ה- Explorer של אמצעי האחסון הנפרדת</entry>
<entry lang="he" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">סגור את כל חלונות ה- Explorer של אמצעי האחסון הנפרדת</entry>
<entry lang="he" key="LINUX_HOTKEYS">מקשי קיצור</entry>
<entry lang="he" key="LINUX_SYSTEM_HOTKEYS">מקשי קיצור רחבים למערכת</entry>
<entry lang="he" key="LINUX_SOUND_NOTIFICATION">השמע צליל התראה למערכת לאחר טעינה / הפעלה</entry>
<entry lang="he" key="LINUX_CONFIRM_AFTER_UNMOUNT">הצג את תיבת הודעת האישור לאחר ההורדה</entry>
<entry lang="he" key="LINUX_CONFIRM_AFTER_DISMOUNT">הצג את תיבת הודעת האישור לאחר ההורדה</entry>
<entry lang="he" key="LINUX_VC_QUITS">VeraCrypt מסתיים</entry>
<entry lang="he" key="LINUX_OPEN_FINDER">פתח את חלון Finder לאמצעי אחסון המותקן בהצלחה</entry>
<entry lang="he" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">שים לב שהגדרה זו נכנסת לתוקף רק אם השימוש בשירותי ההצפנה של הגרעין מושבת.</entry>
@@ -1522,8 +1521,7 @@
<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>
<entry lang="he" key="LINUX_VOL_DISMOUNTED">אמצעי האחסון {0} הוסר.</entry>
<entry lang="he" key="LINUX_OOM">מתוך הזיכרון.</entry>
<entry lang="he" key="LINUX_CANT_GET_ADMIN_PRIV">השגת הרשאות מנהל נכשלה</entry>
<entry lang="he" key="LINUX_COMMAND_GET_ERROR">הפקודה {0} החזירה שגיאה {1}.</entry>
@@ -1553,7 +1551,7 @@
<entry lang="he" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">שגיאה: הכונן משתמש בגודל מגזר שאינו 512 בתים. \n \n בשל מגבלות של רכיבים הזמינים בפלטפורמה שלך, לא ניתן ליצור / להשתמש בכמויות מחיצות / התקנים בכונן. \n \n פתרונות אפשריים: \n-צור אמצעי אחסון מתארח (מיכל) בכונן. \n - השתמש בכונן עם מגזרים של 512 בתים. \n - השתמש ב- VeraCrypt בפלטפורמה אחרת.</entry>
<entry lang="he" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">הקובץ / ההתקן המארח כבר נמצא בשימוש.</entry>
<entry lang="he" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">חריץ אמצעי האחסון אינו זמין.</entry>
<entry lang="he" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt דורש macFUSE 2.5 ומעלה.</entry>
<entry lang="he" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt דורש OSXFUSE 2.5 ומעלה.</entry>
<entry lang="he" key="EXCEPTION_OCCURRED">אירעה שגיאה</entry>
<entry lang="he" key="ENTER_PASSWORD">הזן את הסיסמה</entry>
<entry lang="he" key="ENTER_TC_VOL_PASSWORD">הזן את סיסמת אמצעי האחסון של VeraCrypt</entry>
@@ -1568,126 +1566,8 @@
<entry lang="he" key="UNKNOWN_OPTION">אפשרות לא ידועה</entry>
<entry lang="he" key="VOLUME_LOCATION">מיקום אמצעי אחסון</entry>
<entry lang="he" key="VOLUME_HOST_IN_USE">אזהרה: הקובץ / ההתקן המארח {0} כבר נמצא בשימוש! \n \n התעלמות מכך עלולה לגרום לתוצאות לא רצויות כולל חוסר יציבות במערכת.יש לסגור את כל היישומים שעשויים להשתמש בקובץ המארח / בהתקן לפני התקנת אמצעי האחסון. \n \n האם להמשיך בטעינה?</entry>
<entry lang="he" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt הותקן בעבר באמצעות חבילת MSI ולכן לא ניתן לעדכן אותו באמצעות מתקין רגיל.\n\nאנא השתמש בחבילת MSI כדי לעדכן את התקנת VeraCrypt שלך.</entry>
<entry lang="he" key="IDC_USE_ALL_FREE_SPACE">השתמש בכל השטח הפנוי</entry>
<entry lang="he" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">לא ניתן לשדרג את VeraCrypt מאחר שמחיצת/כונן המערכת הוצפן באלגוריתם שאינו נתמך עוד.\nאנא פענח את המערכת שלך לפני שדרוג VeraCrypt ואז הצפן אותה מחדש.</entry>
<entry lang="he" key="LINUX_EX2MSG_TERMINALNOTFOUND">לא נמצאה אפליקציית מסוף נתמכת; נדרש אחד מהבאים: xterm, konsole או gnome-terminal (עם dbus-x11).</entry>
<entry lang="he" key="IDM_MOUNT_NO_CACHE">טעינה ללא מטמון</entry>
<entry lang="he" key="EXPANDER_INFO">:: מרחיב VeraCrypt ::\n\nהרחב אמצעי אחסון של VeraCrypt באופן מיידי ללא פירמוט מחדש\n\n\nכל סוגי אמצעי האחסון (קבצי מיכל, דיסקים ומחיצות) המפורמטים עם NTFS נתמכים. התנאי היחיד הוא שחייב להיות מספיק שטח פנוי בכונן המארח או בהתקן המארח של אמצעי האחסון של VeraCrypt.\n\nאין להשתמש בתוכנה זו להרחבת אמצעי אחסון חיצוני המכיל אמצעי אחסון מוסתר, כיוון שפעולה זו תשמיד את אמצעי האחסון המוסתר!\n</entry>
<entry lang="he" key="IDC_STEPSEXPAND">1. בחר את אמצעי האחסון של VeraCrypt להרחבה\n2. לחץ על כפתור 'טען'</entry>
<entry lang="he" key="IDT_VOL_NAME">אמצעי אחסון: </entry>
<entry lang="he" key="IDT_FILE_SYS">מערכת קבצים: </entry>
<entry lang="he" key="IDT_CURRENT_SIZE">גודל נוכחי: </entry>
<entry lang="he" key="IDT_NEW_SIZE">גודל חדש: </entry>
<entry lang="he" key="IDT_NEW_SIZE_BOX_TITLE">הזן גודל חדש לאמצעי האחסון</entry>
<entry lang="he" key="IDC_INIT_NEWSPACE">מלא את השטח החדש בנתונים אקראיים</entry>
<entry lang="he" key="IDC_QUICKEXPAND">הרחבה מהירה</entry>
<entry lang="he" key="IDT_INIT_SPACE">מלא שטח חדש: </entry>
<entry lang="he" key="EXPANDER_FREE_SPACE">%s שטח פנוי זמין בכונן המארח</entry>
<entry lang="he" key="EXPANDER_HELP_DEVICE">זהו אמצעי אחסון VeraCrypt מבוסס התקן.\n\nגודל אמצעי האחסון החדש ייבחר אוטומטית כגודל ההתקן המארח.</entry>
<entry lang="he" key="EXPANDER_HELP_FILE">אנא ציין את הגודל החדש של אמצעי האחסון של VeraCrypt (חייב להיות גדול לפחות ב-%I64u ק"ב מהגודל הנוכחי).</entry>
<entry lang="he" key="QUICK_EXPAND_WARNING">אזהרה: עליך להשתמש בהרחבה מהירה רק במקרים הבאים:\n\n1) ההתקן שבו נמצא קובץ המיכל אינו מכיל נתונים רגישים ואינך זקוק להכחשה סבירה.\n2) ההתקן שבו נמצא קובץ המיכל כבר הוצפן באופן מאובטח ומלא.\n\nהאם אתה בטוח שברצונך להשתמש בהרחבה מהירה?</entry>
<entry lang="he" key="EXPANDER_STATUS_TEXT">חשוב: הזז את העכבר באופן אקראי ככל האפשר בתוך חלון זה. ככל שתזיז אותו זמן רב יותר, כך ייטב. הדבר מגדיל משמעותית את החוזק הקריפטוגרפי של מפתחות ההצפנה. לאחר מכן לחץ על 'המשך' כדי להרחיב את אמצעי האחסון.</entry>
<entry lang="he" key="EXPANDER_STATUS_TEXT_LEGACY">לחץ על 'המשך' כדי להרחיב את אמצעי האחסון.</entry>
<entry lang="he" key="EXPANDER_FINISH_ERROR">שגיאה: הרחבת אמצעי האחסון נכשלה.</entry>
<entry lang="he" key="EXPANDER_FINISH_ABORT">שגיאה: הפעולה בוטלה על ידי המשתמש.</entry>
<entry lang="he" key="EXPANDER_FINISH_OK">הסתיים. אמצעי האחסון הורחב בהצלחה.</entry>
<entry lang="he" key="EXPANDER_CANCEL_WARNING">אזהרה: הרחבת אמצעי האחסון מתבצעת!\n\nעצירה כעת עלולה לגרום נזק לאמצעי האחסון.\n\nהאם אתה באמת רוצה לבטל?</entry>
<entry lang="he" key="EXPANDER_STARTING_STATUS">מתחיל הרחבת אמצעי אחסון...\n</entry>
<entry lang="he" key="EXPANDER_HIDDEN_VOLUME_ERROR">לא ניתן להרחיב אמצעי אחסון חיצוני המכיל אמצעי אחסון מוסתר, מכיוון שפעולה זו תשמיד את אמצעי האחסון המוסתר.\n</entry>
<entry lang="he" key="EXPANDER_SYSTEM_VOLUME_ERROR">לא ניתן להרחיב אמצעי אחסון מערכת של VeraCrypt.</entry>
<entry lang="he" key="EXPANDER_NO_FREE_SPACE">אין מספיק שטח פנוי להרחבת אמצעי האחסון</entry>
<entry lang="he" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">אזהרה: קובץ המיכל גדול יותר מאזור אמצעי האחסון של VeraCrypt. הנתונים שאחרי אזור אמצעי האחסון של VeraCrypt יידרסו.\n\nהאם ברצונך להמשיך?</entry>
<entry lang="he" key="EXPANDER_WARNING_FAT">אזהרה: אמצעי האחסון של VeraCrypt מכיל מערכת קבצים FAT!\n\nרק אמצעי האחסון של VeraCrypt עצמו יורחב, אך לא מערכת הקבצים.\n\nהאם ברצונך להמשיך?</entry>
<entry lang="he" key="EXPANDER_WARNING_EXFAT">אזהרה: אמצעי האחסון של VeraCrypt מכיל מערכת קבצים exFAT!\n\nרק אמצעי האחסון של VeraCrypt עצמו יורחב, אך לא מערכת הקבצים.\n\nהאם ברצונך להמשיך?</entry>
<entry lang="he" key="EXPANDER_WARNING_UNKNOWN_FS">אזהרה: אמצעי האחסון של VeraCrypt מכיל מערכת קבצים לא ידועה או שאינו מכיל מערכת קבצים כלל!\n\nרק אמצעי האחסון של VeraCrypt עצמו יורחב, מערכת הקבצים תישאר ללא שינוי.\n\nהאם ברצונך להמשיך?</entry>
<entry lang="he" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">גודל אמצעי האחסון החדש קטן מדי, חייב להיות גדול לפחות ב-%I64u ק"ב מהגודל הנוכחי.</entry>
<entry lang="he" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">גודל אמצעי האחסון החדש גדול מדי, אין מספיק מקום בכונן המארח.</entry>
<entry lang="he" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">חרגת מגודל הקובץ המרבי של %I64u מ"ב בכונן המארח.</entry>
<entry lang="he" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">שגיאה: נכשל ניסיון קבלת ההרשאות הדרושות להפעלת הרחבה מהירה!\nאנא בטל את בחירת אפשרות הרחבה מהירה ונסה שוב.</entry>
<entry lang="he" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">הגודל המרבי של אמצעי אחסון VeraCrypt (%I64u TB) חורג מהמותר!\n</entry>
<entry lang="he" key="FULL_FORMAT">פירמוט מלא</entry>
<entry lang="he" key="FAST_CREATE">יצירה מהירה</entry>
<entry lang="he" key="WARN_FAST_CREATE">אזהרה: עליך להשתמש ביצירה מהירה רק במקרים הבאים:\n\n1) ההתקן אינו מכיל נתונים רגישים ואינך זקוק להכחשה סבירה.\n2) ההתקן כבר הוצפן באופן מאובטח ומלא.\n\nהאם אתה בטוח שברצונך להשתמש ביצירה מהירה?</entry>
<entry lang="he" key="IDC_ENABLE_EMV_SUPPORT">אפשר תמיכת EMV</entry>
<entry lang="he" key="COMMAND_APDU_INVALID">פקודת APDU שנשלחה לכרטיס אינה תקפה.</entry>
<entry lang="he" key="EXTENDED_APDU_UNSUPPORTED">לא ניתן להשתמש בפקודות APDU מורחבות עם האסימון הנוכחי.</entry>
<entry lang="he" key="SCARD_MODULE_INIT_FAILED">שגיאה בעת טעינת ספריית WinSCard / PCSC.</entry>
<entry lang="he" key="EMV_UNKNOWN_CARD_TYPE">הכרטיס בקורא אינו כרטיס EMV נתמך.</entry>
<entry lang="he" key="EMV_SELECT_AID_FAILED">לא ניתן היה לבחור את ה-AID של הכרטיס בקורא.</entry>
<entry lang="he" key="EMV_ICC_CERT_NOTFOUND">תעודת מפתח ציבורי ICC לא נמצאה בכרטיס.</entry>
<entry lang="he" key="EMV_ISSUER_CERT_NOTFOUND">תעודת מפתח ציבורי של המנפיק לא נמצאה בכרטיס.</entry>
<entry lang="he" key="EMV_CPLC_NOTFOUND">נתוני CPLC לא נמצאו בכרטיס EMV.</entry>
<entry lang="he" key="EMV_PAN_NOTFOUND">לא נמצא מספר חשבון ראשי (PAN) בכרטיס EMV.</entry>
<entry lang="he" key="INVALID_EMV_PATH">נתיב EMV אינו תקף.</entry>
<entry lang="he" key="EMV_KEYFILE_DATA_NOTFOUND">לא ניתן ליצור קובץ מפתח מנתוני כרטיס ה-EMV.\n\nחסר אחד מהבאים:\n- תעודת מפתח ציבורי ICC.\n- תעודת מפתח ציבורי של המנפיק.\n- נתוני CPLC.</entry>
<entry lang="he" key="SCARD_W_REMOVED_CARD">אין כרטיס בקורא.\n\nאנא ודא שהכרטיס מוכנס כראוי.</entry>
<entry lang="he" key="FORMAT_EXTERNAL_FAILED">פקודת format.com של Windows נכשלה בפירמוט אמצעי האחסון כ-NTFS/exFAT/ReFS: שגיאה 0x%.8X.\n\nמעבר לשימוש ב-FormatEx API של Windows.</entry>
<entry lang="he" key="FORMATEX_API_FAILED">API FormatEx של Windows נכשל בפירמוט אמצעי האחסון כ-NTFS/exFAT/ReFS.\n\nמצב כשל = %s.</entry>
<entry lang="he" key="EXPANDER_WRITING_RANDOM_DATA">כותב נתונים אקראיים לשטח החדש...\n</entry>
<entry lang="he" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">כותב כותרת גיבוי מוצפנת מחדש...\n</entry>
<entry lang="he" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">כותב כותרת ראשית מוצפנת מחדש...\n</entry>
<entry lang="he" key="EXPANDER_WIPING_OLD_HEADER">מוחק כותרת גיבוי ישנה...\n</entry>
<entry lang="he" key="EXPANDER_MOUNTING_VOLUME">מתקין את אמצעי האחסון...\n</entry>
<entry lang="he" key="EXPANDER_UNMOUNTING_VOLUME">מסיר את אמצעי האחסון...\n</entry>
<entry lang="he" key="EXPANDER_EXTENDING_FILESYSTEM">מרחיב את מערכת הקבצים...\n</entry>
<entry lang="he" key="PARTIAL_SYSENC_MOUNT_READONLY">אזהרה: מחיצת המערכת שניסית להתקין לא הוצפנה במלואה. כאמצעי זהירות למניעת השחתה פוטנציאלית או שינויים לא רצויים, אמצעי אחסון '%s' הותקן לקריאה בלבד.</entry>
<entry lang="he" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">מידע חשוב על שימוש בסיומות קבצים של צד שלישי</entry>
<entry lang="he" key="IDC_DISABLE_MEMORY_PROTECTION">השבת הגנת זיכרון לתאימות עם כלי נגישות</entry>
<entry lang="he" key="DISABLE_MEMORY_PROTECTION_WARNING">אזהרה: השבתת הגנת הזיכרון מפחיתה משמעותית את האבטחה. אפשר אפשרות זו רק אם אתה מסתמך על כלי נגישות, כמו קוראי מסך, לאינטראקציה עם ממשק המשתמש של VeraCrypt.</entry>
<entry lang="he" key="LINUX_LANGUAGE">שפה</entry>
<entry lang="he" key="LINUX_SELECT_SYS_DEFAULT_LANG">בחר את שפת ברירת המחדל של המערכת</entry>
<entry lang="he" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">כדי ששינוי השפה ייכנס לתוקף, יש להפעיל את VeraCrypt מחדש.</entry>
<entry lang="he" key="ERR_XTS_MASTERKEY_VULNERABLE">אזהרה: מפתח הראשי של אמצעי האחסון פגיע להתקפה המסכנת את אבטחת הנתונים.\n\nאנא צור אמצעי אחסון חדש והעבר אליו את הנתונים.</entry>
<entry lang="he" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">אזהרה: מפתח הראשי של המערכת המוצפנת פגיע להתקפה המסכנת את אבטחת הנתונים.\nאנא פענח את מחיצת/כונן המערכת ולאחר מכן הצפן אותה מחדש.</entry>
<entry lang="he" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">אזהרה: למפתח הראשי של אמצעי האחסון קיימת חולשת אבטחה.</entry>
<entry lang="he" key="MOUNTPOINT_BLOCKED">שגיאה: נתיב הטעינה של אמצעי האחסון חסום מכיוון שהוא דורס ספריית מערכת מוגנת.\n\nאנא בחר נתיב טעינה אחר.</entry>
<entry lang="he" key="MOUNTPOINT_NOTALLOWED">שגיאה: נתיב הטעינה של אמצעי האחסון אינו מותר מכיוון שהוא דורס ספרייה שהיא חלק ממשתנה הסביבה PATH.\n\nאנא בחר נתיב טעינה אחר.</entry>
<entry lang="he" key="INSECURE_MODE">[מצב לא מאובטח]</entry>
<entry lang="he" key="IDC_DISABLE_SCREEN_PROTECTION">השבת הגנה מפני צילומי מסך והקלטת מסך</entry>
<entry lang="he" key="DISABLE_SCREEN_PROTECTION_WARNING">אזהרה: השבתת הגנת המסך מפחיתה משמעותית את רמת האבטחה. אפשר אפשרות זו אך ורק אם יש צורך מיוחד ללכוד את ממשק VeraCrypt. פעולה זו עשויה לחשוף נתונים רגישים לכלי צילום מסך ותכונות הקלטת מסך כגון Windows 11 Recall.</entry>
<entry lang="he" 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="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>
<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="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified">
<xs:element name="VeraCrypt">
+51 -172
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
@@ -135,8 +135,8 @@
<entry lang="hu" key="IDC_FAVORITE_REMOVE">Eltávolítás</entry>
<entry lang="hu" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Kedvenc címke használata az Intéző meghajtó címkéjeként</entry>
<entry lang="hu" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Globális beállítások</entry>
<entry lang="hu" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Buborék elemleírás megjelenítése a gyorsbillentyű sikeres leválasztása után</entry>
<entry lang="hu" key="IDC_HK_UNMOUNT_PLAY_SOUND">Rendszerértesítési hang lejátszása a gyorsbillentyű sikeres leválasztása után</entry>
<entry lang="hu" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Buborék elemleírás megjelenítése a gyorsbillentyű sikeres leválasztása után</entry>
<entry lang="hu" key="IDC_HK_DISMOUNT_PLAY_SOUND">Rendszerértesítési hang lejátszása a gyorsbillentyű sikeres leválasztása után</entry>
<entry lang="hu" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="hu" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="hu" key="IDC_HK_MOD_SHIFT">Shift</entry>
@@ -156,12 +156,12 @@
<entry lang="hu" key="IDC_PIM_HELP">(Üres vagy 0 alapértelmezett ismétlések esetén)</entry>
<entry lang="hu" key="IDC_PREF_BKG_TASK_ENABLE">Engedélyezve</entry>
<entry lang="hu" key="IDC_PREF_CACHE_PASSWORDS">Jelszavak gyorsítótárazása az illesztőprogram memóriájában</entry>
<entry lang="hu" key="IDC_PREF_UNMOUNT_INACTIVE">A kötet automatikus leválasztása, ha nincs ráírva adat</entry>
<entry lang="hu" key="IDC_PREF_UNMOUNT_LOGOFF">Felhasználói kijelentkezés</entry>
<entry lang="hu" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">Felhasználói munkamenet zárolva</entry>
<entry lang="hu" key="IDC_PREF_UNMOUNT_POWERSAVING">Belépés energiatakarékos üzemmódba</entry>
<entry lang="hu" key="IDC_PREF_UNMOUNT_SCREENSAVER">Képernyővédő elindítva</entry>
<entry lang="hu" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Automatikus leválasztás kényszerítése akkor is, ha a kötet megnyitott fájlokat vagy könyvtárakat tartalmaz</entry>
<entry lang="hu" key="IDC_PREF_DISMOUNT_INACTIVE">A kötet automatikus leválasztása, ha nincs ráírva adat</entry>
<entry lang="hu" key="IDC_PREF_DISMOUNT_LOGOFF">Felhasználói kijelentkezés</entry>
<entry lang="hu" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">Felhasználói munkamenet zárolva</entry>
<entry lang="hu" key="IDC_PREF_DISMOUNT_POWERSAVING">Belépés energiatakarékos üzemmódba</entry>
<entry lang="hu" key="IDC_PREF_DISMOUNT_SCREENSAVER">Képernyővédő elindítva</entry>
<entry lang="hu" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Automatikus leválasztás kényszerítése akkor is, ha a kötet megnyitott fájlokat vagy könyvtárakat tartalmaz</entry>
<entry lang="hu" key="IDC_PREF_LOGON_MOUNT_DEVICES">Az összes eszköz által tárolt VeraCrypt kötet csatlakoztatása</entry>
<entry lang="hu" key="IDC_PREF_LOGON_START">VeraCrypt háttérfeladat indítása</entry>
<entry lang="hu" key="IDC_PREF_MOUNT_READONLY">Kötetek csatlakoztatása csak-olvashatóként</entry>
@@ -169,7 +169,7 @@
<entry lang="hu" key="IDC_PREF_OPEN_EXPLORER">Az Intéző ablakának megnyitása a sikeresen csatlakoztatott kötethez</entry>
<entry lang="hu" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">A jelszó ideiglenes gyorsítótárazása a 'Kedvenc kötetek csatlakoztatása' műveletek során</entry>
<entry lang="hu" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Másik tálcaikon használata csatlakoztatott kötetek esetén</entry>
<entry lang="hu" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Gyorsítótárazott jelszavak törlése automatikus leválasztáskor</entry>
<entry lang="hu" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Gyorsítótárazott jelszavak törlése automatikus leválasztáskor</entry>
<entry lang="hu" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Gyorsítótárazott jelszavak törlése kilépéskor</entry>
<entry lang="hu" key="IDC_PRESERVE_TIMESTAMPS">Fájltárolók módosítási időbélyegének megőrzése</entry>
<entry lang="hu" key="IDC_RESET_HOTKEYS">Visszaállítás</entry>
@@ -269,14 +269,14 @@
<entry lang="hu" key="IDT_ACCELERATION_OPTIONS">Hardveres gyorsítás</entry>
<entry lang="hu" key="IDT_ASSIGN_HOTKEY">Billentyűparancs</entry>
<entry lang="hu" key="IDT_AUTORUN">Automatikus futtatás konfigurációja (autorun.inf)</entry>
<entry lang="hu" key="IDT_AUTO_UNMOUNT">Automatikus leválasztás</entry>
<entry lang="hu" key="IDT_AUTO_UNMOUNT_ON">Összes leválasztása, ha:</entry>
<entry lang="hu" key="IDT_AUTO_DISMOUNT">Automatikus leválasztás</entry>
<entry lang="hu" key="IDT_AUTO_DISMOUNT_ON">Összes leválasztása, ha:</entry>
<entry lang="hu" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Rendszertöltő képernyő opciók</entry>
<entry lang="hu" key="IDT_CONFIRM_PASSWORD">Jelszó megerősítése:</entry>
<entry lang="hu" key="IDT_CURRENT">Jelenlegi</entry>
<entry lang="hu" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">A következő egyéni üzenet megjelenítése a rendszerindítás előtti hitelesítési képernyőn (legfeljebb 24 karakter):</entry>
<entry lang="hu" key="IDT_DEFAULT_MOUNT_OPTIONS">Alapértelmezett csatolási lehetőségek</entry>
<entry lang="hu" key="IDT_UNMOUNT_ACTION">Gyorsbillentyűk opciók</entry>
<entry lang="hu" key="IDT_DISMOUNT_ACTION">Gyorsbillentyűk opciók</entry>
<entry lang="hu" key="IDT_DRIVER_OPTIONS">Illesztőprogram-konfiguráció</entry>
<entry lang="hu" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Kiterjesztett lemezvezérlő kódok támogatásának engedélyezése</entry>
<entry lang="hu" key="IDT_FAVORITE_LABEL">A kiválasztott kedvenc kötet címkéje:</entry>
@@ -291,11 +291,10 @@
<entry lang="hu" key="IDT_NEW_PASSWORD">Jelszó:</entry>
<entry lang="hu" key="IDT_PARALLELIZATION_OPTIONS">Szálalapú párhuzamosítás</entry>
<entry lang="hu" key="IDT_PKCS11_LIB_PATH">PKCS #11 könyvtár útvonal</entry>
<entry lang="hu" key="IDT_KDF">KDF:</entry>
<entry lang="hu" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="hu" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="hu" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="hu" key="IDT_PW_CACHE_OPTIONS">Jelszó gyorsítótár</entry>
<entry lang="hu" key="IDT_SECURITY_OPTIONS">Biztonsági lehetőségek</entry>
<entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry>
<entry lang="hu" key="IDT_TASKBAR_ICON">VeraCrypt háttérfeladat</entry>
<entry lang="hu" key="IDT_TRAVELER_MOUNT">Csatolni kívánt VeraCrypt kötet (az utazólemez gyökéréhez viszonyítva):</entry>
<entry lang="hu" key="IDT_TRAVEL_INSERTION">Utazólemez behelyezése esetén: </entry>
@@ -357,7 +356,7 @@
<entry lang="hu" key="IDT_KEYFILE_WARNING">FIGYELEM: Ha elveszíti a kulcsfájlt, vagy az első 1024 kilobájt bármely része megváltozik, lehetetlenné válik a kulcsfájlt használó kötetek csatlakoztatása!</entry>
<entry lang="hu" key="IDT_KEY_UNIT">bit</entry>
<entry lang="hu" key="IDT_NUMBER_KEYFILES">Kulcsfájlok száma:</entry>
<entry lang="hu" key="IDT_KEYFILES_SIZE">Kulcsfájlok mérete:</entry>
<entry lang="hu" key="IDT_KEYFILES_SIZE">Kulcsfájlok mérete (bájtban):</entry>
<entry lang="hu" key="IDT_KEYFILES_BASE_NAME">Kulcsfájlok alapneve:</entry>
<entry lang="hu" key="IDT_LANGPACK_AUTHORS">Fordította:</entry>
<entry lang="hu" key="IDT_PLAINTEXT">Egyszerű szöveg mérete:</entry>
@@ -390,7 +389,6 @@
<entry lang="hu" key="ADMINISTRATOR">Rendszergazda</entry>
<entry lang="hu" key="ADMIN_PRIVILEGES_DRIVER">A VeraCrypt illesztőprogram betöltéséhez, be kell jelentkeznie egy rendszergazdai jogosultságokkal rendelkező fiókba.</entry>
<entry lang="hu" key="ADMIN_PRIVILEGES_WARN_DEVICES">Vegye figyelembe, hogy egy partíció/eszköz titkosításához, visszafejtéséhez vagy formázásához, be kell jelentkeznie egy rendszergazdai jogosultságokkal rendelkező fiókba.\n\nEz nem vonatkozik a fájlban tárolt kötetekre.</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="hu" key="ADMIN_PRIVILEGES_WARN_HIDVOL">Rejtett kötet létrehozásához, be kell jelentkeznie egy rendszergazdai jogosultságokkal rendelkező fiókba.\n\nFolytatja?</entry>
<entry lang="hu" key="ADMIN_PRIVILEGES_WARN_NTFS">Vegye figyelembe, hogy a kötet NTFS/exFAT/ReFS formátumú formázásához, be kell jelentkeznie egy rendszergazdai jogosultságokkal rendelkező fiókba.\n\nRendszergazdai jogosultságok nélkül FAT-ként formázható a kötet.</entry>
<entry lang="hu" key="AES_HELP">FIPS-által jóváhagyott rejtjel (Rijndael, 1998-ban jelent meg), amelyet az amerikai kormányzati szervek és ügynökségek használhatnak a minősített információk szigorúan titkos szintjéig való védelmére. 256-bites kulcs, 128-bites blokk, 14 körös (AES-256). Működési mód XTS.</entry>
@@ -423,8 +421,8 @@
<entry lang="hu" key="DEVICE_FREE_PB">%s mérete: %.2f PB</entry>
<entry lang="hu" key="DEVICE_IN_USE_FORMAT">FiGYELEM: az eszközt/partíciót az operációs rendszer vagy alkalmazások használják. Az eszköz/partíció formázása adatvesztést és a rendszer instabilitását okozhatja.\n\nFolytatja?</entry>
<entry lang="hu" key="DEVICE_IN_USE_INPLACE_ENC">FiGYELEM: A partíciót az operációs rendszer vagy alkalmazások használják. Zárjon be minden olyan alkalmazást, amely esetleg a partíciót használhatja (beleértve a víruskereső szoftvert is).\n\nFolytatja?</entry>
<entry lang="hu" key="FORMAT_CANT_UNMOUNT_FILESYS">Hiba: Az eszköz/partíció olyan fájlrendszert tartalmaz, amelyet nem lehetett leválasztani. Lehet, hogy a fájlrendszert az operációs rendszer használja. Az eszköz/partíció formázása nagy valószínűséggel adatsérüléshez és a rendszer instabilitásához vezetne.\n\nA probléma megoldásához javasoljuk, hogy először törölje a partíciót, majd formázás nélkül hozza létre újra. Ehhez hajtsa végre az alábbi lépéseket:\n1) Kattintson a jobb gombbal a 'Számítógép' (vagy ' Ez a gép') ikonra a 'Start Menü'-ben, és válassza a 'Kezelés' lehetőséget. Meg kell jelennie a 'Számítógép-kezelés' ablaknak.\n2) A 'Számítógép-kezelés' ablakban, válassza a 'Tárolás' &gt; 'Lemezkezelés' elemet.\n3) Kattintson jobb gombbal a titkosítani kívánt partícióra, és válassza a 'Partíció törlése', 'Törlés' vagy 'Logikai meghajtó törlése' elemet.\n4) Kattintson az 'Igen' gombra. Ha a Windows a számítógép újraindítását kéri, tegye meg. Ezután ismételje meg az 1. és 2. lépést, majd folytassa az 5. lépéstől.\n5) Kattintson jobb gombbal a szabad területre, és válassza az 'Új partíció', vagy az 'Új egyszerű kötet' vagy az 'Új logikai meghajtó' lehetőséget.\n6) Ekkor megjelenik az 'Új partíció varázsló' vagy az 'Új egyszerű kötet varázsló' ablaka; kövesse az utasításokat. A 'Partíció formázása' címkéjű varázsló lapon válassza a 'Ne formázza meg ezt a partíciót' vagy a 'Ne formázza ezt a kötetet' lehetőséget. Ugyanebben a varázslóban előbb kattintson a 'Tovább', majd a 'Befejezés' gombra.\n7) Ne feledje, hogy a VeraCrypt programban kiválasztott eszköz elérési útvonal most hibás lehet. Ezért lépjen ki a VeraCrypt kötetkészítő varázslóból (ha még mindig fut), majd indítsa újra.\n8) Próbálja meg újra titkosítani az eszközt/partíciót.\n\nHa a VeraCrypt újra nem titkosítja az eszközt/partíciót, érdemes lehet inkább egy fájltárolót létrehozni.</entry>
<entry lang="hu" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Hiba: A fájlrendszert nem lehetett zárolni és/vagy leválasztani. Lehetséges, hogy azt az operációs rendszer vagy az alkalmazások (például víruskereső szoftverek) használják. A partíció titkosítása adatvesztést és a rendszer instabilitását okozhatja.\n\nZárjon be minden olyan alkalmazást, amely a fájlrendszert használhatja (beleértve a víruskereső szoftvert is), majd próbálja újra. Ha ez nem segít, kövesse az alábbi lépéseket.</entry>
<entry lang="hu" key="FORMAT_CANT_DISMOUNT_FILESYS">Hiba: Az eszköz/partíció olyan fájlrendszert tartalmaz, amelyet nem lehetett leválasztani. Lehet, hogy a fájlrendszert az operációs rendszer használja. Az eszköz/partíció formázása nagy valószínűséggel adatsérüléshez és a rendszer instabilitásához vezetne.\n\nA probléma megoldásához javasoljuk, hogy először törölje a partíciót, majd formázás nélkül hozza létre újra. Ehhez hajtsa végre az alábbi lépéseket:\n1) Kattintson a jobb gombbal a 'Számítógép' (vagy ' Ez a gép') ikonra a 'Start Menü'-ben, és válassza a 'Kezelés' lehetőséget. Meg kell jelennie a 'Számítógép-kezelés' ablaknak.\n2) A 'Számítógép-kezelés' ablakban, válassza a 'Tárolás' &gt; 'Lemezkezelés' elemet.\n3) Kattintson jobb gombbal a titkosítani kívánt partícióra, és válassza a 'Partíció törlése', 'Törlés' vagy 'Logikai meghajtó törlése' elemet.\n4) Kattintson az 'Igen' gombra. Ha a Windows a számítógép újraindítását kéri, tegye meg. Ezután ismételje meg az 1. és 2. lépést, majd folytassa az 5. lépéstől.\n5) Kattintson jobb gombbal a szabad területre, és válassza az 'Új partíció', vagy az 'Új egyszerű kötet' vagy az 'Új logikai meghajtó' lehetőséget.\n6) Ekkor megjelenik az 'Új partíció varázsló' vagy az 'Új egyszerű kötet varázsló' ablaka; kövesse az utasításokat. A 'Partíció formázása' címkéjű varázsló lapon válassza a 'Ne formázza meg ezt a partíciót' vagy a 'Ne formázza ezt a kötetet' lehetőséget. Ugyanebben a varázslóban előbb kattintson a 'Tovább', majd a 'Befejezés' gombra.\n7) Ne feledje, hogy a VeraCrypt programban kiválasztott eszköz elérési útvonal most hibás lehet. Ezért lépjen ki a VeraCrypt kötetkészítő varázslóból (ha még mindig fut), majd indítsa újra.\n8) Próbálja meg újra titkosítani az eszközt/partíciót.\n\nHa a VeraCrypt újra nem titkosítja az eszközt/partíciót, érdemes lehet inkább egy fájltárolót létrehozni.</entry>
<entry lang="hu" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Hiba: A fájlrendszert nem lehetett zárolni és/vagy leválasztani. Lehetséges, hogy azt az operációs rendszer vagy az alkalmazások (például víruskereső szoftverek) használják. A partíció titkosítása adatvesztést és a rendszer instabilitását okozhatja.\n\nZárjon be minden olyan alkalmazást, amely a fájlrendszert használhatja (beleértve a víruskereső szoftvert is), majd próbálja újra. Ha ez nem segít, kövesse az alábbi lépéseket.</entry>
<entry lang="hu" key="DEVICE_IN_USE_INFO">FIGYELEM: Néhány a csatolt eszköz/partíció még használatban van!\n\nEnnek figyelmen kívül hagyása nemkívánatos eredményekhez, köztük a rendszer instabilitásához vezethet.\n\nJavasoljuk, hogy zárja be az eszközöket/partíciókat használó alkalmazásokat.</entry>
<entry lang="hu" key="DEVICE_PARTITIONS_ERR">A kiválasztott eszköz partíciókat tartalmaz.\n\nAz eszköz formázása a rendszer instabilitását és/vagy az adatok sérülését okozhatja. Válasszon ki egy partíciót az eszközről, vagy távolítsa el az eszköz összes partícióját, hogy a VeraCrypt biztonságosan formázhassa.</entry>
<entry lang="hu" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">A kiválasztott nem rendszer eszköz partíciókat tartalmaz.\n\nTitkosított eszköz által tárolt VeraCrypt kötetek olyan eszközökön hozhatók létre, amelyek nem tartalmaznak partíciókat (beleértve a merevlemezeket és a tartós állapotú meghajtókat). A partíciókat tartalmazó eszköz csak akkor titkosítható a helyén (egyetlen főkulcs használatával), ha az a meghajtó, amelyre a Windows telepítve van, és ahonnan indul.\n\nHa a kiválasztott nem rendszereszközt egyetlen főkulccsal szeretné titkosítani, először el kell távolítania az eszköz összes partícióját, hogy a VeraCrypt biztonságosan formázhassa (a partíciókat tartalmazó eszköz formázása a rendszer instabilitását és/vagy az adatok sérülését okozhatja). A meghajtó minden partícióját egyenként is titkosíthatja (minden partíció egy másik főkulccsal lesz titkosítva).\n\nMegjegyzés: Ha az összes partíciót el szeretné távolítani egy GPT-lemezről, előfordulhat, hogy a rejtett partíciók eltávolításához MBR-lemezzé kell konvertálnia (pl. a Számítógép-kezelés eszközzel).</entry>
@@ -590,7 +588,7 @@
<entry lang="hu" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">Hiba: A külső kötetre másolt fájlok túl sok helyet foglalnak. Ezért nincs elegendő szabad hely a külső köteten a rejtett kötet számára.\n\nVegye figyelembe, hogy a rejtett kötetnek olyan nagynak kell lennie, mint a rendszerpartíció (az a partíció, amelyre a jelenleg futó operációs rendszer telepítve van). Ennek az az oka, hogy a rejtett operációs rendszert úgy kell létrehozni, hogy a rendszerpartíció tartalmát a rejtett kötetre másolja.\n\n\nA rejtett operációs rendszer létrehozásának folyamata nem folytatható.</entry>
<entry lang="hu" key="OPENFILES_DRIVER">Az illesztőprogram nem tudja leválasztani a kötetet. Néhány, a köteten lévő fájl valószínűleg még mindig meg van nyitva.</entry>
<entry lang="hu" key="OPENFILES_LOCK">Nem lehet zárolni a kötetet. A köteten még vannak megnyitott fájlok. Ezért nem lehet leválasztani.</entry>
<entry lang="hu" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">A VeraCrypt nem tudja zárolni a kötetet, mivel a rendszer vagy az alkalmazások használják (előfordulhat, hogy a köteten megnyitott fájlok vannak).\n\nKényszeríti a kötetről való leválasztást?</entry>
<entry lang="hu" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">A VeraCrypt nem tudja zárolni a kötetet, mivel a rendszer vagy az alkalmazások használják (előfordulhat, hogy a köteten megnyitott fájlok vannak).\n\nKényszeríti a kötetről való leválasztást?</entry>
<entry lang="hu" key="OPEN_VOL_TITLE">Válasszon egy VeraCrypt kötetet</entry>
<entry lang="hu" key="OPEN_TITLE">Adja meg az elérési útvonalat és a fájlnevet</entry>
<entry lang="hu" key="SELECT_PKCS11_MODULE">PKCS #11 könyvtár kiválasztása</entry>
@@ -613,7 +611,7 @@
<entry lang="hu" key="FAVORITE_PIM_CHANGED">Ez a kötet rendszer kedvencként van regisztrálva, és a PIM-je megváltozott.\nSzeretné, hogy a VeraCrypt automatikusan frissítse a rendszer kedvenc konfigurációját (rendszergazdai jogosultságok szükségesek)?\n\nVegye figyelembe, ha nemmel válaszol, manuálisan kell frissítenie a rendszer kedvencet.</entry>
<entry lang="hu" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">FONTOS: Ha nem semmisítette meg a VeraCrypt helyreállító lemezt, a rendszerpartíció/meghajtó továbbra is visszafejthető a régi jelszóval (a VeraCrypt helyreállító lemez indításával, valamint a régi jelszó megadásával). Létre kell hoznia egy új VeraCrypt helyreállító lemezt, majd meg kell semmisítenie a régit.\n\nLétre szeretne hozni egy új VeraCrypt helyreállító lemezt?</entry>
<entry lang="hu" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">Ne feledje, hogy a VeraCrypt helyreállító lemez még mindig az előző algoritmust használja. Ha az előző algoritmust nem tartja biztonságosnak, hozzon létre egy új VeraCrypt helyreállító lemezt, majd semmisítse meg a korábbit.\n\nLétre szeretne hozni egy új VeraCrypt helyreállító lemezt?</entry>
<entry lang="hu" key="KEYFILES_NOTE">Ne feledje, hogy a VeraCrypt soha nem módosítja a kulcsfájl tartalmát. Egynél több kulcsfájlt is kiválaszthat (a sorrend nem számít). Ha hozzáad egy mappát, a benne található összes nem rejtett fájl kulcsfájlként lesz használva. Kattintson a 'Jogkivonat fájlok hozzáadása' elemre a biztonsági jogkivonatokban tárolt kulcsfájlok vagy okoskártyák kiválasztásához (vagy kulcsfájlok importálása biztonsági jogkivonatokba vagy intelligens kártyákra).</entry>
<entry lang="hu" key="KEYFILES_NOTE">Bármilyen fájl (például .mp3, .jpg, .zip, .avi) használható VeraCrypt kulcsfájlként. Ne feledje, hogy a VeraCrypt soha nem módosítja a kulcsfájl tartalmát. Egynél több kulcsfájlt is kiválaszthat (a sorrend nem számít). Ha hozzáad egy mappát, a benne található összes nem rejtett fájl kulcsfájlként lesz használva. Kattintson a 'Jogkivonat fájlok hozzáadása' elemre a biztonsági jogkivonatokban tárolt kulcsfájlok vagy okoskártyák kiválasztásához (vagy kulcsfájlok importálása biztonsági jogkivonatokba vagy intelligens kártyákra).</entry>
<entry lang="hu" key="KEYFILE_CHANGED">Kulcsfájl(ok) sikeresen hozzáadva/eltávolítva.</entry>
<entry lang="hu" key="KEYFILE_EXPORTED">Kulcsfájl exportálva.</entry>
<entry lang="hu" key="PKCS5_PRF_CHANGED">A fejléckulcs származékos algoritmusának beállítása sikeresen megtörtént.</entry>
@@ -729,7 +727,7 @@
<entry lang="hu" key="DLL_FILES">Könyvtári modulok</entry>
<entry lang="hu" key="FORMAT_NTFS_STOP">Az NTFS/exFAT/ReFS formázás nem folytatható.</entry>
<entry lang="hu" key="CANT_MOUNT_VOLUME">A kötet nem csatlakoztatható.</entry>
<entry lang="hu" key="CANT_UNMOUNT_VOLUME">Nem lehet leválasztani a kötetet.</entry>
<entry lang="hu" key="CANT_DISMOUNT_VOLUME">Nem lehet leválasztani a kötetet.</entry>
<entry lang="hu" key="FORMAT_NTFS_FAILED">A Windows nem tudta ntfs/exFAT/ReFS formátumúként formázni a kötetet.\n\nVálasszon másik fájlrendszer típust (ha lehetséges), és próbálja újra. Alternatív megoldásként hagyhatja a kötetet formázás nélkül (fájlrendszerként válassza a 'Nincs' lehetőséget), lépjen ki a varázslóból, csatlakoztassa a kötetet, majd a rendszer vagy harmadik fél eszközével formázza a csatolt kötetet (a kötet titkosítva marad) .</entry>
<entry lang="hu" key="FORMAT_NTFS_FAILED_ASK_FAT">A Windows nem tudta ntfs/exFAT/ReFS formátumúként formázni a kötetet.\n\nA kötetet inkább FAT formátumban szeretné formázni?</entry>
<entry lang="hu" key="DEFAULT">Alapértelmezett</entry>
@@ -771,7 +769,7 @@
<entry lang="hu" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">Egy hiba megakadályozta, hogy a VeraCrypt titkosítsa a partíciót. Próbálja meg kijavítani a korábban jelentett problémákat, majd próbálkozzon újra. Ha a problémák továbbra is fennállnak, az segíthet az alábbi lépések követésében.</entry>
<entry lang="hu" key="INPLACE_ENC_GENERIC_ERR_RESUME">Egy hiba miatt a VeraCrypt nem folytathatja a partíció/kötet titkosítási/visszafejtési folyamatát.\n\nPróbálja meg kijavítani a korábban jelentett problémákat, majd kísérelje meg folytatni a műveletet, ha lehetséges. Ne feledje, hogy a kötetet nem lehet csatlakoztatni, amíg nincs teljesen titkosítva vagy visszafejtve.</entry>
<entry lang="hu" key="INPLACE_DEC_GENERIC_ERR">Egy hiba megakadályozta, hogy a VeraCrypt visszafejtse a kötetet. Próbálja meg kijavítani a korábban jelentett problémákat, és ha lehetséges próbálja újra.</entry>
<entry lang="hu" key="CANT_UNMOUNT_OUTER_VOL">Hiba: Nem lehet leválasztani a külső kötetet!\n\nA kötet nem választható le, ha olyan fájlokat vagy mappákat tartalmaz, amelyeket egy program vagy a rendszer használ.\n\nZárjon be minden olyan programot, amely fájlokat vagy könyvtárakat használ a köteten, és kattintson az Újra gombra.</entry>
<entry lang="hu" key="CANT_DISMOUNT_OUTER_VOL">Hiba: Nem lehet leválasztani a külső kötetet!\n\nA kötet nem választható le, ha olyan fájlokat vagy mappákat tartalmaz, amelyeket egy program vagy a rendszer használ.\n\nZárjon be minden olyan programot, amely fájlokat vagy könyvtárakat használ a köteten, és kattintson az Újra gombra.</entry>
<entry lang="hu" key="CANT_GET_OUTER_VOL_INFO">Hiba: Nem lehet információt szerezni a külső kötetről!\nA kötet létrehozása nem folytatható.</entry>
<entry lang="hu" key="CANT_ACCESS_OUTER_VOL">Hiba: Nem érhető el a külső kötet! A kötet létrehozása nem folytatható.</entry>
<entry lang="hu" key="CANT_MOUNT_OUTER_VOL">Hiba: Nem lehet csatlakoztatni a külső kötetet! A kötet létrehozása nem folytatható.</entry>
@@ -813,7 +811,7 @@
<entry lang="hu" key="SECONDARY_KEY_SIZE_LRW">Hangolókulcs mérete (LRW mód)</entry>
<entry lang="hu" key="BITS">bit</entry>
<entry lang="hu" key="BLOCK_SIZE">Blokkméret</entry>
<entry lang="hu" key="KDF">KDF</entry>
<entry lang="hu" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="hu" key="PKCS5_ITERATIONS">PKCS-5 iterációs szám</entry>
<entry lang="hu" key="VOLUME_CREATE_DATE">Kötet létrehozva</entry>
<entry lang="hu" key="VOLUME_HEADER_DATE">Fejléc utolsó módosítása</entry>
@@ -855,7 +853,7 @@
<entry lang="hu" key="TC_INSTALLER_IS_RUNNING">A VeraCrypt telepítő jelenleg fut a rendszerben, és végrehajtja vagy előkészíti a VeraCrypt telepítését vagy frissítését. A folytatás előtt várja meg, amíg befejeződik, vagy zárja be. Ha nem tudja bezárni, a folytatás előtt indítsa újra a számítógépet.</entry>
<entry lang="hu" key="INSTALL_FAILED">A telepítés sikertelen volt.</entry>
<entry lang="hu" key="UNINSTALL_FAILED">Az eltávolítás sikertelen volt.</entry>
<entry lang="hu" key="DIST_PACKAGE_CORRUPTED">Ez a disztribúciós csomag sérült. Próbálja meg újra letölteni (lehetőleg a VeraCrypt hivatalos weboldaláról: https://veracrypt.jp).</entry>
<entry lang="hu" key="DIST_PACKAGE_CORRUPTED">Ez a disztribúciós csomag sérült. Próbálja meg újra letölteni (lehetőleg a VeraCrypt hivatalos weboldaláról: https://www.veracrypt.fr).</entry>
<entry lang="hu" key="CANNOT_WRITE_FILE_X">A(z) %s fájl nem írható</entry>
<entry lang="hu" key="EXTRACTING_VERB">Kibontás</entry>
<entry lang="hu" key="CANNOT_READ_FROM_PACKAGE">Nem lehet kiolvasni az adatokat a csomagból.</entry>
@@ -882,7 +880,7 @@
<entry lang="hu" key="INSTALL_COMPLETED">A telepítés befejeződött.</entry>
<entry lang="hu" key="CANT_CREATE_FOLDER">A(z) '%s' mappát nem sikerült létrehozni</entry>
<entry lang="hu" key="CLOSE_TC_FIRST">A VeraCrypt eszközillesztő nem távolítható el a memóriából.\n\nElőször zárja be az összes megnyitott VeraCrypt ablakot. Ha ez nem segít, indítsa újra a Windows rendszert, majd próbálkozzon újra.</entry>
<entry lang="hu" key="UNMOUNT_ALL_FIRST">A VeraCrypt telepítése vagy eltávolítása előtt minden VeraCrypt kötetet le kell választani.</entry>
<entry lang="hu" key="DISMOUNT_ALL_FIRST">A VeraCrypt telepítése vagy eltávolítása előtt minden VeraCrypt kötetet le kell választani.</entry>
<entry lang="hu" key="UNINSTALL_OLD_VERSION_FIRST">Egy elavult VeraCrypt verzió van telepítve a rendszerben. El kell távolítani, mielőtt telepíthetné ezt az új VeraCrypt verziót.\n\nAmint bezárja ezt az üzenetpanelt, elindul a régi verzió eltávolítója. Ne feledje, hogy a VeraCrypt eltávolításakor a program nem fejti vissza a kötetet. A VeraCrypt régi verziójának eltávolítása után futtassa újra a VeraCrypt új verziójának telepítőjét.</entry>
<entry lang="hu" key="REG_INSTALL_FAILED">A rendszerleíró bejegyzések telepítése nem sikerült</entry>
<entry lang="hu" key="DRIVER_INSTALL_FAILED">Az eszközillesztő telepítése sikertelen volt. Indítsa újra a Windows rendszert, majd próbálja újratelepíteni a VeraCrypt-et.</entry>
@@ -903,7 +901,7 @@
<entry lang="hu" key="MINUTES">perc</entry>
<entry lang="hu" key="SECONDS">mp</entry>
<entry lang="hu" key="OPEN">Megnyitás</entry>
<entry lang="hu" key="UNMOUNT">Leválasztás</entry>
<entry lang="hu" key="DISMOUNT">Leválasztás</entry>
<entry lang="hu" key="SHOW_TC">VeraCrypt megjelenítése</entry>
<entry lang="hu" key="HIDE_TC">VeraCrypt elrejtése</entry>
<entry lang="hu" key="TOTAL_DATA_READ">A csatlakoztatás óta olvasott adatok</entry>
@@ -940,7 +938,7 @@
<entry lang="hu" key="ENTER_HEADER_BACKUP_PASSWORD">Adja meg a biztonsági másolatban tárolt fejléc jelszavát</entry>
<entry lang="hu" key="KEYFILE_CREATED">A kulcsfájlok sikeresen létre lettek hozva.</entry>
<entry lang="hu" key="KEYFILE_INCORRECT_NUMBER">A megadott kulcsfájlok száma érvénytelen.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be at least 64 bytes.</entry>
<entry lang="hu" key="KEYFILE_INCORRECT_SIZE">A kulcsfájl méretének 64 és 1048576 bájt között kell lennie.</entry>
<entry lang="hu" key="KEYFILE_EMPTY_BASE_NAME">Adja meg a létrehozandó kulcsfájl(ok) nevét</entry>
<entry lang="hu" key="KEYFILE_INVALID_BASE_NAME">A kulcsfájl(ok) alapneve érvénytelen</entry>
<entry lang="hu" key="KEYFILE_ALREADY_EXISTS">A(z) '%s' kulcsfájl már létezik.\nFelülírja? A létrehozási folyamat leáll, ha nemmel válaszol.</entry>
@@ -975,7 +973,7 @@
<entry lang="hu" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - A rendszer kedvenc kötetei</entry>
<entry lang="hu" key="SYS_FAVORITES_HELP_LINK">Melyek a rendszer kedvenc kötetei?</entry>
<entry lang="hu" key="SYS_FAVORITES_REQUIRE_PBA">Úgy tűnik, hogy a rendszerpartíció/meghajtó nincs titkosítva.\n\nA rendszer kedvenc kötetei csak rendszerindítás előtti hitelesítési jelszóval csatlakoztathatók. Ezért a rendszer kedvenc köteteinek használatához, először titkosítania kell a rendszerpartíciót/meghajtót.</entry>
<entry lang="hu" key="UNMOUNT_FIRST">Folytatás előtt válassza le a kötetet.</entry>
<entry lang="hu" key="DISMOUNT_FIRST">Folytatás előtt válassza le a kötetet.</entry>
<entry lang="hu" key="CANNOT_SET_TIMER">Hiba: Nem lehet beállítani az időzítőt.</entry>
<entry lang="hu" key="IDPM_CHECK_FILESYS">Fájlrendszer ellenőrzése</entry>
<entry lang="hu" key="IDPM_REPAIR_FILESYS">Fájlrendszer javítása</entry>
@@ -1009,11 +1007,11 @@
<entry lang="hu" key="NO_SYSENC_PARTITION_SELECTED">Nincs kiválasztva partíció.\n\nKattintson az 'Eszköz kiválasztása' elemre olyan leválasztott partíció kiválasztásához, amely általában indítás előtti hitelesítést igényel (például egy másik partíció, amely egy másik operációs rendszer titkosított rendszermeghajtóján helyezkedik el, amely nem fut, vagy egy másik operációs rendszer titkosított rendszerpartíciója).\n\nMegjegyzés: A kiválasztott partíció hagyományos VeraCrypt kötetként lesz telepítve, indítás előtti hitelesítés nélkül. Ez hasznos például biztonsági mentési vagy javítási műveleteknél.</entry>
<entry lang="hu" key="CONFIRM_SAVE_DEFAULT_KEYFILES">FIGYELEM: Ha az alapértelmezett kulcsfájlok be vannak állítva és engedélyezve lettek, akkor azokat a köteteket, amelyek nem használják ezeket a kulcsfájlokat, lehetetlen lesz csatlakoztatni. Ezért az alapértelmezett kulcsfájlok engedélyezése után, ne feledje törölni a jelet a 'Kulcsfájlok használata' jelölőnégyzetből (a jelszóbeviteli mező alatt) valahányszor ilyen köteteket csatlakoztat.\n\nBiztosan menti a kiválasztott kulcsfájlokat/elérési útvonalakat alapértelmezettként?</entry>
<entry lang="hu" key="HK_AUTOMOUNT_DEVICES">Eszközök automatikus csatolása</entry>
<entry lang="hu" key="HK_UNMOUNT_ALL">Összes leválasztása</entry>
<entry lang="hu" key="HK_DISMOUNT_ALL">Összes leválasztása</entry>
<entry lang="hu" key="HK_WIPE_CACHE">Gyorsítótár törlése</entry>
<entry lang="hu" key="HK_UNMOUNT_ALL_AND_WIPE">Összes leválasztása és a gyorsítótár törlése</entry>
<entry lang="hu" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Az összes leválasztásának kényszerítése és a gyorsítótár ürítése</entry>
<entry lang="hu" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Az összes leválasztásának kényszerítése, a gyorsítótár ürítése és kilépés</entry>
<entry lang="hu" key="HK_DISMOUNT_ALL_AND_WIPE">Összes leválasztása és a gyorsítótár törlése</entry>
<entry lang="hu" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Az összes leválasztásának kényszerítése és a gyorsítótár ürítése</entry>
<entry lang="hu" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Az összes leválasztásának kényszerítése, a gyorsítótár ürítése és kilépés</entry>
<entry lang="hu" key="HK_MOUNT_FAVORITE_VOLUMES">Kedvenc kötetek csatolása</entry>
<entry lang="hu" key="HK_SHOW_HIDE_MAIN_WINDOW">A VeraCrypt fő ablakának megjelenítése/elrejtése</entry>
<entry lang="hu" key="PRESS_A_KEY_TO_ASSIGN">(Kattintson ide és nyomjon meg egy gombot)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="hu" key="PAGING_FILE_CREATION_PREVENTED">A lapozófájl létrehozása meg lett akadályozva.\n\nVegye figyelembe, hogy Windows problémák miatt, lapozófájl nem található a nem-rendszer VeraCrypt köteteken (beleértve a rendszer kedvenc köteteit). A VeraCrypt csak titkosított rendszerpartíción/meghajtón támogatja a lapozófájlok létrehozását.</entry>
<entry lang="hu" key="SYS_ENC_HIBERNATION_PREVENTED">Egy hiba vagy összeférhetetlenség megakadályozza, hogy a VeraCrypt titkosítsa a hibernálási fájlt. Ezért a hibernálás meg lett akadályozva.\n\nMegjegyzés: Ha a számítógép hibernálódik (vagy energiatakarékos módba lép), a rendszermemória tartalma a rendszermeghajtón található hibernálási tárolófájlba kerül. A VeraCrypt nem tudja megakadályozni a titkosítási kulcsok és a memóriában megnyitott érzékeny fájlok tartalmának titkosítatlan mentését a hibernálási tárolófájlba.</entry>
<entry lang="hu" key="HIDDEN_OS_HIBERNATION_PREVENTED">A hibernálás meg lett akadályozva.\n\nA VeraCrypt nem támogatja a hibernálást olyan rejtett operációs rendszereken, amelyek extra rendszerindító partíciót használnak. Vegye figyelembe, hogy a rendszerindító partíciót, mind a csali, mind pedig a rejtett rendszer megosztja. Ezért a hibernált állapotból való visszatérés során az adatszivárgások és problémák megelőzése érdekében a VeraCrypt-nek meg kell akadályoznia, hogy a rejtett rendszer a megosztott rendszerindító partícióra írjon, illetve hibernálja azt.</entry>
<entry lang="hu" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">A(z) %c:-ként csatlakoztatott kötet le lett választva.</entry>
<entry lang="hu" key="MOUNTED_VOLUMES_UNMOUNTED">A VeraCrypt kötetek le lettek választva.</entry>
<entry lang="hu" key="VOLUMES_UNMOUNTED_CACHE_WIPED">A VeraCrypt kötetek le lettek választva és a jelszó gyorsítótár törölve lett.</entry>
<entry lang="hu" key="SUCCESSFULLY_UNMOUNTED">Sikeresen leválasztva</entry>
<entry lang="hu" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">A(z) %c:-ként csatlakoztatott kötet le lett választva.</entry>
<entry lang="hu" key="MOUNTED_VOLUMES_DISMOUNTED">A VeraCrypt kötetek le lettek választva.</entry>
<entry lang="hu" key="VOLUMES_DISMOUNTED_CACHE_WIPED">A VeraCrypt kötetek le lettek választva és a jelszó gyorsítótár törölve lett.</entry>
<entry lang="hu" key="SUCCESSFULLY_DISMOUNTED">Sikeresen leválasztva</entry>
<entry lang="hu" key="CONFIRM_BACKGROUND_TASK_DISABLED">FIGYELEM: Ha a VeraCrypt háttérfeladat le van tiltva, a következő funkciók nem engedélyezettek:\n\n1) Billentyűparancsok\n2) Automatikus leválasztás (pl., kijelentkezés, véletlen gazdagép eltávolítás, időtúllépés esetén, stb.)\n3) Kedvenc kötetek automatikus csatlakoztatása\n4) Értesítések (pl., ha a rejtett kötet sérülése meg lett akadályozva)\n5) Tálca ikon\n\nMegjegyzés: a háttérfeladat bármikor leállítható, ha a jobb gombbal a VeraCrypt tálca ikonra kattint, majd a 'Kilépés' lehetőséget választja.\n\nVéglegesen le szeretné tiltani a VeraCrypt háttérfeladatot?</entry>
<entry lang="hu" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">FIGYELEM: Ha ez a opció le van tiltva, a megnyitott fájlokat/könyvtárakat tartalmazó kötetek nem lesznek automatikusan leválaszthatók.\n\nBiztosan letiltja ezt az opciót?</entry>
<entry lang="hu" key="WARN_PREF_AUTO_UNMOUNT">FIGYELEM: A megnyitott fájlokat/könyvtárakat tartalmazó kötetek NEM lesznek automatikusan leválasztva.\n\nEnnek megakadályozása érdekében engedélyezze a következő opciót ebben a párbeszédablakban: 'Automatikus leválasztás kényszerítése akkor is, ha a kötet nyitott fájlokat vagy könyvtárakat tartalmaz'</entry>
<entry lang="hu" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">FIGYELEM: Ha a notebook akkumulátorának töltöttségi szintje alacsony, a Windows kihagyhatja a megfelelő üzenetek elküldését a futó alkalmazásoknak, amikor a számítógép energiatakarékos üzemmódba lép. Ezért előfordulhat, hogy a VeraCrypt-nek ilyen esetekben nem sikerül automatikusan leválasztania a köteteket.</entry>
<entry lang="hu" key="CONFIRM_NO_FORCED_AUTODISMOUNT">FIGYELEM: Ha ez a opció le van tiltva, a megnyitott fájlokat/könyvtárakat tartalmazó kötetek nem lesznek automatikusan leválaszthatók.\n\nBiztosan letiltja ezt az opciót?</entry>
<entry lang="hu" key="WARN_PREF_AUTO_DISMOUNT">FIGYELEM: A megnyitott fájlokat/könyvtárakat tartalmazó kötetek NEM lesznek automatikusan leválasztva.\n\nEnnek megakadályozása érdekében engedélyezze a következő opciót ebben a párbeszédablakban: 'Automatikus leválasztás kényszerítése akkor is, ha a kötet nyitott fájlokat vagy könyvtárakat tartalmaz'</entry>
<entry lang="hu" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">FIGYELEM: Ha a notebook akkumulátorának töltöttségi szintje alacsony, a Windows kihagyhatja a megfelelő üzenetek elküldését a futó alkalmazásoknak, amikor a számítógép energiatakarékos üzemmódba lép. Ezért előfordulhat, hogy a VeraCrypt-nek ilyen esetekben nem sikerül automatikusan leválasztania a köteteket.</entry>
<entry lang="hu" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Egy partíció/kötet titkosítási/visszafejtési folyamatát ütemezte. A folyamat még nem fejeződött be.\n\nFolytatja a folyamatot most?</entry>
<entry lang="hu" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">Ütemezte a rendszerpartíció/meghajtó titkosításának vagy visszafejtésének folyamatát. A folyamat még nem fejeződött be.\n\nElindítja (folytatja) a folyamatot?</entry>
<entry lang="hu" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">Szeretné, ha a rendszer rákérdezne arra, hogy folytatni kívánja-e a nem rendszerpartíciók/kötetek titkosításának/visszafejtésének jelenleg ütemezett folyamatait?</entry>
@@ -1063,7 +1061,7 @@
<entry lang="hu" key="SYS_AUTOMOUNT_DISABLED">A rendszer nincs beállítva új kötetek automatikus csatlakoztatására. Elképzelhető, hogy nem lehet csatlakoztatni az eszköz által tárolt VeraCrypt köteteket. Az automatikus csatlakoztatást a következő parancs végrehajtásával és a rendszer újraindításával lehet engedélyezni.\n\nmountvol.exe /E</entry>
<entry lang="hu" key="SYS_ASSIGN_DRIVE_LETTER">Mielőtt folytatná, rendeljen meghajtóbetűjelet a partícióhoz/eszközhöz ('Vezérlőpult' &gt; 'Rendszer és karbantartás' &gt; 'Felügyeleti eszközök' - 'Merevlemez-partíciók létrehozása és formázása').\n\nNe feledje, hogy ez az operációs rendszer követelménye.</entry>
<entry lang="hu" key="MOUNT_TC_VOLUME">VeraCrypt kötet csatolása</entry>
<entry lang="hu" key="UNMOUNT_ALL_TC_VOLUMES">Az összes VeraCrypt kötet leválasztása</entry>
<entry lang="hu" key="DISMOUNT_ALL_TC_VOLUMES">Az összes VeraCrypt kötet leválasztása</entry>
<entry lang="hu" key="UAC_INIT_ERROR">A VeraCrypt nem kapott rendszergazdai jogosultságokat.</entry>
<entry lang="hu" key="ERR_ACCESS_DENIED">Az operációs rendszer megtagadta a hozzáférést.\n\nLehetséges oka: Az operációs rendszer megköveteli, hogy olvasási/írási engedéllyel (vagy rendszergazdai jogosultságokkal) rendelkezzen bizonyos mappákhoz, fájlokhoz és eszközökhöz, hogy lehetővé tegye az adatok olvasását és írását. Általában egy rendszergazdai jogosultsággal nem rendelkező felhasználó létrehozhat, olvashat és módosíthat fájljait a Dokumentumok mappájában.</entry>
<entry lang="hu" key="SECTOR_SIZE_UNSUPPORTED">Hiba: A meghajtó nem támogatott szektorméretet használ.\n\nJelenleg nem lehetséges partíció/eszközalapú kötetek létrehozása olyan meghajtókon, amelyek 4096 bájtnál nagyobb szektorokat használnak. Ne feledje azonban, hogy létrehozhat fájltárolt köteteket (tárolókat) az ilyen meghajtókon.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="hu" key="HIDDEN_OS_CREATION_PREINFO_HELP">A következő lépésekben a VeraCrypt létrehozza a rejtett operációs rendszert a rendszerpartíció tartalmának rejtett kötetre másolásával (az átmásolt adatok menet közben kerülnek titkosításra a csali operációs rendszertől eltérő titkosítókulccsal).\n\nFelhívjuk figyelmét, hogy a folyamat a rendszerindítást megelőző környezetben kerül végrehajtásra (a Windows elindulása előtt), és ez sokáig tarthat; több óra vagy akár több nap (a rendszerpartíció méretétől és a számítógép teljesítményétől függően).\n\nMegszakíthatja a folyamatot, leállíthatja a számítógépet, elindíthatja az operációs rendszert, majd folytathatja a folyamatot. Ha azonban megszakítja, a rendszermásolás teljes folyamatának az elejétől kell kezdődnie (mivel a rendszerpartíció tartalma nem változhat a klónozás során).</entry>
<entry lang="hu" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">Megszakítja a rejtett operációs rendszer létrehozásának teljes folyamatát?\n\nMegjegyzés: Ha most megszakítja, nem tudja folytatni a folyamatot.</entry>
<entry lang="hu" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">Megszakítja a rendszertitkosítási előtesztet?</entry>
<entry lang="hu" key="BOOT_PRETEST_FAILED_RETRY">A VeraCrypt rendszertitkosítási előtesztje sikertelen volt. Megpróbálja újra?\n\nHa a 'Nem' lehetőséget választja, a rendszerindítás előtti hitelesítési összetevő eltávolításra kerül.\n\nMegjegyzések:\n\n- Ha a VeraCrypt rendszertöltő nem kérte a jelszó megadását a Windows indítása előtt, akkor lehetséges, hogy az operációs rendszer nem arról a meghajtóról indul, amelyre telepítve van. Ez nem támogatott.\n\n- Ha az AES-től eltérő titkosítási algoritmust használt, és az előzetes tesztelés sikertelen volt (és megadta a jelszót), a hibát valószínűleg egy nem megfelelően megtervezett illesztőprogram okozta. Válassza a 'Nem' lehetőséget, és próbálja meg újra titkosítani a rendszerpartíciót/meghajtót az AES titkosítási algoritmus használatával (amely a legalacsonyabb memória követelménnyel rendelkezik).\n\n- További lehetséges okok és megoldások: https://veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="hu" key="BOOT_PRETEST_FAILED_RETRY">A VeraCrypt rendszertitkosítási előtesztje sikertelen volt. Megpróbálja újra?\n\nHa a 'Nem' lehetőséget választja, a rendszerindítás előtti hitelesítési összetevő eltávolításra kerül.\n\nMegjegyzések:\n\n- Ha a VeraCrypt rendszertöltő nem kérte a jelszó megadását a Windows indítása előtt, akkor lehetséges, hogy az operációs rendszer nem arról a meghajtóról indul, amelyre telepítve van. Ez nem támogatott.\n\n- Ha az AES-től eltérő titkosítási algoritmust használt, és az előzetes tesztelés sikertelen volt (és megadta a jelszót), a hibát valószínűleg egy nem megfelelően megtervezett illesztőprogram okozta. Válassza a 'Nem' lehetőséget, és próbálja meg újra titkosítani a rendszerpartíciót/meghajtót az AES titkosítási algoritmus használatával (amely a legalacsonyabb memória követelménnyel rendelkezik).\n\n- További lehetséges okok és megoldások: https://www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="hu" key="SYS_DRIVE_NOT_ENCRYPTED">Úgy tűnik, hogy a rendszerpartíció/meghajtó nincs titkosítva (sem részben, sem teljesen).</entry>
<entry lang="hu" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">A rendszerpartíció/meghajtó titkosítva van (részben vagy teljesen).\n\nFolytatás előtt teljesen fejtse vissza a rendszerpartíciót/meghajtót. Ehhez válassza a 'Rendszer' &gt; 'Rendszerpartíció/meghajtó végleges visszafejtése' lehetőséget a VeraCrypt fő ablakának menüsorából.</entry>
<entry lang="hu" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">Ha a rendszerpartíció/meghajtó titkosítva van (részben vagy teljesen), nem állhat vissza korábbi VeraCrypt verzióra (de frissítheti vagy újratelepítheti ugyanazt a verziót).</entry>
@@ -1306,8 +1304,8 @@
<entry lang="hu" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Vegye figyelembe, hogy a végrehajtási szálak száma jelenleg korlátozott, amely hatással lesz a sebességteszt eredményeire (rosszabb teljesítmény).\n\nA processzor(ok) teljes potenciáljának kiaknázásához, válassza a 'Beállítások' &gt; 'Teljesítmény' lehetőséget és tiltsa le a megfelelő opciót.</entry>
<entry lang="hu" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">Szeretné, hogy a VeraCrypt megpróbálja letiltani a partíció/meghajtó írásvédelmét?</entry>
<entry lang="hu" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">FIGYELEM: Ez a beállítás ronthatja a teljesítményt.\n\nBiztosan ezt a beállítást szeretné használni?</entry>
<entry lang="hu" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Figyelem: VeraCrypt kötet automatikusan leválasztva</entry>
<entry lang="hu" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Csatlakoztatott kötetet tartalmazó eszköz fizikai eltávolítása vagy kikapcsolása előtt, először mindig le kell választania a kötetet a VeraCrypt-ben.\n\nA váratlan spontán leválasztást általában egy időszakosan meghibásodó kábel, meghajtó, stb. okozza.</entry>
<entry lang="hu" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Figyelem: VeraCrypt kötet automatikusan leválasztva</entry>
<entry lang="hu" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Csatlakoztatott kötetet tartalmazó eszköz fizikai eltávolítása vagy kikapcsolása előtt, először mindig le kell választania a kötetet a VeraCrypt-ben.\n\nA váratlan spontán leválasztást általában egy időszakosan meghibásodó kábel, meghajtó, stb. okozza.</entry>
<entry lang="hu" key="UNSUPPORTED_TRUECRYPT_FORMAT">Ez a kötet a TrueCrypt %x.%x változattal lett létrehozva, de a VeraCrypt csak a TrueCrypt 6.x/7.x sorozattal létrehozott TrueCrypt köteteket támogatja</entry>
<entry lang="hu" key="TEST">Teszt</entry>
<entry lang="hu" key="KEYFILE">Kulcsfájl</entry>
@@ -1453,7 +1451,7 @@
<entry lang="hu" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Az összes csatolt kötet hozzáadása a kedvencekhez...</entry>
<entry lang="hu" key="TASKICON_PREF_MENU_ITEMS">Feladat ikon menüelemek</entry>
<entry lang="hu" key="TASKICON_PREF_OPEN_VOL">Csatolt kötetek megnyitása</entry>
<entry lang="hu" key="TASKICON_PREF_UNMOUNT_VOL">Csatolt kötetek leválasztása</entry>
<entry lang="hu" key="TASKICON_PREF_DISMOUNT_VOL">Csatolt kötetek leválasztása</entry>
<entry lang="hu" key="DISK_FREE">Elérhető szabad hely: {0}</entry>
<entry lang="hu" key="VOLUME_SIZE_HELP">Adja meg a létrehozandó tároló méretét. Ne feledje, hogy a kötet lehetséges minimális mérete 292 KiB.</entry>
<entry lang="hu" key="LINUX_CONFIRM_INNER_VOLUME_CALC">FIGYELEM: A FAT-tól eltérő fájlrendszert választott a külső kötethez.\nFelhívjuk figyelmét, hogy ebben az esetben a VeraCrypt nem tudja kiszámítani a rejtett kötet maximálisan megengedett méretét, csak megbecsüli, amely téves lehet.\nÍgy az Ön felelőssége az, hogy megfelelő értéket használjon a rejtett kötet méretéhez, hogy az ne fedje át a külső kötetet.\n\nFolytatja a kijelölt fájlrendszer használatát a külső kötethez?</entry>
@@ -1483,14 +1481,14 @@
<entry lang="hu" key="LINUX_DO_NOT_MOUNT">Ne csatolja</entry>
<entry lang="hu" key="LINUX_MOUNT_AT_DIR">Csatolás a könyvtárban:</entry>
<entry lang="hu" key="LINUX_SELECT">Válassza ki...</entry>
<entry lang="hu" key="LINUX_UNMOUNT_ALL_WHEN">Minden kötet leválasztása, amikor</entry>
<entry lang="hu" key="LINUX_DISMOUNT_ALL_WHEN">Minden kötet leválasztása, amikor</entry>
<entry lang="hu" key="LINUX_ENTERING_POWERSAVING">A rendszer energiatakarékos üzemmódba lép</entry>
<entry lang="hu" key="LINUX_LOGIN_ACTION">A felhasználó bejelentkezésekor végrehajtandó műveletek</entry>
<entry lang="hu" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Zárja be a leválasztani kívánt kötet összes Intéző ablakát</entry>
<entry lang="hu" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Zárja be a leválasztani kívánt kötet összes Intéző ablakát</entry>
<entry lang="hu" key="LINUX_HOTKEYS">Gyorsbillentyűk</entry>
<entry lang="hu" key="LINUX_SYSTEM_HOTKEYS">Rendszer-szintű gyorsbillentyűk</entry>
<entry lang="hu" key="LINUX_SOUND_NOTIFICATION">Rendszerértesítési hang lejátszása csatlakoztatás/leválasztás után</entry>
<entry lang="hu" key="LINUX_CONFIRM_AFTER_UNMOUNT">Megerősítési üzenetablak megjelenítése a leválasztást követően</entry>
<entry lang="hu" key="LINUX_CONFIRM_AFTER_DISMOUNT">Megerősítési üzenetablak megjelenítése a leválasztást követően</entry>
<entry lang="hu" key="LINUX_VC_QUITS">A VeraCrypt kilép</entry>
<entry lang="hu" key="LINUX_OPEN_FINDER">Nyissa meg a keresőablakot a sikeresen csatlakoztatott kötethez</entry>
<entry lang="hu" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Felhívjuk figyelmét, hogy ez a beállítás csak akkor lép érvénybe, ha a kernel kriptográfiai szolgáltatásainak használata le van tiltva.</entry>
@@ -1522,8 +1520,7 @@
<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>
<entry lang="hu" key="LINUX_VOL_DISMOUNTED">A(z) {0} kötet le van választva.</entry>
<entry lang="hu" key="LINUX_OOM">Kevés a memória.</entry>
<entry lang="hu" key="LINUX_CANT_GET_ADMIN_PRIV">Nem sikerült rendszergazdai jogosultságokat szerezni</entry>
<entry lang="hu" key="LINUX_COMMAND_GET_ERROR">A(z) {0} parancs {1} hibával tért vissza.</entry>
@@ -1553,7 +1550,7 @@
<entry lang="hu" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Hiba: A meghajtó 512 bájttól eltérő szektorméretet használ.\n\nA platformon elérhető összetevők korlátai miatt a partíció/eszköz által tárolt kötetek nem hozhatók létre/használhatók a meghajtón.\n\nLehetséges megoldások:\n- Hozzon létre egy fájl által tárolt kötetet (tárolót) a meghajtón.\n- Használjon 512 bájtos szektorokkal rendelkező meghajtót.\n- Használja a VeraCrypt alkalmazást egy másik platformon.</entry>
<entry lang="hu" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">A gazdafájl/eszköz már használatban van</entry>
<entry lang="hu" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">A kötettároló nem érhető el.</entry>
<entry lang="hu" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">A VeraCrypt macFUSE 2.5 vagy újabb verziót igényel.</entry>
<entry lang="hu" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">A VeraCrypt OSXFUSE 2.5 vagy újabb verziót igényel.</entry>
<entry lang="hu" key="EXCEPTION_OCCURRED">Kivétel történt</entry>
<entry lang="hu" key="ENTER_PASSWORD">Adja meg a jelszót</entry>
<entry lang="hu" key="ENTER_TC_VOL_PASSWORD">Adja meg a VeraCrypt kötet jelszavát</entry>
@@ -1568,126 +1565,8 @@
<entry lang="hu" key="UNKNOWN_OPTION">Ismeretlen opció</entry>
<entry lang="hu" key="VOLUME_LOCATION">Kötet helye</entry>
<entry lang="hu" key="VOLUME_HOST_IN_USE">FIGYELEM: A(z) {0} gazdafájl/eszköz már használatban van!\n\nEnnek figyelmen kívül hagyása nemkívánatos eredményekhez vezethet, beleértve a rendszer instabilitását is.\nA kötet csatolása előtt minden olyan alkalmazást le kell állítani, amely a gazdafájlt/eszközt használja.\nFolytatja a csatolást?</entry>
<entry lang="hu" key="CANT_INSTALL_WITH_EXE_OVER_MSI">A VeraCrypt korábban MSI csomaggal lett telepítve, ezért nem frissíthető a hagyományos telepítővel.\n\nKérjük, használja az MSI csomagot a VeraCrypt frissítéséhez.</entry>
<entry lang="hu" key="IDC_USE_ALL_FREE_SPACE">Az összes rendelkezésre álló szabad hely használata</entry>
<entry lang="hu" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">A VeraCrypt nem frissíthető, mert a rendszer partíciója/meghajtója olyan algoritmussal lett titkosítva, amely már nem támogatott.\nKérjük, frissítés előtt fejtse vissza a rendszert, majd titkosítsa újra.</entry>
<entry lang="hu" key="LINUX_EX2MSG_TERMINALNOTFOUND">Nem található támogatott terminálalkalmazás, szüksége van xterm, konsole vagy gnome-terminal (dbus-x11) programra.</entry>
<entry lang="hu" key="IDM_MOUNT_NO_CACHE">Csatolás gyorsítótár nélkül</entry>
<entry lang="hu" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nVeraCrypt kötet bővítése azonnal, újraformázás nélkül\n\n\nMinden NTFS-re formázott kötet (konténerfájl, lemez, partíció) támogatott. Az egyetlen feltétel, hogy a gazda meghajtón vagy eszközön elegendő szabad hely álljon rendelkezésre.\n\nNe használja ezt a programot olyan külső kötet bővítésére, amely rejtett kötetet tartalmaz, mert ez megsemmisíti a rejtett kötetet!\n</entry>
<entry lang="hu" key="IDC_STEPSEXPAND">1. Válassza ki a bővítendő VeraCrypt kötetet\n2. Kattintson a 'Csatolás' gombra</entry>
<entry lang="hu" key="IDT_VOL_NAME">Kötet: </entry>
<entry lang="hu" key="IDT_FILE_SYS">Fájlrendszer: </entry>
<entry lang="hu" key="IDT_CURRENT_SIZE">Jelenlegi méret: </entry>
<entry lang="hu" key="IDT_NEW_SIZE">Új méret: </entry>
<entry lang="hu" key="IDT_NEW_SIZE_BOX_TITLE">Adja meg az új kötetméretet</entry>
<entry lang="hu" key="IDC_INIT_NEWSPACE">Az új terület kitöltése véletlenszerű adatokkal</entry>
<entry lang="hu" key="IDC_QUICKEXPAND">Gyorsbővítés</entry>
<entry lang="hu" key="IDT_INIT_SPACE">Új terület kitöltése: </entry>
<entry lang="hu" key="EXPANDER_FREE_SPACE">%s szabad hely érhető el a gazda meghajtón</entry>
<entry lang="hu" key="EXPANDER_HELP_DEVICE">Ez egy eszköz-alapú VeraCrypt kötet.\n\nAz új kötetméret automatikusan a gazdaeszköz méretéhez igazodik.</entry>
<entry lang="hu" key="EXPANDER_HELP_FILE">Kérjük, adja meg a VeraCrypt kötet új méretét (legalább %I64u KB-tal nagyobbnak kell lennie, mint a jelenlegi méret).</entry>
<entry lang="hu" key="QUICK_EXPAND_WARNING">FIGYELEM: A Gyorsbővítést csak a következő esetekben használja:\n\n1) Az eszköz, amelyen a fájlkonténer található, nem tartalmaz érzékeny adatokat, és nincs szüksége hihető letagadhatóságra.\n2) Az eszköz, amelyen a fájlkonténer található, már teljes egészében és biztonságosan titkosítva van.\n\nBiztosan használni kívánja a Gyorsbővítést?</entry>
<entry lang="hu" key="EXPANDER_STATUS_TEXT">FONTOS: Mozgassa az egeret a lehető legvéletlenszerűbben ezen az ablakon belül. Minél tovább mozgatja, annál jobb. Ez jelentősen növeli a titkosítási kulcsok kriptográfiai erősségét. Ezután kattintson a 'Folytatás' gombra a kötet bővítéséhez.</entry>
<entry lang="hu" key="EXPANDER_STATUS_TEXT_LEGACY">Kattintson a 'Folytatás' gombra a kötet bővítéséhez.</entry>
<entry lang="hu" key="EXPANDER_FINISH_ERROR">Hiba: a kötet bővítése sikertelen volt.</entry>
<entry lang="hu" key="EXPANDER_FINISH_ABORT">Hiba: a műveletet a felhasználó megszakította.</entry>
<entry lang="hu" key="EXPANDER_FINISH_OK">Kész. A kötet sikeresen kibővült.</entry>
<entry lang="hu" key="EXPANDER_CANCEL_WARNING">Figyelem: A kötet bővítése folyamatban van!\n\nA mostani leállítás sérült kötethez vezethet.\n\nValóban megszakítja?</entry>
<entry lang="hu" key="EXPANDER_STARTING_STATUS">Kötet bővítésének indítása ...\n</entry>
<entry lang="hu" key="EXPANDER_HIDDEN_VOLUME_ERROR">Olyan külső kötet, amely rejtett kötetet tartalmaz, nem bővíthető, mert ez megsemmisíti a rejtett kötetet.\n</entry>
<entry lang="hu" key="EXPANDER_SYSTEM_VOLUME_ERROR">A VeraCrypt rendszerkötet nem bővíthető.</entry>
<entry lang="hu" key="EXPANDER_NO_FREE_SPACE">Nincs elegendő szabad hely a kötet bővítéséhez</entry>
<entry lang="hu" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Figyelem: A konténerfájl nagyobb, mint a VeraCrypt kötet területe. A kötetterület után következő adatok felülíródnak.\n\nFolytatja?</entry>
<entry lang="hu" key="EXPANDER_WARNING_FAT">Figyelem: A VeraCrypt kötet FAT fájlrendszert tartalmaz!\n\nCsak maga a VeraCrypt kötet lesz kibővítve, a fájlrendszer nem.\n\nFolytatja?</entry>
<entry lang="hu" key="EXPANDER_WARNING_EXFAT">Figyelem: A VeraCrypt kötet exFAT fájlrendszert tartalmaz!\n\nCsak maga a VeraCrypt kötet lesz kibővítve, a fájlrendszer nem.\n\nFolytatja?</entry>
<entry lang="hu" key="EXPANDER_WARNING_UNKNOWN_FS">Figyelem: A VeraCrypt kötet ismeretlen vagy nem tartalmaz fájlrendszert!\n\nCsak maga a VeraCrypt kötet lesz kibővítve, a fájlrendszer változatlan marad.\n\nFolytatja?</entry>
<entry lang="hu" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">Az új kötetméret túl kicsi, legalább %I64u KiB-tal nagyobbnak kell lennie a jelenleginél.</entry>
<entry lang="hu" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">Az új kötetméret túl nagy, nincs elegendő hely a gazda meghajtón.</entry>
<entry lang="hu" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">A gazda meghajtó maximális fájlmérete (%I64u MB) túllépve.</entry>
<entry lang="hu" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Hiba: Nem sikerült megszerezni a Gyorsbővítés engedélyezéséhez szükséges jogosultságokat!\nKérjük, vegye ki a jelölést a Gyorsbővítés opcióból, és próbálja újra.</entry>
<entry lang="hu" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">A VeraCrypt kötet maximális mérete (%I64u TB) túllépve!\n</entry>
<entry lang="hu" key="FULL_FORMAT">Teljes formázás</entry>
<entry lang="hu" key="FAST_CREATE">Gyors létrehozás</entry>
<entry lang="hu" key="WARN_FAST_CREATE">FIGYELEM: A Gyors létrehozást csak a következő esetekben használja:\n\n1) Az eszköz nem tartalmaz érzékeny adatokat, és nincs szüksége hihető letagadhatóságra.\n2) Az eszköz már teljes egészében és biztonságosan titkosítva van.\n\nBiztosan használni kívánja a Gyors létrehozást?</entry>
<entry lang="hu" key="IDC_ENABLE_EMV_SUPPORT">EMV támogatás engedélyezése</entry>
<entry lang="hu" key="COMMAND_APDU_INVALID">A kártyára küldött APDU parancs érvénytelen.</entry>
<entry lang="hu" key="EXTENDED_APDU_UNSUPPORTED">Kiterjesztett APDU parancsok nem használhatók a jelenlegi tokennel.</entry>
<entry lang="hu" key="SCARD_MODULE_INIT_FAILED">Hiba a WinSCard / PCSC könyvtár betöltésekor.</entry>
<entry lang="hu" key="EMV_UNKNOWN_CARD_TYPE">A kártya az olvasóban nem támogatott EMV kártya.</entry>
<entry lang="hu" key="EMV_SELECT_AID_FAILED">Nem sikerült kiválasztani a kártya AID-jét az olvasóban.</entry>
<entry lang="hu" key="EMV_ICC_CERT_NOTFOUND">Az ICC nyilvános kulcstanúsítvány nem található a kártyán.</entry>
<entry lang="hu" key="EMV_ISSUER_CERT_NOTFOUND">A kibocsátó nyilvános kulcstanúsítványa nem található a kártyán.</entry>
<entry lang="hu" key="EMV_CPLC_NOTFOUND">A CPLC nem található az EMV kártyán.</entry>
<entry lang="hu" key="EMV_PAN_NOTFOUND">Az EMV kártyán nem található elsődleges számlaszám (PAN).</entry>
<entry lang="hu" key="INVALID_EMV_PATH">Az EMV útvonal érvénytelen.</entry>
<entry lang="hu" key="EMV_KEYFILE_DATA_NOTFOUND">Nem lehet kulcsfájlt készíteni az EMV kártya adataiból.\n\nAz alábbiak közül valamelyik hiányzik:\n- ICC nyilvános kulcstanúsítvány.\n- Kibocsátó nyilvános kulcstanúsítvány.\n- CPLC adat.</entry>
<entry lang="hu" key="SCARD_W_REMOVED_CARD">Nincs kártya az olvasóban.\n\nKérjük, ellenőrizze, hogy helyesen helyezte-e be a kártyát.</entry>
<entry lang="hu" key="FORMAT_EXTERNAL_FAILED">A Windows format.com parancs sikertelen volt az NTFS/exFAT/ReFS kötet formázásánál: Hiba 0x%.8X.\n\nÁtváltás a Windows FormatEx API használatára.</entry>
<entry lang="hu" key="FORMATEX_API_FAILED">A Windows FormatEx API nem tudta NTFS/exFAT/ReFS formátumra formázni a kötetet.\n\nSikertelenség állapota = %s.</entry>
<entry lang="hu" key="EXPANDER_WRITING_RANDOM_DATA">Véletlenszerű adatok írása az új területre ...\n</entry>
<entry lang="hu" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Újratitkosított biztonsági fejléc írása ...\n</entry>
<entry lang="hu" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Újratitkosított elsődleges fejléc írása ...\n</entry>
<entry lang="hu" key="EXPANDER_WIPING_OLD_HEADER">Régi biztonsági fejléc törlése ...\n</entry>
<entry lang="hu" key="EXPANDER_MOUNTING_VOLUME">Kötet csatolása ...\n</entry>
<entry lang="hu" key="EXPANDER_UNMOUNTING_VOLUME">Kötet leválasztása ...\n</entry>
<entry lang="hu" key="EXPANDER_EXTENDING_FILESYSTEM">Fájlrendszer bővítése ...\n</entry>
<entry lang="hu" key="PARTIAL_SYSENC_MOUNT_READONLY">Figyelem: A rendszerpartíció, amelyet csatolni próbált, nem volt teljesen titkosítva. Biztonsági okokból, az esetleges sérülés vagy nem kívánt módosítások elkerülése érdekében a(z) '%s' kötet csak olvasható módban lett csatolva.</entry>
<entry lang="hu" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Fontos információk harmadik féltől származó fájlkiterjesztések használatáról</entry>
<entry lang="hu" key="IDC_DISABLE_MEMORY_PROTECTION">Memóriavédelem letiltása az akadálymentesítési eszközökkel való kompatibilitás érdekében</entry>
<entry lang="hu" key="DISABLE_MEMORY_PROTECTION_WARNING">FIGYELEM: A memóriavédelem letiltása jelentősen csökkenti a biztonságot. Csak akkor engedélyezze ezt a lehetőséget, ha akadálymentesítési eszközökre, például képernyőolvasókra van szüksége a VeraCrypt felületének használatához.</entry>
<entry lang="hu" key="LINUX_LANGUAGE">Nyelv</entry>
<entry lang="hu" key="LINUX_SELECT_SYS_DEFAULT_LANG">Rendszer alapértelmezett nyelvének kiválasztása</entry>
<entry lang="hu" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">A nyelvváltoztatás életbe lépéséhez újra kell indítania a VeraCrypt-et.</entry>
<entry lang="hu" key="ERR_XTS_MASTERKEY_VULNERABLE">FIGYELEM: A kötet mesterkulcsa sebezhető egy olyan támadással szemben, amely veszélyezteti az adatok biztonságát.\n\nKérjük, hozzon létre új kötetet, és másolja át az adatokat.</entry>
<entry lang="hu" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">FIGYELEM: A titkosított rendszer mesterkulcsa sebezhető egy olyan támadással szemben, amely veszélyezteti az adatok biztonságát.\nKérjük, fejtse vissza a rendszer partíciót/meghajtót, majd titkosítsa újra.</entry>
<entry lang="hu" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">FIGYELEM: A kötet mesterkulcsa biztonsági sérülékenységgel rendelkezik.</entry>
<entry lang="hu" key="MOUNTPOINT_BLOCKED">HIBA: A kötet csatolási pontja blokkolva van, mert védett rendszerkönyvtárat írhatna felül.\n\nKérjük, válasszon másik csatolási pontot.</entry>
<entry lang="hu" key="MOUNTPOINT_NOTALLOWED">HIBA: A kötet csatolási pontja nem engedélyezett, mert a PATH környezeti változóban szereplő könyvtárat írná felül.\n\nKérjük, válasszon másik csatolási pontot.</entry>
<entry lang="hu" key="INSECURE_MODE">[NEM BIZTONSÁGOS MÓD]</entry>
<entry lang="hu" key="IDC_DISABLE_SCREEN_PROTECTION">Képernyőkép- és képernyőfelvétel-védelem letiltása</entry>
<entry lang="hu" key="DISABLE_SCREEN_PROTECTION_WARNING">FIGYELEM: A képernyővédelem letiltása jelentősen csökkenti a biztonságot. Csak akkor engedélyezze ezt, ha kifejezetten szüksége van a VeraCrypt felületének rögzítésére. Ez érzékeny adatokat tehet elérhetővé képernyőkép-készítő és képernyőfelvételi eszközök, például a Windows 11 Recall számára.</entry>
<entry lang="hu" key="MEMORY_COST">Memóriaköltség</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_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>
<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="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+85 -206
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
@@ -135,8 +135,8 @@
<entry lang="id" key="IDC_FAVORITE_REMOVE">&amp;Hapus</entry>
<entry lang="id" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Menggunakan label favorit sebagai label drive Explorer</entry>
<entry lang="id" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Pengaturan Global</entry>
<entry lang="id" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Tampilkan tooltip balon setelah turunkan kunci panas yang sukses</entry>
<entry lang="id" key="IDC_HK_UNMOUNT_PLAY_SOUND">Memutar suara pemberitahuan sistem setelah berhasil melepas kait memakai tombol pintas.</entry>
<entry lang="id" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Tampilkan tooltip balon setelah turunkan kunci panas yang sukses</entry>
<entry lang="id" key="IDC_HK_DISMOUNT_PLAY_SOUND">Memutar suara pemberitahuan sistem setelah berhasil melepas kait memakai tombol pintas.</entry>
<entry lang="id" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="id" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="id" key="IDC_HK_MOD_SHIFT">Shift</entry>
@@ -156,12 +156,12 @@
<entry lang="id" key="IDC_PIM_HELP">(Kosong atau 0 untuk iterasi baku)</entry>
<entry lang="id" key="IDC_PREF_BKG_TASK_ENABLE">Difungsikan</entry>
<entry lang="id" key="IDC_PREF_CACHE_PASSWORDS">Singgahkan kata sandi dalam memori driver</entry>
<entry lang="id" key="IDC_PREF_UNMOUNT_INACTIVE">Otomatis lepas kait volume jika tidak ada data dibaca/ditulis setelah:</entry>
<entry lang="id" key="IDC_PREF_UNMOUNT_LOGOFF">Pengguna keluar</entry>
<entry lang="id" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">Sesi pengguna terkunci</entry>
<entry lang="id" key="IDC_PREF_UNMOUNT_POWERSAVING">Memasuki mode hemat daya</entry>
<entry lang="id" key="IDC_PREF_UNMOUNT_SCREENSAVER">Screensaver diaktifkan</entry>
<entry lang="id" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Paksa otomatis melepas kait walaupun volume memuat berkas atau direktori yang sedang terbuka</entry>
<entry lang="id" key="IDC_PREF_DISMOUNT_INACTIVE">Otomatis lepas kait volume jika tidak ada data dibaca/ditulis setelah:</entry>
<entry lang="id" key="IDC_PREF_DISMOUNT_LOGOFF">Pengguna keluar</entry>
<entry lang="id" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">Sesi pengguna terkunci</entry>
<entry lang="id" key="IDC_PREF_DISMOUNT_POWERSAVING">Memasuki mode hemat daya</entry>
<entry lang="id" key="IDC_PREF_DISMOUNT_SCREENSAVER">Screensaver diaktifkan</entry>
<entry lang="id" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Paksa otomatis melepas kait walaupun volume memuat berkas atau direktori yang sedang terbuka</entry>
<entry lang="id" key="IDC_PREF_LOGON_MOUNT_DEVICES">Kait semua volume VeraCrypt yang diwadahi peranti</entry>
<entry lang="id" key="IDC_PREF_LOGON_START">Mulai Tugas Latar Belakang VeraCrypt</entry>
<entry lang="id" key="IDC_PREF_MOUNT_READONLY">Kait volume sebagai hanya baca</entry>
@@ -169,7 +169,7 @@
<entry lang="id" key="IDC_PREF_OPEN_EXPLORER">Buka jendela Explorer dari volume yang sukses dikait</entry>
<entry lang="id" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">Secara sementara menyinggahkan kata sandi selama operasi "Mengait Volume Favorit"</entry>
<entry lang="id" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Menggunakan ikon bilah tugas yang berbeda ketika ada volume yang dikait</entry>
<entry lang="id" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Bersihkan kata sandi yang disinggahkan saat lepas kait otomatis</entry>
<entry lang="id" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Bersihkan kata sandi yang disinggahkan saat lepas kait otomatis</entry>
<entry lang="id" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Bersihkan kata sandi yang disinggahkan saat keluar</entry>
<entry lang="id" key="IDC_PRESERVE_TIMESTAMPS">Pertahankan stempel waktu perubahan dari wadah berkas</entry>
<entry lang="id" key="IDC_RESET_HOTKEYS">Reset</entry>
@@ -269,14 +269,14 @@
<entry lang="id" key="IDT_ACCELERATION_OPTIONS">Akselerasi Perangkat Keras</entry>
<entry lang="id" key="IDT_ASSIGN_HOTKEY">Pintasan</entry>
<entry lang="id" key="IDT_AUTORUN">Konfigurasi JalanOtomatis (autorun.inf)</entry>
<entry lang="id" key="IDT_AUTO_UNMOUNT">Pemutusan otomatis</entry>
<entry lang="id" key="IDT_AUTO_UNMOUNT_ON">Lepas kait semua saat:</entry>
<entry lang="id" key="IDT_AUTO_DISMOUNT">Pemutusan otomatis</entry>
<entry lang="id" key="IDT_AUTO_DISMOUNT_ON">Lepas kait semua saat:</entry>
<entry lang="id" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Opsi Layar Boot Loader</entry>
<entry lang="id" key="IDT_CONFIRM_PASSWORD">Konfirmasi Kata Sandi:</entry>
<entry lang="id" key="IDT_CURRENT">Saat ini</entry>
<entry lang="id" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">Tampilkan pesan ubahan ini di layar autentikasi pra-boot (maksimum 24 karakter):</entry>
<entry lang="id" key="IDT_DEFAULT_MOUNT_OPTIONS">Opsi Kait Baku</entry>
<entry lang="id" key="IDT_UNMOUNT_ACTION">Opsi Tombol Pintas</entry>
<entry lang="id" key="IDT_DISMOUNT_ACTION">Opsi Tombol Pintas</entry>
<entry lang="id" key="IDT_DRIVER_OPTIONS">Konfigurasi Driver</entry>
<entry lang="id" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Aktifkan dukungan kode kontrol disk yang diperluas</entry>
<entry lang="id" key="IDT_FAVORITE_LABEL">Label dari volume favorit yang dipilih:</entry>
@@ -291,11 +291,10 @@
<entry lang="id" key="IDT_NEW_PASSWORD">Kata Sandi:</entry>
<entry lang="id" key="IDT_PARALLELIZATION_OPTIONS">Paralelisasi Berbasis Thread</entry>
<entry lang="id" key="IDT_PKCS11_LIB_PATH">Path Pustaka PKCS #11</entry>
<entry lang="id" key="IDT_KDF">KDF:</entry>
<entry lang="id" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="id" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="id" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="id" key="IDT_PW_CACHE_OPTIONS">Singgahan Kata Sandi</entry>
<entry lang="id" key="IDT_SECURITY_OPTIONS">Opsi Keamanan</entry>
<entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry>
<entry lang="id" key="IDT_TASKBAR_ICON">Tugas Latar Belakang VeraCrypt</entry>
<entry lang="id" key="IDT_TRAVELER_MOUNT">Volume VeraCrypt yang akan dikait (relatif terhadap root disk traveler):</entry>
<entry lang="id" key="IDT_TRAVEL_INSERTION">Setelah penyisipan disk traveler: </entry>
@@ -357,7 +356,7 @@
<entry lang="id" key="IDT_KEYFILE_WARNING">PERINGATAN: Jika Anda kehilangan berkas kunci atau sembarang bit dari 1024 kilobyte pertamanya berubah, tidak mungkin untuk mengait volume yang menggunakan berkas kunci tersebut!</entry>
<entry lang="id" key="IDT_KEY_UNIT">bit</entry>
<entry lang="id" key="IDT_NUMBER_KEYFILES">Banyaknya berkas kunci:</entry>
<entry lang="id" key="IDT_KEYFILES_SIZE">Ukuran berkas kunci:</entry>
<entry lang="id" key="IDT_KEYFILES_SIZE">Ukuran berkas kunci (dalam Byte):</entry>
<entry lang="id" key="IDT_KEYFILES_BASE_NAME">Nama basis berkas kunci:</entry>
<entry lang="id" key="IDT_LANGPACK_AUTHORS">Diterjemahkan oleh:</entry>
<entry lang="id" key="IDT_PLAINTEXT">Ukuran teks polos:</entry>
@@ -390,7 +389,6 @@
<entry lang="id" key="ADMINISTRATOR">Administrator</entry>
<entry lang="id" key="ADMIN_PRIVILEGES_DRIVER">Untuk memuat driver VeraCrypt, Anda perlu log masuk ke akun dengan hak administrator.</entry>
<entry lang="id" key="ADMIN_PRIVILEGES_WARN_DEVICES">Harap dicatat bahwa untuk mengenkripsi, mendekripsi, atau memformat suatu partisi/peranti Anda perlu log masuk ke akun dengan hak administrator.\n\nIni tidak berlaku bagi volume yang diwadahi berkas.</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="id" key="ADMIN_PRIVILEGES_WARN_HIDVOL">Untuk membuat suatu volume tersembunyi Anda perlu log masuk ke akun dengan hak administrator.\n\nLanjutkan?</entry>
<entry lang="id" key="ADMIN_PRIVILEGES_WARN_NTFS">Harap dicatat bahwa untuk memformat volume sebagai NTFS/exFAT/ReFS Anda perlu log masuk ke akun dengan hak administrator.\n\nTanpa hak administrator, Anda dapat memformat volume sebagai FAT.</entry>
<entry lang="id" key="AES_HELP">Cipher yang disetujui FIPS (Rijndael, diterbitkan pada tahun 1998) yang dapat digunakan oleh departemen dan lembaga pemerintah AS untuk melindungi informasi rahasia hingga tingkat Top Secret. Kunci 256-bit, blok 128-bit, 14 putaran (AES-256). Mode operasi adalah XTS.</entry>
@@ -423,8 +421,8 @@
<entry lang="id" key="DEVICE_FREE_PB">Ukuran dari %s adalah %.2f PB</entry>
<entry lang="id" key="DEVICE_IN_USE_FORMAT">PERINGATAN: Peranti/partisi sedang dipakai oleh sistem operasi atau aplikasi. Memformat peranti/partisi dapat menyebabkan kerusakan data dan ketidakstabilan sistem.\n\nLanjutkan?</entry>
<entry lang="id" key="DEVICE_IN_USE_INPLACE_ENC">Peringatan: Partisi sedang dipakai oleh sistem operasi atau aplikasi. Anda mesti menutup sembarang aplikasi yang mungkin memakai partisi (termasuk perangkat lunak anti virus).\n\nLanjutkan?</entry>
<entry lang="id" key="FORMAT_CANT_UNMOUNT_FILESYS">Galat: Perangkat/partisi berisi sistem berkas yang tidak bisa dilepas kait. Sistem berkas mungkin sedang digunakan oleh sistem operasi. Memformat perangkat/partisi sangat mungkin akan menyebabkan korupsi data dan ketidakstabilan sistem.\n\nUntuk menyelesaikan masalah ini, kami sarankan Anda terlebih dahulu menghapus partisi dan kemudian membuatnya kembali tanpa pemformatan. Untuk melakukannya, ikuti langkah-langkah ini:\n1) Klik kanan ikon 'Komputer' (atau 'Komputer Saya') di 'Start Menu' dan pilih 'Kelola'. Jendela 'Manajemen Komputer' akan muncul.\n2) Di jendela 'Manajemen Komputer', pilih 'Penyimpanan' &gt; 'Manajemen Disk'.\n3) Klik kanan partisi yang ingin Anda enkripsi dan pilih 'Hapus Partisi', atau 'Hapus Volume', atau 'Hapus Drive Logis'.\n4) Klik 'Ya'. Jika Windows meminta Anda untuk me-restart komputer, lakukanlah. Kemudian ulangi langkah 1 dan 2 dan lanjutkan dari langkah 5.\n5) Klik kanan area ruang kosong/yang tidak dialokasikan dan pilih 'Partisi Baru', atau 'Volume Sederhana Baru', atau 'Drive Logis Baru'.\n6) Jendela 'Wahana Pandu Partisi Baru' atau 'Wahana Pandu Volume Serderhana Baru' akan muncul sekarang; ikuti instruksinya. Pada halaman wahana pandu berjudul 'Format Partisi', pilih 'Jangan memformat partisi ini' atau 'Jangan memformat volume ini'. Dalam wahana pandu yang sama, klik 'Berikutnya' dan kemudian 'Selesai'.\n7) Perhatikan bahwa path perangkat yang Anda pilih di VeraCrypt mungkin salah sekarang. Oleh karena itu, keluar dari Wahana Pandu Pembuatan Volume VeraCrypt (jika masih berjalan) dan kemudian mulai lagi.\n8) Coba enkripsi perangkat/partisi lagi.\n\nJika VeraCrypt berulang kali gagal mengenkripsi perangkat/partisi, Anda mungkin ingin mempertimbangkan untuk membuat wadah berkas sebagai gantinya.</entry>
<entry lang="id" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Galat: Sistem berkas tidak dapat dikunci dan/atau dilepas kait. Itu mungkin dipakai oleh sistem operasi atau aplikasi (sebagai contoh, perangkat lunak anti virus). Mengenkripsi partisi dapat menyebabkan rusaknya data dan ketidakstabilan sistem.\n\nHarap tutup sebarang aplikasi yang mungkin memakai sistem berkas (termasuk perangkat lunak anti virus) dan mencoba lagi. Bila itu tidak membantu, harap ikuti langkah-langkah berikut.</entry>
<entry lang="id" key="FORMAT_CANT_DISMOUNT_FILESYS">Galat: Perangkat/partisi berisi sistem berkas yang tidak bisa dilepas kait. Sistem berkas mungkin sedang digunakan oleh sistem operasi. Memformat perangkat/partisi sangat mungkin akan menyebabkan korupsi data dan ketidakstabilan sistem.\n\nUntuk menyelesaikan masalah ini, kami sarankan Anda terlebih dahulu menghapus partisi dan kemudian membuatnya kembali tanpa pemformatan. Untuk melakukannya, ikuti langkah-langkah ini:\n1) Klik kanan ikon 'Komputer' (atau 'Komputer Saya') di 'Start Menu' dan pilih 'Kelola'. Jendela 'Manajemen Komputer' akan muncul.\n2) Di jendela 'Manajemen Komputer', pilih 'Penyimpanan' &gt; 'Manajemen Disk'.\n3) Klik kanan partisi yang ingin Anda enkripsi dan pilih 'Hapus Partisi', atau 'Hapus Volume', atau 'Hapus Drive Logis'.\n4) Klik 'Ya'. Jika Windows meminta Anda untuk me-restart komputer, lakukanlah. Kemudian ulangi langkah 1 dan 2 dan lanjutkan dari langkah 5.\n5) Klik kanan area ruang kosong/yang tidak dialokasikan dan pilih 'Partisi Baru', atau 'Volume Sederhana Baru', atau 'Drive Logis Baru'.\n6) Jendela 'Wahana Pandu Partisi Baru' atau 'Wahana Pandu Volume Serderhana Baru' akan muncul sekarang; ikuti instruksinya. Pada halaman wahana pandu berjudul 'Format Partisi', pilih 'Jangan memformat partisi ini' atau 'Jangan memformat volume ini'. Dalam wahana pandu yang sama, klik 'Berikutnya' dan kemudian 'Selesai'.\n7) Perhatikan bahwa path perangkat yang Anda pilih di VeraCrypt mungkin salah sekarang. Oleh karena itu, keluar dari Wahana Pandu Pembuatan Volume VeraCrypt (jika masih berjalan) dan kemudian mulai lagi.\n8) Coba enkripsi perangkat/partisi lagi.\n\nJika VeraCrypt berulang kali gagal mengenkripsi perangkat/partisi, Anda mungkin ingin mempertimbangkan untuk membuat wadah berkas sebagai gantinya.</entry>
<entry lang="id" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Galat: Sistem berkas tidak dapat dikunci dan/atau dilepas kait. Itu mungkin dipakai oleh sistem operasi atau aplikasi (sebagai contoh, perangkat lunak anti virus). Mengenkripsi partisi dapat menyebabkan rusaknya data dan ketidakstabilan sistem.\n\nHarap tutup sebarang aplikasi yang mungkin memakai sistem berkas (termasuk perangkat lunak anti virus) dan mencoba lagi. Bila itu tidak membantu, harap ikuti langkah-langkah berikut.</entry>
<entry lang="id" key="DEVICE_IN_USE_INFO">PERINGATAN: Beberapa dari peranti/partisi yang dikait sedang dipakai!\n\nMengabaikan ini dapat menyebabkan hasil yang tidak diinginkan termasuk ketidakstabilan sistem.\n\nKami sangat menganjurkan agar Anda menutup sebarang aplikasi yang mungkin sedang memakai peranti/partisi.</entry>
<entry lang="id" key="DEVICE_PARTITIONS_ERR">Perangkat yang dipilih berisi partisi.\n\nMemformat perangkat dapat menyebabkan ketidakstabilan sistem dan/atau korupsi data. Silakan pilih partisi pada perangkat, atau hapus semua partisi pada perangkat agar VeraCrypt dapat memformatnya dengan aman.</entry>
<entry lang="id" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">Perangkat non-sistem yang dipilih berisi partisi.\n\nVolume VeraCrypt terenkripsi yang diwadahi peranti dapat dibuat dalam perangkat yang tidak mengandung partisi apapun (termasuk hard disk dan solid-state drive). Perangkat yang berisi partisi dapat sepenuhnya dienkripsi di tempat (menggunakan kunci master tunggal) hanya jika itu adalah drive di mana Windows dipasang dan dari mana ia boot.\n\nJika Anda ingin mengenkripsi perangkat non-sistem yang dipilih menggunakan kunci master tunggal, Anda akan perlu pertama kali untuk menghapus semua partisi pada perangkat agar memungkinkan VeraCrypt untuk memformatnya dengan aman (memformat perangkat yang berisi partisi dapat menyebabkan ketidakstabilan sistem dan/atau korupsi data). Atau, Anda dapat mengenkripsi setiap partisi pada drive secara individual (setiap partisi akan dienkripsi menggunakan kunci master yang berbeda).\n\nCatatan: Jika Anda ingin menghapus semua partisi dari disk GPT, Anda mungkin perlu mengonversinya ke disk MBR (menggunakan mis. alat Manajemen Komputer) untuk menghapus partisi tersembunyi.</entry>
@@ -590,7 +588,7 @@
<entry lang="id" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">Galat: Berkas yang Anda salin ke volume luar menempati terlalu banyak ruang. Oleh karena itu, tidak ada cukup ruang kosong pada volume luar untuk volume tersembunyi.\n\nCatat bahwa volume tersembunyi harus sebesar partisi sistem (partisi tempat sistem operasi yang sedang berjalan terpasang). Alasannya adalah bahwa sistem operasi tersembunyi perlu dibuat dengan menyalin konten partisi sistem ke volume tersembunyi.\n\n\nProses pembuatan sistem operasi tersembunyi tidak dapat berlanjut.</entry>
<entry lang="id" key="OPENFILES_DRIVER">Driver tidak bisa membuka kait volume. Beberapa berkas yang terletak pada volume mungkin masih terbuka.</entry>
<entry lang="id" key="OPENFILES_LOCK">Tidak bisa mengunci volume. Masih ada berkas yang terbuka pada volume. Oleh karena itu, tidak dapat dilepas kait.</entry>
<entry lang="id" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt tidak bisa mengunci volume karena digunakan oleh sistem atau aplikasi (mungkin ada berkas yang terbuka pada volume).\n\nApakah Anda hendak memaksa melepas kait pada volume?</entry>
<entry lang="id" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt tidak bisa mengunci volume karena digunakan oleh sistem atau aplikasi (mungkin ada berkas yang terbuka pada volume).\n\nApakah Anda hendak memaksa melepas kait pada volume?</entry>
<entry lang="id" key="OPEN_VOL_TITLE">Pilih sebuah Volume VeraCrypt</entry>
<entry lang="id" key="OPEN_TITLE">Nyatakan Path dan Nama Berkas</entry>
<entry lang="id" key="SELECT_PKCS11_MODULE">Pilih Pustaka PKCS #11</entry>
@@ -613,7 +611,7 @@
<entry lang="id" key="FAVORITE_PIM_CHANGED">Volume ini terdaftar sebagai Favorit Sistem dan PIM-nya diubah.\n Apakah Anda ingin VeraCrypt secara otomatis memperbarui konfigurasi System Favorite (hak administrator diperlukan) mencatat bahwa jika Anda menjawab tidak, Anda harus memperbarui Sistem Favorit secara manual.</entry>
<entry lang="id" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">PENTING: Jika Anda tidak menghancurkan Disk Penyelamatan VeraCrypt, partisi/drive sistem Anda masih dapat didekripsi menggunakan kata sandi lama (dengan mem-boot Disk Penyelamatan VeraCrypt dan memasukkan kata sandi lama). Anda harus membuat Disk Penyelamatan VeraCrypt baru dan kemudian menghancurkan yang lama.\n\nApakah Anda hendak membuat sebuah Disk Penyelamatan VeraCrypt yang baru?</entry>
<entry lang="id" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">Perhatikan bahwa Disk Penyelamatan VeraCrypt Anda masih menggunakan algoritma sebelumnya. Jika Anda menganggap algoritma sebelumnya tidak aman, Anda harus membuat Disk Penyelamatan VeraCrypt baru dan kemudian menghancurkan yang lama.\n\nApakah Anda hendak membuat sebuah Disk Penyelamatan VeraCrypt yang baru?</entry>
<entry lang="id" key="KEYFILES_NOTE">Perhatikan bahwa VeraCrypt tidak pernah memodifikasi isi keyfile. Anda dapat memilih lebih dari satu keyfile (urutan tidak masalah). Jika Anda menambahkan folder, semua file yang tidak tersembunyi yang ditemukan di dalamnya akan digunakan sebagai keyfiles. Klik 'Tambahkan File Token' untuk memilih keyfile yang disimpan pada token keamanan atau kartu pintar (atau untuk mengimpor keyfiles ke token keamanan atau kartu pintar).</entry>
<entry lang="id" key="KEYFILES_NOTE">Setiap jenis file (misalnya, .mp3, .jpg, .zip, .avi) dapat digunakan sebagai keyfile VeraCrypt. Perhatikan bahwa VeraCrypt tidak pernah memodifikasi isi keyfile. Anda dapat memilih lebih dari satu keyfile (urutan tidak masalah). Jika Anda menambahkan folder, semua file yang tidak tersembunyi yang ditemukan di dalamnya akan digunakan sebagai keyfiles. Klik 'Tambahkan File Token' untuk memilih keyfile yang disimpan pada token keamanan atau kartu pintar (atau untuk mengimpor keyfiles ke token keamanan atau kartu pintar).</entry>
<entry lang="id" key="KEYFILE_CHANGED">Berkas kunci sukses ditambahkan/dihapus.</entry>
<entry lang="id" key="KEYFILE_EXPORTED">Berkas kunci diekspor.</entry>
<entry lang="id" key="PKCS5_PRF_CHANGED">Algoritma derivasi kunci header berhasil diatur.</entry>
@@ -729,7 +727,7 @@
<entry lang="id" key="DLL_FILES">Modul Pustaka</entry>
<entry lang="id" key="FORMAT_NTFS_STOP">Pemformatan NTFS/exFAT/ReFS tidak dapat dilanjutkan.</entry>
<entry lang="id" key="CANT_MOUNT_VOLUME">Tidak bisa mengait volume.</entry>
<entry lang="id" key="CANT_UNMOUNT_VOLUME">Tidak bisa melepas kait volume.</entry>
<entry lang="id" key="CANT_DISMOUNT_VOLUME">Tidak bisa melepas kait volume.</entry>
<entry lang="id" key="FORMAT_NTFS_FAILED">Windows gagal memformat volume sebagai NTFS/exFAT/ReFS.\n\nHarap memilih jenis sistem berkas yang berbeda (jika memungkinkan) dan coba lagi. Atau, Anda dapat membiarkan volume tidak diformat (pilih 'Nihil' sebagai sistem berkas), keluar dari wahana pandu ini, kait volume, dan kemudian menggunakan baik sistem atau alat pihak ketiga untuk memformat volume yang dipasang (volume akan tetap dienkripsi).</entry>
<entry lang="id" key="FORMAT_NTFS_FAILED_ASK_FAT">Windows gagal memformat volume sebagai NTFS/exFAT/ReFS.\n\nApakah Anda ingin memformat volume sebagai FAT sebagai gantinya?</entry>
<entry lang="id" key="DEFAULT">Baku</entry>
@@ -771,7 +769,7 @@
<entry lang="id" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">Kesalahan mencegah VeraCrypt mengenkripsi partisi. Silakan coba memperbaiki masalah yang dilaporkan sebelumnya dan kemudian coba lagi. Jika masalah berlanjut, mungkin membantu untuk mengikuti langkah-langkah di bawah ini.</entry>
<entry lang="id" key="INPLACE_ENC_GENERIC_ERR_RESUME">Suatu kesalahan mencegah VeraCrypt melanjutkan proses enkripsi/dekripsi partisi/volume.\n\nHarap coba perbaiki masalah yang sebelumnya dilaporkan kemudian cobalah melanjutkan proses lagi bila mungkin. Perhatikan bahwa volume tidak dapat dikait sampai sepenuhnya dienkripsi atau seluruhnya didekripsi.</entry>
<entry lang="id" key="INPLACE_DEC_GENERIC_ERR">Kesalahan mencegah VeraCrypt mendekripsi volume. Silakan coba memperbaiki masalah yang dilaporkan sebelumnya dan kemudian coba lagi jika memungkinkan.</entry>
<entry lang="id" key="CANT_UNMOUNT_OUTER_VOL">Kesalahan: Tidak dapat turunkan volume luar!\n\nVolume tidak dapat diturunkan jika berisi file atau folder yang digunakan oleh program atau sistem.\n\nPlease menutup program apa pun yang mungkin menggunakan file atau direktori pada volume dan klik Coba kembali.</entry>
<entry lang="id" key="CANT_DISMOUNT_OUTER_VOL">Kesalahan: Tidak dapat turunkan volume luar!\n\nVolume tidak dapat diturunkan jika berisi file atau folder yang digunakan oleh program atau sistem.\n\nPlease menutup program apa pun yang mungkin menggunakan file atau direktori pada volume dan klik Coba kembali.</entry>
<entry lang="id" key="CANT_GET_OUTER_VOL_INFO">Galat: Tidak bisa memperoleh informasi tentang volume luar!\nPembuatan volume tidak dapat dilanjutkan.</entry>
<entry lang="id" key="CANT_ACCESS_OUTER_VOL">Galat: Tidak bisa mengakses volume luar! Pembuatan volume tidak dapat dilanjutkan.</entry>
<entry lang="id" key="CANT_MOUNT_OUTER_VOL">Galat: Tidak bisa mengait volume luar! Pembuatan volume tidak dapat dilanjutkan.</entry>
@@ -813,7 +811,7 @@
<entry lang="id" key="SECONDARY_KEY_SIZE_LRW">Ukuran Tombol Tweak (Mode LRW)</entry>
<entry lang="id" key="BITS">bit</entry>
<entry lang="id" key="BLOCK_SIZE">Ukuran Blok</entry>
<entry lang="id" key="KDF">KDF</entry>
<entry lang="id" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="id" key="PKCS5_ITERATIONS">Cacah Iterasi PKCS-5</entry>
<entry lang="id" key="VOLUME_CREATE_DATE">Volume Telah Dibuat</entry>
<entry lang="id" key="VOLUME_HEADER_DATE">Header Terakhir Dimodifikasi</entry>
@@ -855,7 +853,7 @@
<entry lang="id" key="TC_INSTALLER_IS_RUNNING">VeraCrypt Installer saat ini berjalan pada sistem ini dan melakukan atau mempersiapkan instalasi atau update dari VeraCrypt. Sebelum Anda melanjutkan, silakan menunggu untuk menyelesaikan atau menutupnya. Jika Anda tidak dapat menutupnya, silakan restart komputer Anda sebelum melanjutkan.</entry>
<entry lang="id" key="INSTALL_FAILED">Pemasangan gagal.</entry>
<entry lang="id" key="UNINSTALL_FAILED">Penghapusan instalasi gagal.</entry>
<entry lang="id" key="DIST_PACKAGE_CORRUPTED">Paket distribusi ini rusak. Silakan coba mengunduhnya lagi (sebaiknya dari situs web resmi VeraCrypt di https://veracrypt.jp).</entry>
<entry lang="id" key="DIST_PACKAGE_CORRUPTED">Paket distribusi ini rusak. Silakan coba mengunduhnya lagi (sebaiknya dari situs web resmi VeraCrypt di https://www.veracrypt.fr).</entry>
<entry lang="id" key="CANNOT_WRITE_FILE_X">Tak bisa menulis berkas %s</entry>
<entry lang="id" key="EXTRACTING_VERB">Mengekstrak</entry>
<entry lang="id" key="CANNOT_READ_FROM_PACKAGE">Tidak dapat membaca data dari paket.</entry>
@@ -882,7 +880,7 @@
<entry lang="id" key="INSTALL_COMPLETED">Instalasi selesai.</entry>
<entry lang="id" key="CANT_CREATE_FOLDER">Folder '%s' tidak bisa dibuat</entry>
<entry lang="id" key="CLOSE_TC_FIRST">Driver perangkat VeraCrypt tidak dapat dibongkar.\n\nHarap menutup semua jendela VeraCrypt yang terbuka terlebih dahulu. Jika tidak membantu, silakan restart Windows dan kemudian coba lagi.</entry>
<entry lang="id" key="UNMOUNT_ALL_FIRST">Semua volume VeraCrypt harus dilepas kait sebelum memasang atau menghapus instalasi VeraCrypt.</entry>
<entry lang="id" key="DISMOUNT_ALL_FIRST">Semua volume VeraCrypt harus dilepas kait sebelum memasang atau menghapus instalasi VeraCrypt.</entry>
<entry lang="id" key="UNINSTALL_OLD_VERSION_FIRST">Versi usang VeraCrypt saat ini terpasang pada sistem ini. Ini perlu dihapus sebelum Anda dapat memasang versi baru VeraCrypt.\n\nSegera setelah Anda menutup kotak pesan ini, uninstaller dari versi lama akan diluncurkan. Perhatikan bahwa tidak ada volume yang akan didekripsi saat Anda menghapus instalasi VeraCrypt. Setelah Anda menghapus instalasi versi lama VeraCrypt, jalankan penginstal versi baru VeraCrypt lagi.</entry>
<entry lang="id" key="REG_INSTALL_FAILED">Instalasi entri registri telah gagal</entry>
<entry lang="id" key="DRIVER_INSTALL_FAILED">Pemasangan device driver telah gagal. Silakan jalankan ulang Windows dan kemudian coba pasang VeraCrypt lagi.</entry>
@@ -903,7 +901,7 @@
<entry lang="id" key="MINUTES">menit</entry>
<entry lang="id" key="SECONDS">d</entry>
<entry lang="id" key="OPEN">Buka</entry>
<entry lang="id" key="UNMOUNT">Lepas Kait</entry>
<entry lang="id" key="DISMOUNT">Lepas Kait</entry>
<entry lang="id" key="SHOW_TC">Tampilkan VeraCrypt</entry>
<entry lang="id" key="HIDE_TC">Sembunyikan VeraCrypt</entry>
<entry lang="id" key="TOTAL_DATA_READ">Data Dibaca sejak Dikait</entry>
@@ -940,7 +938,7 @@
<entry lang="id" key="ENTER_HEADER_BACKUP_PASSWORD">Masukkan kata sandi untuk header yang disimpan dalam berkas cadangan</entry>
<entry lang="id" key="KEYFILE_CREATED">Berkas kunci telah berhasil dibuat.</entry>
<entry lang="id" key="KEYFILE_INCORRECT_NUMBER">Banyaknya berkas kunci yang Anda berikan tidak valid.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be at least 64 bytes.</entry>
<entry lang="id" key="KEYFILE_INCORRECT_SIZE">Ukuran berkas kunci harus antara 64 dan 1048576 byte.</entry>
<entry lang="id" key="KEYFILE_EMPTY_BASE_NAME">Silakan masukkan nama untuk berkas kunci yang akan dihasilkan</entry>
<entry lang="id" key="KEYFILE_INVALID_BASE_NAME">Nama dasar berkas kunci tidak valid</entry>
<entry lang="id" key="KEYFILE_ALREADY_EXISTS">Berkas kunci '%s' sudah ada.\nApakah Anda ingin menimpanya? Proses pembuatan akan dihentikan jika Anda menjawab Tidak.</entry>
@@ -975,7 +973,7 @@
<entry lang="id" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - Volume Favorit Sistem</entry>
<entry lang="id" key="SYS_FAVORITES_HELP_LINK">Apa itu volume favorit sistem?</entry>
<entry lang="id" key="SYS_FAVORITES_REQUIRE_PBA">Partisi/drive sistem tampaknya tidak terenkripsi.\n\nVolume favorit sistem hanya dapat dikait memakai kata sandi autentikasi pra boot. Maka, untuk memfungsikan penggunaan volume favorit sistem, Anda perlu terlebih dahulu mengenkripsi partisi/drive sistem.</entry>
<entry lang="id" key="UNMOUNT_FIRST">Silakan lepas kait volume sebelum melanjutkan.</entry>
<entry lang="id" key="DISMOUNT_FIRST">Silakan lepas kait volume sebelum melanjutkan.</entry>
<entry lang="id" key="CANNOT_SET_TIMER">Galat: Tak bisa mengatur timer.</entry>
<entry lang="id" key="IDPM_CHECK_FILESYS">Periksa Sistem Berkas</entry>
<entry lang="id" key="IDPM_REPAIR_FILESYS">Perbaikan Sistem Berkas</entry>
@@ -1009,11 +1007,11 @@
<entry lang="id" key="NO_SYSENC_PARTITION_SELECTED">Tidak ada partisi yang dipilih.\n\nKlik 'Plih Perangkat' untuk memilih partisi yang tidak dikait yang biasanya memerlukan otentikasi pra-boot (misalnya, partisi yang terletak pada drive sistem terenkripsi dari sistem operasi lain, yang tidak berjalan, atau partisi sistem terenkripsi dari sistem operasi lain).\n\nCatatan: Partisi yang dipilih akan dikait sebagai sebuah volume VeraCrypt biasa tanpa otentikasi pra-boot. Ini berguna misalnya untuk operasi cadangan atau perbaikan.</entry>
<entry lang="id" key="CONFIRM_SAVE_DEFAULT_KEYFILES">PERINGATAN: Bila berkas kunci baku diatur dan difungsikan, volume yang tidak memakai berkas kunci ini tidak akan mungkin dikait. Maka, setelah Anda memfungsikan berkas kunci baku, ingatlah untuk menghapus centang kotak centang "Pakai berkas kunci" (di bawah ruas masukan kata sandi) ketika mengait volume seperti itu.\n\nAnda yakin hendak menyimpan berkas kunci/path yang dipilih sebagai nilai baku?</entry>
<entry lang="id" key="HK_AUTOMOUNT_DEVICES">Perangkat Auto-Mount</entry>
<entry lang="id" key="HK_UNMOUNT_ALL">Lepas Kait Semua</entry>
<entry lang="id" key="HK_DISMOUNT_ALL">Lepas Kait Semua</entry>
<entry lang="id" key="HK_WIPE_CACHE">Hapus Cache</entry>
<entry lang="id" key="HK_UNMOUNT_ALL_AND_WIPE">Lepas Kait Semua &amp; Hapus Singgahan</entry>
<entry lang="id" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Paksa Turunkan Semua &amp;Hapus Cache</entry>
<entry lang="id" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Paksa Turunkan Semua, Hapus Cache &amp;Keluar</entry>
<entry lang="id" key="HK_DISMOUNT_ALL_AND_WIPE">Lepas Kait Semua &amp; Hapus Singgahan</entry>
<entry lang="id" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Paksa Turunkan Semua &amp;Hapus Cache</entry>
<entry lang="id" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Paksa Turunkan Semua, Hapus Cache &amp;Keluar</entry>
<entry lang="id" key="HK_MOUNT_FAVORITE_VOLUMES">Kait Volume Favorit</entry>
<entry lang="id" key="HK_SHOW_HIDE_MAIN_WINDOW">Tampilkan/Sembunyikan Jendela VeraCrypt Utama</entry>
<entry lang="id" key="PRESS_A_KEY_TO_ASSIGN">(Klik di sini dan tekan tombol)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="id" key="PAGING_FILE_CREATION_PREVENTED">Pembuatan file Paging telah dicegah.\n\nPlease mencatat bahwa, karena masalah Windows, file paging tidak dapat ditemukan pada volume VeraCrypt non-sistem (termasuk volume favorit sistem). VeraCrypt mendukung pembuatan file paging hanya pada partisi / drive sistem terenkripsi.</entry>
<entry lang="id" key="SYS_ENC_HIBERNATION_PREVENTED">Kesalahan atau ketidakcocokan mencegah VeraCrypt mengenkripsi file hibernasi. Oleh karena itu, hibernasi telah dicegah.\n\nNote: Ketika komputer berhibernasi (atau memasuki mode hemat daya), konten memori sistemnya ditulis ke file penyimpanan hibernasi yang berada di drive sistem. VeraCrypt tidak akan dapat mencegah kunci enkripsi dan isi file sensitif yang dibuka di RAM agar tidak disimpan tanpa terenkripsi ke file penyimpanan hibernasi.</entry>
<entry lang="id" key="HIDDEN_OS_HIBERNATION_PREVENTED">Hibernasi telah dicegah.\n\nVeraCrypt tidak mendukung hibernasi pada sistem operasi tersembunyi yang menggunakan partisi boot tambahan. Harap dicatat bahwa partisi boot dipakai bersama oleh umpan dan sistem tersembunyi. Oleh karena itu, untuk mencegah kebocoran data dan masalah saat melanjutkan dari hibernasi, VeraCrypt harus mencegah sistem tersembunyi dari menulis ke partisi boot bersama dan dari hibernasi.</entry>
<entry lang="id" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">Volume VeraCrypt dipasang sebagai %c: telah turun.</entry>
<entry lang="id" key="MOUNTED_VOLUMES_UNMOUNTED">Volume VeraCrypt telah dilepas kait.</entry>
<entry lang="id" key="VOLUMES_UNMOUNTED_CACHE_WIPED">Volume VeraCrypt telah turun dan cache kata sandi telah dihapus.</entry>
<entry lang="id" key="SUCCESSFULLY_UNMOUNTED">Berhasil dilepas kait</entry>
<entry lang="id" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">Volume VeraCrypt dipasang sebagai %c: telah turun.</entry>
<entry lang="id" key="MOUNTED_VOLUMES_DISMOUNTED">Volume VeraCrypt telah dilepas kait.</entry>
<entry lang="id" key="VOLUMES_DISMOUNTED_CACHE_WIPED">Volume VeraCrypt telah turun dan cache kata sandi telah dihapus.</entry>
<entry lang="id" key="SUCCESSFULLY_DISMOUNTED">Berhasil dilepas kait</entry>
<entry lang="id" key="CONFIRM_BACKGROUND_TASK_DISABLED">PERINGATAN: Jika Tugas Latar Belakang VeraCrypt dinonaktifkan, fungsi berikut akan dinonaktifkan:\n\n1) Tombol panas\n2) Turun otomatis (misalnya, setelah logoff, penghapusan perangkat host yang tidak disengaja, time-out, dll.) \n3) Auto-mount volume favorit\n4) Pemberitahuan (misalnya, ketika kerusakan volume tersembunyi dicegah)\n5) Ikon Baki\n\nNote: Anda dapat mematikan Tugas Latar Belakang kapan saja dengan mengklik kanan ikon baki VeraCrypt dan memilih 'Exit'.\n\n Apakah Anda yakin ingin menonaktifkan Tugas Latar Belakang VeraCrypt secara permanen?</entry>
<entry lang="id" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">PERINGATAN: Jika opsi ini dinonaktifkan, volume yang berisi file / direktori terbuka tidak akan mungkin untuk turun secara otomatis.\n\n Apakah Anda yakin ingin menonaktifkan opsi ini?</entry>
<entry lang="id" key="WARN_PREF_AUTO_UNMOUNT">PERINGATAN: Volume yang berisi file /direktori yang terbuka TIDAK akan diturunkan secara otomatis.\n\nUntuk mencegah hal ini, aktifkan opsi berikut di jendela dialog ini: 'Paksa turun otomatis bahkan jika volume berisi file atau direktori yang terbuka'</entry>
<entry lang="id" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">PERINGATAN: Ketika daya baterai notebook rendah, Windows mungkin menghilangkan pengiriman pesan yang sesuai untuk menjalankan aplikasi ketika komputer memasuki mode hemat daya. Oleh karena itu, VeraCrypt mungkin gagal untuk secara otomatis turun volume dalam kasus tersebut.</entry>
<entry lang="id" key="CONFIRM_NO_FORCED_AUTODISMOUNT">PERINGATAN: Jika opsi ini dinonaktifkan, volume yang berisi file / direktori terbuka tidak akan mungkin untuk turun secara otomatis.\n\n Apakah Anda yakin ingin menonaktifkan opsi ini?</entry>
<entry lang="id" key="WARN_PREF_AUTO_DISMOUNT">PERINGATAN: Volume yang berisi file /direktori yang terbuka TIDAK akan diturunkan secara otomatis.\n\nUntuk mencegah hal ini, aktifkan opsi berikut di jendela dialog ini: 'Paksa turun otomatis bahkan jika volume berisi file atau direktori yang terbuka'</entry>
<entry lang="id" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">PERINGATAN: Ketika daya baterai notebook rendah, Windows mungkin menghilangkan pengiriman pesan yang sesuai untuk menjalankan aplikasi ketika komputer memasuki mode hemat daya. Oleh karena itu, VeraCrypt mungkin gagal untuk secara otomatis turun volume dalam kasus tersebut.</entry>
<entry lang="id" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Anda telah menjadwalkan proses enkripsi/dekripsi partisi/volume. Prosesnya belum selesai.\n\nApakah Anda ingin melanjutkan prosesnya sekarang?</entry>
<entry lang="id" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">Anda telah menjadwalkan proses enkripsi atau dekripsi partisi / drive sistem. Prosesnya belum selesai.\n\n Apakah Anda ingin memulai (melanjutkan) prosesnya sekarang?</entry>
<entry lang="id" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">Apakah Anda ingin diminta tentang apakah Anda ingin melanjutkan proses enkripsi / dekripsi yang dijadwalkan saat ini dari partisi / volume non-sistem?</entry>
@@ -1063,7 +1061,7 @@
<entry lang="id" key="SYS_AUTOMOUNT_DISABLED">Sistem Anda tidak dikonfigurasi untuk mengait otomatis volume baru. Barangkali tidak mungkin untuk mengait volume VeraCrypt yang diwadahi perangkat. Pengaitan otomatis dapat diaktifkan dengan menjalankan perintah berikut dan memulai ulang sistem.\n\nmountvol.exe /E</entry>
<entry lang="id" key="SYS_ASSIGN_DRIVE_LETTER">Silakan tetapkan surat drive ke partisi /perangkat sebelum melanjutkan ('Control Panel' &gt; 'System and Maintenance' &gt; 'Administrative Tools' - 'Buat dan format partisi hard disk').\n\nNote bahwa ini adalah persyaratan dari sistem operasi.</entry>
<entry lang="id" key="MOUNT_TC_VOLUME">Volume Mount VeraCrypt</entry>
<entry lang="id" key="UNMOUNT_ALL_TC_VOLUMES">Lepas kait semua volume VeraCrypt</entry>
<entry lang="id" key="DISMOUNT_ALL_TC_VOLUMES">Lepas kait semua volume VeraCrypt</entry>
<entry lang="id" key="UAC_INIT_ERROR">VeraCrypt gagal mendapatkan hak Administrator.</entry>
<entry lang="id" key="ERR_ACCESS_DENIED">Akses ditolak oleh sistem operasi. \n \nPossible penyebab: Sistem operasi mengharuskan Anda telah membaca / menulis izin (atau hak administrator) untuk folder, file, dan perangkat tertentu, agar Anda diizinkan untuk membaca dan menulis data ke / dari mereka. Biasanya, pengguna tanpa hak administrator diizinkan untuk membuat, membaca, dan memodifikasi file di folder Dokumennya.</entry>
<entry lang="id" key="SECTOR_SIZE_UNSUPPORTED">Kesalahan: Drive menggunakan ukuran sektor yang tidak didukung.\n\n Saat ini tidak mungkin untuk membuat volume partisi / perangkat yang dihosting pada drive yang menggunakan sektor yang lebih besar dari 4096 byte. Namun, perhatikan bahwa Anda dapat membuat volume file-hosted (kontainer) pada drive tersebut.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="id" key="HIDDEN_OS_CREATION_PREINFO_HELP">Pada langkah selanjutnya, VeraCrypt akan membuat sistem operasi tersembunyi dengan menyalin konten partisi sistem ke volume tersembunyi (data yang disalin akan dienkripsi sambil jalan dengan kunci enkripsi yang berbeda dari yang akan digunakan untuk sistem operasi umpan).\n\nHarap perhatikan bahwa proses akan dilaksanakan dalam lingkungan pra boot (sebelum Windows dimulai) dan mungkin makan waktu lama untuk selesai; beberapa jam atau bahkan beberapa hari (tergantung pada ukuran partisi sistem dan kinerja komputer Anda).\n\nAnda akan dapat menginterupsi proses, mematikan komputer Anda, memulai sistem operasi, lalu melanjutkan proses. Namun, jika Anda menginterupsinya, seluruh proses menyalin sistem harus dimulai dari awal (karena konten partisi sistem tidak boleh berubah selama kloning).</entry>
<entry lang="id" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">Apakah Anda ingin membatalkan seluruh proses pembuatan sistem operasi tersembunyi?\n\nNote: Anda TIDAK akan dapat melanjutkan proses jika Anda membatalkannya sekarang.</entry>
<entry lang="id" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">Apakah Anda ingin membatalkan pra-uji enkripsi sistem?</entry>
<entry lang="id" key="BOOT_PRETEST_FAILED_RETRY">Pratest enkripsi sistem VeraCrypt gagal. Jika Anda memilih 'Tidak', komponen otentikasi pra-boot akan dihapus.\n\nNotes:\n\n-- Jika VeraCrypt Boot Loader tidak meminta Anda untuk memasukkan kata sandi sebelum Windows dimulai, ada kemungkinan bahwa sistem operasi Anda tidak boot dari drive tempat ia diinstal. Jika Anda menggunakan algoritma enkripsi selain AES dan tes pra-gagal (dan Anda memasukkan kata sandi), itu mungkin disebabkan oleh driver yang dirancang secara tidak tepat. Pilih 'Tidak', dan coba enkripsi partisi / drive sistem lagi, tetapi gunakan algoritma enkripsi AES (yang memiliki persyaratan memori terendah https://veracrypt.jp/en/Troubleshooting.html).</entry>
<entry lang="id" key="BOOT_PRETEST_FAILED_RETRY">Pratest enkripsi sistem VeraCrypt gagal. Jika Anda memilih 'Tidak', komponen otentikasi pra-boot akan dihapus.\n\nNotes:\n\n-- Jika VeraCrypt Boot Loader tidak meminta Anda untuk memasukkan kata sandi sebelum Windows dimulai, ada kemungkinan bahwa sistem operasi Anda tidak boot dari drive tempat ia diinstal. Jika Anda menggunakan algoritma enkripsi selain AES dan tes pra-gagal (dan Anda memasukkan kata sandi), itu mungkin disebabkan oleh driver yang dirancang secara tidak tepat. Pilih 'Tidak', dan coba enkripsi partisi / drive sistem lagi, tetapi gunakan algoritma enkripsi AES (yang memiliki persyaratan memori terendah https://www.veracrypt.fr/en/Troubleshooting.html).</entry>
<entry lang="id" key="SYS_DRIVE_NOT_ENCRYPTED">Partisi / drive sistem tampaknya tidak dienkripsi (tidak sebagian atau seluruhnya).</entry>
<entry lang="id" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">Partisi / drive sistem Anda dienkripsi (sebagian atau seluruhnya). \n \nPlease mendekripsi partisi / drive sistem Anda sepenuhnya sebelum melanjutkan. Untuk melakukannya, pilih 'System' &gt; 'Permanen Decrypt System Partition /Drive' dari bilah menu jendela VeraCrypt utama.</entry>
<entry lang="id" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">Ketika partisi / drive sistem dienkripsi (sebagian atau seluruhnya), Anda tidak dapat menurunkan VeraCrypt (tetapi Anda dapat meningkatkannya atau menginstal ulang versi yang sama).</entry>
@@ -1286,7 +1284,7 @@
<entry lang="id" key="BOOT_PASSWORD_CACHE_KEYBOARD_WARNING">PENTING: Harap dicatat bahwa kata sandi otentikasi pra-boot selalu diketik menggunakan tata letak keyboard standar AS. Oleh karena itu, volume yang menggunakan kata sandi yang diketik menggunakan tata letak keyboard lainnya mungkin tidak mungkin dipasang menggunakan kata sandi otentikasi pra-boot (perhatikan bahwa ini bukan bug di VeraCrypt). Untuk mengizinkan volume tersebut dipasang menggunakan kata sandi autentikasi pra-boot, ikuti langkah-langkah ini:\n\n1) Klik 'Pilih File' atau 'Pilih Perangkat' dan pilih volumenya.\n2) Pilih 'Volume' &gt; 'Ubah Kata Sandi Volume'.\n3) Masukkan kata sandi saat ini untuk volume.\n4) Ubah tata letak keyboard ke bahasa Inggris (AS) dengan mengklik ikon bilah bahasa di bilah tugas Windows dan pilih 'EN English (Amerika Serikat)'.\n5) Di VeraCrypt, di bidang untuk kata sandi baru, ketik kata sandi otentikasi pra-boot.\n6) Konfirmasikan kata sandi baru dengan menghapusnya kembali di bidang konfirmasi dan klik 'OK'.\nWARNING: Harap diingat bahwa jika Anda mengikuti langkah-langkah ini, kata sandi volume akan selalu harus diketik menggunakan tata letak keyboard AS (yang secara otomatis hanya dijamin di lingkungan pra-boot).</entry>
<entry lang="id" key="SYS_FAVORITES_KEYBOARD_WARNING">Volume favorit sistem akan dipasang menggunakan kata sandi otentikasi pra-boot. Jika ada volume favorit sistem yang menggunakan kata sandi yang berbeda, itu tidak akan dipasang.</entry>
<entry lang="id" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Harap dicatat bahwa jika Anda perlu mencegah tindakan volume VeraCrypt normal (seperti 'Turunkan Semua', turun otomatis, dll.) dari mempengaruhi volume favorit sistem, Anda harus mengaktifkan opsi 'Hanya Izinkan administrator untuk melihat dan menurunkan volume favorit sistem di VeraCrypt'. Selain itu, ketika VeraCrypt dijalankan tanpa hak administrator (default pada Windows Vista dan yang lebih baru), volume favorit sistem tidak akan ditampilkan dalam daftar huruf drive di jendela aplikasi VeraCrypt utama.</entry>
<entry lang="id" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">PENTING: Harap diingat bahwa jika opsi ini diaktifkan dan VeraCrypt tidak memiliki hak administrator, volume favorit sistem yang dipasang TIDAK ditampilkan di jendela aplikasi VeraCrypt dan tidak dapat diturunkan. Oleh karena itu, jika Anda perlu misalnya untuk turunkan volume favorit sistem, silakan klik kanan ikon VeraCrypt (di menu Mulai) dan pilih 'Jalankan sebagai administrator' terlebih dahulu. Batasan yang sama berlaku untuk fungsi 'Unmount All', fungsi 'Auto-Unmount', tombol panas 'Turunkan Semua', dll.</entry>
<entry lang="id" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">PENTING: Harap diingat bahwa jika opsi ini diaktifkan dan VeraCrypt tidak memiliki hak administrator, volume favorit sistem yang dipasang TIDAK ditampilkan di jendela aplikasi VeraCrypt dan tidak dapat diturunkan. Oleh karena itu, jika Anda perlu misalnya untuk turunkan volume favorit sistem, silakan klik kanan ikon VeraCrypt (di menu Mulai) dan pilih 'Jalankan sebagai administrator' terlebih dahulu. Batasan yang sama berlaku untuk fungsi 'Dismount All', fungsi 'Auto-Dismount', tombol panas 'Turunkan Semua', dll.</entry>
<entry lang="id" key="SETTING_REQUIRES_REBOOT">Perhatikan bahwa pengaturan ini berlaku hanya setelah sistem operasi dimulai ulang.</entry>
<entry lang="id" key="COMMAND_LINE_ERROR">Galat saat mengurai opsi baris perintah:</entry>
<entry lang="id" key="RESCUE_DISK">Disk Penyelamatan</entry>
@@ -1306,8 +1304,8 @@
<entry lang="id" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Perhatikan bahwa jumlah thread saat ini terbatas, yang akan mempengaruhi hasil benchmark (kinerja yang lebih buruk). \n \nUntuk memanfaatkan potensi penuh dari prosesor (s), pilih 'Settings' &gt; 'Performance' dan menonaktifkan opsi yang sesuai.</entry>
<entry lang="id" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">Apakah Anda ingin VeraCrypt mencoba menonaktifkan perlindungan tulis partisi/drive?</entry>
<entry lang="id" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">PERINGATAN: Pengaturan ini dapat menurunkan kinerja.\n\nApakah Anda yakin ingin menggunakan pengaturan ini?</entry>
<entry lang="id" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Peringatan: Volume VeraCrypt dilepas kait secara otomatis</entry>
<entry lang="id" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Sebelum Anda secara fisik menghapus atau mematikan perangkat yang berisi volume yang dipasang, Anda harus selalu menurunkan volume di VeraCrypt terlebih dahulu.</entry>
<entry lang="id" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Peringatan: Volume VeraCrypt dilepas kait secara otomatis</entry>
<entry lang="id" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Sebelum Anda secara fisik menghapus atau mematikan perangkat yang berisi volume yang dipasang, Anda harus selalu menurunkan volume di VeraCrypt terlebih dahulu.</entry>
<entry lang="id" key="UNSUPPORTED_TRUECRYPT_FORMAT">Volume ini dibuat dengan TrueCrypt %x.%x tetapi VeraCrypt hanya mendukung volume TrueCrypt yang dibuat dengan seri TrueCrypt 6.x/7.x.</entry>
<entry lang="id" key="TEST">Tes</entry>
<entry lang="id" key="KEYFILE">Berkas kunci</entry>
@@ -1453,7 +1451,7 @@
<entry lang="id" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Tambahkan Semua Volume yang Dipasang ke Favorit...</entry>
<entry lang="id" key="TASKICON_PREF_MENU_ITEMS">Item Menu Ikon Tugas</entry>
<entry lang="id" key="TASKICON_PREF_OPEN_VOL">Buka Volume Terpasang</entry>
<entry lang="id" key="TASKICON_PREF_UNMOUNT_VOL">Turunkan Volume yang Dipasang</entry>
<entry lang="id" key="TASKICON_PREF_DISMOUNT_VOL">Turunkan Volume yang Dipasang</entry>
<entry lang="id" key="DISK_FREE">Ruang kosong yang tersedia: {0}</entry>
<entry lang="id" key="VOLUME_SIZE_HELP">Harap tentukan ukuran wadah yang akan dibuat. Perhatikan bahwa ukuran minimum volume yang mungkin adalah 292 KiB.</entry>
<entry lang="id" key="LINUX_CONFIRM_INNER_VOLUME_CALC">PERINGATAN: Anda telah memilih sistem file selain FAT untuk volume luar.\nPlease Catatan bahwa dalam hal ini VeraCrypt tidak dapat menghitung ukuran maksimum maksimum yang diizinkan untuk volume tersembunyi dan hanya akan menggunakan estimasi yang bisa salah.\nThus, adalah tanggung jawab Anda untuk menggunakan nilai yang memadai untuk ukuran volume tersembunyi sehingga tidak tumpang tindih dengan volume luar. sistem file yang dipilih untuk volume luar?</entry>
@@ -1483,14 +1481,14 @@
<entry lang="id" key="LINUX_DO_NOT_MOUNT">Jangan mount</entry>
<entry lang="id" key="LINUX_MOUNT_AT_DIR">Mount di direktori:</entry>
<entry lang="id" key="LINUX_SELECT">Pi&amp;lih...</entry>
<entry lang="id" key="LINUX_UNMOUNT_ALL_WHEN">Turunkan Semua Volume Saat</entry>
<entry lang="id" key="LINUX_DISMOUNT_ALL_WHEN">Turunkan Semua Volume Saat</entry>
<entry lang="id" key="LINUX_ENTERING_POWERSAVING">Sistem memasuki mode hemat daya</entry>
<entry lang="id" key="LINUX_LOGIN_ACTION">Tindakan yang Harus Dilakukan saat Pengguna Log On</entry>
<entry lang="id" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Tutup semua jendela volume Explorer yang turun</entry>
<entry lang="id" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Tutup semua jendela volume Explorer yang turun</entry>
<entry lang="id" key="LINUX_HOTKEYS">Kunci pintas</entry>
<entry lang="id" key="LINUX_SYSTEM_HOTKEYS">Hotkeys Lebar Sistem</entry>
<entry lang="id" key="LINUX_SOUND_NOTIFICATION">Memutar suara pemberitahuan sistem setelah mount/unmount</entry>
<entry lang="id" key="LINUX_CONFIRM_AFTER_UNMOUNT">Menampilkan kotak pesan konfirmasi setelah turun</entry>
<entry lang="id" key="LINUX_SOUND_NOTIFICATION">Memutar suara pemberitahuan sistem setelah mount/dismount</entry>
<entry lang="id" key="LINUX_CONFIRM_AFTER_DISMOUNT">Menampilkan kotak pesan konfirmasi setelah turun</entry>
<entry lang="id" key="LINUX_VC_QUITS">VeraCrypt berhenti</entry>
<entry lang="id" key="LINUX_OPEN_FINDER">Buka jendela Finder untuk volume yang berhasil dipasang</entry>
<entry lang="id" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Harap dicatat bahwa pengaturan ini berlaku hanya jika penggunaan layanan kriptografi kernel dinonaktifkan.</entry>
@@ -1522,172 +1520,53 @@
<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>
<entry lang="id" key="LINUX_VOL_DISMOUNTED">Volume {0} telah turun.</entry>
<entry lang="id" key="LINUX_OOM">Kehabisan memori.</entry>
<entry lang="id" key="LINUX_CANT_GET_ADMIN_PRIV">Gagal mendapatkan hak administrator.</entry>
<entry lang="id" key="LINUX_CANT_GET_ADMIN_PRIV">Gagal mendapatkan hak administrator</entry>
<entry lang="id" key="LINUX_COMMAND_GET_ERROR">Perintah {0} mengembalikan kesalahan {1}.</entry>
<entry lang="id" key="LINUX_CMD_HELP">Bantuan Baris Perintah VeraCrypt.</entry>
<entry lang="id" key="LINUX_HIDDEN_FILES_PRESENT_IN_KEYFILE_PATH">\n\nPeringatan: Berkas tersembunyi ada di jalur berkas kunci. Jika Anda perlu menggunakannya sebagai berkas kunci, hapus titik di awal nama berkasnya. Berkas tersembunyi hanya terlihat jika diaktifkan pada opsi sistem.</entry>
<entry lang="id" key="LINUX_EX2MSG_DEVICESECTORSIZEMISMATCH">Ketidakcocokan ukuran sektor antara perangkat penyimpanan dan volume VC.</entry>
<entry lang="id" key="LINUX_EX2MSG_ENCRYPTEDSYSTEMREQUIRED">Operasi ini harus dilakukan hanya ketika sistem yang di-host pada volume tersebut sedang berjalan.</entry>
<entry lang="id" key="LINUX_CMD_HELP">Bantuan Baris Perintah VeraCrypt</entry>
<entry lang="id" key="LINUX_HIDDEN_FILES_PRESENT_IN_KEYFILE_PATH">\n\nWarning: File tersembunyi hadir dalam jalur keyfile. Jika Anda perlu menggunakannya sebagai keyfiles, hapus titik terdepan dari nama file mereka. File tersembunyi hanya terlihat jika diaktifkan dalam opsi sistem.</entry>
<entry lang="id" key="LINUX_EX2MSG_DEVICESECTORSIZEMISMATCH">Perangkat penyimpanan dan ketidakcocokan ukuran sektor volume VC</entry>
<entry lang="id" key="LINUX_EX2MSG_ENCRYPTEDSYSTEMREQUIRED">Operasi ini harus dilakukan hanya ketika sistem yang dihosting pada volume berjalan.</entry>
<entry lang="id" key="LINUX_EX2MSG_INSUFFICIENTDATA">Tidak cukup data yang tersedia.</entry>
<entry lang="id" key="LINUX_EX2MSG_KERNELCRYPTOSERVICETESTFAILED">Uji layanan kriptografi kernel gagal. Layanan kriptografi kernel Anda kemungkinan besar tidak mendukung volume yang lebih besar dari 2 TB.\n\nSolusi yang mungkin:\n- Tingkatkan kernel Linux ke versi 2.6.33 atau yang lebih baru.\n- Nonaktifkan penggunaan layanan kriptografi kernel (Pengaturan &gt; Preferensi &gt; Integrasi Sistem) atau gunakan opsi kait 'nokernelcrypto' pada baris perintah.</entry>
<entry lang="id" key="LINUX_EX2MSG_KERNELCRYPTOSERVICETESTFAILED">Uji layanan kriptografi kernel gagal. Layanan kriptografi kernel Anda kemungkinan besar tidak mendukung volume yang lebih besar dari 2 TB.\n\nPossible solutions:\n- Upgrade kernel Linux ke versi 2.6.33 atau yang lebih baru.\n- Nonaktifkan penggunaan layanan kriptografi kernel (Pengaturan &gt; Preferences &gt; System Integration) atau gunakan opsi mount 'nokernelcrypto' pada baris perintah.</entry>
<entry lang="id" key="LINUX_EX2MSG_LOOPDEVICESETUPFAILED">Gagal menyiapkan perangkat loop.</entry>
<entry lang="id" key="LINUX_EX2MSG_MISSINGARGUMENT">Argumen yang diperlukan tidak ada.</entry>
<entry lang="id" key="LINUX_EX2MSG_MISSINGARGUMENT">Argumen yang diperlukan kurang.</entry>
<entry lang="id" key="LINUX_EX2MSG_MISSINGVOLUMEDATA">Data volume hilang.</entry>
<entry lang="id" key="LINUX_EX2MSG_MOUNTPOINTREQUIRED">Titik kait diperlukan.</entry>
<entry lang="id" key="LINUX_EX2MSG_MOUNTPOINTUNAVAILABLE">Titik kait sudah digunakan.</entry>
<entry lang="id" key="LINUX_EX2MSG_PASSWORDEMPTY">Tidak ada kata sandi atau berkas kunci yang ditentukan.</entry>
<entry lang="id" key="LINUX_EX2MSG_PASSWORDORKEYBOARDLAYOUTINCORRECT">\n\nPerhatikan bahwa kata sandi autentikasi pra-boot perlu diketik dalam lingkungan pra-boot di mana tata letak papan ketik non-AS tidak tersedia. Oleh karena itu, kata sandi autentikasi pra-boot harus selalu diketik menggunakan tata letak papan ketik standar AS (jika tidak, kata sandi akan diketik secara tidak benar dalam banyak kasus). Namun, perhatikan bahwa Anda TIDAK memerlukan papan ketik AS yang nyata; Anda hanya perlu mengubah tata letak papan ketik di sistem operasi Anda.</entry>
<entry lang="id" key="LINUX_EX2MSG_PASSWORDORMOUNTOPTIONSINCORRECT">\n\nCatatan: Jika Anda mencoba mengaitkan partisi yang terletak pada drive sistem terenkripsi tanpa autentikasi pra-boot atau untuk mengaitkan partisi sistem terenkripsi dari sistem operasi yang tidak berjalan, Anda dapat melakukannya dengan memilih 'Opsi &gt;' &gt; 'Kaitkan partisi menggunakan enkripsi sistem'.</entry>
<entry lang="id" key="LINUX_EX2MSG_PASSWORDTOOLONG">Kata sandi lebih panjang dari {0} karakter.</entry>
<entry lang="id" key="LINUX_EX2MSG_MOUNTPOINTREQUIRED">Titik gunung diperlukan.</entry>
<entry lang="id" key="LINUX_EX2MSG_MOUNTPOINTUNAVAILABLE">Titik mount sudah digunakan.</entry>
<entry lang="id" key="LINUX_EX2MSG_PASSWORDEMPTY">Tidak ada kata sandi atau berkas kunci yang dinyatakan.</entry>
<entry lang="id" key="LINUX_EX2MSG_PASSWORDORKEYBOARDLAYOUTINCORRECT">\n\nNote bahwa kata sandi otentikasi pra-boot perlu diketik dalam lingkungan pra-boot di mana tata letak keyboard non-AS tidak tersedia. Oleh karena itu, kata sandi otentikasi pra-boot harus selalu diketik menggunakan tata letak keyboard standar AS (jika tidak, kata sandi akan diketik secara tidak benar dalam banyak kasus). Namun, perhatikan bahwa Anda TIDAK memerlukan keyboard AS yang nyata; Anda hanya perlu mengubah tata letak keyboard di sistem operasi Anda.</entry>
<entry lang="id" key="LINUX_EX2MSG_PASSWORDORMOUNTOPTIONSINCORRECT">\n\nNote: Jika Anda mencoba me-mount partisi yang terletak pada drive sistem terenkripsi tanpa otentikasi pra-boot atau untuk me-mount partisi sistem terenkripsi dari sistem operasi yang tidak berjalan, Anda dapat melakukannya dengan memilih 'Options &gt;' &gt; 'Mount partition using system encryption'.</entry>
<entry lang="id" key="LINUX_EX2MSG_PASSWORDTOOLONG">Kata sandi lebih panjang dari karakter {0}.</entry>
<entry lang="id" key="LINUX_EX2MSG_PARTITIONDEVICEREQUIRED">Perangkat partisi diperlukan.</entry>
<entry lang="id" key="LINUX_EX2MSG_PROTECTIONPASSWORDINCORRECT">Kata sandi yang salah untuk volume tersembunyi yang dilindungi atau volume tersembunyi tidak ada.</entry>
<entry lang="id" key="LINUX_EX2MSG_PROTECTIONPASSWORDKEYFILESINCORRECT">Berkas kunci dan/atau kata sandi yang salah untuk volume tersembunyi yang dilindungi atau volume tersembunyi tidak ada.</entry>
<entry lang="id" key="LINUX_EX2MSG_PROTECTIONPASSWORDINCORRECT">Kata sandi yang salah untuk volume tersembunyi terproteksi atau volume tersembunyi tidak ada.</entry>
<entry lang="id" key="LINUX_EX2MSG_PROTECTIONPASSWORDKEYFILESINCORRECT">Berkas kunci dan/atau kata sandi ke volume tersembunyi terproteksi yang salah atau volume tersembunyi tidak ada.</entry>
<entry lang="id" key="LINUX_EX2MSG_STRINGCONVERSIONFAILED">Karakter yang tidak valid ditemui.</entry>
<entry lang="id" key="LINUX_EX2MSG_STRINGFORMATTEREXCEPTION">Galat saat mengurai string terformat.</entry>
<entry lang="id" key="LINUX_EX2MSG_TEMPORARYDIRECTORYFAILURE">Gagal membuat berkas atau direktori di direktori sementara.\n\nHarap pastikan bahwa direktori sementara ada, izin keamanannya memungkinkan Anda mengaksesnya, dan ada ruang disk yang cukup.</entry>
<entry lang="id" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZEHIDDENVOLUMEPROTECTION">Kesalahan: Drive menggunakan ukuran sektor selain 512 byte.\n\nKarena keterbatasan komponen yang tersedia di platform Anda, volume luar yang di-host pada drive tidak dapat dikaitkan menggunakan perlindungan volume tersembunyi.\n\nSolusi yang mungkin:\n- Gunakan drive dengan sektor 512-byte.\n- Buat volume berbasis berkas (wadah) pada drive.\n- Cadangkan isi volume tersembunyi dan kemudian perbarui volume luar.</entry>
<entry lang="id" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZENOKERNELCRYPTO">Kesalahan: Drive menggunakan ukuran sektor selain 512 byte.\n\nKarena keterbatasan komponen yang tersedia di platform Anda, volume berbasis partisi/perangkat yang di-host pada drive hanya dapat dikaitkan menggunakan layanan kriptografi kernel.\n\nSolusi yang mungkin:\n- Aktifkan penggunaan layanan kriptografi kernel (Preferensi &gt; Integrasi Sistem).\n- Gunakan drive dengan sektor 512-byte.\n- Buat volume berbasis berkas (wadah) pada drive.</entry>
<entry lang="id" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Kesalahan: Drive menggunakan ukuran sektor selain 512 byte.\n\nKarena keterbatasan komponen yang tersedia di platform Anda, volume berbasis partisi/perangkat yang di-host tidak dapat dibuat/digunakan pada drive.\n\nSolusi yang mungkin:\n- Buat volume berbasis berkas (wadah) pada drive.\n- Gunakan drive dengan sektor 512-byte.\n- Gunakan VeraCrypt pada platform lain.</entry>
<entry lang="id" key="LINUX_EX2MSG_TEMPORARYDIRECTORYFAILURE">Gagal membuat file atau direktori di direktori sementara.\n\nPlease pastikan bahwa direktori sementara ada, izin keamanannya memungkinkan Anda mengaksesnya, dan ada ruang disk yang cukup.</entry>
<entry lang="id" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZEHIDDENVOLUMEPROTECTION">Kesalahan: Drive menggunakan ukuran sektor selain 512 byte.\n\nDue untuk keterbatasan komponen yang tersedia di platform Anda, volume luar yang dihosting pada drive tidak dapat dipasang menggunakan perlindungan volume tersembunyi.\n\n Solusi Yang Dapat diakses:\n- Gunakan drive dengan sektor 512-byte.\n- Buat volume file-hosted (kontainer) pada drive.\n-Backup isi volume tersembunyi dan kemudian perbarui volume luar.</entry>
<entry lang="id" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZENOKERNELCRYPTO">Kesalahan: Drive menggunakan ukuran sektor selain 512 byte.\n\nDue untuk keterbatasan komponen yang tersedia di platform Anda, volume partisi / perangkat yang dihosting pada drive hanya dapat dipasang menggunakan layanan kriptografi kernel.\n\n Solusi Yang Dapat diakses:\n- Aktifkan penggunaan layanan kriptografi kernel (Preferensi &gt; Integrasi Sistem).\n- Gunakan drive dengan sektor 512-byte.\n- Buat volume file-hosted (kontainer) pada drive.</entry>
<entry lang="id" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Kesalahan: Drive menggunakan ukuran sektor selain 512 byte.\n\nDue untuk keterbatasan komponen yang tersedia di platform Anda, volume partisi / perangkat yang dihosting tidak dapat dibuat / digunakan pada drive.\n\nPossible solutions:\n- Buat volume file-hosted (container) pada drive.\n- Gunakan drive dengan sektor 512-byte.\n- Gunakan VeraCrypt pada platform lain.</entry>
<entry lang="id" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">Berkas/perangkat host sudah digunakan.</entry>
<entry lang="id" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Slot volume tidak tersedia.</entry>
<entry lang="id" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt membutuhkan macFUSE 2.5 atau lebih tinggi.</entry>
<entry lang="id" key="EXCEPTION_OCCURRED">Terjadi eksepsi.</entry>
<entry lang="id" key="ENTER_PASSWORD">Masukkan kata sandi.</entry>
<entry lang="id" key="ENTER_TC_VOL_PASSWORD">Masukkan Kata Sandi Volume VeraCrypt.</entry>
<entry lang="id" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt membutuhkan OSXFUSE 2.5 atau lebih tinggi.</entry>
<entry lang="id" key="EXCEPTION_OCCURRED">Terjadi eksepsi</entry>
<entry lang="id" key="ENTER_PASSWORD">Masukkan kata sandi</entry>
<entry lang="id" key="ENTER_TC_VOL_PASSWORD">Masukkan Kata Sandi Volume VeraCrypt</entry>
<entry lang="id" key="MOUNT">Kait</entry>
<entry lang="id" key="MOUNT_POINT">Kait Direktori</entry>
<entry lang="id" key="NO_VOLUMES_MOUNTED">Tidak ada volume yang dikaitkan.</entry>
<entry lang="id" key="OPEN_NEW_VOLUME">Tentukan Volume VeraCrypt Baru.</entry>
<entry lang="id" key="PARAMETER_INCORRECT">Parameter salah.</entry>
<entry lang="id" key="SELECT_KEYFILES">Pilih Berkas Kunci.</entry>
<entry lang="id" key="START_TC">Mulai VeraCrypt.</entry>
<entry lang="id" key="VOLUME_ALREADY_MOUNTED">Volume {0} sudah dikaitkan.</entry>
<entry lang="id" key="UNKNOWN_OPTION">Opsi tidak dikenal.</entry>
<entry lang="id" key="VOLUME_LOCATION">Lokasi Volume.</entry>
<entry lang="id" key="VOLUME_HOST_IN_USE">PERINGATAN: Berkas/perangkat host {0} sudah digunakan!\n\nMengabaikan ini dapat menyebabkan hasil yang tidak diinginkan termasuk ketidakstabilan sistem. Semua aplikasi yang mungkin menggunakan berkas/perangkat host harus ditutup sebelum mengaitkan volume.\n\nLanjutkan mengaitkan?</entry>
<entry lang="id" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt sebelumnya diinstal menggunakan paket MSI sehingga tidak dapat diperbarui menggunakan penginstal standar.\n\nSilakan gunakan paket MSI untuk memperbarui instalasi VeraCrypt Anda.</entry>
<entry lang="id" key="IDC_USE_ALL_FREE_SPACE">Gunakan semua ruang kosong yang tersedia</entry>
<entry lang="id" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">VeraCrypt tidak dapat ditingkatkan karena partisi/drive sistem dienkripsi menggunakan algoritme yang tidak lagi didukung.\nSilakan dekripsi sistem Anda sebelum meningkatkan VeraCrypt lalu enkripsi kembali.</entry>
<entry lang="id" key="LINUX_EX2MSG_TERMINALNOTFOUND">Aplikasi terminal yang didukung tidak dapat ditemukan, Anda memerlukan xterm, konsole, atau gnome-terminal (dengan dbus-x11).</entry>
<entry lang="id" key="IDM_MOUNT_NO_CACHE">Kait Tanpa Cache</entry>
<entry lang="id" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nPerluas volume VeraCrypt secara langsung tanpa memformat ulang\n\n\nSemua jenis volume (berkas wadah, disk, dan partisi) yang diformat dengan NTFS didukung. Satu-satunya syarat adalah harus ada ruang kosong yang cukup pada drive atau perangkat host volume VeraCrypt.\n\nJangan gunakan perangkat lunak ini untuk memperluas volume luar yang berisi volume tersembunyi, karena ini akan menghancurkan volume tersembunyi!\n</entry>
<entry lang="id" key="IDC_STEPSEXPAND">1. Pilih volume VeraCrypt yang akan diperluas\n2. Klik tombol 'Kait'</entry>
<entry lang="id" key="IDT_VOL_NAME">Volume: </entry>
<entry lang="id" key="IDT_FILE_SYS">Sistem berkas: </entry>
<entry lang="id" key="IDT_CURRENT_SIZE">Ukuran saat ini: </entry>
<entry lang="id" key="IDT_NEW_SIZE">Ukuran baru: </entry>
<entry lang="id" key="IDT_NEW_SIZE_BOX_TITLE">Masukkan ukuran volume baru</entry>
<entry lang="id" key="IDC_INIT_NEWSPACE">Isi ruang baru dengan data acak</entry>
<entry lang="id" key="IDC_QUICKEXPAND">Perluas Cepat</entry>
<entry lang="id" key="IDT_INIT_SPACE">Isi ruang baru: </entry>
<entry lang="id" key="EXPANDER_FREE_SPACE">%s ruang kosong tersedia di drive host.</entry>
<entry lang="id" key="EXPANDER_HELP_DEVICE">Ini adalah volume VeraCrypt berbasis perangkat.\n\nUkuran volume baru akan dipilih secara otomatis sesuai ukuran perangkat host.</entry>
<entry lang="id" key="EXPANDER_HELP_FILE">Silakan tentukan ukuran baru volume VeraCrypt (harus setidaknya %I64u KB lebih besar dari ukuran saat ini).</entry>
<entry lang="id" key="QUICK_EXPAND_WARNING">PERINGATAN: Anda sebaiknya hanya menggunakan Perluas Cepat dalam kasus berikut:\n\n1) Perangkat tempat berkas wadah berada tidak berisi data sensitif dan Anda tidak memerlukan penyangkalan yang masuk akal.\n2) Perangkat tempat berkas wadah berada sudah dienkripsi dengan aman dan sepenuhnya.\n\nApakah Anda yakin ingin menggunakan Perluas Cepat?</entry>
<entry lang="id" key="EXPANDER_STATUS_TEXT">PENTING: Gerakkan tetikus Anda seacak mungkin di dalam jendela ini. Semakin lama Anda menggerakkannya, semakin baik. Ini secara signifikan meningkatkan kekuatan kriptografi kunci enkripsi. Setelah itu, klik 'Lanjutkan' untuk memperluas volume.</entry>
<entry lang="id" key="EXPANDER_STATUS_TEXT_LEGACY">Klik 'Lanjutkan' untuk memperluas volume.</entry>
<entry lang="id" key="EXPANDER_FINISH_ERROR">Kesalahan: perluasan volume gagal.</entry>
<entry lang="id" key="EXPANDER_FINISH_ABORT">Kesalahan: operasi dibatalkan oleh pengguna.</entry>
<entry lang="id" key="EXPANDER_FINISH_OK">Selesai. Volume berhasil diperluas.</entry>
<entry lang="id" key="EXPANDER_CANCEL_WARNING">Peringatan: Proses perluasan volume sedang berlangsung!\n\nMenghentikan sekarang dapat menyebabkan volume rusak.\n\nApakah Anda yakin ingin membatalkan?</entry>
<entry lang="id" key="EXPANDER_STARTING_STATUS">Memulai perluasan volume ...\n</entry>
<entry lang="id" key="EXPANDER_HIDDEN_VOLUME_ERROR">Volume luar yang berisi volume tersembunyi tidak dapat diperluas, karena ini akan menghancurkan volume tersembunyi.\n</entry>
<entry lang="id" key="EXPANDER_SYSTEM_VOLUME_ERROR">Volume sistem VeraCrypt tidak dapat diperluas.</entry>
<entry lang="id" key="EXPANDER_NO_FREE_SPACE">Ruang kosong tidak cukup untuk memperluas volume.</entry>
<entry lang="id" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Peringatan: Berkas wadah lebih besar dari area volume VeraCrypt. Data setelah area volume VeraCrypt akan ditimpa.\n\nApakah Anda ingin melanjutkan?</entry>
<entry lang="id" key="EXPANDER_WARNING_FAT">Peringatan: Volume VeraCrypt berisi sistem berkas FAT!\n\nHanya volume VeraCrypt itu sendiri yang akan diperluas, bukan sistem berkasnya.\n\nApakah Anda ingin melanjutkan?</entry>
<entry lang="id" key="EXPANDER_WARNING_EXFAT">Peringatan: Volume VeraCrypt berisi sistem berkas exFAT!\n\nHanya volume VeraCrypt itu sendiri yang akan diperluas, bukan sistem berkasnya.\n\nApakah Anda ingin melanjutkan?</entry>
<entry lang="id" key="EXPANDER_WARNING_UNKNOWN_FS">Peringatan: Volume VeraCrypt berisi sistem berkas yang tidak dikenal atau tidak ada sistem berkas!\n\nHanya volume VeraCrypt itu sendiri yang akan diperluas, sistem berkas tetap tidak berubah.\n\nApakah Anda ingin melanjutkan?</entry>
<entry lang="id" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">Ukuran volume baru terlalu kecil, harus setidaknya %I64u KiB lebih besar dari ukuran saat ini.</entry>
<entry lang="id" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">Ukuran volume baru terlalu besar, ruang di drive host tidak mencukupi.</entry>
<entry lang="id" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Ukuran berkas maksimum %I64u MB pada drive host terlampaui.</entry>
<entry lang="id" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Kesalahan: Gagal mendapatkan hak istimewa yang diperlukan untuk mengaktifkan Perluas Cepat!\nSilakan hapus centang opsi Perluas Cepat dan coba lagi.</entry>
<entry lang="id" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Ukuran maksimum volume VeraCrypt sebesar %I64u TB terlampaui!\n</entry>
<entry lang="id" key="FULL_FORMAT">Format Penuh</entry>
<entry lang="id" key="FAST_CREATE">Buat Cepat</entry>
<entry lang="id" key="WARN_FAST_CREATE">PERINGATAN: Anda sebaiknya hanya menggunakan Buat Cepat dalam kasus berikut:\n\n1) Perangkat tidak berisi data sensitif dan Anda tidak memerlukan penyangkalan yang masuk akal.\n2) Perangkat sudah dienkripsi dengan aman dan sepenuhnya.\n\nApakah Anda yakin ingin menggunakan Buat Cepat?</entry>
<entry lang="id" key="IDC_ENABLE_EMV_SUPPORT">Aktifkan Dukungan EMV</entry>
<entry lang="id" key="COMMAND_APDU_INVALID">Perintah APDU yang dikirim ke kartu tidak valid.</entry>
<entry lang="id" key="EXTENDED_APDU_UNSUPPORTED">Perintah APDU diperluas tidak dapat digunakan dengan token saat ini.</entry>
<entry lang="id" key="SCARD_MODULE_INIT_FAILED">Kesalahan saat memuat pustaka WinSCard / PCSC.</entry>
<entry lang="id" key="EMV_UNKNOWN_CARD_TYPE">Kartu di pembaca bukan kartu EMV yang didukung.</entry>
<entry lang="id" key="EMV_SELECT_AID_FAILED">AID dari kartu di pembaca tidak dapat dipilih.</entry>
<entry lang="id" key="EMV_ICC_CERT_NOTFOUND">Sertifikat Kunci Publik ICC tidak ditemukan di kartu.</entry>
<entry lang="id" key="EMV_ISSUER_CERT_NOTFOUND">Sertifikat Kunci Publik Penerbit tidak ditemukan di kartu.</entry>
<entry lang="id" key="EMV_CPLC_NOTFOUND">CPLC tidak ditemukan di kartu EMV.</entry>
<entry lang="id" key="EMV_PAN_NOTFOUND">Tidak ditemukan Nomor Rekening Utama (PAN) di kartu EMV.</entry>
<entry lang="id" key="INVALID_EMV_PATH">Jalur EMV tidak valid.</entry>
<entry lang="id" key="EMV_KEYFILE_DATA_NOTFOUND">Tidak dapat membuat berkas kunci dari data kartu EMV.\n\nSalah satu dari berikut ini hilang:\n- Sertifikat Kunci Publik ICC.\n- Sertifikat Kunci Publik Penerbit.\n- Data CPLC.</entry>
<entry lang="id" key="SCARD_W_REMOVED_CARD">Tidak ada kartu di pembaca.\n\nHarap pastikan kartu sudah terpasang dengan benar.</entry>
<entry lang="id" key="FORMAT_EXTERNAL_FAILED">Perintah format.com Windows gagal memformat volume sebagai NTFS/exFAT/ReFS: Kesalahan 0x%.8X.\n\nMenggunakan Windows FormatEx API sebagai alternatif.</entry>
<entry lang="id" key="FORMATEX_API_FAILED">Windows FormatEx API gagal memformat volume sebagai NTFS/exFAT/ReFS.\n\nStatus kegagalan = %s.</entry>
<entry lang="id" key="EXPANDER_WRITING_RANDOM_DATA">Menulis data acak ke ruang baru ...\n</entry>
<entry lang="id" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Menulis header cadangan terenkripsi ulang ...\n</entry>
<entry lang="id" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Menulis header utama terenkripsi ulang ...\n</entry>
<entry lang="id" key="EXPANDER_WIPING_OLD_HEADER">Menghapus header cadangan lama ...\n</entry>
<entry lang="id" key="EXPANDER_MOUNTING_VOLUME">Mengaitkan volume ...\n</entry>
<entry lang="id" key="EXPANDER_UNMOUNTING_VOLUME">Melepas kait volume ...\n</entry>
<entry lang="id" key="EXPANDER_EXTENDING_FILESYSTEM">Memperluas sistem berkas ...\n</entry>
<entry lang="id" key="PARTIAL_SYSENC_MOUNT_READONLY">Peringatan: Partisi sistem yang Anda coba kaitkan tidak terenkripsi sepenuhnya. Sebagai langkah pengamanan untuk mencegah potensi kerusakan atau modifikasi yang tidak diinginkan, volume '%s' dikaitkan sebagai hanya-baca.</entry>
<entry lang="id" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Informasi penting tentang penggunaan ekstensi berkas pihak ketiga</entry>
<entry lang="id" key="IDC_DISABLE_MEMORY_PROTECTION">Nonaktifkan perlindungan memori untuk kompatibilitas alat Aksesibilitas</entry>
<entry lang="id" key="DISABLE_MEMORY_PROTECTION_WARNING">PERINGATAN: Menonaktifkan perlindungan memori secara signifikan mengurangi keamanan. Aktifkan opsi ini HANYA jika Anda bergantung pada alat Aksesibilitas, seperti Pembaca Layar, untuk berinteraksi dengan antarmuka VeraCrypt.</entry>
<entry lang="id" key="LINUX_LANGUAGE">Bahasa</entry>
<entry lang="id" key="LINUX_SELECT_SYS_DEFAULT_LANG">Pilih bahasa default sistem</entry>
<entry lang="id" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">Agar perubahan bahasa berlaku, VeraCrypt perlu dimulai ulang.</entry>
<entry lang="id" key="ERR_XTS_MASTERKEY_VULNERABLE">PERINGATAN: Kunci induk volume rentan terhadap serangan yang mengompromikan keamanan data.\n\nSilakan buat volume baru dan transfer data ke dalamnya.</entry>
<entry lang="id" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">PERINGATAN: Kunci induk sistem terenkripsi rentan terhadap serangan yang mengompromikan keamanan data.\nSilakan dekripsi partisi/drive sistem kemudian enkripsi ulang.</entry>
<entry lang="id" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">PERINGATAN: Kunci induk volume memiliki kerentanan keamanan.</entry>
<entry lang="id" key="MOUNTPOINT_BLOCKED">KESALAHAN: Titik kait volume diblokir karena menimpa direktori sistem yang dilindungi.\n\nSilakan pilih titik kait lain.</entry>
<entry lang="id" key="MOUNTPOINT_NOTALLOWED">KESALAHAN: Titik kait volume tidak diizinkan karena menimpa direktori yang merupakan bagian dari variabel lingkungan PATH.\n\nSilakan pilih titik kait lain.</entry>
<entry lang="id" key="INSECURE_MODE">[MODE TIDAK AMAN]</entry>
<entry lang="id" key="IDC_DISABLE_SCREEN_PROTECTION">Nonaktifkan perlindungan terhadap tangkapan layar dan perekaman layar</entry>
<entry lang="id" key="DISABLE_SCREEN_PROTECTION_WARNING">PERINGATAN: Menonaktifkan perlindungan layar secara signifikan mengurangi keamanan. Aktifkan opsi ini HANYA jika Anda memiliki kebutuhan khusus untuk menangkap antarmuka VeraCrypt. Hal ini dapat mengekspos data sensitif ke alat tangkapan layar dan fitur perekaman layar seperti Windows 11 Recall.</entry>
<entry lang="id" key="MEMORY_COST">Biaya Memori</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_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>
<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="id" key="MOUNT_POINT">Kait Direktori"</entry>
<entry lang="id" key="NO_VOLUMES_MOUNTED">Tidak ada volume yang dikait.</entry>
<entry lang="id" key="OPEN_NEW_VOLUME">Nyatakan Volume VeraCrypt Baru</entry>
<entry lang="id" key="PARAMETER_INCORRECT">Parameter salah</entry>
<entry lang="id" key="SELECT_KEYFILES">Pilih Berkas Kunci</entry>
<entry lang="id" key="START_TC">Mulai VeraCrypt</entry>
<entry lang="id" key="VOLUME_ALREADY_MOUNTED">Volume {0} sudah dikait.</entry>
<entry lang="id" key="UNKNOWN_OPTION">Opsi tak dikenal</entry>
<entry lang="id" key="VOLUME_LOCATION">Lokasi Volume</entry>
<entry lang="id" key="VOLUME_HOST_IN_USE">PERINGATAN: File / perangkat host {0} sudah digunakan! \n\nIgnoring ini dapat menyebabkan hasil yang tidak diinginkan termasuk ketidakstabilan sistem. Semua aplikasi yang mungkin menggunakan file / perangkat host harus ditutup sebelum memasang volume.</entry>
<entry lang="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+58 -179
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
@@ -72,7 +72,7 @@
<entry lang="it" key="IDC_WHOLE_SYS_DRIVE">Codifica l'intero disco</entry>
<entry lang="it" key="IDD_VOL_CREATION_WIZARD_DLG">Creazione guidata volume VeraCrypt</entry>
<entry lang="it" key="IDT_CLUSTER">Cluster</entry>
<entry lang="it" key="IDT_COLLECTING_RANDOM_DATA_NOTE">IMPORTANTE: sposta il mouse il più casualmente possibile dentro questa finestra.\nE' preferibile muovere il mouse per più tempo, perchè aumenta in modo significativo la sicurezza delle chiavi di codifica.\nQuindi fai click su 'Avanti' per continuare</entry>
<entry lang="it" key="IDT_COLLECTING_RANDOM_DATA_NOTE">IMPORTANTE: sposta il mouse il più casualmente possibile entro questa finestra.\nE' preferibile un movimento più lungo perchè aumenta in modo significativo l'effetto delle chiavi di codifica.\nQuindi fai click su 'Avanti' per continuare</entry>
<entry lang="it" key="IDT_CONFIRM">Conferma:</entry>
<entry lang="it" key="IDT_DONE">Fatto</entry>
<entry lang="it" key="IDT_DRIVE_LETTER">Lettera unità:</entry>
@@ -122,21 +122,21 @@
<entry lang="it" key="IDC_ENABLE_HARDWARE_ENCRYPTION">Accelera la codifica/decodifica AES usando le istruzioni AES del processore (se disponibili)</entry>
<entry lang="it" key="IDC_ENABLE_KEYFILES">Usa file chiave</entry>
<entry lang="it" key="IDC_ENABLE_NEW_KEYFILES">Usa file chiave</entry>
<entry lang="it" key="IDC_EXIT">Esci</entry>
<entry lang="it" key="IDC_EXIT">Chiudi</entry>
<entry lang="it" key="IDC_FAVORITES_HELP_LINK">Guida sui volumi preferiti</entry>
<entry lang="it" key="IDC_FAVORITE_DISABLE_HOTKEY">Non montare il volume selezionato quando il tasto di scorciatoia 'Monta volumi preferiti' &amp;viene premuto</entry>
<entry lang="it" key="IDC_FAVORITE_MOUNT_ON_ARRIVAL">Montare il volume selezionato quando la sua periferica ospite viene &amp;connessa</entry>
<entry lang="it" key="IDC_FAVORITE_MOUNT_ON_LOGON">Montare il volume selezionato dopo il log&amp;on</entry>
<entry lang="it" key="IDC_FAVORITE_MOUNT_READONLY">Montare il volume selezionato in sola let&amp;tura</entry>
<entry lang="it" key="IDC_FAVORITE_MOUNT_REMOVABLE">Montare il volume selezionato come Media rimo&amp;vibile</entry>
<entry lang="it" key="IDC_FAVORITE_MOUNT_REMOVABLE">Montare il volume selezionato come ,media rimo&amp;vibile</entry>
<entry lang="it" key="IDC_FAVORITE_MOVE_DOWN">Muovi &amp;giù</entry>
<entry lang="it" key="IDC_FAVORITE_MOVE_UP">Muovi &amp;</entry>
<entry lang="it" key="IDC_FAVORITE_OPEN_EXPLORER_WIN_ON_MOUNT">Aprire la &amp;finestra di explorer per il volume selezionato quando viene montato con successo</entry>
<entry lang="it" key="IDC_FAVORITE_REMOVE">&amp;Rimuovi</entry>
<entry lang="it" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Usa etichetta preferita come Explorer etichetta disco</entry>
<entry lang="it" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Impostazioni globali</entry>
<entry lang="it" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Visualizza messaggio a scomparsa dopo aver correttamente scollegato una hotkey</entry>
<entry lang="it" key="IDC_HK_UNMOUNT_PLAY_SOUND">Riproduci un suono di notifica dopo aver scollegato una hotkey correttamente</entry>
<entry lang="it" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Visualizza messaggio a scomparsa dopo aver correttamente scollegato una hotkey</entry>
<entry lang="it" key="IDC_HK_DISMOUNT_PLAY_SOUND">Riproduci un suono di notifica dopo aver scollegato una hotkey correttamente</entry>
<entry lang="it" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="it" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="it" key="IDC_HK_MOD_SHIFT">Maiusc</entry>
@@ -156,12 +156,12 @@
<entry lang="it" key="IDC_PIM_HELP">(Vuoto o 0 per iterazioni di default)</entry>
<entry lang="it" key="IDC_PREF_BKG_TASK_ENABLE">Attiva</entry>
<entry lang="it" key="IDC_PREF_CACHE_PASSWORDS">Mantieni le password nella cache</entry>
<entry lang="it" key="IDC_PREF_UNMOUNT_INACTIVE">Smontaggio automatico del volume in mancanza di attività successive</entry>
<entry lang="it" key="IDC_PREF_UNMOUNT_LOGOFF">L'utente si disconnette</entry>
<entry lang="it" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">Sessione utente bloccata</entry>
<entry lang="it" key="IDC_PREF_UNMOUNT_POWERSAVING">PC in modo di risparmio energia</entry>
<entry lang="it" key="IDC_PREF_UNMOUNT_SCREENSAVER">Il salvaschermo è attivato</entry>
<entry lang="it" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Forza lo smontaggio automatico anche se il volume contiene dei file o cartelle aperti</entry>
<entry lang="it" key="IDC_PREF_DISMOUNT_INACTIVE">Smontaggio automatico del volume in mancanza di attività successive</entry>
<entry lang="it" key="IDC_PREF_DISMOUNT_LOGOFF">L'utente si disconnette</entry>
<entry lang="it" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">Sessione utente bloccata</entry>
<entry lang="it" key="IDC_PREF_DISMOUNT_POWERSAVING">PC in modo di risparmio energia</entry>
<entry lang="it" key="IDC_PREF_DISMOUNT_SCREENSAVER">Il salvaschermo è attivato</entry>
<entry lang="it" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Forza lo smontaggio automatico anche se il volume contiene dei file o cartelle aperti</entry>
<entry lang="it" key="IDC_PREF_LOGON_MOUNT_DEVICES">Monta tutti i volumi VeraCrypt residenti sulle unità</entry>
<entry lang="it" key="IDC_PREF_LOGON_START">Esegui in background</entry>
<entry lang="it" key="IDC_PREF_MOUNT_READONLY">Monta i volumi in sola lettura</entry>
@@ -169,7 +169,7 @@
<entry lang="it" key="IDC_PREF_OPEN_EXPLORER">Apri la finestra di Esplora risorse dopo aver montato un volume correttamente</entry>
<entry lang="it" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">Temporanea password cache durante le operazioni "Monta Volumi Preferiti"</entry>
<entry lang="it" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Usa un icona diversa nella barra di sistema se ci sono volumi montati</entry>
<entry lang="it" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Azzera le password nella cache allo smontaggio automatico</entry>
<entry lang="it" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Azzera le password nella cache allo smontaggio automatico</entry>
<entry lang="it" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Azzera le password nella cache in uscita</entry>
<entry lang="it" key="IDC_PRESERVE_TIMESTAMPS">Non modificare data ed ora dei file contenitori</entry>
<entry lang="it" key="IDC_RESET_HOTKEYS">Azzera</entry>
@@ -269,14 +269,14 @@
<entry lang="it" key="IDT_ACCELERATION_OPTIONS">Accelerazione hardware </entry>
<entry lang="it" key="IDT_ASSIGN_HOTKEY">Assegna tasti rapidi</entry>
<entry lang="it" key="IDT_AUTORUN">Configurazione di avvio automatico (autorun.inf)</entry>
<entry lang="it" key="IDT_AUTO_UNMOUNT">Smontaggio automatico</entry>
<entry lang="it" key="IDT_AUTO_UNMOUNT_ON">Smonta tutti quando:</entry>
<entry lang="it" key="IDT_AUTO_DISMOUNT">Smontaggio automatico</entry>
<entry lang="it" key="IDT_AUTO_DISMOUNT_ON">Smonta tutti quando:</entry>
<entry lang="it" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Opzioni schermata di boot per VeraCrypt</entry>
<entry lang="it" key="IDT_CONFIRM_PASSWORD">Conferma password:</entry>
<entry lang="it" key="IDT_CURRENT">Corrente</entry>
<entry lang="it" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">Visualizza il messaggio utente nello schermo di autenticazione di per-avvio (massimo 24 caratteri):</entry>
<entry lang="it" key="IDT_DEFAULT_MOUNT_OPTIONS">Opzioni di montaggio predefinite</entry>
<entry lang="it" key="IDT_UNMOUNT_ACTION">Opzioni tasti rapidi</entry>
<entry lang="it" key="IDT_DISMOUNT_ACTION">Opzioni tasti rapidi</entry>
<entry lang="it" key="IDT_DRIVER_OPTIONS">Configurazione del driver</entry>
<entry lang="it" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Attiva supporto esteso controllo codici dischi</entry>
<entry lang="it" key="IDT_FAVORITE_LABEL">Etichetta del volume preferito selezionato:</entry>
@@ -291,11 +291,10 @@
<entry lang="it" key="IDT_NEW_PASSWORD">Password:</entry>
<entry lang="it" key="IDT_PARALLELIZATION_OPTIONS">Parallelizzazione Thread-Based</entry>
<entry lang="it" key="IDT_PKCS11_LIB_PATH">PKCS #11 Percorso libreria</entry>
<entry lang="it" key="IDT_KDF">KDF:</entry>
<entry lang="it" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="it" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="it" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</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_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>
@@ -357,14 +356,14 @@
<entry lang="it" key="IDT_KEYFILE_WARNING">ATTENZIONE: se viene perso un file chiave o se cambiano i bit nei primi 1024 KB, sarà impossibile montare i volumi che usano questo file chiave!</entry>
<entry lang="it" key="IDT_KEY_UNIT">bits</entry>
<entry lang="it" key="IDT_NUMBER_KEYFILES">Numero di file chiave:</entry>
<entry lang="it" key="IDT_KEYFILES_SIZE">Dimensione del file chiave:</entry>
<entry lang="it" key="IDT_KEYFILES_SIZE">Dimensione del file chiave (in Bytes):</entry>
<entry lang="it" key="IDT_KEYFILES_BASE_NAME">Nome del file chiave di base:</entry>
<entry lang="it" key="IDT_LANGPACK_AUTHORS">Tradotto da:</entry>
<entry lang="it" key="IDT_PLAINTEXT">Dimensione testo:</entry>
<entry lang="it" key="IDT_PLAINTEXT_SIZE_UNIT">bits</entry>
<entry lang="it" key="IDT_POOL_CONTENTS">Contenuto attuale del pool</entry>
<entry lang="it" key="IDT_PRF">Miscelazione PRF:</entry>
<entry lang="it" key="IDT_RANDOM_POOL_ENRICHMENT_NOTE">IMPORTANTE: sposta il mouse il più casualmente possibile dentro questa finestra.\nE' preferibile muovere il mouse per più tempo\nQuesto aumenta la sicurezza in maniera significativa.\nQuindi fai click su 'Continua' per continuare</entry>
<entry lang="it" key="IDT_RANDOM_POOL_ENRICHMENT_NOTE">IMPORTANTE: Dovete muovere il vostro mouse il più a caso possibile all'interno di questa finestra.\nE'preferibile un movimento lungo.\nQuesto aumenta la sicurezza in maniera significativa.\nQuando fatto questo, fate click su 'Continua'.</entry>
<entry lang="it" key="IDT_SECONDARY_KEY">Chiave secondaria (esadecimale)</entry>
<entry lang="it" key="IDT_SECURITY_TOKEN">Misura di sicurezza:</entry>
<entry lang="it" key="IDT_SORT_METHOD">Ordinamento:</entry>
@@ -390,7 +389,6 @@
<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_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>
@@ -423,8 +421,8 @@
<entry lang="it" key="DEVICE_FREE_PB">La dimensione di %s è %.2f PB</entry>
<entry lang="it" key="DEVICE_IN_USE_FORMAT">ATTENZIONE: lunità/partizione è in uso da parte del sistema operativo o da un'applicazione. La sua formattazione potrebbe causare la perdita dei dati e l'instabilità del sistema.\n\nContinuare?</entry>
<entry lang="it" key="DEVICE_IN_USE_INPLACE_ENC">ATTENZIONE: lunità è in uso da parte del sistema operativo o da un'applicazione. Dovete chiudere qualsiasi applicazione che sta usando la partizione (compreso i software antivirus).\n\nContinuare?</entry>
<entry lang="it" key="FORMAT_CANT_UNMOUNT_FILESYS">ERRORE: lunità/partizione contiene un file system che non può essere smontato. Il file system potrebbe essere in uso. La formattazione della unità/partizione può causare la perdita dei dati e l'instabilità del sistema.\n\nPer risolvere il problema, si raccomanda di cancellare la partizione e di ricrearla senza formattarla, seguendo le seguenti istruzioni: 1) Fare click destro sull'icona 'Risorse del computer' nel menu Start e selezionare 'Gestione'. Dovrebbe comparire la finestra 'Gestione computer'. 2) Nella finestra 'Gestione computer', selezionare 'Gestione disco'. 3) Fare click destro sulla partizione da codificare e selezionare 'Elimina partizione' o 'Elimina volume' oppure 'Elimina unità logica'. 4) Cliccare 'Sì'. Se Windows chiede il riavvio del computer, eseguirlo. Ripetere i passi 1 e 2 e continuare col passo 5. 5) Fare click destro sullo spazio libero/non allocato e selezionare 'Nuova partizione' o 'Nuovo volume' oppure 'Nuova unità logica'. 6) Dovrebbe comparire la finestra 'Creazione guidata nuova partizione' o 'Creazione guidata nuovo volume'; seguire le istruzioni. Nella pagina intitolata 'Formatta partizione', selezionare 'Non formattare questa partizione' o 'Non formattare questo volume'. Cliccare su 'Avanti' e poi su 'Fine'. 7) Ora il percorso del unità selezionato in VeraCrypt potrebbe essere errato. Uscire dalla creazione guidata del volume VeraCrypt (se ancora in esecuzione) e riavviarla. 8) Provare nuovamente a codificare lunità/partizione.\n\nSe VeraCrypt non riesce ripetutamente a codificare lunità/partizione, creare un file contenitore.</entry>
<entry lang="it" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">ERRORE: il sistema dei file non può essere chiuso o smontato. Esso può essere in uso dal sistema operativo oppure da applicazioni (per esempio software antivirus). La codifica della partizione potrebbe causare la corruzione dei dati e linstabilità del sistema.\n\nChiudete qualsiasi applicazione che può essere in uso dal sistema operativo (compresi gli antivirus) e tentate nuovamente. Se questo non vi aiuta, seguire i passi che seguono.</entry>
<entry lang="it" key="FORMAT_CANT_DISMOUNT_FILESYS">ERRORE: lunità/partizione contiene un file system che non può essere smontato. Il file system potrebbe essere in uso. La formattazione della unità/partizione può causare la perdita dei dati e l'instabilità del sistema.\n\nPer risolvere il problema, si raccomanda di cancellare la partizione e di ricrearla senza formattarla, seguendo le seguenti istruzioni: 1) Fare click destro sull'icona 'Risorse del computer' nel menu Start e selezionare 'Gestione'. Dovrebbe comparire la finestra 'Gestione computer'. 2) Nella finestra 'Gestione computer', selezionare 'Gestione disco'. 3) Fare click destro sulla partizione da codificare e selezionare 'Elimina partizione' o 'Elimina volume' oppure 'Elimina unità logica'. 4) Cliccare 'Sì'. Se Windows chiede il riavvio del computer, eseguirlo. Ripetere i passi 1 e 2 e continuare col passo 5. 5) Fare click destro sullo spazio libero/non allocato e selezionare 'Nuova partizione' o 'Nuovo volume' oppure 'Nuova unità logica'. 6) Dovrebbe comparire la finestra 'Creazione guidata nuova partizione' o 'Creazione guidata nuovo volume'; seguire le istruzioni. Nella pagina intitolata 'Formatta partizione', selezionare 'Non formattare questa partizione' o 'Non formattare questo volume'. Cliccare su 'Avanti' e poi su 'Fine'. 7) Ora il percorso del unità selezionato in VeraCrypt potrebbe essere errato. Uscire dalla creazione guidata del volume VeraCrypt (se ancora in esecuzione) e riavviarla. 8) Provare nuovamente a codificare lunità/partizione.\n\nSe VeraCrypt non riesce ripetutamente a codificare lunità/partizione, creare un file contenitore.</entry>
<entry lang="it" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">ERRORE: il sistema dei file non può essere chiuso o smontato. Esso può essere in uso dal sistema operativo oppure da applicazioni (per esempio software antivirus). La codifica della partizione potrebbe causare la corruzione dei dati e linstabilità del sistema.\n\nChiudete qualsiasi applicazione che può essere in uso dal sistema operativo (compresi gli antivirus) e tentate nuovamente. Se questo non vi aiuta, seguire i passi che seguono.</entry>
<entry lang="it" key="DEVICE_IN_USE_INFO">ATTENZIONE: alcune delle unità/partizioni montate sono già in uso!\n\nIgnorare questa condizione può causare risultati indesiderati, compresa l'instabilità del sistema.\n\nE' consigliabile chiudere tutte le applicazioni che potrebbero usare le unità/partizioni.</entry>
<entry lang="it" key="DEVICE_PARTITIONS_ERR">Lunità selezionata contiene delle partizioni.\n\nLa formattazione del unità potrebbe causare la perdita dei dati e l'instabilità del sistema. Selezionare una partizione o rimuovere tutte le partizioni per consentire a VeraCrypt di formattarle senza rischi.</entry>
<entry lang="it" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">Lunità non di sistema selezionata contiene delle partizioni.\n\nLa codifica di volumi di VeraCrypt ospitati nellunità può essere creata allinterno delle unità che non contengono nessuna partizione (compresi dischi rigidi e dischi allo stato solido). Ununità contenente delle partizioni può essere interamente Crittata sul posto (usando una singola chiave master) solo se essa è il disco dove Windows è installato e dal quale esso si avvia.\n\nSe volete codificare la partizione non di sistema selezionata usando una singola chiave master, dovete rimuovere tutte le partizioni nell unità prima di consentire a VeraCrypt di formattarla in sicurezza (la formattazione di una unità contenente delle partizioni può causare linstabilità del sistema e/o corruzione dei dati). In alternativa, potete codificare singolarmente ogni partizione sul disco (ogni partizione sarà Crittata usando una chiave master differente).\n\nNota: Se volete rimuovere tutte le partizioni da un disco GPT, dovete convertirlo in disco MBR (usando lo strumento Gestione del computer) allo scopo di rimuovere le partizioni ignote.</entry>
@@ -513,7 +511,7 @@
<entry lang="it" key="NONSYS_INPLACE_DEC_FINISHED_NO_DRIVE_LETTER_AVAILABLE">Attenzione: Per essere in grado di accedere ai dati decifrati, una lettera del drive deve essere assegnata al volume decifrato. Comunque, nessuna lettera è disponibile al momento.\n\nPer favore liberare una lettera (per esempio, disconnettendo una chiavetta USB un hard drive esterno, etc.) e poi premi OK.</entry>
<entry lang="it" key="FORMAT_FINISHED_INFO">Il volume VeraCrypt è stato creato con successo.</entry>
<entry lang="it" key="FORMAT_FINISHED_TITLE">Volume creato</entry>
<entry lang="it" key="FORMAT_HELP">IMPORTANTE: sposta il mouse il più casualmente possibile dentro questa finestra.E' preferibile muovere il mouse per più tempo, perchè aumenta in modo significativo la sicurezza delle chiavi di codifica. Quindi fate click su Formatta per creare il volume.</entry>
<entry lang="it" key="FORMAT_HELP">IMPORTANTE:Muovere il vostro mouse il più casualmente possibile entro questa finestra. E' preferibile un movimento più lungo perchè aumenta in modo significativo l'effetto delle chiavi di codifica, quindi fate click su Formatta per creare il volume.</entry>
<entry lang="it" key="FORMAT_HIDVOL_HOST_HELP">Fate click su Formatta per creare il volume esterno. Per ulteriori informazioni, riferitevi alla documentazione.</entry>
<entry lang="it" key="FORMAT_HIDVOL_HOST_TITLE">Formattazione del volume esterno</entry>
<entry lang="it" key="FORMAT_HIDVOL_TITLE">Formattazione del volume nascosto</entry>
@@ -590,7 +588,7 @@
<entry lang="it" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">ERRORE: I file da voi copiati nel volume esterno occupa troppo spazio. Pertanto, non c'è spazio sufficiente a disposizione nel volume esterno per il volume nascosto.\n\nDa notare che il volume nascosto deve essere grande come la partizione di sistema (che è quella in è installato cui il sistema operativo attualmente in esecuzione). La ragione è che il sistema operativo nascosto necessita di essere creato copiando il contenuto della partizione di sistema nel volume nascosto.\n\n\nLa procedura di creazione del sistema operativo nascosto non può continuare.</entry>
<entry lang="it" key="OPENFILES_DRIVER">Il driver non riesce a smontare il volume. Alcuni file che si trovano in esso potrebbero essere ancora aperti.</entry>
<entry lang="it" key="OPENFILES_LOCK">Impossibile bloccare il volume. Ci sono file ancora aperti in esso, pertanto questo non può essere smontato.</entry>
<entry lang="it" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt non può chiudere il volume perché esso è in uso dal sistema o applicazioni (possono esserci file aperti sul volume).\n\nVolete forzare lo smontaggio del volume?</entry>
<entry lang="it" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt non può chiudere il volume perché esso è in uso dal sistema o applicazioni (possono esserci file aperti sul volume).\n\nVolete forzare lo smontaggio del volume?</entry>
<entry lang="it" key="OPEN_VOL_TITLE">Selezionare un volume VeraCrypt</entry>
<entry lang="it" key="OPEN_TITLE">Specificare il percorso e nome del file</entry>
<entry lang="it" key="SELECT_PKCS11_MODULE">Selezionare la libreria PKCS #11</entry>
@@ -613,7 +611,7 @@
<entry lang="it" key="FAVORITE_PIM_CHANGED">Questo volume è registrato come Preferito di sistema e il suo PIM è stato modificato.\nVuoi che VeraCrypt aggiorni automaticamente la configurazione del Preferito di sistema (sono richiesti i privilegi di amministratore)?\n\nSi prega di notare che se si risponde no, è necessario aggiornare il Preferito del sistema manualmente.</entry>
<entry lang="it" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">IMPORTANTE: Se non avete distrutto il vostro disco di ripristino di VeraCrypt, la vostra partizione/disco di sistema può essere ancora deCrittata usando la vecchia password (tramite l'avvio del disco di ripristino di VeraCrypt e digitando la vecchia password). Dovete creare un nuovo disco di ripristino di VeraCrypt e quindi distruggere il vecchio.\n\nVolete creare un nuovo disco di ripristino di VeraCrypt?</entry>
<entry lang="it" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">Da notare che il vostro disco di ripristino di VeraCrypt usa ancora l'algoritmo precedente. Se considerate il precedente algoritmo non sicuro, dovete creare un nuovo disco di ripristino di VeraCrypt e distruggere il precedente.\n\nVolete creare un nuovo disco di ripristino di VeraCrypt?</entry>
<entry lang="it" key="KEYFILES_NOTE">Si noti che VeraCrypt non modifica mai il contenuto del file-chiave. È possibile selezionare più di un file-chiave (l'ordine non ha importanza). Se si aggiunge una cartella, tutti i file non nascosti trovat in essa saranno usati come file-chiave. Cliccare su 'Aggiungi file chiave' per selezionare un file-chiave memorizzato su di un token di sicurezza o una smart card (o per importarvi il file-chiave).</entry>
<entry lang="it" key="KEYFILES_NOTE">Qualsiasi tipo di file (ad esempio Mp3, Jpg, Zip, Avi) può essere usato come un file-chiave di VeraCrypt. Si noti che VeraCrypt non modifica mai il contenuto del file-chiave. È possibile selezionare più di un file-chiave (l'ordine non ha importanza). Se si aggiunge una cartella, tutti i file non nascosti trovat in essa saranno usati come file-chiave. Cliccare su 'Aggiungi file chiave' per selezionare un file-chiave memorizzato su di un token di sicurezza o una smart card (o per importarvi il file-chiave).</entry>
<entry lang="it" key="KEYFILE_CHANGED">File chiave aggiunti/rimossi con successo.</entry>
<entry lang="it" key="KEYFILE_EXPORTED">File chiave esportati.</entry>
<entry lang="it" key="PKCS5_PRF_CHANGED">Algoritmo di derivazione della chiave di testata impostato con successo.</entry>
@@ -729,7 +727,7 @@
<entry lang="it" key="DLL_FILES">Moduli libreria</entry>
<entry lang="it" key="FORMAT_NTFS_STOP">La formattazione NTFS non può proseguire.</entry>
<entry lang="it" key="CANT_MOUNT_VOLUME">Impossibile montare il volume.</entry>
<entry lang="it" key="CANT_UNMOUNT_VOLUME">Impossibile smontare il volume.</entry>
<entry lang="it" key="CANT_DISMOUNT_VOLUME">Impossibile smontare il volume.</entry>
<entry lang="it" key="FORMAT_NTFS_FAILED">Windows non può formattare il volume come NTFS.\n\nSelezionare un tipo di file system diverso (se possibile) e provare di nuovo. In alternativa, lasciare il volume non formattato (selezionare 'Nessuno' come file system), uscire dalla procedura guidata, montare il volume e usare uno strumento di sistema o di terze parti per formattarlo (il volume rimarrà criptato).</entry>
<entry lang="it" key="FORMAT_NTFS_FAILED_ASK_FAT">Windows fallisce nel formattare il volume come NTFS.\n\nVolete invece formattare il volume come FAT?</entry>
<entry lang="it" key="DEFAULT">Predefinito</entry>
@@ -744,7 +742,7 @@
<entry lang="it" key="LABEL">Etichetta</entry>
<entry lang="it" key="CLUSTER_TOO_SMALL">La dimensione del cluster selezionata è troppo piccola per la dimensione di questo volume. Verrà usata una dimensione del cluster maggiore.</entry>
<entry lang="it" key="CANT_GET_VOLSIZE">ERRORE: impossibile leggere la dimensione del volume!\n\nAssicurarsi che il volume selezionato non sia usato dal sistema o dalle applicazioni.</entry>
<entry lang="it" key="HIDDEN_VOL_HOST_SPARSE">I volumi ignoti non devono essere creati all'interno di contenitore dinamici(file sparsi). Per consentire la negazione plausibile, il volume nascosto deve essere creato in un contenitore non dinamico.</entry>
<entry lang="it" key="HIDDEN_VOL_HOST_SPARSE">I volumi ignoti non devono essere creati all'interno di contenitore dinamici(file sparsi). Per consentire la negabilità plausibile, il volume nascosto deve essere creato in un contenitore non dinamico.</entry>
<entry lang="it" key="HIDDEN_VOL_HOST_UNSUPPORTED_FILESYS">La procedura di creazione del volume VeraCrypt può creare un voume nascosto solo allinterno di un volume FAT oppure NTFS.</entry>
<entry lang="it" key="HIDDEN_VOL_HOST_UNSUPPORTED_FILESYS_WIN2000">In ambiente operativo Windows 2000, la procedura di creazione del volume di VeraCrypt può creare un volume nascosto solamente in un volume FAT.</entry>
<entry lang="it" key="HIDDEN_VOL_HOST_NTFS">Nota: Il file system FAT è più adeguato per i volumi esterni che il file system NTFS (per esempio, la dimensione massima possibile per il volume nascosto può essere significativamente molto grande se il volume esterno è stato formattato come FAT).</entry>
@@ -771,7 +769,7 @@
<entry lang="it" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">Un errore ha impedito a VeraCrypt di codificare la partizione. Tentate la correzione di qualsiasi problema segnalato precedentemente e quindi ritentare. Se il problema persiste, può esservi di aiuto seguire i passi seguenti.</entry>
<entry lang="it" key="INPLACE_ENC_GENERIC_ERR_RESUME">Un errore ha impedito a VeraCrypt di riprendere il processo di codifica della partizione.\n\nTentate la correzione di qualsiasi problema segnalato precedentemente e quindi tentare di riprendere nuovamente il processo. Notate che il volume non può essere montato finché esso non viene criptato completamente.</entry>
<entry lang="it" key="INPLACE_DEC_GENERIC_ERR">Un errore ha impedito a VeraCrypt di decifrare il volume. Per favore prova a sistemare qualsiasi problema riportato in precedenza e prova ancora se possibile.</entry>
<entry lang="it" key="CANT_UNMOUNT_OUTER_VOL">ERRORE: impossibile smontare il volume esterno!\n\nIl volume non può essere smontato se contiene file o cartelle usati dalle applicazioni o dal sistema.\n\nChiudere tutti i programmi che potrebbero usare i file o le cartelle sul volume e cliccare su 'Riprova'.</entry>
<entry lang="it" key="CANT_DISMOUNT_OUTER_VOL">ERRORE: impossibile smontare il volume esterno!\n\nIl volume non può essere smontato se contiene file o cartelle usati dalle applicazioni o dal sistema.\n\nChiudere tutti i programmi che potrebbero usare i file o le cartelle sul volume e cliccare su 'Riprova'.</entry>
<entry lang="it" key="CANT_GET_OUTER_VOL_INFO">ERRORE: Non si possono ottenere le informazioni a proposito del volume esterno! La creazione del volume non può proseguire.</entry>
<entry lang="it" key="CANT_ACCESS_OUTER_VOL">ERRORE: impossibile accedere al volume esterno! La creazione del volume non può proseguire.</entry>
<entry lang="it" key="CANT_MOUNT_OUTER_VOL">ERRORE: impossibile montare il volume esterno! La creazione del volume non può proseguire.</entry>
@@ -813,7 +811,7 @@
<entry lang="it" key="SECONDARY_KEY_SIZE_LRW">Dimensione chiave Tweak (Modo LRW )</entry>
<entry lang="it" key="BITS">bit</entry>
<entry lang="it" key="BLOCK_SIZE">Dimensione blocco</entry>
<entry lang="it" key="KDF">KDF</entry>
<entry lang="it" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="it" key="PKCS5_ITERATIONS">Numero iterazioni PKCS-5</entry>
<entry lang="it" key="VOLUME_CREATE_DATE">Volume creato</entry>
<entry lang="it" key="VOLUME_HEADER_DATE">Ultima modifica intestazione</entry>
@@ -855,7 +853,7 @@
<entry lang="it" key="TC_INSTALLER_IS_RUNNING">Linstaller di VeraCrypt è attualmente in esecuzione in questo sistema ed esegue o prepara linstallazione oppure aggiornamento di VeraCrypt. Prima di procedere, attendere per finire o chiudere esso. Se non potete chiudere linstaller, riavviare i computer prima di procedere.</entry>
<entry lang="it" key="INSTALL_FAILED">Installazione fallita.</entry>
<entry lang="it" key="UNINSTALL_FAILED">Disinstallazione fallita.</entry>
<entry lang="it" key="DIST_PACKAGE_CORRUPTED">Questo pacchetto di distribuzione è danneggiato. Provare a scaricarlo nuovamente (preferibilmente dal sito ufficiale di VeraCrypt allindirizzo https://veracrypt.jp).</entry>
<entry lang="it" key="DIST_PACKAGE_CORRUPTED">Questo pacchetto di distribuzione è danneggiato. Provare a scaricarlo nuovamente (preferibilmente dal sito ufficiale di VeraCrypt allindirizzo https://www.veracrypt.fr).</entry>
<entry lang="it" key="CANNOT_WRITE_FILE_X">Impossibile scrivere il file %s</entry>
<entry lang="it" key="EXTRACTING_VERB">Estrazione</entry>
<entry lang="it" key="CANNOT_READ_FROM_PACKAGE">Impossibile leggere i dati dal pacchetto.</entry>
@@ -882,7 +880,7 @@
<entry lang="it" key="INSTALL_COMPLETED">Installazione completata.</entry>
<entry lang="it" key="CANT_CREATE_FOLDER">Impossibile creare la cartella '%s'</entry>
<entry lang="it" key="CLOSE_TC_FIRST">Il driver di VeraCrypt non può essere rimosso.\n\nChiudere tutte le finestre di VeraCrypt. Se non funziona, riavviare Windows e provare di nuovo.</entry>
<entry lang="it" key="UNMOUNT_ALL_FIRST">Tutti i volumi devono essere smontati prima di installare o disinstallare VeraCrypt.</entry>
<entry lang="it" key="DISMOUNT_ALL_FIRST">Tutti i volumi devono essere smontati prima di installare o disinstallare VeraCrypt.</entry>
<entry lang="it" key="UNINSTALL_OLD_VERSION_FIRST">Una versione obsoleta di VeraCrypt è attualmente installata in questo sistema. Deve essere disinstallata prima di installare questa nuova versione di VeraCrypt.\n\nNon appena avete chiuso questa finestra di messaggio, sarà lanciata la disinstallazione della vecchia versione. Notate che nessun volume sarà decrittata disinstallando VeraCrypt. Dopo la disinstallazione della vecchia versione di VeraCrypt, rilanciare l'installazione della nuova versione del programma.</entry>
<entry lang="it" key="REG_INSTALL_FAILED">L'installazione delle chiavi di registro è fallita</entry>
<entry lang="it" key="DRIVER_INSTALL_FAILED">L'installazione del driver di unità è fallita. Riavviare Windows e provare nuovamente ad installare VeraCrypt.</entry>
@@ -903,7 +901,7 @@
<entry lang="it" key="MINUTES">minuti</entry>
<entry lang="it" key="SECONDS">secondi</entry>
<entry lang="it" key="OPEN">Apri</entry>
<entry lang="it" key="UNMOUNT">Smonta</entry>
<entry lang="it" key="DISMOUNT">Smonta</entry>
<entry lang="it" key="SHOW_TC">Visualizza VeraCrypt</entry>
<entry lang="it" key="HIDE_TC">Nascondi VeraCrypt</entry>
<entry lang="it" key="TOTAL_DATA_READ">Dati letti dal momento del montaggio</entry>
@@ -940,7 +938,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 compresa tra 64 e 1048576 bytes.</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>
@@ -975,7 +973,7 @@
<entry lang="it" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - Volumi di sistema preferiti</entry>
<entry lang="it" key="SYS_FAVORITES_HELP_LINK">Cosa sono i volumi di sistema preferiti?</entry>
<entry lang="it" key="SYS_FAVORITES_REQUIRE_PBA">La partizione/disco di sistema non sembra essere cifrata.\n\nI volumi di sistema preferiti possono essere montati usando solo una password di autenticazione pre-boot authentication. Pertanto, per consentire l'uso dei volumi di sistema preferiti, dovete cifrare prima la partizione/unità di sistema.</entry>
<entry lang="it" key="UNMOUNT_FIRST">Smontare il volume prima di procedere.</entry>
<entry lang="it" key="DISMOUNT_FIRST">Smontare il volume prima di procedere.</entry>
<entry lang="it" key="CANNOT_SET_TIMER">ERRORE: Impossibile impostare il timer.</entry>
<entry lang="it" key="IDPM_CHECK_FILESYS">Verifica del file system</entry>
<entry lang="it" key="IDPM_REPAIR_FILESYS">Riparazione del file system</entry>
@@ -1009,11 +1007,11 @@
<entry lang="it" key="NO_SYSENC_PARTITION_SELECTED">Nessuna partizione selezionata. Fate click su Seleziona unità' per selezionare una partizione smontata che richiede normalmente lautenticazione di pre-boot (per esempio, una partizione collocata su un system drive decriptato oppure un altro sistema operativo che non è in esecuzione, oppure la partizione di sistema deCrittata di un altro sistema opertativo).\n\nNota: La partizione selezionata sarà montata come un volume VeraCrypt regolare senza autenticazione pre-boot. Questo è utilissimo, ad esempio, per le operazioni di backup o di riparazione.</entry>
<entry lang="it" key="CONFIRM_SAVE_DEFAULT_KEYFILES">ATTENZIONE: Se i file chiave predefiniti sono impostati e attivati, sarà impossibile montare i volumi che non stanno usando questi file. Pertanto, dopo aver attivato i file chiave predefiniti, ricordatevi di deselezionare lopzione 'Usare file chiave' (sotto un campo di inserimento password)ogni qualvolta montate tali voumi.\n\nSiete sicuri di voler salvare come default i file oppure i percorsi chiave selezionati?</entry>
<entry lang="it" key="HK_AUTOMOUNT_DEVICES">Montaggio automatico delle unità</entry>
<entry lang="it" key="HK_UNMOUNT_ALL">Smonta tutti</entry>
<entry lang="it" key="HK_DISMOUNT_ALL">Smonta tutti</entry>
<entry lang="it" key="HK_WIPE_CACHE">Azzera la cache</entry>
<entry lang="it" key="HK_UNMOUNT_ALL_AND_WIPE">Smonta tutte &amp; Cache ripulite</entry>
<entry lang="it" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Forza lo smontaggio di tutti i volumi &amp; azzera la cache</entry>
<entry lang="it" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Forza lo smontaggio di tutti i volumi, azzera la cache &amp; esci</entry>
<entry lang="it" key="HK_DISMOUNT_ALL_AND_WIPE">Smonta tutte &amp; Cache ripulite</entry>
<entry lang="it" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Forza lo smontaggio di tutti i volumi &amp; azzera la cache</entry>
<entry lang="it" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Forza lo smontaggio di tutti i volumi, azzera la cache &amp; esci</entry>
<entry lang="it" key="HK_MOUNT_FAVORITE_VOLUMES">Monta i volumi preferiti</entry>
<entry lang="it" key="HK_SHOW_HIDE_MAIN_WINDOW">Visualizza/nascondi la finestra principale di VeraCrypt</entry>
<entry lang="it" key="PRESS_A_KEY_TO_ASSIGN">(Fare click qui e premere un tasto)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="it" key="PAGING_FILE_CREATION_PREVENTED">E' stata evitata la creazione di file di paging.\n\nNotare che, a causa di un problema di Windows, i file di paging non possono essere collocati in volumu VeraCrypt non di sistema (compresi i volumi di sistema preferiti). VeraCrypt supporta la creazione di file di paging solo su una partizione/disco di sistema criptato.</entry>
<entry lang="it" key="SYS_ENC_HIBERNATION_PREVENTED">Un errore oppure unincompatibilità previene VeraCrypt dalla codifica dei file in sospeso. Pertanto, la sospensione è stata evitata.\n\nNota: Quando un computer va in sospensione (oppure entra in modalità risparmio energetico), il contenuto della sua memoria di sistema viene scritto in un file di memoria in sospenso risiedente nel disco di sistema. VeraCrypt non può evitare che le chiavi di codifica e il contenuto dei file sensitivi aperti nella RAM vengano salvati non Codificati nel file di memoria in sospeso.</entry>
<entry lang="it" key="HIDDEN_OS_HIBERNATION_PREVENTED">L'ibernazione è stata evitata.\n\nVeraCrypt non supporta l'ibernazione dei sistemi operativi ignoti che usano una partizione extra boot. Da notare che questa partizione di avvio è condivisa da entrambi i sistemi, nascosto e di inganno. Pertanto, allo scopo di prevenite la perdita dei dati ed i problemi mentre si ripristina dalla ibernazione, VeraCrypt ha da prevenire che il sistema nascosto scriva nella partizione di avvio condivisa e dalla ibernazione.</entry>
<entry lang="it" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">Il volume VeraCrypt montato come %c: è stato smontato.</entry>
<entry lang="it" key="MOUNTED_VOLUMES_UNMOUNTED">Il volume VeraCrypt è stato smontato.</entry>
<entry lang="it" key="VOLUMES_UNMOUNTED_CACHE_WIPED">Il volume VeraCrypt è stao smontato e la password cancellata.</entry>
<entry lang="it" key="SUCCESSFULLY_UNMOUNTED">Smontato correttamente</entry>
<entry lang="it" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">Il volume VeraCrypt montato come %c: è stato smontato.</entry>
<entry lang="it" key="MOUNTED_VOLUMES_DISMOUNTED">Il volume VeraCrypt è stato smontato.</entry>
<entry lang="it" key="VOLUMES_DISMOUNTED_CACHE_WIPED">Il volume VeraCrypt è stao smontato e la password cancellata.</entry>
<entry lang="it" key="SUCCESSFULLY_DISMOUNTED">Smontato correttamente</entry>
<entry lang="it" key="CONFIRM_BACKGROUND_TASK_DISABLED">ATTENZIONE: Se l'azione background di VeraCrypt è disattivata, le seguenti funzioni saranno disattivate:\n\n1) Tasti funzione\n2) Smontaggio automatico (cioè dopo disconnessione, rimozione periferica ospite senza avvertimento, time-out, ecc.)\n3) Montaggio automatico di volumi preferiti\n4) Notifiche (cioè, quando viene evitato il danno al volume nascosto)\n5) Icona nella barra di sistema\n\nNota: Potete disconnettere l'azione del background in ogni momento facendo clic con il tasto destro sull'icona di VeraCrypt nella barra di sistema e selezionando 'Esci'.\n\nSiete sicuri di voler disattivare definitivamente l'azione background di VeraCrypt?</entry>
<entry lang="it" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">ATTENZIONE: disabilitando questa opzione non sarà possibile smontare automaticamente i volumi contenenti file o cartelle aperti.\n\nSi è sicuri di voler disabilitare questa opzione?</entry>
<entry lang="it" key="WARN_PREF_AUTO_UNMOUNT">ATTENZIONE: i volumi contenenti file o cartelle aperti NON saranno smontati automaticamente.\n\nPer impedire ciò, abilitare l'opzione seguente: 'Forza smontaggio automatico anche se il volume contiene file o cartelle aperti'</entry>
<entry lang="it" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">ATTENZIONE: Quando la carica della batteria del portatile è bassa, Windows può omettere l'invio dei messaggi appriopriati per eseguire le applicazioni quando il computer è passato in modalità di risparmio energetico. Comunque, VeraCrypt può fallire lo smontaggio automatico dei volumi in questi casi.</entry>
<entry lang="it" key="CONFIRM_NO_FORCED_AUTODISMOUNT">ATTENZIONE: disabilitando questa opzione non sarà possibile smontare automaticamente i volumi contenenti file o cartelle aperti.\n\nSi è sicuri di voler disabilitare questa opzione?</entry>
<entry lang="it" key="WARN_PREF_AUTO_DISMOUNT">ATTENZIONE: i volumi contenenti file o cartelle aperti NON saranno smontati automaticamente.\n\nPer impedire ciò, abilitare l'opzione seguente: 'Forza smontaggio automatico anche se il volume contiene file o cartelle aperti'</entry>
<entry lang="it" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">ATTENZIONE: Quando la carica della batteria del portatile è bassa, Windows può omettere l'invio dei messaggi appriopriati per eseguire le applicazioni quando il computer è passato in modalità di risparmio energetico. Comunque, VeraCrypt può fallire lo smontaggio automatico dei volumi in questi casi.</entry>
<entry lang="it" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Avete programmato il processo di codifica di una partizione/volume. Il processo non è stato ancora completato.\n\nVolete avviare (riprendere) il processo ora?</entry>
<entry lang="it" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">Avete programmato il processo di codifica o decodifica della partizione/disco di sistema. Il processo non è stato ancora completato.\n\nVolete avviare (riprendere) il processo ora?</entry>
<entry lang="it" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">Volete che vi sia richiesto se volete ripristinare i processi di codifica delle partizioni o volumi non di sistema?</entry>
@@ -1063,7 +1061,7 @@
<entry lang="it" key="SYS_AUTOMOUNT_DISABLED">Il vostro sistema non è configurato per montare automaticamente i nuovi volumi. Può risultare impossibile effettuare il montaggio di volumi VeraCrypt basati su unità. Il montaggio automatico può essere abilitato eseguendo il seguente comando e riavviando il sistema.\n\nmountvol.exe /E</entry>
<entry lang="it" key="SYS_ASSIGN_DRIVE_LETTER">Assegnare una lettera allunità/partizione prima di procedere.\n\nDa notare che questo è richiesto dal sistema operativo.</entry>
<entry lang="it" key="MOUNT_TC_VOLUME">Montare un volume VeraCrypt</entry>
<entry lang="it" key="UNMOUNT_ALL_TC_VOLUMES">Smonta tutti i volumi VeraCrypt</entry>
<entry lang="it" key="DISMOUNT_ALL_TC_VOLUMES">Smonta tutti i volumi VeraCrypt</entry>
<entry lang="it" key="UAC_INIT_ERROR">VeraCrypt non può ottenere i privilegi di amministrazione.</entry>
<entry lang="it" key="ERR_ACCESS_DENIED">Il sistema operativo ha negato l'accesso.\n\nPossibile causa: per consentire di leggere/scrivere dati da/su alcune cartelle, file e unità il sistema operativo richiede i permessi di lettura/scrittura (o i privilegi di amministratore). Normalmente, un utente senza privilegi di amministratore ha il diritto di creare, leggere e modificare file solo nella propria cartella Documenti.</entry>
<entry lang="it" key="SECTOR_SIZE_UNSUPPORTED">Errore: il drive usa una dimensione settore non supportata.\n\nNon è possibile ora creare volumi ospitati dalla partizione/periferica nei drivers che usano dei settori più grandi di 4096 byte. Comunque, notate che potete creare dei contenitori in tali driver.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="it" key="HIDDEN_OS_CREATION_PREINFO_HELP">Nei passi successivi, VeraCrypt creerà il sistema operativo nascosto copiando il contenuto della partizione di sistema nel volume nascosto (i dati in copia saranno Codificati al volo con una chiave di codifica differente da quella usata per il sistema operativo di richiamo).\n\nNotate che il processo sarà eseguito in ambiente di pre-boot(prima dellavvio di Windows) e può impiegare molto tempo per essere completato; diverse ore o anche diversi giorni (a seconda della dimensione della partizione di sistema e dalle prestazioni del vostro computer).\n\nVoi potrete interrompere il processo, spegnere il vostro computer, avviare il sistema operativo e riavviare il processo. Comunque, se interrompete tale processo, lintera procedura di copia del sistema dovrà ripartire dallinizio (perché il contenuto della partizione di sistema non deve cambiare durante la clonazione).</entry>
<entry lang="it" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">Volete annullare lintero processo di creazione del sistema operativo nascosto?\n\nNota: NON potrete ripristinare il processo se lo annullate adesso.</entry>
<entry lang="it" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">Volete annullare il pre-test per la codifica di sistema?</entry>
<entry lang="it" key="BOOT_PRETEST_FAILED_RETRY">La richiesta di codifica di sistema VeraCrypt è fallita. Volete ritentare?\n\nSelezionando 'No', il componente di autenticazione in pre-boot sarà disinstallato.\n\nNota:\n\n- Se il Boot Loader di VeraCrypt non vi richiede di digitare la password prima dell'avvio di Windows, è possibile che il vostro sistema operativo non si it is avvia dall'unità nella quale esso è installato. Questo non è supportato.\n\n- Se usate un algoritmo di cifratura diverso di AES e la richiesta è fallita (ed avete digitato la password), questo è stato causato da un driver designato inadeguatamente. Selezionare 'No', e ritentare la cifratura della partizione/unità di sistema, usando l'algoritmo di codifica AES (che ha dei requisiti di memoria inferiori).\n\n- Per più possibili cause e soluzioni, visitare: https://veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="it" key="BOOT_PRETEST_FAILED_RETRY">La richiesta di codifica di sistema VeraCrypt è fallita. Volete ritentare?\n\nSelezionando 'No', il componente di autenticazione in pre-boot sarà disinstallato.\n\nNota:\n\n- Se il Boot Loader di VeraCrypt non vi richiede di digitare la password prima dell'avvio di Windows, è possibile che il vostro sistema operativo non si it is avvia dall'unità nella quale esso è installato. Questo non è supportato.\n\n- Se usate un algoritmo di cifratura diverso di AES e la richiesta è fallita (ed avete digitato la password), questo è stato causato da un driver designato inadeguatamente. Selezionare 'No', e ritentare la cifratura della partizione/unità di sistema, usando l'algoritmo di codifica AES (che ha dei requisiti di memoria inferiori).\n\n- Per più possibili cause e soluzioni, visitare: https://www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="it" key="SYS_DRIVE_NOT_ENCRYPTED">La partizione/disco di sistema non sembra essere criptato (né parzialmente né interamente).</entry>
<entry lang="it" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">La vostra partizione/disco di sistema è criptato (parzialmente o completamente).\n\nDeCodificate la vostra partizione/disco interamente prima di procedere. Per fare questo, selezionate 'Sistema'&gt;'Decodifica definitivamente la partizione/disco di sistema' dal menu della barra strumenti della finestra principale di VeraCrypt.</entry>
<entry lang="it" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">Quando la partizione/unità di sistema è crittata (parzialmente o totalmente), non potete tornare ad una precedente versione di VeraCrypt (ma potete aggiornare o reinstallare la stessa versione di esso).</entry>
@@ -1306,8 +1304,8 @@
<entry lang="it" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Notate che il numero dei processi è attualmente limitato, e questo influenza il comportamento risultante (bassa prestazione).\n\nPer usare la piena potenza dei processori selezionare “Impostazioni” &gt; “Prestazioni” e disattivare lopzione corrispondente.</entry>
<entry lang="it" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">Volete che VeraCrypt tenti di disattivare la protezione da scrittura della partizione o dell'unità?</entry>
<entry lang="it" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">ATTENZIONE: Queste impostazioni possono ridurre le prestazioni.\n\nSiete sicuri di voler usare queste impostazioni?</entry>
<entry lang="it" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Attenzione: VolumeVeraCrypt auto-smontato</entry>
<entry lang="it" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Prima di rimuovere fisicamente o spegnere un dispositivo contenente un volume montato, si dovrebbe sempre smontare il volume prima su VeraCrypt.\n\nUno smontaggio inprovviso e non voluto è generalmete causato da un'intermittenza sul cavo, disco, ecc.</entry>
<entry lang="it" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Attenzione: VolumeVeraCrypt auto-smontato</entry>
<entry lang="it" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Prima di rimuovere fisicamente o spegnere un dispositivo contenente un volume montato, si dovrebbe sempre smontare il volume prima su VeraCrypt.\n\nUno smontaggio inprovviso e non voluto è generalmete causato da un'intermittenza sul cavo, disco, ecc.</entry>
<entry lang="it" key="UNSUPPORTED_TRUECRYPT_FORMAT">Il volume è stato creato con TrueCrypt %x.%x ma VeraCrypt supporta solamente volumi TrueCrypt creati con la serie TrueCrypt 6.x/7.x</entry>
<entry lang="it" key="TEST">Prova</entry>
<entry lang="it" key="KEYFILE">File chiave</entry>
@@ -1453,7 +1451,7 @@
<entry lang="it" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Aggiungi tutti i volumi montati ai Preferiti...</entry>
<entry lang="it" key="TASKICON_PREF_MENU_ITEMS">Voci menu icona attività</entry>
<entry lang="it" key="TASKICON_PREF_OPEN_VOL">Apri volumi montati</entry>
<entry lang="it" key="TASKICON_PREF_UNMOUNT_VOL">Smonta volumi montati</entry>
<entry lang="it" key="TASKICON_PREF_DISMOUNT_VOL">Smonta volumi montati</entry>
<entry lang="it" key="DISK_FREE">Spazio libero disponibile: {0}</entry>
<entry lang="it" key="VOLUME_SIZE_HELP">Specifica la dimensione del contenitore da creare.\nNota che la dimensione minima possibile di un volume è 292 KiB.</entry>
<entry lang="it" key="LINUX_CONFIRM_INNER_VOLUME_CALC">ATTENZIONE: hai selezionato un filesystem diverso da FAT per il volume esterno.\nNota che in questo caso VeraCrypt non può calcolare l'esatta dimensione massima consentita per il volume nascosto e userà solo una stima che può essere sbagliata.\nQuindi, è tua responsabilità usare un valore adeguato per la dimensione del volume nascosto in modo che non si sovrapponga al volume esterno.\n\nVuoi continuare a usare il filesystem selezionato per il volume esterno?</entry>
@@ -1483,14 +1481,14 @@
<entry lang="it" key="LINUX_DO_NOT_MOUNT">Non montare</entry>
<entry lang="it" key="LINUX_MOUNT_AT_DIR">Monta nella cartella:</entry>
<entry lang="it" key="LINUX_SELECT">Se&amp;leziona...</entry>
<entry lang="it" key="LINUX_UNMOUNT_ALL_WHEN">Smonta tutti i volumi quando</entry>
<entry lang="it" key="LINUX_DISMOUNT_ALL_WHEN">Smonta tutti i volumi quando</entry>
<entry lang="it" key="LINUX_ENTERING_POWERSAVING">Il sistema va in risparmio energetico</entry>
<entry lang="it" key="LINUX_LOGIN_ACTION">Azioni da eseguire all'accesso utente</entry>
<entry lang="it" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Chiudi tutte le finestre di Explorer del volume da smontare</entry>
<entry lang="it" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Chiudi tutte le finestre di Explorer del volume da smontare</entry>
<entry lang="it" key="LINUX_HOTKEYS">Tasti rapidi</entry>
<entry lang="it" key="LINUX_SYSTEM_HOTKEYS">Tasti scelta rapida di sistema</entry>
<entry lang="it" key="LINUX_SOUND_NOTIFICATION">Riproduci suono notifica sistema dopo montaggio/smontaggio</entry>
<entry lang="it" key="LINUX_CONFIRM_AFTER_UNMOUNT">Visualizza finestra messaggio di conferma dopo smontaggio</entry>
<entry lang="it" key="LINUX_CONFIRM_AFTER_DISMOUNT">Visualizza finestra messaggio di conferma dopo smontaggio</entry>
<entry lang="it" key="LINUX_VC_QUITS">Uscita da VeraCrypt</entry>
<entry lang="it" key="LINUX_OPEN_FINDER">Apri finestra Finder del volume montato correttamente</entry>
<entry lang="it" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Nota che questa impostazione ha effetto solo se l'uso dei servizi di crittografia del kernel è disabilitato.</entry>
@@ -1510,7 +1508,7 @@
<entry lang="it" key="LINUX_DYNAMIC_NOTICE">Tieni presente che se il sistema operativo non alloca i file dall'inizio dello spazio libero, e quindi la dimensione massima possibile del volume nascosto potrebbe essere molto inferiore alla dimensione dello spazio libero sul volume esterno.\nQuesto non è un bug in VeraCrypt ma una limitazione del sistema operativo.</entry>
<entry lang="it" key="LINUX_MAX_HIDDEN_SIZE">La dimensione massima del volume nascosto possibile per questo volume è {0}.</entry>
<entry lang="it" key="LINUX_OPEN_OUTER_VOL">Apri il volume esterno</entry>
<entry lang="it" key="LINUX_OUTER_VOL_IS_MOUNTED">Il volume esterno è stato creato e montato correttamente come '{0}'.\nIn questo volume dovresti ora copiare alcuni file dall'aspetto sensibile che in realtà NON vuoi nascondere.\nI file saranno lì per chiunque ti costringa a rivelare la tua password.\nRivelerai solo la password per questo volume esterno, non per quello nascosto.\nI file a cui tieni davvero verranno archiviati nel volume nascosto, che verrà creato in seguito.\nAl termine della copia, fare clic su Avanti. Non smontare il volume.\nNota: dopo aver selezionato 'Avanti', il volume esterno verrà analizzato per determinare la dimensione dell'area ininterrotta di spazio libero la cui estremità è allineata con l'estremità del volume.\nQuest'area ospiterà il volume nascosto, quindi limiterà la sua dimensione massima possibile.\nLa procedura garantisce che nessun dato sul volume esterno venga sovrascritto dal volume nascosto.</entry>
<entry lang="it" key="LINUX_OUTER_VOL_IS_MOUNTED">Il volume esterno è stato creato e montato correttamente come '{0}'.\nIn questo volume dovresti ora copiare alcuni file dall'aspetto sensibile che in realtà NON vuoi nascondere.\nI file saranno lì per chiunque ti costringa a rivelare la tua password.\nRivelerai solo la password per questo volume esterno, non per quello nascosto.\nI file a cui tieni davvero verranno archiviati nel volume nascosto, che verrà creato in seguito.\nAl termine della copia, fare clic su Avanti. Non smontare il volume.\nNota: dopo aver fatto selezionato 'Avanti', il volume esterno verrà analizzato per determinare la dimensione dell'area ininterrotta di spazio libero la cui estremità è allineata con l'estremità del volume.\nQuest'area ospiterà il volume nascosto, quindi limiterà la sua dimensione massima possibile.\nLa procedura garantisce che nessun dato sul volume esterno venga sovrascritto dal volume nascosto.</entry>
<entry lang="it" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">Errore: stai tentando di crittografare un'unità di sistema.\n\nVeraCrypt può crittografare un'unità di sistema solo in Windows.</entry>
<entry lang="it" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">Errore: stai tentando di crittografare una partizione di sistema.\n\nVeraCrypt può crittografare le partizioni di sistema solo in Windows.</entry>
<entry lang="it" key="LINUX_WARNING_FORMAT_DESTROY_FS">ATTENZIONE: la formattazione del dispositivo eliminerà tutti i dati sul filesystem '{0}'.\n\nVuoi continuare?</entry>
@@ -1522,8 +1520,7 @@
<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_DISMOUNTED">Il volume {0} è stato smontato.</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>
@@ -1553,7 +1550,7 @@
<entry lang="it" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Errore: l'unità usa una dimensione del settore diversa da 512 byte.\n\nA causa delle limitazioni dei componenti disponibili nella piattaforma, non è possibile creare/usare volumi ospitati in una partizione/dispositivo nell'unità.\n\nPossibili soluzioni:\n- Creare nell'unità un volume (contenitore) ospitato da un file.\n- Usare un'unità con settori da 512 byte.\n- Usare VeraCrypt in un'altra piattaforma.</entry>
<entry lang="it" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">Il file/dispositivo host è già in uso.</entry>
<entry lang="it" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Slot volume non disponibile.</entry>
<entry lang="it" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt richiede macFUSE 2.5 o superiore.</entry>
<entry lang="it" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt richiede OSXFUSE 2.5 o superiore.</entry>
<entry lang="it" key="EXCEPTION_OCCURRED">Si è verificata un'eccezione</entry>
<entry lang="it" key="ENTER_PASSWORD">Inserire password</entry>
<entry lang="it" key="ENTER_TC_VOL_PASSWORD">Digita la password del volume VeraCrypt</entry>
@@ -1568,126 +1565,8 @@
<entry lang="it" key="UNKNOWN_OPTION">Opzione sconosciuta</entry>
<entry lang="it" key="VOLUME_LOCATION">Percorso del volume</entry>
<entry lang="it" key="VOLUME_HOST_IN_USE">ATTENZIONE: il file/dispositivo host {0} è già in uso!\n\nIgnorarlo può causare risultati indesiderati inclusa l'instabilità del sistema.\nTutte le applicazioni che potrebbero usare il file/dispositivo host devono essere chiuse prima di montare il volume.\n\nVuoi continuare il montaggio?</entry>
<entry lang="it" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt è stato precedentemente installato utilizzando un pacchetto MSI e quindi non può essere aggiornato utilizzando l'installer standard.\n\nSi prega di utilizzare il pacchetto MSI per aggiornare l'installazione di VeraCrypt.</entry>
<entry lang="it" key="IDC_USE_ALL_FREE_SPACE">Usa tutto lo spazio libero disponibile</entry>
<entry lang="it" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">VeraCrypt non può essere aggiornato perché la partizione/unità di sistema è stata crittografata utilizzando un algoritmo non più supportato.\nSi prega di decrittografare il sistema prima di aggiornare VeraCrypt e poi crittografarlo nuovamente.</entry>
<entry lang="it" key="LINUX_EX2MSG_TERMINALNOTFOUND">Non è stato trovato un applicativo terminale supportato, è necessario xterm, konsole o gnome-terminal (con dbus-x11).</entry>
<entry lang="it" key="IDM_MOUNT_NO_CACHE">Monta senza cache</entry>
<entry lang="it" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nEspandi un volume VeraCrypt al volo senza riformattare\n\n\nTutti i tipi di volumi (file container, dischi e partizioni) formattati con NTFS sono supportati. L'unica condizione è che deve esserci abbastanza spazio libero sull'unità host o sul dispositivo host del volume VeraCrypt.\n\nNon utilizzare questo software per espandere un volume esterno contenente un volume nascosto, perché ciò distrugge il volume nascosto!\n</entry>
<entry lang="it" key="IDC_STEPSEXPAND">1. Seleziona il volume VeraCrypt da espandere\n2. Clicca sul pulsante 'Monta'</entry>
<entry lang="it" key="IDT_VOL_NAME">Volume: </entry>
<entry lang="it" key="IDT_FILE_SYS">File system: </entry>
<entry lang="it" key="IDT_CURRENT_SIZE">Dimensione corrente: </entry>
<entry lang="it" key="IDT_NEW_SIZE">Nuova dimensione: </entry>
<entry lang="it" key="IDT_NEW_SIZE_BOX_TITLE">Inserisci la nuova dimensione del volume</entry>
<entry lang="it" key="IDC_INIT_NEWSPACE">Riempi il nuovo spazio con dati casuali</entry>
<entry lang="it" key="IDC_QUICKEXPAND">Espansione Rapida</entry>
<entry lang="it" key="IDT_INIT_SPACE">Riempi il nuovo spazio: </entry>
<entry lang="it" key="EXPANDER_FREE_SPACE">Disponibile %s di spazio libero sull'unità host</entry>
<entry lang="it" key="EXPANDER_HELP_DEVICE">Questo è un volume VeraCrypt basato su dispositivo.\n\nLa nuova dimensione del volume sarà scelta automaticamente come dimensione del dispositivo host.</entry>
<entry lang="it" key="EXPANDER_HELP_FILE">Specificare la nuova dimensione del volume VeraCrypt (deve essere almeno %I64u KB maggiore della dimensione corrente).</entry>
<entry lang="it" key="QUICK_EXPAND_WARNING">ATTENZIONE: Utilizzare l'Espansione Rapida solo se:\n\n1) Il dispositivo che contiene il file container non contiene dati sensibili e non è necessaria la negazione plausibile.\n2) Il dispositivo che contiene il file container è già stato crittografato completamente e in modo sicuro.\n\nSicuro di voler utilizzare l'Espansione Rapida?</entry>
<entry lang="it" key="EXPANDER_STATUS_TEXT">IMPORTANTE: Muovi il mouse in modo casuale all'interno di questa finestra. Più a lungo lo muovi, meglio è. Questo aumenta significativamente la forza crittografica delle chiavi di crittografia. Poi clicca su 'Continua' per espandere il volume.</entry>
<entry lang="it" key="EXPANDER_STATUS_TEXT_LEGACY">Clicca su 'Continua' per espandere il volume.</entry>
<entry lang="it" key="EXPANDER_FINISH_ERROR">Errore: espansione del volume fallita.</entry>
<entry lang="it" key="EXPANDER_FINISH_ABORT">Errore: operazione annullata dall'utente.</entry>
<entry lang="it" key="EXPANDER_FINISH_OK">Finito. Volume espanso con successo.</entry>
<entry lang="it" key="EXPANDER_CANCEL_WARNING">Avviso: Espansione del volume in corso!\n\nInterrompere ora potrebbe causare un volume danneggiato.\n\nVuoi davvero annullare?</entry>
<entry lang="it" key="EXPANDER_STARTING_STATUS">Avvio dell'espansione del volume ...\n</entry>
<entry lang="it" key="EXPANDER_HIDDEN_VOLUME_ERROR">Un volume esterno contenente un volume nascosto non può essere espanso, perché ciò distrugge il volume nascosto.\n</entry>
<entry lang="it" key="EXPANDER_SYSTEM_VOLUME_ERROR">Un volume di sistema VeraCrypt non può essere espanso.</entry>
<entry lang="it" key="EXPANDER_NO_FREE_SPACE">Non c'è abbastanza spazio libero per espandere il volume</entry>
<entry lang="it" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Avviso: Il file container è più grande dell'area del volume VeraCrypt. I dati successivi a quest'area saranno sovrascritti.\n\nContinuare?</entry>
<entry lang="it" key="EXPANDER_WARNING_FAT">Avviso: Il volume VeraCrypt contiene un file system FAT!\n\nSolo il volume VeraCrypt stesso sarà espanso, ma non il file system.\n\nVuoi continuare?</entry>
<entry lang="it" key="EXPANDER_WARNING_EXFAT">Avviso: Il volume VeraCrypt contiene un file system exFAT!\n\nSolo il volume VeraCrypt stesso sarà espanso, ma non il file system.\n\nVuoi continuare?</entry>
<entry lang="it" key="EXPANDER_WARNING_UNKNOWN_FS">Avviso: Il volume VeraCrypt contiene un file system sconosciuto o nessun file system!\n\nSolo il volume VeraCrypt stesso sarà espanso, il file system rimane invariato.\n\nVuoi continuare?</entry>
<entry lang="it" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">Nuova dimensione del volume troppo piccola, deve essere almeno %I64u kB maggiore della dimensione corrente.</entry>
<entry lang="it" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">Nuova dimensione del volume troppo grande, non c'è abbastanza spazio sull'unità host.</entry>
<entry lang="it" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Dimensione massima del file di %I64u MB sull'unità host superata.</entry>
<entry lang="it" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Errore: Impossibile ottenere i permessi necessari per abilitare l'Espansione Rapida!\nSi prega di deselezionare l'opzione Espansione Rapida e riprovare.</entry>
<entry lang="it" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Dimensione massima del volume VeraCrypt di %I64u TB superata!\n</entry>
<entry lang="it" key="FULL_FORMAT">Formato Completo</entry>
<entry lang="it" key="FAST_CREATE">Creazione Veloce</entry>
<entry lang="it" key="WARN_FAST_CREATE">ATTENZIONE: Dovrebbe usare la Creazione Veloce solo nei seguenti casi:\n\n1) Il dispositivo non contiene dati sensibili e non richiede la negazione plausibile.\n2) Il dispositivo è già stato crittografato in modo sicuro e completamente.\n\nSei sicuro di voler usare la Creazione Veloce?</entry>
<entry lang="it" key="IDC_ENABLE_EMV_SUPPORT">Abilita Supporto EMV</entry>
<entry lang="it" key="COMMAND_APDU_INVALID">Il comando APDU inviato alla carta non è valido.</entry>
<entry lang="it" key="EXTENDED_APDU_UNSUPPORTED">I comandi APDU estesi non possono essere utilizzati con il token corrente.</entry>
<entry lang="it" key="SCARD_MODULE_INIT_FAILED">Errore durante il caricamento della libreria WinSCard / PCSC.</entry>
<entry lang="it" key="EMV_UNKNOWN_CARD_TYPE">La carta nel lettore non è una carta EMV supportata.</entry>
<entry lang="it" key="EMV_SELECT_AID_FAILED">L'AID della carta nel lettore non può essere selezionato.</entry>
<entry lang="it" key="EMV_ICC_CERT_NOTFOUND">Il Certificato di Chiave Pubblica ICC non è stato trovato nella carta.</entry>
<entry lang="it" key="EMV_ISSUER_CERT_NOTFOUND">Il Certificato di Chiave Pubblica dell'Emittente non è stato trovato nella carta.</entry>
<entry lang="it" key="EMV_CPLC_NOTFOUND">CPLC non è stato trovato nella carta EMV.</entry>
<entry lang="it" key="EMV_PAN_NOTFOUND">Nessun Numero di Conto Primario (PAN) trovato nella carta EMV.</entry>
<entry lang="it" key="INVALID_EMV_PATH">Il percorso EMV non è valido.</entry>
<entry lang="it" key="EMV_KEYFILE_DATA_NOTFOUND">Impossibile generare un file chiave dai dati della carta EMV.\n\nUno dei seguenti è mancante:\n- Certificato di Chiave Pubblica ICC.\n- Certificato di Chiave Pubblica dell'Emittente.\n- Dati CPLC.</entry>
<entry lang="it" key="SCARD_W_REMOVED_CARD">Nessuna carta nel lettore.\n\nAssicurati che la carta sia correttamente inserita.</entry>
<entry lang="it" key="FORMAT_EXTERNAL_FAILED">Il comando format.com di Windows non è riuscito a formattare il volume come NTFS/exFAT/ReFS: Errore 0x%.8X.\n\nSi passerà all'uso dell'API FormatEx di Windows.</entry>
<entry lang="it" key="FORMATEX_API_FAILED">L'API FormatEx di Windows non è riuscita a formattare il volume come NTFS/exFAT/ReFS.\n\nCodice di errore = %s.</entry>
<entry lang="it" key="EXPANDER_WRITING_RANDOM_DATA">Scrittura di dati casuali nel nuovo spazio ...\n</entry>
<entry lang="it" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Scrittura dell'header di backup ricrittografato ...\n</entry>
<entry lang="it" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Scrittura dell'header primario ricrittografato ...\n</entry>
<entry lang="it" key="EXPANDER_WIPING_OLD_HEADER">Cancellazione dell'header di backup vecchio ...\n</entry>
<entry lang="it" key="EXPANDER_MOUNTING_VOLUME">Montaggio del volume ...\n</entry>
<entry lang="it" key="EXPANDER_UNMOUNTING_VOLUME">Smontaggio del volume ...\n</entry>
<entry lang="it" key="EXPANDER_EXTENDING_FILESYSTEM">Estensione del file system ...\n</entry>
<entry lang="it" key="PARTIAL_SYSENC_MOUNT_READONLY">Avviso: La partizione di sistema che hai tentato di montare non è stata completamente crittografata. Come misura di sicurezza per prevenire possibili danneggiamenti o modifiche indesiderate, il volume '%s' è stato montato come di sola lettura.</entry>
<entry lang="it" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Informazioni importanti sull'uso delle estensioni di file di terze parti</entry>
<entry lang="it" key="IDC_DISABLE_MEMORY_PROTECTION">Disabilita la protezione della memoria per la compatibilità con gli strumenti di accessibilità</entry>
<entry lang="it" key="DISABLE_MEMORY_PROTECTION_WARNING">ATTENZIONE: Disabilitare la protezione della memoria riduce significativamente la sicurezza. Attiva questa opzione SOLO se fai affidamento su strumenti di accessibilità, come Screen Readers, per interagire con l'interfaccia utente di VeraCrypt.</entry>
<entry lang="it" key="LINUX_LANGUAGE">Lingua</entry>
<entry lang="it" key="LINUX_SELECT_SYS_DEFAULT_LANG">Seleziona la lingua predefinita del sistema</entry>
<entry lang="it" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">Perché il cambio di lingua abbia effetto, VeraCrypt deve essere riavviato.</entry>
<entry lang="it" key="ERR_XTS_MASTERKEY_VULNERABLE">ATTENZIONE: La chiave master del volume è vulnerabile a un attacco che compromette la sicurezza dei dati.\n\nSi consiglia di creare un nuovo volume e trasferirvi i dati.</entry>
<entry lang="it" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">ATTENZIONE: La chiave master del sistema crittografato è vulnerabile a un attacco che compromette la sicurezza dei dati.\nSi prega di decrittografare la partizione/unità di sistema e quindi crittografarla nuovamente.</entry>
<entry lang="it" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">ATTENZIONE: La chiave master del volume ha una vulnerabilità di sicurezza.</entry>
<entry lang="it" key="MOUNTPOINT_BLOCKED">ERRORE: Il punto di montaggio del volume è bloccato perché sovrascrive una directory di sistema protetta.\n\nScegli un punto di montaggio diverso.</entry>
<entry lang="it" key="MOUNTPOINT_NOTALLOWED">ERRORE: Il punto di montaggio del volume non è consentito perché sovrascrive una directory che fa parte della variabile d'ambiente PATH.\n\nScegli un punto di montaggio diverso.</entry>
<entry lang="it" key="INSECURE_MODE">[MODALITÀ NON SICURA]</entry>
<entry lang="it" key="IDC_DISABLE_SCREEN_PROTECTION">Disabilita la protezione contro screenshot e registrazione dello schermo</entry>
<entry lang="it" key="DISABLE_SCREEN_PROTECTION_WARNING">ATTENZIONE: Disabilitare la protezione dello schermo riduce significativamente la sicurezza. Attiva questa opzione SOLO se hai una necessità specifica di acquisire linterfaccia di VeraCrypt. Questo potrebbe esporre dati sensibili a strumenti di cattura schermo e a funzionalità di registrazione come Windows 11 Recall.</entry>
<entry lang="it" key="MEMORY_COST">Costo di Memoria</entry>
<entry lang="it" key="IDT_KDF_ALGO">Algoritmo KDF</entry>
<entry lang="it" key="IDD_PREFERENCES_TAB_GENERAL">Generale</entry>
<entry lang="it" key="IDD_PREFERENCES_TAB_ACTIONS">Azioni</entry>
<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_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>
<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="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
File diff suppressed because it is too large Load Diff
+61 -182
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
@@ -135,8 +135,8 @@
<entry lang="ka" key="IDC_FAVORITE_REMOVE">წაშლა</entry>
<entry lang="en" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Use favorite label as Explorer drive label</entry>
<entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key dismount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key dismount</entry>
<entry lang="ka" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="en" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="ka" key="IDC_HK_MOD_SHIFT">Shift</entry>
@@ -156,12 +156,12 @@
<entry lang="en" key="IDC_PIM_HELP">(Empty or 0 for default iterations)</entry>
<entry lang="ka" key="IDC_PREF_BKG_TASK_ENABLE">ჩართულია</entry>
<entry lang="ka" key="IDC_PREF_CACHE_PASSWORDS">პაროლების ქეშირება მეხსიერებაში</entry>
<entry lang="ka" key="IDC_PREF_UNMOUNT_INACTIVE">ტომის ავტოგამოერთება უმოქმედობისას</entry>
<entry lang="ka" key="IDC_PREF_UNMOUNT_LOGOFF">სეანსების დასრულება</entry>
<entry lang="en" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="ka" key="IDC_PREF_UNMOUNT_POWERSAVING">ენერგოშენახვის რეჟიმში შესვლისას</entry>
<entry lang="ka" key="IDC_PREF_UNMOUNT_SCREENSAVER">Screen Saver-ის ჩართვისას</entry>
<entry lang="ka" key="IDC_PREF_FORCE_AUTO_UNMOUNT">ტომის ავტოგამოერთება გახსნილი ფაილების/ფოლდერების დროს</entry>
<entry lang="ka" key="IDC_PREF_DISMOUNT_INACTIVE">ტომის ავტოგამოერთება უმოქმედობისას</entry>
<entry lang="ka" key="IDC_PREF_DISMOUNT_LOGOFF">სეანსების დასრულება</entry>
<entry lang="en" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="ka" key="IDC_PREF_DISMOUNT_POWERSAVING">ენერგოშენახვის რეჟიმში შესვლისას</entry>
<entry lang="ka" key="IDC_PREF_DISMOUNT_SCREENSAVER">Screen Saver-ის ჩართვისას</entry>
<entry lang="ka" key="IDC_PREF_FORCE_AUTO_DISMOUNT">ტომის ავტოგამოერთება გახსნილი ფაილების/ფოლდერების დროს</entry>
<entry lang="ka" key="IDC_PREF_LOGON_MOUNT_DEVICES">ყველა ტომის მიერთება მოწყობილობაზე</entry>
<entry lang="en" key="IDC_PREF_LOGON_START">Start VeraCrypt Background Task</entry>
<entry lang="ka" key="IDC_PREF_MOUNT_READONLY">ტომის მიერთება მხოლოდ კითხვისათვის</entry>
@@ -169,7 +169,7 @@
<entry lang="ka" key="IDC_PREF_OPEN_EXPLORER">წარმატებული მიერთების შემთხვევაში Explorer-ის გახსნა</entry>
<entry lang="en" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">Temporarily cache password during "Mount Favorite Volumes" operations</entry>
<entry lang="en" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Use a different taskbar icon when there are mounted volumes</entry>
<entry lang="ka" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">პაროლების ქეშის წაშლა ავტოგამოერთებისას</entry>
<entry lang="ka" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">პაროლების ქეშის წაშლა ავტოგამოერთებისას</entry>
<entry lang="ka" key="IDC_PREF_WIPE_CACHE_ON_EXIT">პაროლების ქეშის წაშლა გასვლისას</entry>
<entry lang="en" key="IDC_PRESERVE_TIMESTAMPS">Preserve modification timestamp of file containers</entry>
<entry lang="ka" key="IDC_RESET_HOTKEYS">საწყისი</entry>
@@ -269,14 +269,14 @@
<entry lang="en" key="IDT_ACCELERATION_OPTIONS">Hardware Acceleration</entry>
<entry lang="ka" key="IDT_ASSIGN_HOTKEY">სწრაფი გამოძახების კლავიში</entry>
<entry lang="ka" key="IDT_AUTORUN">ავტოგაშვების ფაილის (autorun.inf) გამართვა</entry>
<entry lang="ka" key="IDT_AUTO_UNMOUNT">ავტოგამოერთება</entry>
<entry lang="ka" key="IDT_AUTO_UNMOUNT_ON">ყველა ტომის გამოერთება:</entry>
<entry lang="ka" key="IDT_AUTO_DISMOUNT">ავტოგამოერთება</entry>
<entry lang="ka" key="IDT_AUTO_DISMOUNT_ON">ყველა ტომის გამოერთება:</entry>
<entry lang="en" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader Screen Options</entry>
<entry lang="ka" key="IDT_CONFIRM_PASSWORD">დაადასტურეთ:</entry>
<entry lang="ka" key="IDT_CURRENT">მიმდინარე</entry>
<entry lang="en" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">Display this custom message in the pre-boot authentication screen (24 characters maximum):</entry>
<entry lang="ka" key="IDT_DEFAULT_MOUNT_OPTIONS">ტომების მიერთების საწყისი პარამეტრები</entry>
<entry lang="ka" key="IDT_UNMOUNT_ACTION">დამატებითი პარამეტრები</entry>
<entry lang="ka" key="IDT_DISMOUNT_ACTION">დამატებითი პარამეტრები</entry>
<entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry>
<entry lang="en" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Enable extended disk control codes support</entry>
<entry lang="en" key="IDT_FAVORITE_LABEL">Label of selected favorite volume:</entry>
@@ -291,11 +291,10 @@
<entry lang="ka" key="IDT_NEW_PASSWORD">პაროლი:</entry>
<entry lang="en" key="IDT_PARALLELIZATION_OPTIONS">Thread-Based Parallelization</entry>
<entry lang="en" key="IDT_PKCS11_LIB_PATH">PKCS #11 Library Path</entry>
<entry lang="ka" key="IDT_KDF">KDF:</entry>
<entry lang="en" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="ka" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="en" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="ka" key="IDT_PW_CACHE_OPTIONS">პაროლების ქეშირება (დამახსოვრება)</entry>
<entry lang="en" key="IDT_SECURITY_OPTIONS">Security Options</entry>
<entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry>
<entry lang="ka" key="IDT_TASKBAR_ICON">VeraCrypt-ის მუშაობა ფონურ რეჟიმში</entry>
<entry lang="ka" key="IDT_TRAVELER_MOUNT">VeraCrypt-ის მისაერთებელი ტომი (დისკის ძირეულ კატალოგთან მიმართებით):</entry>
<entry lang="ka" key="IDT_TRAVEL_INSERTION">მოგზაური დისკის მიერთებისას: </entry>
@@ -357,7 +356,7 @@
<entry lang="ka" key="IDT_KEYFILE_WARNING">!!!გასაღების ფაილის დაკარგვის ან პირველი 1024კბ დაზიანების შემდეგ, ტომების მიერთება შეუძლებელი იქნება!</entry>
<entry lang="ka" key="IDT_KEY_UNIT">ბიტი</entry>
<entry lang="en" key="IDT_NUMBER_KEYFILES">Number of keyfiles:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size (in Bytes):</entry>
<entry lang="en" key="IDT_KEYFILES_BASE_NAME">Keyfiles base name:</entry>
<entry lang="ka" key="IDT_LANGPACK_AUTHORS">თარგმანის ავტორი:</entry>
<entry lang="ka" key="IDT_PLAINTEXT">ზომა:</entry>
@@ -390,7 +389,6 @@
<entry lang="en" key="ADMINISTRATOR">Administrator</entry>
<entry lang="ka" key="ADMIN_PRIVILEGES_DRIVER">VeraCrypt-ის დრაივერის ჩასატვირთად სისტემაში ადმინისტრატორის უფლებებით უნდა იყოთ შესული</entry>
<entry lang="ka" key="ADMIN_PRIVILEGES_WARN_DEVICES">განაყოფის/მოწყობილობის შიფრაციისათვის/ფორმატირებისათვის სისტემაში ადმინისტრატორის უფლებებით უნდა იყოთ შესული.\n\n ეს არ ეხება ტომებს ფაილის ბაზაზე.</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="ka" key="ADMIN_PRIVILEGES_WARN_HIDVOL">ფარული ტომის შექმნისათვის სისტემაში ადმინისტრატორის უფლებებით უნდა იყოთ შესული.\n\nგავაგრძელო?</entry>
<entry lang="ka" key="ADMIN_PRIVILEGES_WARN_NTFS">ტომის NTFS ფორმატირებისათვის სისტემაში ადმინისტრატორის უფლებებით უნდა იყოთ შესული.\n\nამის გარეშე ტომის ფორმატირება შესაძლებელია მხოლოდ როგორც FAT</entry>
<entry lang="ka" key="AES_HELP">FIPS-ის მიერ დამტკიცებული შიფრი (Rijndael, გამოქვეყნდა 1998წ), გამოიყენება სახელმწიფო უწყებებში ზესაიდუმლო ინფორმაციის დასაცავად. 256-ბიტი გასაღები, 128-ბიტი ბლოკი, 14 რაუნდი (AES-256). ქმედების რეჟიმი-XTS.</entry>
@@ -423,8 +421,8 @@
<entry lang="en" key="DEVICE_FREE_PB">Size of %s is %.2f PB</entry>
<entry lang="ka" key="DEVICE_IN_USE_FORMAT">ყურადღება: მოწყობილობა/განაყოფი გამოიყენება ოპერაციული სისტემის ან პროგრამის მიერ. ფორმატირებამ შეიძლება გამოიწვიოს მონაცემთა დაკარგვა ან სისტემის არასტაბილურობა.\n\nგსურთ გაგრძელება?</entry>
<entry lang="en" key="DEVICE_IN_USE_INPLACE_ENC">Warning: The partition is in use by the operating system or applications. You should close any applications that might be using the partition (including antivirus software).\n\nContinue?</entry>
<entry lang="ka" key="FORMAT_CANT_UNMOUNT_FILESYS">შეცდომა: მოწყობილობა/განაყოფი შეიცავს ფაილურ სისტემას, რომლის გამოერთებაც შეუძლებელია. ეს ფაილური სისტემა შესაძლოა გამოიყენება ოპერაციული სისტემის მიერ. მოწყობილობა/განაყოფის ფორმატირება გამოიწვევს მონაცემთა დაკარგვას და სისტემის არასტაბილურობას.\n\n პრობლემის გადასაჭრელად რეკომენდირებულია ამ განაყოფის გაუქმება, შემდეგ მისი კვლავ შექმნა ფორმატირების გარეშე. ინსტრუქცია: 1) მაუსის მარჯვენა ღილაკით დაწკაპეთ ხატულაზე "My computer" და აირჩიეთ მენიუ "Manage". 2) ფანჯარაში "Computer Management" აირჩიეთ "Storage"&gt; "Disk Management". 3) მაუსის დაწკაპეთ იმ განაყოფზე, რომლის დაშიფრვაც გსურთ და აირჩიეთ ან "Delete Partition" ან "Delete volume" ან Delete logical volume". 4) დაწკაპეთ "Yes". 5) მაუსის მარჯვენა ღილაკით დაწკაპეთ დისკის ცარიელ ადგილზე (წარწერით "Unmounted") და აირჩიეთ "ძირითადი განაყოფი", "დამატებითი განაყოფი" ან "ლოგიკური დისკი". 6) გამოჩნდება განაყოფებისა და ტომების შექმნის ოსტატი, მიყევით მის ინსტრუქციებს. 7) დამხმარის გვერდზე სახელით "Formatting Partition" აირჩიეთ "Do not format partition" ან "Do not format volume". დაწკაპეთ "Next". 8) დაწკაპეთ "Finish". 9) VeraCrypt-ში ხელახლა სცადეთ ამ მოწყობილობის/განაყოფის დაშიფრვა.\n\nთუ VeraCrypt ისევ უარს იტყვის ამ მოწყობილობის/განაყოფის დაშიფრვაზე,მაშინ მოწყობილობის ბაზაზე კონტეინერის ნაცვლად შექმენით ფაილური კონტეინერი.</entry>
<entry lang="en" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Error: The filesystem could not be locked and/or unmounted. It may be in use by the operating system or applications (for example, antivirus software). Encrypting the partition might cause data corruption and system instability.\n\nPlease close any applications that might be using the filesystem (including antivirus software) and try again. If it does not help, please follow the below steps.</entry>
<entry lang="ka" key="FORMAT_CANT_DISMOUNT_FILESYS">შეცდომა: მოწყობილობა/განაყოფი შეიცავს ფაილურ სისტემას, რომლის გამოერთებაც შეუძლებელია. ეს ფაილური სისტემა შესაძლოა გამოიყენება ოპერაციული სისტემის მიერ. მოწყობილობა/განაყოფის ფორმატირება გამოიწვევს მონაცემთა დაკარგვას და სისტემის არასტაბილურობას.\n\n პრობლემის გადასაჭრელად რეკომენდირებულია ამ განაყოფის გაუქმება, შემდეგ მისი კვლავ შექმნა ფორმატირების გარეშე. ინსტრუქცია: 1) მაუსის მარჯვენა ღილაკით დაწკაპეთ ხატულაზე "My computer" და აირჩიეთ მენიუ "Manage". 2) ფანჯარაში "Computer Management" აირჩიეთ "Storage"&gt; "Disk Management". 3) მაუსის დაწკაპეთ იმ განაყოფზე, რომლის დაშიფრვაც გსურთ და აირჩიეთ ან "Delete Partition" ან "Delete volume" ან Delete logical volume". 4) დაწკაპეთ "Yes". 5) მაუსის მარჯვენა ღილაკით დაწკაპეთ დისკის ცარიელ ადგილზე (წარწერით "Unmounted") და აირჩიეთ "ძირითადი განაყოფი", "დამატებითი განაყოფი" ან "ლოგიკური დისკი". 6) გამოჩნდება განაყოფებისა და ტომების შექმნის ოსტატი, მიყევით მის ინსტრუქციებს. 7) დამხმარის გვერდზე სახელით "Formatting Partition" აირჩიეთ "Do not format partition" ან "Do not format volume". დაწკაპეთ "Next". 8) დაწკაპეთ "Finish". 9) VeraCrypt-ში ხელახლა სცადეთ ამ მოწყობილობის/განაყოფის დაშიფრვა.\n\nთუ VeraCrypt ისევ უარს იტყვის ამ მოწყობილობის/განაყოფის დაშიფრვაზე,მაშინ მოწყობილობის ბაზაზე კონტეინერის ნაცვლად შექმენით ფაილური კონტეინერი.</entry>
<entry lang="en" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Error: The filesystem could not be locked and/or dismounted. It may be in use by the operating system or applications (for example, antivirus software). Encrypting the partition might cause data corruption and system instability.\n\nPlease close any applications that might be using the filesystem (including antivirus software) and try again. If it does not help, please follow the below steps.</entry>
<entry lang="ka" key="DEVICE_IN_USE_INFO">ყურადღება მიერთებული მოწყობილობები/განაყოფებიდან ზოგიერთი უკვე გამოიყენება.\n\nმის იგნორირებამ შეიძლება გამოიწვიოს არასასურველი შედეგები, სისტემის არასტაბილურობის ჩათვლით.\n\nრეკომენდებულია დახუროთ ყველა პროგრამა, რომელიც იყენებს ამ მოწყობილობას/განაყოფს.</entry>
<entry lang="ka" key="DEVICE_PARTITIONS_ERR">მითითებული მოწყობილობა შეიცავს განაყოფებს.\n\n მოწყობილობის ფორმატირებამ შეიძლება გამოიწვიოს სისტემის არასტაბილურობა ან/და მონაცემთა დაკარგვა. აირჩიეთ განაყოფი ამ მოწყობილობაზე ან წაშალეთ ყველა განაყოფი, რათა მისცეთ VeraCrypt-ს მოწყობილობის უსაფრთხო ფორმატირების საშუალება</entry>
<entry lang="en" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">The selected non-system device contains partitions.\n\nEncrypted device-hosted VeraCrypt volumes can be created within devices that do not contain any partitions (including hard disks and solid-state drives). A device that contains partitions can be entirely encrypted in place (using a single master key) only if it is the drive where Windows is installed and from which it boots.\n\nIf you want to encrypt the selected non-system device using a single master key, you will need to remove all partitions on the device first to enable VeraCrypt to format it safely (formatting a device that contains partitions might cause system instability and/or data corruption). Alternatively, you can encrypt each partition on the drive individually (each partition will be encrypted using a different master key).\n\nNote: If you want to remove all partitions from a GPT disk, you may need to convert it to a MBR disk (using e.g. the Computer Management tool) in order to remove hidden partitions.</entry>
@@ -525,7 +523,7 @@
<entry lang="ka" key="HIDVOL_FORMAT_FINISHED_TITLE">ფარული ტომი შექმნილია</entry>
<entry lang="en" key="HIDVOL_FORMAT_FINISHED_HELP">The hidden VeraCrypt volume has been successfully created and is ready for use. If all the instructions have been followed and if the precautions and requirements listed in the section "Security Requirements and Precautions Pertaining to Hidden Volumes" in the VeraCrypt User's Guide are followed, it should be impossible to prove that the hidden volume exists, even when the outer volume is mounted.\n\nWARNING: IF YOU DO NOT PROTECT THE HIDDEN VOLUME (FOR INFORMATION ON HOW TO DO SO, REFER TO THE SECTION "PROTECTION OF HIDDEN VOLUMES AGAINST DAMAGE" IN THE VERACRYPT USER'S GUIDE), DO NOT WRITE TO THE OUTER VOLUME. OTHERWISE, YOU MAY OVERWRITE AND DAMAGE THE HIDDEN VOLUME!</entry>
<entry lang="en" key="FIRST_HIDDEN_OS_BOOT_INFO">You have started the hidden operating system. As you may have noticed, the hidden operating system appears to be installed on the same partition as the original operating system. However, in reality, it is installed within the partition behind it (in the hidden volume). All read and write operations are being transparently redirected from the original system partition to the hidden volume.\n\nNeither the operating system nor applications will know that data written to and read from the system partition are actually written to and read from the partition behind it (from/to a hidden volume). Any such data is encrypted and decrypted on the fly as usual (with an encryption key different from the one that will be used for the decoy operating system).\n\n\nPlease click Next to continue.</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP_SYSENC">The outer volume has been created and mounted as drive %hc:. To this outer volume you should now copy some sensitive-looking files that you actually do NOT want to hide. They will be there for anyone forcing you to disclose the password for the first partition behind the system partition, where both the outer volume and the hidden volume (containing the hidden operating system) will reside. You will be able to reveal the password for this outer volume, and the existence of the hidden volume (and of the hidden operating system) will remain secret.\n\nIMPORTANT: The files you copy to the outer volume should not occupy more than %s. Otherwise, there may not be enough free space on the outer volume for the hidden volume (and you will not be able to continue). After you finish copying, click Next (do not unmount the volume).</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP_SYSENC">The outer volume has been created and mounted as drive %hc:. To this outer volume you should now copy some sensitive-looking files that you actually do NOT want to hide. They will be there for anyone forcing you to disclose the password for the first partition behind the system partition, where both the outer volume and the hidden volume (containing the hidden operating system) will reside. You will be able to reveal the password for this outer volume, and the existence of the hidden volume (and of the hidden operating system) will remain secret.\n\nIMPORTANT: The files you copy to the outer volume should not occupy more than %s. Otherwise, there may not be enough free space on the outer volume for the hidden volume (and you will not be able to continue). After you finish copying, click Next (do not dismount the volume).</entry>
<entry lang="ka" key="HIDVOL_HOST_FILLING_HELP">გარე ტომი შექმნილია და მიერთებულია, როგორც დისკი %hc:. ამ ტომში საჭიროა გადმოიწეროს რაიმე ფაილები, რომლებიც არ შეიცავენ თქვენთვის მნიშვნელოვან რაიმე ინფორმაციას, რათა შეცდომაში შეიყვანოთ უცხო პირი, თუკი ის გარე ტომის პაროლს გამოგძალავთ. ამ შემთხვევაში თქვენ მას გადასცემთ მხოლოდ გარე, და არა ფარული ტომის, პაროლს. ფაილები, თქვენთვის ნამდვილად ღირებული ინფორმაციით, შეინახება ფარულ ტომზე. როდესაც მორჩებით ფაილების გადმოწერას,დააჭირეთ "შემდეგ"-ს'. არ გამოაერთოთ ეს ტომი. შენიშვნა: "შემდეგ"-ზე დაჭერა გაუშვებს გარე ტომის კლასტერების რუკის სკანირების პროცესს, უწყვეტი თავისუფალი სივრცის გამოსავლენად, რომლის დაბოლოება ახალი ტომის დაბოლოება გახდება. ეს მონაკვეთი გამოყენებულ იქნება ფარული ტომის განსათავსებლად, ანუ მისი ზომით განისაზღვრება ფარული ტომის მაქსიმალური მოცულობა. კლასტერების რუკის სკანირება იმის გარანტია, რომ გარე ტომის მონაცემები არ დაზიანდება ფარული ტომში მომხდარი ჩანაწერების შედეგად.</entry>
<entry lang="ka" key="HIDVOL_HOST_FILLING_TITLE">გარე ტომის მონაცემები</entry>
<entry lang="ka" key="HIDVOL_HOST_PRE_CIPHER_HELP">\n\nშემდგომ ეტაპებზე მიუთითეთ გარე ტომის პარამეტრები</entry>
@@ -590,7 +588,7 @@
<entry lang="en" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">Error: The files you copied to the outer volume occupy too much space. Therefore, there is not enough free space on the outer volume for the hidden volume.\n\nNote that the hidden volume must be as large as the system partition (the partition where the currently running operating system is installed). The reason is that the hidden operating system needs to be created by copying the content of the system partition to the hidden volume.\n\n\nThe process of creation of the hidden operating system cannot continue.</entry>
<entry lang="ka" key="OPENFILES_DRIVER">დრაივერის მიერ ტომის გამოერთება ვერ ხერხდება. შესაძლოა, ტომზე ფარული ფაილებია.</entry>
<entry lang="ka" key="OPENFILES_LOCK">ტომის ბლოკირება შეუძლებელია. მასზე განთავსებულია ფარული ფაილებია, ამიტომ მისი გამოერთება არ შეიძლება.</entry>
<entry lang="en" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt cannot lock the volume because it is in use by the system or applications (there may be open files on the volume).\n\nDo you want to force unmount on the volume?</entry>
<entry lang="en" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt cannot lock the volume because it is in use by the system or applications (there may be open files on the volume).\n\nDo you want to force dismount on the volume?</entry>
<entry lang="ka" key="OPEN_VOL_TITLE">აირჩიეთ VeraCrypt-ის ტომი</entry>
<entry lang="ka" key="OPEN_TITLE">მიუთითეთ ფაილის მისამართი დ სახელი</entry>
<entry lang="en" key="SELECT_PKCS11_MODULE">Select PKCS #11 Library</entry>
@@ -613,7 +611,7 @@
<entry lang="en" key="FAVORITE_PIM_CHANGED">This volume is registered as a System Favorite and its PIM was changed.\nDo you want VeraCrypt to automatically update the System Favorite configuration (administrator privileges required)?\n\nPlease note that if you answer no, you'll have to update the System Favorite manually.</entry>
<entry lang="en" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">IMPORTANT: If you did not destroy your VeraCrypt Rescue Disk, your system partition/drive can still be decrypted using the old password (by booting the VeraCrypt Rescue Disk and entering the old password). You should create a new VeraCrypt Rescue Disk and then destroy the old one.\n\nDo you want to create a new VeraCrypt Rescue Disk?</entry>
<entry lang="ka" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">შენიშვნა:VeraCrypt-ის აღმდგენი დისკი ჯერჯერობით ისევ ძველ ალგორითმს იყენებს. თუ ძველი ალგორითმი დაუცველად მიგაჩბნიათ, მაშინ შექმენით ახალი აღმდგენი დისკი და ძველი გაანადგურეთ.\n\nგსურთ ახალი აღმდგენი დისკის შექმნა?</entry>
<entry lang="en" key="KEYFILES_NOTE">Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="en" key="KEYFILES_NOTE">Any kind of file (for example, .mp3, .jpg, .zip, .avi) may be used as a VeraCrypt keyfile. Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="ka" key="KEYFILE_CHANGED">გასაღების ფაილები წარმატებით დაემატა/წაიშალა.</entry>
<entry lang="en" key="KEYFILE_EXPORTED">Keyfile exported.</entry>
<entry lang="ka" key="PKCS5_PRF_CHANGED">სათაურის გასაღების დერივაციის ალგორითმი წარმატებით დაყენდა.</entry>
@@ -729,7 +727,7 @@
<entry lang="en" key="DLL_FILES">Library Modules</entry>
<entry lang="ka" key="FORMAT_NTFS_STOP">NTFS-ფორმატირების გაგრძელება შეუძლებელია.</entry>
<entry lang="ka" key="CANT_MOUNT_VOLUME">ტომის მიერთება შეუძლებელია.</entry>
<entry lang="ka" key="CANT_UNMOUNT_VOLUME">ტომის გამოერთება შეუძლებელია.</entry>
<entry lang="ka" key="CANT_DISMOUNT_VOLUME">ტომის გამოერთება შეუძლებელია.</entry>
<entry lang="ka" key="FORMAT_NTFS_FAILED">Windows ვერ აფორმატირებს ამ ტომს, როგორც NTFS.\n\nაირჩიეთ სხვა ფაილური სისტემა და გაიმეორეთ ცდა. ან შეგიძლიათ დასტოვოთ ეს ტომი დაუფორმატებელი (ფაილური სისტემის არჩევის ველში მიუთითეთ "არა"), დახურეტ ოსტატის ფანჯარა, მიაერთეთ ტომი, შემდეგ კი სისტემური ან სხვა უტილიტის დააფორმატირეთ მიერთებული ტომი (ამ დროს ტომი დაშიფრული რჩება).</entry>
<entry lang="ka" key="FORMAT_NTFS_FAILED_ASK_FAT">ტომის NTFS ფორმატირება არ მოხერხდა.\n\nგსურთ დააფორმატოთ ტომი როგორც FAT?</entry>
<entry lang="ka" key="DEFAULT">საწყისად</entry>
@@ -771,7 +769,7 @@
<entry lang="en" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">An error prevented VeraCrypt from encrypting the partition. Please try fixing any previously reported problems and then try again. If the problems persist, it might help to follow the below steps.</entry>
<entry lang="en" key="INPLACE_ENC_GENERIC_ERR_RESUME">An error prevented VeraCrypt from resuming the process of encryption of the partition.\n\nPlease try fixing any previously reported problems and then try resuming the process again. Note that the volume cannot be mounted until it has been fully encrypted.</entry>
<entry lang="en" key="INPLACE_DEC_GENERIC_ERR">An error prevented VeraCrypt from decrypting the volume. Please try fixing any previously reported problems and then try again if possible.</entry>
<entry lang="ka" key="CANT_UNMOUNT_OUTER_VOL">შეცდომა! გარე ტომის გამოერთება შეუძლებელია.\n\nტომის გამოერთება შეუძლებელია, თუ იგი შეიცავს ფაილებს ან ფოლდერებს, რომლებიც გამოიყენება სისტემის ან სხვა პროგრამის მიერ.\n\nდახურეთ ყველა პროგრამა, რომლებიც შესაძლოა იყენებენ ფაილებს ამ ტომში, და დააჭირეთ "გამეორება"-ს.</entry>
<entry lang="ka" key="CANT_DISMOUNT_OUTER_VOL">შეცდომა! გარე ტომის გამოერთება შეუძლებელია.\n\nტომის გამოერთება შეუძლებელია, თუ იგი შეიცავს ფაილებს ან ფოლდერებს, რომლებიც გამოიყენება სისტემის ან სხვა პროგრამის მიერ.\n\nდახურეთ ყველა პროგრამა, რომლებიც შესაძლოა იყენებენ ფაილებს ამ ტომში, და დააჭირეთ "გამეორება"-ს.</entry>
<entry lang="ka" key="CANT_GET_OUTER_VOL_INFO">შეცდომა: გარე ტომის შესახებ ინფორმაციის მიღება ვერ ხერხდება! ტომის შექმნის პროცესი შეწყვეტილია.</entry>
<entry lang="ka" key="CANT_ACCESS_OUTER_VOL">შეცდომა! გარე ტომთან წვდომა არ არის. ტომის შექმნის გაგრძელება შეუძლებელია.</entry>
<entry lang="ka" key="CANT_MOUNT_OUTER_VOL">შეცდომა! გარე ტომის მიერთება შეუძლებელია. ტომის შექმნის გაგრძელება შეუძლებელია.</entry>
@@ -813,7 +811,7 @@
<entry lang="en" key="SECONDARY_KEY_SIZE_LRW">Tweak Key Size (LRW Mode)</entry>
<entry lang="ka" key="BITS">ბიტი</entry>
<entry lang="ka" key="BLOCK_SIZE">ბლოკის ზომა</entry>
<entry lang="ka" key="KDF">KDF</entry>
<entry lang="ka" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="ka" key="PKCS5_ITERATIONS">PKCS-5 ოპერაციების რაოდენობა</entry>
<entry lang="ka" key="VOLUME_CREATE_DATE">ტომი შექმნილია</entry>
<entry lang="ka" key="VOLUME_HEADER_DATE">სათაურის ბოლო ცვლილება</entry>
@@ -855,7 +853,7 @@
<entry lang="en" key="TC_INSTALLER_IS_RUNNING">VeraCrypt Installer is currently running on this system and performing or preparing installation or update of VeraCrypt. Before you proceed, please wait for it to finish or close it. If you cannot close it, please restart your computer before proceeding.</entry>
<entry lang="ka" key="INSTALL_FAILED">ინსტალაცია ჩაიშალა.</entry>
<entry lang="ka" key="UNINSTALL_FAILED">დეინსტალაცია ჩაიშალა.</entry>
<entry lang="ka" key="DIST_PACKAGE_CORRUPTED">ეს საინსტალაციო პაკეტი დაზიანებულია. გთხოვთ, ხელახლან ჩამოტვირთოთ (უმჯობესია ოფიციალური საიტიდან https://veracrypt.jp).</entry>
<entry lang="ka" key="DIST_PACKAGE_CORRUPTED">ეს საინსტალაციო პაკეტი დაზიანებულია. გთხოვთ, ხელახლან ჩამოტვირთოთ (უმჯობესია ოფიციალური საიტიდან https://www.veracrypt.fr).</entry>
<entry lang="ka" key="CANNOT_WRITE_FILE_X">ფაილის %s ჩაწერა არ ხერხდება</entry>
<entry lang="ka" key="EXTRACTING_VERB">დეარქივაცია</entry>
<entry lang="ka" key="CANNOT_READ_FROM_PACKAGE">პაკეტიდან მონაცემთა წაკითხვა არ ხერხდება.</entry>
@@ -882,7 +880,7 @@
<entry lang="ka" key="INSTALL_COMPLETED">ინსტალაცია დასრულებულია.</entry>
<entry lang="ka" key="CANT_CREATE_FOLDER">%s' ფოლდერის შექმნა არ მოხდა.</entry>
<entry lang="ka" key="CLOSE_TC_FIRST">VeraCrypt-ის დრაივერის ამოტვირთვა შეუძლებელია.\n\nდახურეთ VeraCrypt-ის ყველა გახსნილი ფანჯარა. თუ შედეგი არ არის, გადატვირთეთ Windows და სცადეთ ხელახლა.</entry>
<entry lang="ka" key="UNMOUNT_ALL_FIRST">ინსტალაციის გაგრძელებამდე, საჭიროა VeraCrypt-ის ყველა მიერთებული ტომის გამოერთება.</entry>
<entry lang="ka" key="DISMOUNT_ALL_FIRST">ინსტალაციის გაგრძელებამდე, საჭიროა VeraCrypt-ის ყველა მიერთებული ტომის გამოერთება.</entry>
<entry lang="en" key="UNINSTALL_OLD_VERSION_FIRST">An obsolete version of VeraCrypt is currently installed on this system. It needs to be uninstalled before you can install this new version of VeraCrypt.\n\nAs soon as you close this message box, the uninstaller of the old version will be launched. Note that no volume will be decrypted when you uninstall VeraCrypt. After you uninstall the old version of VeraCrypt, run the installer of the new version of VeraCrypt again.</entry>
<entry lang="ka" key="REG_INSTALL_FAILED">შეცდომა რეესტრში ელემენტების რეგისტრაციისას</entry>
<entry lang="ka" key="DRIVER_INSTALL_FAILED">შეცდომა მოწყობილობის დრაივერის ინსტალაციისას. გადატვირთეთ Windows და სცადეთ VeraCrypt-ის ინსტალაცია ხელახლა.</entry>
@@ -903,7 +901,7 @@
<entry lang="ka" key="MINUTES">წთ</entry>
<entry lang="ka" key="SECONDS">წმ</entry>
<entry lang="ka" key="OPEN">გახსნა</entry>
<entry lang="ka" key="UNMOUNT">გამოერთება</entry>
<entry lang="ka" key="DISMOUNT">გამოერთება</entry>
<entry lang="ka" key="SHOW_TC">VeraCrypt-ის ჩვენება</entry>
<entry lang="ka" key="HIDE_TC">VeraCrypt-ის დამალვა</entry>
<entry lang="ka" key="TOTAL_DATA_READ">წაკითხულია მიერთების შემდეგ</entry>
@@ -940,7 +938,7 @@
<entry lang="en" key="ENTER_HEADER_BACKUP_PASSWORD">Enter password for the header stored in backup file</entry>
<entry lang="ka" key="KEYFILE_CREATED">გასაღების ფაილი წარმატებით შეიქმნა.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_NUMBER">The number of keyfiles you supplied is invalid.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be at least 64 bytes.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be comprized between 64 and 1048576 bytes.</entry>
<entry lang="en" key="KEYFILE_EMPTY_BASE_NAME">Please enter a name for the keyfile(s) to be generated</entry>
<entry lang="en" key="KEYFILE_INVALID_BASE_NAME">The base name of the keyfile(s) is invalid</entry>
<entry lang="en" key="KEYFILE_ALREADY_EXISTS">The keyfile '%s' already exists.\nDo you want to overwrite it? The generation process will be stopped if you answer No.</entry>
@@ -975,7 +973,7 @@
<entry lang="en" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - System Favorite Volumes</entry>
<entry lang="en" key="SYS_FAVORITES_HELP_LINK">What are system favorite volumes?</entry>
<entry lang="en" key="SYS_FAVORITES_REQUIRE_PBA">The system partition/drive does not appear to be encrypted.\n\nSystem favorite volumes can be mounted using only a pre-boot authentication password. Therefore, to enable use of system favorite volumes, you need to encrypt the system partition/drive first.</entry>
<entry lang="ka" key="UNMOUNT_FIRST">გაგრძელებამდე, გამოაერთეთ ტომი.</entry>
<entry lang="ka" key="DISMOUNT_FIRST">გაგრძელებამდე, გამოაერთეთ ტომი.</entry>
<entry lang="ka" key="CANNOT_SET_TIMER">შეცდომა: ტაიმერის დაყენება ვერ ხერხდება.</entry>
<entry lang="ka" key="IDPM_CHECK_FILESYS">ფაილური სისტემის შემოწმება</entry>
<entry lang="ka" key="IDPM_REPAIR_FILESYS">ფაილური სისტემის შეკეთება</entry>
@@ -997,7 +995,7 @@
<entry lang="ka" 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="ka" key="UNSUPPORTED_CHARS_IN_PWD_RECOM">ყურადღება! პაროლი შეიცავს არა-ASCII სიმბოლოებს. ეს შეუძლებელს გახდის ტომის მიერთებას, თუ სისტემის კონფიგურაცია შეიცვლება..\n\nშეცვალეთ ყველა არა-ASCII სიმბოლო ASCII სიმბოლოებით.\n\nASCII სიმბოლოებია:\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="en" key="EXE_FILE_EXTENSION_CONFIRM">WARNING: We strongly recommend that you avoid file extensions that are used for executable files (such as .exe, .sys, or .dll) and other similarly problematic file extensions. Using such file extensions causes Windows and antivirus software to interfere with the container, which adversely affects the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension or change it (e.g., to '.hc').\n\nAre you sure you want to use the problematic file extension?</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you unmount the volume.</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you dismount the volume.</entry>
<entry lang="ka" key="HOMEPAGE">ვებ-გვერდი</entry>
<entry lang="ka" key="LARGE_IDE_WARNING_XP">ყურადღება: სისტემაში არ არის ინსტალირებული Windows-ის არცერთი განახლების პაკეტი (Service Pack).თუ Windows XP-ზე არ არის ინსტალირებული Service Pack 1 (ან უფრო ახალი), 128გბ-ზე მეტი მოცულობის IDE დისკებზე ჩაწერა არ არის რეკომენდებული, რადგან ეს გამოიწვევს მონაცემთა დაზიანებას (მიუხედავად იმისა, ეხება ეს VeraCrypt-ის ტომს თუ არა). ეს Windows-ის შეზღუდვაა და არა შეცდომა VeraCrypt-ში.</entry>
<entry lang="ka" key="LARGE_IDE_WARNING_2K">ყურადღება: სისტემაში არ არის ინსტალირებულიWindows-ის განახლების პაკეტი Service Pack 3 (ან ახალი). თუ Windows 2000-ზე არ არის ინსტალირებულია Service Pack 3 (ან ახალი), 128გბ-ზე მეტი მოცულობის IDE დისკებზე ჩაწერა არ არის რეკომენდებული, რადგან ეს გამოიწვევს მონაცემთა დაზიანებას (მიუხედავად იმისა, ეხება ეს VeraCrypt-ის ტომს თუ არა). ეს Windows-ის შეზღუდვაა და არა შეცდომა VeraCrypt-ში. ამის გარდა, შესაძლოა საჭირო გახდეს რეესტრში LBA-ს 48 ბიტიანი ადრესაციის მხარდაჭერის ჩართვა; დაწვრილებით იხ. http://support.microsoft.com/kb/305098/EN-US</entry>
@@ -1009,11 +1007,11 @@
<entry lang="ka" key="NO_SYSENC_PARTITION_SELECTED">ასარჩევია განაყოფი.\n\nდაწკაპეთ "აირჩიეთ მოწყობილობა" განაყოფის ასარჩევად, რომელიც ჩატვირთვისწინა აუთენტიფიკაციას მოითხოვს (მაგ. დაშიფრულ სისტემურ დისკზე მოთავსებული განაყოფი, ოპერაციული სისტემით, რომელიც არ მუშაობს).\n\nშენიშვნა: ეს განაყოფი მიერთდება, როგორც ჩვეულებრივი VeraCrypt-ის ტომი, ჩატვირთვისწინა აუთენტიფიკაციის გარეშე. ეს გამოსადეგია მაგ. რეზერვირების ან აღდგენის ოპერაციებისათვის.</entry>
<entry lang="ka" key="CONFIRM_SAVE_DEFAULT_KEYFILES">გაფრთხილება: თუ საწყისი გასაღების ფაილები დანიშნულია, იმ ტომების მიერთება, რომლებიც არ იყენებენ ასეთ ფაილებს, შეუძლებელი იქნება. ამიტომ, საწყისი გასაღების ფაილების დანიშვნის შემდეგ, არ დაგავიწყდეთ, ასეთი ტომის ყოველი მიერთებისას გამორთოთ ოფცია "გამოიყენე გასაღების ფაილი' (პაროლის ველის ქვემოთ).\n\nნამდვილად გსურთ დანიშნოთ მითითებული გასაღების ფაილები საწყისად?</entry>
<entry lang="ka" key="HK_AUTOMOUNT_DEVICES">მოწყობილობების ავტომიერთება</entry>
<entry lang="ka" key="HK_UNMOUNT_ALL">ყველას გამოერთება</entry>
<entry lang="ka" key="HK_DISMOUNT_ALL">ყველას გამოერთება</entry>
<entry lang="ka" key="HK_WIPE_CACHE">კეშის წაშლა</entry>
<entry lang="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All &amp; Wipe Cache</entry>
<entry lang="ka" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">ყველას გამოერთება და კეშის წაშლა</entry>
<entry lang="ka" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">ყველას გამოერთება, კეშის წაშლა და გასვლა</entry>
<entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All &amp; Wipe Cache</entry>
<entry lang="ka" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">ყველას გამოერთება და კეშის წაშლა</entry>
<entry lang="ka" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">ყველას გამოერთება, კეშის წაშლა და გასვლა</entry>
<entry lang="ka" key="HK_MOUNT_FAVORITE_VOLUMES">რჩეული ტომების მიერთება</entry>
<entry lang="ka" key="HK_SHOW_HIDE_MAIN_WINDOW">VeraCrypt-ის მთავარი ფანჯრის ჩვენება/დამალვა</entry>
<entry lang="ka" key="PRESS_A_KEY_TO_ASSIGN">(დაწკაპეთ აქ დადააჭირეთ ღილაკს)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="en" key="PAGING_FILE_CREATION_PREVENTED">Paging file creation has been prevented.\n\nPlease note that, due to Windows issues, paging files cannot be located on non-system VeraCrypt volumes (including system favorite volumes). VeraCrypt supports creation of paging files only on an encrypted system partition/drive.</entry>
<entry lang="en" key="SYS_ENC_HIBERNATION_PREVENTED">An error or incompatibility prevents VeraCrypt from encrypting the hibernation file. Therefore, hibernation has been prevented.\n\nNote: When a computer hibernates (or enters a power-saving mode), the content of its system memory is written to a hibernation storage file residing on the system drive. VeraCrypt would not be able to prevent encryption keys and the contents of sensitive files opened in RAM from being saved unencrypted to the hibernation storage file.</entry>
<entry lang="en" key="HIDDEN_OS_HIBERNATION_PREVENTED">Hibernation has been prevented.\n\nVeraCrypt does not support hibernation on hidden operating systems that use an extra boot partition. Please note that the boot partition is shared by both the decoy and the hidden system. Therefore, in order to prevent data leaks and problems while resuming from hibernation, VeraCrypt has to prevent the hidden system from writing to the shared boot partition and from hibernating.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">VeraCrypt volume mounted as %c: has been unmounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt volumes have been unmounted.</entry>
<entry lang="en" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt volumes have been unmounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_UNMOUNTED">Successfully unmounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="ka" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">ყურადღება: თუ ეს ოპცია გამორთულია, ტომების, რომლებიც გახსნილ ფაილებს/ფოლდერებს შეიცავენ, აუტოგამოერთება არ მოხდება.\n\nნამდვილად გსურთ ამ ოპციის გამორთვა?</entry>
<entry lang="ka" key="WARN_PREF_AUTO_UNMOUNT">ყურადღება: ტომების, რომლებიც გახსნილ ფაილებს/ფოლდერებს შეიცავენ, აუტოგამოერთება არ მოხდება.\n\nამის თავიდან ასაცილებლად, ჩართეთ შესაბამისი ოფცია მენიუში"</entry>
<entry lang="en" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-unmount volumes in such cases.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">VeraCrypt volume mounted as %c: has been dismounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt volumes have been dismounted.</entry>
<entry lang="en" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt volumes have been dismounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_DISMOUNTED">Successfully dismounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="ka" key="CONFIRM_NO_FORCED_AUTODISMOUNT">ყურადღება: თუ ეს ოპცია გამორთულია, ტომების, რომლებიც გახსნილ ფაილებს/ფოლდერებს შეიცავენ, აუტოგამოერთება არ მოხდება.\n\nნამდვილად გსურთ ამ ოპციის გამორთვა?</entry>
<entry lang="ka" key="WARN_PREF_AUTO_DISMOUNT">ყურადღება: ტომების, რომლებიც გახსნილ ფაილებს/ფოლდერებს შეიცავენ, აუტოგამოერთება არ მოხდება.\n\nამის თავიდან ასაცილებლად, ჩართეთ შესაბამისი ოფცია მენიუში"</entry>
<entry lang="en" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-dismount volumes in such cases.</entry>
<entry lang="en" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">You have scheduled the process of encryption of a partition/volume. The process has not been completed yet.\n\nDo you want to resume the process now?</entry>
<entry lang="ka" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">თქვენ დაგეგმილი გაქვთ სისტემური განაოფის/მოწყობილობის შიფრაცია/დეშიფრაცია. ეს პროცესი ჯერ არ დასრულებულა.\n\nგსურთ ამ პროცესის დაწყება (გაგრძელება) ახლავე?</entry>
<entry lang="en" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">Do you want to be prompted about whether you want to resume the currently scheduled processes of encryption of non-system partitions/volumes?</entry>
@@ -1040,7 +1038,7 @@
<entry lang="en" key="DO_NOT_PROMPT_ME">No, do not prompt me</entry>
<entry lang="en" key="NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL_NOTE">IMPORTANT: Keep in mind that you can resume the process of encryption of any non-system partition/volume by selecting 'Volumes' &gt; 'Resume Interrupted Process' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="ka" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">თქვენ დაგეგმილი გაქვთ სისტემური განაყოფის/დისკის შიფრაცია ან დეშიფრაცია. თუმცა ჩატვირთვისწინა აუთენტიფიკაცია ჩაიშალა ან არ გამოიტოვა.\n\nშენიშვნა: თუ ჩატვირთვის დროს სისტემურ განაყოფს/დისკს დეშიფრაცია გაუკეთეთ, მაშინ დაასრულეთ პროცესი - აირჩიეთ მენიუში "სისტემა"&gt;"სისტემური განაყოფის/დისკის სამუდამო დეშიფრაცია".</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="ka" key="CONFIRM_EXIT_UNIVERSAL">გამოვიდეთ?</entry>
<entry lang="ka" key="CHOOSE_ENCRYPT_OR_DECRYPT">VeraCrypt არ აქვს საკმარისი ინფორმაცია, შეასრულოს შიფრაციის თუ დეშიფრაციის ოპერაცია.</entry>
<entry lang="ka" key="CHOOSE_ENCRYPT_OR_DECRYPT_FINALIZE_DECRYPT_NOTE">VeraCrypt ვერ წყვეტს რა შეასრულოს, შიფრაცია თუ დეშიფრაცია.\n\nშენიშვნა: თუ ჩატვირთვის დროს სისტემურ განაყოფს/დისკს დეშიფრაცია გაუკეთეთ, მასინ დაასრულეთ პროცესი - დაწკაპეთ "დეშიფრაცია".</entry>
@@ -1063,7 +1061,7 @@
<entry lang="ka" key="SYS_AUTOMOUNT_DISABLED">სისტემა არაა კონფიგურირებული ახალი ტომების ავტომიერთებისათვის. მოწყობილობის ბაზაზე არსებული ტომების მიერთება შესაძლოა ვერ მოხდეს. ავტომიერთების ჩართვა შეიძლება შემდეგი ბრძანების შესრულებით და სისტემის გადატვირთვით.\n\nmountvol.exe /E</entry>
<entry lang="ka" key="SYS_ASSIGN_DRIVE_LETTER">გთხოვთ განაყოფს/მოწყობილობას მიანიჭოთ დისკის ასო (Control Panel&gt;System and Maintenance&gt;Administrative Tools - Create and format hard disk partitions).\n\nგაითვალისწინეთ, რომ ეს ოპერაციული სისტემის მოთხოვნაა.</entry>
<entry lang="ka" key="MOUNT_TC_VOLUME">VeraCrypt-ის ტომის მიერთება</entry>
<entry lang="ka" key="UNMOUNT_ALL_TC_VOLUMES">VeraCrypt-ის ყველა ტომის გამოერთება</entry>
<entry lang="ka" key="DISMOUNT_ALL_TC_VOLUMES">VeraCrypt-ის ყველა ტომის გამოერთება</entry>
<entry lang="ka" key="UAC_INIT_ERROR"> VeraCrypt-მა ვერ მოიპოვა ადმინისტრატორის პრივილეგიები.</entry>
<entry lang="ka" key="ERR_ACCESS_DENIED">ოპერაციულ სისტემასთან წვდომა არ არის.\n\nშესაძლო მიზეზებია: ოპერაციული სისტემა მოითხოვს, რომ გქონდეთ ჩაწერა/წაკითხვის უფლებები (ან ადმინისტრატორის პრივილეგიები) გარკვეულ ფოლდერებზე, ფაილებზედა მოწყობილობებზე, რათა წაიკითხოთ/ჩაწეროთ მათზე. ჩვეულებრივ, მომხმარებელს (ადმინისტრატორის პრივილეგიების გარეშე) უფლება აქვს წაიკითხოს, შექმნას და ჩაწეროს საკუთარ My Documents ფოლდერში.</entry>
<entry lang="en" key="SECTOR_SIZE_UNSUPPORTED">Error: The drive uses an unsupported sector size.\n\nIt is currently not possible to create partition/device-hosted volumes on drives that use sectors larger than 4096 bytes. However, note that you can create file-hosted volumes (containers) on such drives.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="en" key="HIDDEN_OS_CREATION_PREINFO_HELP">In the next steps, VeraCrypt will create the hidden operating system by copying the content of the system partition to the hidden volume (data being copied will be encrypted on the fly with an encryption key different from the one that will be used for the decoy operating system).\n\nPlease note that the process will be performed in the pre-boot environment (before Windows starts) and it may take a long time to complete; several hours or even several days (depending on the size of the system partition and on the performance of your computer).\n\nYou will be able to interrupt the process, shut down your computer, start the operating system and then resume the process. However, if you interrupt it, the entire process of copying the system will have to start from the beginning (because the content of the system partition must not change during cloning).</entry>
<entry lang="en" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">Do you want to cancel the entire process of creation of the hidden operating system?\n\nNote: You will NOT be able to resume the process if you cancel it now.</entry>
<entry lang="ka" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">გსურთ სისტემის შიფრაციისწინა ტესტირების შეწყვეტა?</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="ka" key="SYS_DRIVE_NOT_ENCRYPTED">სისტემური განაყოფი/დისკი არ არის დაშიფრული (ნაწილობრივ ან მთლიანად).</entry>
<entry lang="ka" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">სისტემური განაყოფი/დისკი დაშიფრულია (ნაწილობრივ ან მთლიანად).\n\nგაგრძელებამდე გთხოვთ, დეშიფრაცია გაუკეთოთ მთლიანად სისტემურ განაყოფს/დისკს. ამისათვის, აირჩიეთ პროგრამის მენიუში "სისტემა" &gt; "სისტემური განაყოფის/დისკის სამუდამო დეშიფრაცია".</entry>
<entry lang="en" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">When the system partition/drive is encrypted (partially or fully), you cannot downgrade VeraCrypt (but you can upgrade it or reinstall the same version).</entry>
@@ -1285,17 +1283,17 @@
<entry lang="en" key="TOKEN_DATA_OBJECT_LABEL">File name</entry>
<entry lang="en" key="BOOT_PASSWORD_CACHE_KEYBOARD_WARNING">IMPORTANT: Please note that pre-boot authentication passwords are always typed using the standard US keyboard layout. Therefore, a volume that uses a password typed using any other keyboard layout may be impossible to mount using a pre-boot authentication password (note that this is not a bug in VeraCrypt). To allow such a volume to be mounted using a pre-boot authentication password, follow these steps:\n\n1) Click 'Select File' or 'Select Device' and select the volume.\n2) Select 'Volumes' &gt; 'Change Volume Password'.\n3) Enter the current password for the volume.\n4) Change the keyboard layout to English (US) by clicking the Language bar icon in the Windows taskbar and selecting 'EN English (United States)'.\n5) In VeraCrypt, in the field for the new password, type the pre-boot authentication password.\n6) Confirm the new password by retyping it in the confirmation field and click 'OK'.\nWARNING: Please keep in mind that if you follow these steps, the volume password will always have to be typed using the US keyboard layout (which is automatically ensured only in the pre-boot environment).</entry>
<entry lang="en" key="SYS_FAVORITES_KEYBOARD_WARNING">System favorite volumes will be mounted using the pre-boot authentication password. If any system favorite volume uses a different password, it will not be mounted.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Unmount All', auto-unmount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and unmount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be unmounted. Therefore, if you need e.g. to unmount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Unmount All' function, 'Auto-Unmount' functions, 'Unmount All' hot keys, etc.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Dismount All', auto-dismount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and dismount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be dismounted. Therefore, if you need e.g. to dismount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Dismount All' function, 'Auto-Dismount' functions, 'Dismount All' hot keys, etc.</entry>
<entry lang="en" key="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry>
<entry lang="en" key="COMMAND_LINE_ERROR">Error while parsing command line.</entry>
<entry lang="ka" key="RESCUE_DISK">აღმდგენი დისკი</entry>
<entry lang="en" key="SELECT_FILE_AND_MOUNT">Select &amp;File and Mount...</entry>
<entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &amp;Device and Mount...</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and dismount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="MOUNT_SYSTEM_FAVORITES_ON_BOOT">Mount system favorite volumes when Windows starts (in the initial phase of the startup procedure)</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly unmounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always unmount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly unmounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly dismounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always dismount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly dismounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="FILESYS_REPAIR_CONFIRM_BACKUP">Warning: Repairing a damaged filesystem using the Microsoft 'chkdsk' tool might cause loss of files in damaged areas. Therefore, it is recommended that you first back up the files stored on the VeraCrypt volume to another, healthy, VeraCrypt volume.\n\nDo you want to repair the filesystem now?</entry>
<entry lang="en" key="MOUNTED_CONTAINER_FORCED_READ_ONLY">Volume '%s' has been mounted as read-only because write access was denied.\n\nPlease make sure the security permissions of the file container allow you to write to it (right-click the container and select Properties &gt; Security).\n\nNote that, due to a Windows issue, you may see this warning even after setting the appropriate security permissions. This is not caused by a bug in VeraCrypt. A possible solution is to move your container to, e.g., your 'Documents' folder.\n\nIf you intend to keep your volume read-only, set the read-only attribute of the container (right-click the container and select Properties &gt; Read-only), which will suppress this warning.</entry>
<entry lang="en" key="MOUNTED_DEVICE_FORCED_READ_ONLY">Volume '%s' had to be mounted as read-only because write access was denied.\n\nPlease make sure no other application (e.g. antivirus software) is accessing the partition/device on which the volume is hosted.</entry>
@@ -1306,8 +1304,8 @@
<entry lang="en" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Note that the number of threads is currently limited, which will affect benchmark results (worse performance).\n\nTo utilize the full potential of the processor(s), select 'Settings' > 'Performance' and disable the corresponding option.</entry>
<entry lang="en" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">Do you want VeraCrypt to attempt to disable write protection of the partition/drive?</entry>
<entry lang="en" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">WARNING: This setting may degrade performance.\n\nAre you sure you want to use this setting?</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-unmounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always unmount the volume in VeraCrypt first.\n\nUnexpected spontaneous unmount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-dismounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always dismount the volume in VeraCrypt first.\n\nUnexpected spontaneous dismount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="UNSUPPORTED_TRUECRYPT_FORMAT">This volume was created with TrueCrypt %x.%x but VeraCrypt supports only TrueCrypt volumes created with TrueCrypt 6.x/7.x series</entry>
<entry lang="ka" key="TEST">ტესტი</entry>
<entry lang="ka" key="KEYFILE">გასაღების ფაილი</entry>
@@ -1453,7 +1451,7 @@
<entry lang="en" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Add All Mounted Volumes to Favorites...</entry>
<entry lang="en" key="TASKICON_PREF_MENU_ITEMS">Task Icon Menu Items</entry>
<entry lang="en" key="TASKICON_PREF_OPEN_VOL">Open Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_DISMOUNT_VOL">Dismount Mounted Volumes</entry>
<entry lang="en" key="DISK_FREE">Free space available: {0}</entry>
<entry lang="en" key="VOLUME_SIZE_HELP">Please specify the size of the container to create. Note that the minimum possible size of a volume is 292 KiB.</entry>
<entry lang="en" key="LINUX_CONFIRM_INNER_VOLUME_CALC">WARNING: You have selected a filesystem other than FAT for the outer volume.\nPlease Note that in this case VeraCrypt can't calculate the exact maximum allowed size for the hidden volume and it will use only an estimation that can be wrong.\nThus, it is your responsibility to use an adequate value for the size of the hidden volume so that it does not overlap the outer volume.\n\nDo you want to continue using the selected filesystem for the outer volume?</entry>
@@ -1483,14 +1481,14 @@
<entry lang="en" key="LINUX_DO_NOT_MOUNT">Do &amp;not mount</entry>
<entry lang="en" key="LINUX_MOUNT_AT_DIR">Mount at directory:</entry>
<entry lang="en" key="LINUX_SELECT">Se&amp;lect...</entry>
<entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount All Volumes When</entry>
<entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry>
<entry lang="en" key="LINUX_ENTERING_POWERSAVING">System is entering power saving mode</entry>
<entry lang="en" key="LINUX_LOGIN_ACTION">Actions to Perform when User Logs On</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Close all Explorer windows of volume being dismounted</entry>
<entry lang="en" key="LINUX_HOTKEYS">Hotkeys</entry>
<entry lang="en" key="LINUX_SYSTEM_HOTKEYS">System-Wide Hotkeys</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/unmount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_UNMOUNT">Display confirmation message box after unmount</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/dismount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_DISMOUNT">Display confirmation message box after dismount</entry>
<entry lang="en" key="LINUX_VC_QUITS">VeraCrypt quits</entry>
<entry lang="en" key="LINUX_OPEN_FINDER">Open Finder window for successfully mounted volume</entry>
<entry lang="en" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Please note that this setting takes effect only if use of the kernel cryptographic services is disabled.</entry>
@@ -1510,11 +1508,11 @@
<entry lang="en" key="LINUX_DYNAMIC_NOTICE">Please note that if your operating system does not allocate files from the beginning of the free space, the maximum possible hidden volume size may be much smaller than the size of the free space on the outer volume. This is not a bug in VeraCrypt but a limitation of the operating system.</entry>
<entry lang="en" key="LINUX_MAX_HIDDEN_SIZE">Maximum possible hidden volume size for this volume is {0}.</entry>
<entry lang="en" key="LINUX_OPEN_OUTER_VOL">Open Outer Volume</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not unmount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not dismount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">Error: You are trying to encrypt a system drive.\n\nVeraCrypt can encrypt a system drive only under Windows.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">Error: You are trying to encrypt a system partition.\n\nVeraCrypt can encrypt system partitions only under Windows.</entry>
<entry lang="en" key="LINUX_WARNING_FORMAT_DESTROY_FS">WARNING: Formatting of the device will destroy all data on filesystem '{0}'.\n\nDo you want to continue?</entry>
<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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please dismount '{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>
@@ -1522,8 +1520,7 @@
<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>
<entry lang="en" key="LINUX_VOL_DISMOUNTED">Volume {0} has been dismounted.</entry>
<entry lang="en" key="LINUX_OOM">Out of memory.</entry>
<entry lang="en" key="LINUX_CANT_GET_ADMIN_PRIV">Failed to obtain administrator privileges</entry>
<entry lang="en" key="LINUX_COMMAND_GET_ERROR">Command {0} returned error {1}.</entry>
@@ -1553,7 +1550,7 @@
<entry lang="en" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Error: The drive uses a sector size other than 512 bytes.\n\nDue to limitations of components available on your platform, partition/device-hosted volumes cannot be created/used on the drive.\n\nPossible solutions:\n- Create a file-hosted volume (container) on the drive.\n- Use a drive with 512-byte sectors.\n- Use VeraCrypt on another platform.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">The host file/device is already in use.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Volume slot unavailable.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires macFUSE 2.5 or above.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires OSXFUSE 2.5 or above.</entry>
<entry lang="en" key="EXCEPTION_OCCURRED">Exception occurred</entry>
<entry lang="en" key="ENTER_PASSWORD">Enter password</entry>
<entry lang="en" key="ENTER_TC_VOL_PASSWORD">Enter VeraCrypt Volume Password</entry>
@@ -1570,124 +1567,6 @@
<entry lang="en" key="VOLUME_HOST_IN_USE">WARNING: The host file/device {0} is already in use!\n\nIgnoring this can cause undesired results including system instability. All applications that might be using the host file/device should be closed before mounting the volume.\n\nContinue mounting?</entry>
<entry lang="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
<entry lang="en" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">VeraCrypt cannot be upgraded because the system partition/drive was encrypted using an algorithm that is not supported anymore.\nPlease decrypt your system before upgrading VeraCrypt and then encrypt it again.</entry>
<entry lang="en" key="LINUX_EX2MSG_TERMINALNOTFOUND">Supported terminal application could not be found, you need either xterm, konsole or gnome-terminal (with dbus-x11).</entry>
<entry lang="en" key="IDM_MOUNT_NO_CACHE">Mount Without Cache</entry>
<entry lang="en" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nExpand a VeraCrypt volume on the fly without reformatting\n\n\nAll kind of volumes (container files, disks and partitions) formatted with NTFS are supported. The only condition is that there must be enough free space on the host drive or host device of the VeraCrypt volume.\n\nDo not use this software to expand an outer volume containing a hidden volume, because this destroys the hidden volume!\n</entry>
<entry lang="en" key="IDC_STEPSEXPAND">1. Select the VeraCrypt volume to be expanded\n2. Click the 'Mount' button</entry>
<entry lang="en" key="IDT_VOL_NAME">Volume: </entry>
<entry lang="en" key="IDT_FILE_SYS">File system: </entry>
<entry lang="en" key="IDT_CURRENT_SIZE">Current size: </entry>
<entry lang="en" key="IDT_NEW_SIZE">New size: </entry>
<entry lang="en" key="IDT_NEW_SIZE_BOX_TITLE">Enter new volume size</entry>
<entry lang="en" key="IDC_INIT_NEWSPACE">Fill new space with random data</entry>
<entry lang="en" key="IDC_QUICKEXPAND">Quick Expand</entry>
<entry lang="en" key="IDT_INIT_SPACE">Fill new space: </entry>
<entry lang="en" key="EXPANDER_FREE_SPACE">%s free space available on host drive</entry>
<entry lang="en" key="EXPANDER_HELP_DEVICE">This is a device-based VeraCrypt volume.\n\nThe new volume size will be choosen automatically as the size of the host device.</entry>
<entry lang="en" key="EXPANDER_HELP_FILE">Please specify the new size of the VeraCrypt volume (must be at least %I64u KB larger than the current size).</entry>
<entry lang="en" key="QUICK_EXPAND_WARNING">WARNING: You should use Quick Expand only in the following cases:\n\n1) The device where the file container is located contains no sensitive data and you do not need plausible deniability.\n2) The device where the file container is located has already been securely and fully encrypted.\n\nAre you sure you want to use Quick Expand?</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT">IMPORTANT: Move your mouse as randomly as possible within this window. The longer you move it, the better. This significantly increases the cryptographic strength of the encryption keys. Then click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT_LEGACY">Click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_FINISH_ERROR">Error: volume expansion failed.</entry>
<entry lang="en" key="EXPANDER_FINISH_ABORT">Error: operation aborted by user.</entry>
<entry lang="en" key="EXPANDER_FINISH_OK">Finished. Volume successfully expanded.</entry>
<entry lang="en" key="EXPANDER_CANCEL_WARNING">Warning: Volume expansion is in progress!\n\nStopping now may result in a damaged volume.\n\nDo you really want to cancel?</entry>
<entry lang="en" key="EXPANDER_STARTING_STATUS">Starting volume expansion ...\n</entry>
<entry lang="en" key="EXPANDER_HIDDEN_VOLUME_ERROR">An outer volume containing a hidden volume can't be expanded, because this destroys the hidden volume.\n</entry>
<entry lang="en" key="EXPANDER_SYSTEM_VOLUME_ERROR">A VeraCrypt system volume can't be expanded.</entry>
<entry lang="en" key="EXPANDER_NO_FREE_SPACE">Not enough free space to expand the volume</entry>
<entry lang="en" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Warning: The container file is larger than the VeraCrypt volume area. The data after the VeraCrypt volume area will be overwritten.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_FAT">Warning: The VeraCrypt volume contains a FAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_EXFAT">Warning: The VeraCrypt volume contains an exFAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_UNKNOWN_FS">Warning: The VeraCrypt volume contains an unknown or no file system!\n\nOnly the VeraCrypt volume itself will be expanded, the file system remains unchanged.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">New volume size too small, must be at least %I64u kB larger than the current size.</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">New volume size too large, not enough space on host drive.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Maximum file size of %I64u MB on host drive exceeded.</entry>
<entry lang="en" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Error: Failed to get necessary privileges to enable Quick Expand!\nPlease uncheck Quick Expand option and try again.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Maximum VeraCrypt volume size of %I64u TB exceeded!\n</entry>
<entry lang="en" key="FULL_FORMAT">Full Format</entry>
<entry lang="en" key="FAST_CREATE">Fast Create</entry>
<entry lang="en" key="WARN_FAST_CREATE">WARNING: You should use Fast Create only in the following cases:\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 Fast Create?</entry>
<entry lang="en" key="IDC_ENABLE_EMV_SUPPORT">Enable EMV Support</entry>
<entry lang="en" key="COMMAND_APDU_INVALID">The APDU command sent to the card is not valid.</entry>
<entry lang="en" key="EXTENDED_APDU_UNSUPPORTED">Extended APDU commands cannot be used with the current token.</entry>
<entry lang="en" key="SCARD_MODULE_INIT_FAILED">Error when loading the WinSCard / PCSC library.</entry>
<entry lang="en" key="EMV_UNKNOWN_CARD_TYPE">The card in the reader is not a supported EMV card.</entry>
<entry lang="en" key="EMV_SELECT_AID_FAILED">The AID of the card in the reader could not be selected.</entry>
<entry lang="en" key="EMV_ICC_CERT_NOTFOUND">ICC Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_ISSUER_CERT_NOTFOUND">Issuer Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_CPLC_NOTFOUND">CPLC was not found in the EMV card.</entry>
<entry lang="en" key="EMV_PAN_NOTFOUND">No Primary Account Number (PAN) found in the EMV card.</entry>
<entry lang="en" key="INVALID_EMV_PATH">EMV path is invalid.</entry>
<entry lang="en" key="EMV_KEYFILE_DATA_NOTFOUND">Unable to build a keyfile from the EMV card's data.\n\nOne of the following is missing:\n- ICC Public Key Certificate.\n- Issuer Public Key Certificate.\n- CPLC data.</entry>
<entry lang="en" key="SCARD_W_REMOVED_CARD">No card in the reader.\n\nPlease make sure the card is correctly slotted.</entry>
<entry lang="en" key="FORMAT_EXTERNAL_FAILED">Windows format.com command failed to format the volume as NTFS/exFAT/ReFS: Error 0x%.8X.\n\nFalling back to using Windows FormatEx API.</entry>
<entry lang="en" key="FORMATEX_API_FAILED">Windows FormatEx API failed to format the volume as NTFS/exFAT/ReFS.\n\nFailure status = %s.</entry>
<entry lang="en" key="EXPANDER_WRITING_RANDOM_DATA">Writing random data to new space ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Writing re-encrypted backup header ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Writing re-encrypted primary header ...\n</entry>
<entry lang="en" key="EXPANDER_WIPING_OLD_HEADER">Wiping old backup header ...\n</entry>
<entry lang="en" key="EXPANDER_MOUNTING_VOLUME">Mounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_UNMOUNTING_VOLUME">Unmounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_EXTENDING_FILESYSTEM">Extending file system ...\n</entry>
<entry lang="en" key="PARTIAL_SYSENC_MOUNT_READONLY">Warning: The system partition you attempted to mount was not fully encrypted. As a safety measure to prevent potential corruption or unwanted modifications, volume '%s' was mounted as read-only.</entry>
<entry lang="en" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Important information on using third-party file extensions</entry>
<entry lang="en" key="IDC_DISABLE_MEMORY_PROTECTION">Disable memory protection for Accessibility tools compatibility</entry>
<entry lang="en" key="DISABLE_MEMORY_PROTECTION_WARNING">WARNING: Disabling memory protection significantly reduces security. Enable this option ONLY if you rely on Accessibility tools, like Screen Readers, to interact with VeraCrypt's UI.</entry>
<entry lang="ka" key="LINUX_LANGUAGE">ენა</entry>
<entry lang="en" key="LINUX_SELECT_SYS_DEFAULT_LANG">Select system's default language</entry>
<entry lang="en" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">For the language change to come into effect, VeraCrypt needs to be restarted.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE">WARNING: The volume's master key is vulnerable to an attack that compromises data security.\n\nPlease create a new volume and transfer the data to it.</entry>
<entry lang="en" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">WARNING: The encrypted system's master key is vulnerable to an attack that compromises data security.\nPlease decrypt the system partition/drive and then re-encrypt it.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">WARNING: The volume's master key has a security vulnerability.</entry>
<entry lang="en" key="MOUNTPOINT_BLOCKED">ERROR: The volume mount point is blocked because it overrides a protected system directory.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="MOUNTPOINT_NOTALLOWED">ERROR: The volume mount point is not allowed because it overrides a directory that is part of the PATH environment variable.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="INSECURE_MODE">[INSECURE MODE]</entry>
<entry lang="en" key="IDC_DISABLE_SCREEN_PROTECTION">Disable protection against screenshots and screen recording</entry>
<entry lang="en" key="DISABLE_SCREEN_PROTECTION_WARNING">WARNING: Disabling screen protection significantly reduces security. Enable this option ONLY if you have a specific need to capture VeraCrypt's interface. This may expose sensitive data to screenshot tools and screen recording features such as Windows 11 Recall.</entry>
<entry lang="en" key="MEMORY_COST">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="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>
<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>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+97 -218
View File
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<language langid="ko" name="한국어" en-name="Korean" version="0.2.0" translators="Kieaer, Herbert Shin, BaekMu" />
<localization prog-version= "1.25.9">
<language langid="ko" name="한국어" en-name="Korean" version="0.1.1" translators="Kieaer, Herbert Shin" />
<font lang="ko" class="normal" size="11" face="돋움" />
<font lang="ko" class="bold" size="13" face="맑은 고딕" />
<font lang="ko" class="fixed" size="12" face="돋움체" />
@@ -97,7 +97,7 @@
<entry lang="ko" key="IDT_SPEED">속도</entry>
<entry lang="ko" key="IDT_STATUS">상태</entry>
<entry lang="ko" key="IDT_SYSENC_KEYS_GEN_INFO">키, 소금, 기타 데이터가 성공적으로 생성되었습니다. 새 키를 생성하려면 뒤로가기 버튼을 누르고 다음을 누르세요. 그렇지 않으면 다음을 눌러 계속하세요.</entry>
<entry lang="ko" key="IDT_SYS_DEVICE">Windows가 설치된 파티션/드라이브 암호화니다. 접근 권한을 얻고 시스템, 파일 읽기 및 쓰기 등을 원하는 사람은 Windows가 부팅되기 전에 매번 정확한 암호를 입력해야 합니다. 선택적으로 숨겨진 시스템을 생성할 수도 있습니다.</entry>
<entry lang="ko" key="IDT_SYS_DEVICE">Windows가 설치된 파티션/드라이브 암호화되었습니다. 접근 권한을 얻고 시스템, 파일 읽기 및 쓰기 등을 원하는 사람은 Windows 가 부팅되기 전에 매번 정확한 암호를 입력해야 합니다. 선택적으로 숨겨진 시스템을 생성하세요.</entry>
<entry lang="ko" key="IDT_SYS_PARTITION">현재 실행 중인 Windows 운영 체제가 설치된 파티션을 암호화하려면 이 옵션을 선택하세요.</entry>
<entry lang="ko" key="IDT_VOLUME_LABEL">Windows 볼륨 레이블:</entry>
<entry lang="ko" key="IDT_WIPE_MODE">초기화 방식:</entry>
@@ -119,7 +119,7 @@
<entry lang="ko" key="IDC_CREATE_VOLUME">볼륨 만들기</entry>
<entry lang="ko" key="IDC_DISABLE_BOOT_LOADER_OUTPUT">사전 부트 인증 화면에 텍스트 표시 안 함 (아래 사용자 지정 메시지 제외)</entry>
<entry lang="ko" key="IDC_DISABLE_EVIL_MAID_ATTACK_DETECTION">"Evil Maid" 공격 탐지 사용 안 함</entry>
<entry lang="ko" key="IDC_ENABLE_HARDWARE_ENCRYPTION">CPU에 내장된 AES 명령을 사용하여 AES 암호화/복호화 가속(사용 가능한 경우)</entry>
<entry lang="en" key="IDC_ENABLE_HARDWARE_ENCRYPTION">CPU에 내장된 AES 명령을 사용하여 AES 암호화/복호화 가속(사용 가능한 경우)</entry>
<entry lang="ko" key="IDC_ENABLE_KEYFILES">키 파일 사용</entry>
<entry lang="ko" key="IDC_ENABLE_NEW_KEYFILES">키 파일 사용</entry>
<entry lang="ko" key="IDC_EXIT">종료</entry>
@@ -135,8 +135,8 @@
<entry lang="ko" key="IDC_FAVORITE_REMOVE">삭제</entry>
<entry lang="ko" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">즐겨찾기 레이블을 탐색기 드라이브 레이블로 사용</entry>
<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="ko" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">단축키 분리 성공 후 말풍선 툴팁 표시</entry>
<entry lang="ko" key="IDC_HK_DISMOUNT_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>
@@ -156,12 +156,12 @@
<entry lang="ko" key="IDC_PIM_HELP">(기본값은 0 또는 비어있습니다)</entry>
<entry lang="ko" key="IDC_PREF_BKG_TASK_ENABLE">활성화</entry>
<entry lang="ko" key="IDC_PREF_CACHE_PASSWORDS">드라이버 메모리에 암호 캐시</entry>
<entry lang="ko" key="IDC_PREF_UNMOUNT_INACTIVE">볼륨에 데이터를 읽거나 쓰기 작업이 없으면 자동으로 마운트 해제</entry>
<entry lang="ko" key="IDC_PREF_UNMOUNT_LOGOFF">사용자 로그오프할 때</entry>
<entry lang="ko" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">사용자 세션이 잠겨있을 때</entry>
<entry lang="ko" key="IDC_PREF_UNMOUNT_POWERSAVING">절전 모드로 들어갈 때</entry>
<entry lang="ko" key="IDC_PREF_UNMOUNT_SCREENSAVER">화면 보호기가 실행될 때</entry>
<entry lang="ko" key="IDC_PREF_FORCE_AUTO_UNMOUNT">볼륨에 열린 파일 또는 폴더가 포함되어 있더라도 강제로 마운트 해제</entry>
<entry lang="ko" key="IDC_PREF_DISMOUNT_INACTIVE">볼륨에 데이터를 읽거나 쓰기 작업이 없으면 자동으로 마운트 해제</entry>
<entry lang="ko" key="IDC_PREF_DISMOUNT_LOGOFF">사용자 로그오프할 때</entry>
<entry lang="ko" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">사용자 세션이 잠겨있을 때</entry>
<entry lang="ko" key="IDC_PREF_DISMOUNT_POWERSAVING">절전 모드로 들어갈 때</entry>
<entry lang="ko" key="IDC_PREF_DISMOUNT_SCREENSAVER">화면 보호기가 실행될 때</entry>
<entry lang="ko" key="IDC_PREF_FORCE_AUTO_DISMOUNT">볼륨에 열린 파일 또는 폴더가 포함되어 있더라도 강제로 마운트 해제</entry>
<entry lang="ko" key="IDC_PREF_LOGON_MOUNT_DEVICES">디바이스 호스팅된 모든 VeraCrypt 볼륨 마운트</entry>
<entry lang="ko" key="IDC_PREF_LOGON_START">VeraCrypt 백그라운드 작업 시작</entry>
<entry lang="ko" key="IDC_PREF_MOUNT_READONLY">볼륨을 읽기 전용으로 마운트</entry>
@@ -169,7 +169,7 @@
<entry lang="ko" key="IDC_PREF_OPEN_EXPLORER">성공적으로 마운트된 볼륨을 보기 위한 탐색기 창 열기</entry>
<entry lang="ko" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">즐겨찾기 볼륨 마운트 작업 중 임시로 암호 캐시</entry>
<entry lang="ko" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">마운트된 볼륨이 있는 경우 다른 작업 표시줄 아이콘 사용</entry>
<entry lang="ko" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">자동 마운트 해제 시 캐시된 암호 지우기</entry>
<entry lang="ko" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">자동 마운트 해제 시 캐시된 암호 지우기</entry>
<entry lang="ko" key="IDC_PREF_WIPE_CACHE_ON_EXIT">종료 시 캐시된 암호 지우기</entry>
<entry lang="ko" key="IDC_PRESERVE_TIMESTAMPS">파일 컨테이너의 수정 시간 스탬프 유지</entry>
<entry lang="ko" key="IDC_RESET_HOTKEYS">초기화</entry>
@@ -266,19 +266,19 @@
<entry lang="ko" key="IDM_WEBSITE">VeraCrypt 웹사이트</entry>
<entry lang="ko" key="IDM_WIPE_CACHE">캐시된 비밀번호 지우기</entry>
<entry lang="ko" key="IDOK">확인</entry>
<entry lang="ko" key="IDT_ACCELERATION_OPTIONS">하드웨어 가속</entry>
<entry lang="en" key="IDT_ACCELERATION_OPTIONS">하드웨어 가속</entry>
<entry lang="ko" key="IDT_ASSIGN_HOTKEY">바로가기</entry>
<entry lang="ko" key="IDT_AUTORUN">자동 실행 설정 (autorun.inf)</entry>
<entry lang="ko" key="IDT_AUTO_UNMOUNT">자동으로 마운트 해제</entry>
<entry lang="ko" key="IDT_AUTO_UNMOUNT_ON">다음과 같은 경우 모두 해제:</entry>
<entry lang="ko" key="IDT_AUTO_DISMOUNT">자동 꺼냄</entry>
<entry lang="ko" key="IDT_AUTO_DISMOUNT_ON">다음과 같은 경우 모두 해제하십시오:</entry>
<entry lang="ko" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">부트 로더 화면 옵션</entry>
<entry lang="ko" key="IDT_CONFIRM_PASSWORD">암호 확인:</entry>
<entry lang="ko" key="IDT_CURRENT">현재 암호</entry>
<entry lang="ko" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">사전 부트 인증 화면에 이 사용자 지정 메시지 표시(최대 24자):</entry>
<entry lang="ko" key="IDT_DEFAULT_MOUNT_OPTIONS">기본 마운트 옵션</entry>
<entry lang="ko" key="IDT_UNMOUNT_ACTION">단축키 옵션</entry>
<entry lang="ko" key="IDT_DISMOUNT_ACTION">단축키 옵션</entry>
<entry lang="ko" key="IDT_DRIVER_OPTIONS">드라이버 설정</entry>
<entry lang="ko" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">확장 디스크 제어 코드 사용</entry>
<entry lang="en" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">확장 디스크 제어 코드 사용</entry>
<entry lang="ko" key="IDT_FAVORITE_LABEL">선택된 즐겨찾기 볼륨의 레이블:</entry>
<entry lang="ko" key="IDT_FILE_SETTINGS">파일 설정</entry>
<entry lang="ko" key="IDT_HOTKEY_KEY">할당할 키:</entry>
@@ -289,13 +289,12 @@
<entry lang="ko" key="IDT_MOUNT_SETTINGS">마운트 설정</entry>
<entry lang="ko" key="IDT_NEW">신규</entry>
<entry lang="ko" key="IDT_NEW_PASSWORD">암호:</entry>
<entry lang="ko" key="IDT_PARALLELIZATION_OPTIONS">스레드 기반 병렬화</entry>
<entry lang="en" key="IDT_PARALLELIZATION_OPTIONS">스레드 기반 병렬화</entry>
<entry lang="ko" key="IDT_PKCS11_LIB_PATH">PKCS #11 라이브러리 경로</entry>
<entry lang="ko" key="IDT_KDF">KDF</entry>
<entry lang="ko" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="ko" key="IDT_PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="en" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="ko" key="IDT_PW_CACHE_OPTIONS">암호 캐시</entry>
<entry lang="ko" key="IDT_SECURITY_OPTIONS">보안 옵션</entry>
<entry lang="ko" key="IDT_EMV_OPTIONS">EMV 옵션</entry>
<entry lang="ko" key="IDT_TASKBAR_ICON">VeraCrypt 백그라운드 작업</entry>
<entry lang="ko" key="IDT_TRAVELER_MOUNT">마운트할 VeraCrypt 볼륨 (휴대용 디스크 루트에 상대적임):</entry>
<entry lang="ko" key="IDT_TRAVEL_INSERTION">휴대용 디스크 마운트시: </entry>
@@ -312,7 +311,7 @@
<entry lang="ko" key="IDC_GENERATE_AND_SAVE_KEYFILE">키 파일 생성 및 저장…</entry>
<entry lang="ko" key="IDC_GENERATE_KEYFILE">무작위 키 파일 생성...</entry>
<entry lang="ko" key="IDC_GET_LANG_PACKS">언어 팩 다운로드</entry>
<entry lang="ko" key="IDC_HW_AES_LABEL_LINK">하드웨어 가속 AES:</entry>
<entry lang="en" key="IDC_HW_AES_LABEL_LINK">하드웨어 가속 AES:</entry>
<entry lang="ko" key="IDC_IMPORT_KEYFILE">토큰으로 키 파일 가져오기...</entry>
<entry lang="ko" key="IDC_KEYADD">파일 추가...</entry>
<entry lang="ko" key="IDC_KEYFILES_ENABLE_HIDVOL_PROT">키 파일 사용</entry>
@@ -323,7 +322,7 @@
<entry lang="ko" key="IDC_LINK_KEYFILES_INFO">키 파일에 대한 자세한 정보</entry>
<entry lang="ko" key="IDC_MOUNT_REMOVABLE">볼륨을 이동식 미디어로 마운트</entry>
<entry lang="ko" key="IDC_MOUNT_SYSENC_PART_WITHOUT_PBA">사전 부트 인증 없이 시스템 암호화를 사용하여 파티션 마운트</entry>
<entry lang="ko" key="IDC_PARALLELIZATION_LABEL_LINK">병렬화:</entry>
<entry lang="en" key="IDC_PARALLELIZATION_LABEL_LINK">병렬화:</entry>
<entry lang="ko" key="IDC_PERFORM_BENCHMARK">벤치마크</entry>
<entry lang="ko" key="IDC_PRINT">인쇄</entry>
<entry lang="ko" key="IDC_PROTECT_HIDDEN_VOL">외부 볼륨에 쓰기 작업으로 인한 손상으로부터 숨겨진 볼륨 보호</entry>
@@ -357,7 +356,7 @@
<entry lang="ko" key="IDT_KEYFILE_WARNING">경고: 키 파일을 잃어버리거나 처음 1024KB 의 일부가 변경된 경우, 키 파일을 사용하는 볼륨을 마운트하는 것은 불가능할 것입니다.</entry>
<entry lang="ko" key="IDT_KEY_UNIT">비트</entry>
<entry lang="ko" key="IDT_NUMBER_KEYFILES">키 파일 수:</entry>
<entry lang="ko" key="IDT_KEYFILES_SIZE">키 파일 크기:</entry>
<entry lang="ko" key="IDT_KEYFILES_SIZE">키 파일 크기(바이트):</entry>
<entry lang="ko" key="IDT_KEYFILES_BASE_NAME">키 파일 기본 이름:</entry>
<entry lang="ko" key="IDT_LANGPACK_AUTHORS">번역자:</entry>
<entry lang="ko" key="IDT_PLAINTEXT">일반 글자 크기:</entry>
@@ -390,7 +389,6 @@
<entry lang="ko" key="ADMINISTRATOR">관리자</entry>
<entry lang="ko" key="ADMIN_PRIVILEGES_DRIVER">VeraCrypt 드라이버를 로드하려면 관리자 권한이 있는 계정에 로그인해야 합니다.</entry>
<entry lang="ko" key="ADMIN_PRIVILEGES_WARN_DEVICES">파티션/디바이스 암호화, 암호 해독 또는 포맷을 하려면 관리자 권한이 있는 계정에 로그인해야 한다는 점에 유의하세요.\n\n파일이 호스팅된 볼륨에는 적용되지 않음.</entry>
<entry lang="ko" key="ADMIN_PRIVILEGES_WARN_MANAGE_VOLUME">빠른 파일 생성 기능을 활성화할 수 없습니다: 관리자 권한이 필요합니다.\n이 기능을 사용하려면 프로그램을 관리자 권한으로 다시 실행하세요.\n\n빠른 파일 생성 없이 진행하시겠습니까?</entry>
<entry lang="ko" key="ADMIN_PRIVILEGES_WARN_HIDVOL">숨겨진 볼륨을 생성하려면 관리자 권한이 있는 계정에 로그인해야 합니다.\n\n계속하시겠습니까?</entry>
<entry lang="ko" key="ADMIN_PRIVILEGES_WARN_NTFS">볼륨을 NTFS/exFAT/ReFS로 포맷하려면 관리자 권한이 있는 계정에 로그인해야 한다는 점에 유의하세요.\n\n관리자 권한 없이 볼륨을 FAT로 포맷할 수 있습니다.</entry>
<entry lang="ko" key="AES_HELP">미국 정부 부처 및 기관이 최고 비밀 수준까지의 기밀 정보를 보호하기 위해 사용할 수 있는 것들은 FIPS 승인 암호(Rijndael, 1998년 발행). 256비트 키, 128비트 블록, 14라운드(AES-256). 작업 모드는 XTS입니다.</entry>
@@ -398,7 +396,7 @@
<entry lang="ko" key="ERR_SELF_TESTS_FAILED">주의: 하나 이상의 암호화 또는 해시 알고리즘이 내장된 자동 자가 테스트에 실패했습니다!\n\nVeraCrypt 설치가 손상되었을 수 있습니다.</entry>
<entry lang="ko" key="ERR_NOT_ENOUGH_RANDOM_DATA">주의: 무작위 번호 생성기 풀에 요청된 랜덤 데이터를 제공할 수 있는 충분한 데이터가 없습니다. 더 이상 진행하면 안 됩니다. 도움말 메뉴에서 '버그 보고'를 선택하고 이 오류를 보고하세요.</entry>
<entry lang="ko" key="ERR_HARDWARE_ERROR">드라이브가 손상되었거나(물리적 결함이 있거나) 케이블이 손상되었거나, 메모리가 오작동하고 있습니다.\n\nVeraCrypt가 아니라 하드웨어에 문제가 있다는 점에 유의하세요. 따라서 VeraCrypt에서 버그/문제로서 보고하지 마시고 VeraCrypt 포럼에서 이에 대한 도움을 요청하지 마세요. 컴퓨터 공급업체의 기술 지원팀에 문의하여 지원을 받으세요. 감사합니다.\n\n참고: 오류가 같은 장소에서 반복적으로 발생하는 경우, 불량 디스크 블록에 의해 발생할 가능성이 매우 높으며, 이는 타사 소프트웨어를 사용하여 수정할 수 있어야 한다(참고, 'chkdsk/r' 명령은 파일 시스템 수준에서만 작동하므로 고칠 수 없으며, 경우에 따라 'chkdsk' 도구에서 감지조차 할 수 없습니다).</entry>
<entry lang="ko" key="DEVICE_NOT_READY_ERROR">이동식 미디어용 드라이브에 액세스하는 경우 드라이브에 미디어가 삽입되었는지 확인하세요. 드라이브/매체도 손상되거나(물리적 결함이 있을 수 있음) 케이블 손상 또는 분리될 수 있습니다.</entry>
<entry lang="en" key="DEVICE_NOT_READY_ERROR">이동식 미디어용 드라이브에 액세스하는 경우 드라이브에 미디어가 삽입되었는지 확인하세요. 드라이브/매체도 손상되거나(물리적 결함이 있을 수 있음) 케이블 손상 또는 분리될 수 있습니다.</entry>
<entry lang="ko" key="WHOLE_DRIVE_ENCRYPTION_PREVENTED_BY_DRIVERS">시스템이 전체 시스템 드라이브의 암호화를 방지하는 버그를 포함하는 사용자 지정 칩셋 드라이버를 사용하는 것으로 나타남.\n\n계속하기 전에 사용자 지정(Microsoft가 아닌) 칩셋 드라이버를 업데이트하거나 제거해 보세요. 도움이 되지 않는 경우 시스템 파티션만 암호화 해 보세요.</entry>
<entry lang="ko" key="BAD_DRIVE_LETTER">잘못된 드라이브 문자입니다.</entry>
<entry lang="ko" key="INVALID_PATH">유효하지 않은 경로.</entry>
@@ -423,12 +421,12 @@
<entry lang="ko" key="DEVICE_FREE_PB">%s의 크기: %.2f PB</entry>
<entry lang="ko" key="DEVICE_IN_USE_FORMAT">경고: 장치/파티션이 운영 체제 또는 응용 프로그램에서 사용 중입니다. 장치/파티션을 포맷하면 데이터가 손상되고 시스템이 불안정해질 수 있습니다.\n\n계속 하시겠습니까?</entry>
<entry lang="ko" key="DEVICE_IN_USE_INPLACE_ENC">경고: 운영 체제 또는 응용 프로그램에서 파티션을 사용 중입니다. 파티션을 사용하고있는 응용 프로그램 (바이러스 백신 소프트웨어 포함)을 닫아야합니다.\n\n계속 하시겠습니까?</entry>
<entry lang="ko" key="FORMAT_CANT_UNMOUNT_FILESYS">오류: 장치/파티션에 마운트 해제 할 수 없는 파일 시스템이 있습니다. 파일 시스템이 운영 체제에서 사용 중일 수 있습니다. 장치/파티션을 포맷하면 데이터가 손상되고 시스템이 불안정해질 수 있습니다.\n\n이 문제를 해결하려면 먼저 파티션을 삭제 한 다음 포맷을 지정하지 않고 다시 생성하는 것이 좋습니다. 이렇게하려면 다음 단계를 따르세요.\n1) '시작 메뉴'에서 '컴퓨터'(또는 '내 컴퓨터') 아이콘을 마우스 오른쪽 버튼으로 클릭하고 '관리'를 선택하세요. '컴퓨터 관리'창이 나타나야합니다.\n2) '컴퓨터 관리'창에서 '저장소'> '디스크 관리'를 선택하세요.\n3) 암호화 할 파티션을 마우스 오른쪽 버튼으로 클릭하고 '파티션 삭제' 또는 '볼륨 삭제'또는 '논리 드라이브 삭제'를 클릭하세요.\n4) '예'를 클릭하세요. Windows에서 컴퓨터를 다시 시작하라는 메시지가 나타나면 그렇게하세요. 그런 다음 1 단계와 2 단계를 반복하고 5 단계부터 계속하세요.\n5) 할당되지 않은 여유 공간을 마우스 오른쪽 버튼으로 클릭하고 '새 파티션'또는 '새 단순 볼륨'또는 '새 논리 드라이브'를 선택하세요.\n6 ) '새 파티션 마법사'또는 '새 단순 볼륨 마법사'창이 나타납니다. 지침을 따르세요. 'Format Partition'이라는 마법사 페이지에서 '이 파티션을 포맷하지 마십시오'또는 '이 볼륨을 포맷하지 마십시오'중 하나를 선택하세요. 같은 마법사에서 '다음'을 클릭 한 다음 '마침'을 클릭하세요.\n7) VeraCrypt에서 선택한 장치 경로가 잘못되었을 수 있습니다. 따라서 VeraCrypt 볼륨 생성 마법사가 종료 된 경우 종료하고 다시 시작하세요.\n8) 장치/파티션을 다시 암호화 해보세요.\n\nVeraCrypt가 장치/파티션을 반복적으로 암호화하지 못하면 대신 파일 컨테이너를 만드는 것이 좋습니다.</entry>
<entry lang="ko" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">오류: 파일 시스템을 잠글 수 없거나 마운트 해제 할 수 없습니다. 운영 체제 또는 응용 프로그램 (예: 바이러스 백신 소프트웨어)에서 사용 중일 수 있습니다. 파티션을 암호화하면 데이터가 손상되고 시스템이 불안정해질 수 있습니다.\n\n파일 시스템을 사용하고있는 응용 프로그램 (바이러스 백신 소프트웨어 포함)을 닫고 다시 시도하세요. 도움이되지 않으면 아래 단계를 따르세요.</entry>
<entry lang="ko" key="FORMAT_CANT_DISMOUNT_FILESYS">오류: 장치/파티션에 마운트 해제 할 수 없는 파일 시스템이 있습니다. 파일 시스템이 운영 체제에서 사용 중일 수 있습니다. 장치/파티션을 포맷하면 데이터가 손상되고 시스템이 불안정해질 수 있습니다.\n\n이 문제를 해결하려면 먼저 파티션을 삭제 한 다음 포맷을 지정하지 않고 다시 생성하는 것이 좋습니다. 이렇게하려면 다음 단계를 따르세요.\n1) '시작 메뉴'에서 '컴퓨터'(또는 '내 컴퓨터') 아이콘을 마우스 오른쪽 버튼으로 클릭하고 '관리'를 선택하세요. '컴퓨터 관리'창이 나타나야합니다.\n2) '컴퓨터 관리'창에서 '저장소'> '디스크 관리'를 선택하세요.\n3) 암호화 할 파티션을 마우스 오른쪽 버튼으로 클릭하고 '파티션 삭제' 또는 '볼륨 삭제'또는 '논리 드라이브 삭제'를 클릭하세요.\n4) '예'를 클릭하세요. Windows에서 컴퓨터를 다시 시작하라는 메시지가 나타나면 그렇게하세요. 그런 다음 1 단계와 2 단계를 반복하고 5 단계부터 계속하세요.\n5) 할당되지 않은 여유 공간을 마우스 오른쪽 버튼으로 클릭하고 '새 파티션'또는 '새 단순 볼륨'또는 '새 논리 드라이브'를 선택하세요.\n6 ) '새 파티션 마법사'또는 '새 단순 볼륨 마법사'창이 나타납니다. 지침을 따르세요. 'Format Partition'이라는 마법사 페이지에서 '이 파티션을 포맷하지 마십시오'또는 '이 볼륨을 포맷하지 마십시오'중 하나를 선택하세요. 같은 마법사에서 '다음'을 클릭 한 다음 '마침'을 클릭하세요.\n7) VeraCrypt에서 선택한 장치 경로가 잘못되었을 수 있습니다. 따라서 VeraCrypt 볼륨 생성 마법사가 종료 된 경우 종료하고 다시 시작하세요.\n8) 장치/파티션을 다시 암호화 해보세요.\n\nVeraCrypt가 장치/파티션을 반복적으로 암호화하지 못하면 대신 파일 컨테이너를 만드는 것이 좋습니다.</entry>
<entry lang="ko" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">오류: 파일 시스템을 잠글 수 없거나 마운트 해제 할 수 없습니다. 운영 체제 또는 응용 프로그램 (예: 바이러스 백신 소프트웨어)에서 사용 중일 수 있습니다. 파티션을 암호화하면 데이터가 손상되고 시스템이 불안정해질 수 있습니다.\n\n파일 시스템을 사용하고있는 응용 프로그램 (바이러스 백신 소프트웨어 포함)을 닫고 다시 시도하세요. 도움이되지 않으면 아래 단계를 따르세요.</entry>
<entry lang="ko" key="DEVICE_IN_USE_INFO">주의: 마운트된 일부 장치/파티션이 현재 사용 중입니다!\n\n이를 무시하면 시스템 불안정을 포함한 바람직하지 않은 결과를 초래할 수 있습니다.\n\n장치/파티션을 사용 중인 프로그램을 닫을 것을 권장합니다.</entry>
<entry lang="ko" key="DEVICE_PARTITIONS_ERR">선택한 장치에 파티션이 포함되어 있음\n\n장치 포맷 시 시스템 불안정 및/또는 데이터 손상의 원인이 될 수 있습니다. 장치에서 파티션을 선택하거나 장치의 모든 파티션을 제거하여 VeraCrypt가 안전하게 포맷할 수 있도록 설정하세요.</entry>
<entry lang="ko" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">선택한 비시스템 디바이스에 파티션이 포함되어 있음\n\n암호화된 장치 호스팅된 VeraCrypt 볼륨은 파티션이 포함되지 않은 장치(하드 디스크 및 솔리드 스테이트 드라이브 포함) 내에서 생성할 수 있습니다. 파티션이 포함된 장치는 Windows가 설치되어 있고 부팅되는 드라이브인 경우에만 (단일 마스터 키를 사용하여) 완전히 암호화 할 수 있습니다.\n\n단일 마스터 키를 사용하여 선택한 비시스템 장치를 암호화하려면 먼저 장치의 모든 파티션을 제거하여 VeraCrypt가 안전하게 포맷할 수 있도록 해야 합니다(파티션이 포함된 장치를 포맷하면 시스템 불안정 및/또는 데이터 손상이 발생할 수 있음). 또는 드라이브의 각 파티션을 개별적으로 암호화할 수 있습니다(각 파티션은 다른 마스터 키를 사용하여 암호화됨).\n\n참고: GPT 디스크에서 모든 파티션을 제거하려면 숨겨진 파티션을 제거하기 위해 MBR 디스크로 변환해야 할 수 있습니다(예: 컴퓨터 관리 도구 사용).</entry>
<entry lang="ko" key="WHOLE_NONSYS_DEVICE_ENC_CONFIRM">경고: 전체 장치(그 장치의 파티션만 암호화하는 것이 아니라)를 암호화하는 경우, 운영 체제는 장치를 새 장치, 비어 있고 포맷되지 않은 것으로 간주하고(파티션 테이블을 포함하지 않기 때문에) 강제적으로 장치를 초기화(또는 그렇게 할 것인지 묻는 질문)하여 볼륨이 손상될 수 있습니다. 또한 볼륨을 즐겨찾기(예: 드라이브 번호가 변경될 때)로 일관되게 마운트하거나 즐겨찾기 볼륨 레이블을 지정할 수 없습니다.\n\n장치에 파티션을 생성하고 파티션을 암호화하는 것을 고려할 수 있습니다.\n\n정말로 전체 장치를 암호화하시겠습니까?</entry>
<entry lang="en" key="WHOLE_NONSYS_DEVICE_ENC_CONFIRM">경고: 전체 장치(그 장치의 파티션만 암호화하는 것이 아니라)를 암호화하는 경우, 운영 체제는 장치를 새 장치, 비어 있고 포맷되지 않은 것으로 간주하고(파티션 테이블을 포함하지 않기 때문에) 강제적으로 장치를 초기화(또는 그렇게 할 것인지 묻는 질문)하여 볼륨이 손상될 수 있습니다. 또한 볼륨을 즐겨찾기(예: 드라이브 번호가 변경될 때)로 일관되게 마운트하거나 즐겨찾기 볼륨 레이블을 지정할 수 없습니다.\n\n장치에 파티션을 생성하고 파티션을 암호화하는 것을 고려할 수 있습니다.\n\n정말로 전체 장치를 암호화하시겠습니까?</entry>
<entry lang="ko" key="AFTER_FORMAT_DRIVE_LETTER_WARN">중요: 이 볼륨은 현재 할당되어 있는 드라이브 문자 %c:를 사용하여 마운트/액세스할 수 없다는 점을 유념하십시오!\n\n이 볼륨을 마운트하려면 기본 VeraCrypt 창에서 '자동 마운트 장치'를 클릭하세요(대체로 기본 VeraCrypt 창에서 '장치 선택'을 클릭한 다음 이 파티션/장치를 선택하고 '마운트'를 클릭하십시오). 볼륨은 기본 VeraCrypt 창의 목록에서 선택한 다른 드라이브 문자에 마운트됩니다.\n\n원래 드라이브 문자 %c: 파티션/장치에서 암호화를 제거해야 하는 경우에만 사용해야 합니다.(예: 더 이상 암호화가 필요하지 않은 경우). 이 경우 '컴퓨터'(또는 '내 컴퓨터') 목록에서 드라이브 문자 %c:를 마우스 오른쪽 버튼으로 누르고 '포맷'을 선택하세요. 그렇지 않으면 %c: 드라이브 문자를 사용하지 마십시오(예: VeraCrypt FAQ에서 설명한 대로 제거하고 다른 파티션/장치에 할당하지 않는 한).</entry>
<entry lang="ko" key="OS_NOT_SUPPORTED_FOR_NONSYS_INPLACE_ENC">비시스템 볼륨의 내부 암호화는 현재 사용 중인 운영 체제 버전에서는 지원되지 않습니다(Windows Vista 이상 버전의 Windows에서만 지원됨).\n\n이유는 이 Windows 버전이 파일 시스템의 축소를 지원하지 않기 때문입니다(볼륨 헤더 및 백업 헤더를 위한 공간을 만들기 위해 파일 시스템을 축소해야 함).</entry>
<entry lang="ko" key="ONLY_NTFS_SUPPORTED_FOR_NONSYS_INPLACE_ENC">선택한 파티션에 NTFS 파일 시스템이 없는 것 같습니다. NTFS 파일 시스템을 포함하는 파티션만 암호화될 수 있습니다.\n\n참고: 그 이유는 Windows가 다른 유형의 파일 시스템 축소를 지원하지 않기 때문이다(파일 시스템을 축소하여 볼륨 헤더와 백업 헤더를 위한 공간을 만들어야 함).</entry>
@@ -452,9 +450,9 @@
<entry lang="ko" key="ERR_CIPHER_INIT_WEAK_KEY">오류: 잠재적으로 보안이 매우 약한 키가 감지되었습니다. 이 키는 폐기되었으니 다시 시도하세요.</entry>
<entry lang="ko" key="EXCEPTION_REPORT">심각한 오류가 발생하여 VeraCrypt를 종료해야 합니다. 만약 이것이 VeraCrypt의 버그에 의한 것이라면, 우리는 그것을 고치고 싶습니다. 도움말을 보려면 자동으로 생성된 오류 보고서를 보내주세요.\n\n- 프로그램 버전\n- OS 버전\n- CPU 종류\n- VeraCrypt 구성 요소 이름\n- VeraCrypt 실행 파일\n- 이 대화창의 이름\n- 오류- 주소\n-오류\n-오류\n-암호화 호출 스택\n만약 '네' 를 선택한다면, 다음 URL(전체 오류 보고서가 들어 있음)이 기본 인터넷 브라우저에서 열릴 것입니다.\n%hs\n위 오류 보고서를 보내시겠습니까?</entry>
<entry lang="ko" key="EXCEPTION_REPORT_EXT">시스템에서 심각한 오류가 발생하여 VeraCrypt를 종료해야 합니다.\n\n이 오류는 VeraCrypt에 의해 발생한 것이 아니므로 VeraCrypt 개발자가 오류를 수정할 수 없습니다. 시스템에 가능한 문제(예: 시스템 구성, 네트워크 연결, 하드웨어 고장)가 있는지 확인하세요.</entry>
<entry lang="ko" key="EXCEPTION_REPORT_EXT_FILESEL">시스템에서 심각한 오류가 발생하여 VeraCrypt를 종료해야 합니다.\n\n이 문제가 지속되면 바이러스 백신 또는 인터넷 보안 소프트웨어, 시스템 "튜너", "최적화" 또는 "트위커" 등과 같이 잠재적으로 이 문제를 일으킬 수 있는 응용 프로그램을 비활성화하거나 제거해 볼 수 있습니다. 도움이 되지 않는 경우 운영 체제를 다시 설치해 보십시오(이 문제는 멀웨어에 의해 발생할 수도 있음).</entry>
<entry lang="en" key="EXCEPTION_REPORT_EXT_FILESEL">시스템에서 심각한 오류가 발생하여 VeraCrypt를 종료해야 합니다.\n\n이 문제가 지속되면 바이러스 백신 또는 인터넷 보안 소프트웨어, 시스템 "튜너", "최적화" 또는 "트위커" 등과 같이 잠재적으로 이 문제를 일으킬 수 있는 응용 프로그램을 비활성화하거나 제거해 볼 수 있습니다. 도움이 되지 않는 경우 운영 체제를 다시 설치해 보십시오(이 문제는 멀웨어에 의해 발생할 수도 있음).</entry>
<entry lang="ko" key="EXCEPTION_REPORT_TITLE">VeraCrypt 치명적 오류</entry>
<entry lang="ko" key="SYSTEM_CRASHED_ASK_REPORT">VeraCrypt가 최근 OS에 오류가 발생한 것을 감지했습니다. 시스템이 고장 났을 수 있는 많은 잠재적 이유(예: 하드웨어 구성 요소 고장, 장치 드라이버의 버그 등). VeraCrypt에서 VeraCrypt의 버그가 시스템 충돌을 일으킬 수 있는지 확인하시겠습니까?</entry>
<entry lang="en" key="SYSTEM_CRASHED_ASK_REPORT">VeraCrypt가 최근 OS에 오류가 발생한 것을 감지했습니다. 시스템이 고장 났을 수 있는 많은 잠재적 이유(예: 하드웨어 구성 요소 고장, 장치 드라이버의 버그 등). VeraCrypt에서 VeraCrypt의 버그가 시스템 충돌을 일으킬 수 있는지 확인하시겠습니까?</entry>
<entry lang="ko" key="ASK_KEEP_DETECTING_SYSTEM_CRASH">VeraCrypt가 계속 시스템 오류를 감지하기를 원하십니까?</entry>
<entry lang="ko" key="NO_MINIDUMP_FOUND">VeraCrypt가 시스템 오류 미니 덤프 파일을 찾지 못함</entry>
<entry lang="ko" key="ASK_DELETE_KERNEL_CRASH_DUMP">디스크 공간을 확보하기 위해 Windows 오류 덤프 파일을 삭제하시겠습니까?</entry>
@@ -501,7 +499,7 @@
<entry lang="ko" key="WIPE_FINISHED">파티션/디바이스의 내용이 성공적으로 삭제되었습니다.</entry>
<entry lang="ko" key="WIPE_FINISHED_DECOY_SYSTEM_PARTITION">숨겨진 시스템이 복제된 원래 시스템이 있는 파티션의 내용이 성공적으로 삭제되었습니다.</entry>
<entry lang="ko" key="DECOY_OS_VERSION_WARNING">설치하려는 Windows(윈도우) 버전이 현재 실행 중인 Windows(윈도우) 버전과 동일해야 합니다. 이는 두 시스템이 부팅 파티션을 공유하기 때문에 필요합니다.</entry>
<entry lang="ko" key="SYSTEM_ENCRYPTION_FINISHED">시스템 파티션/드라이브가 암호화되었습니다.\n\n참고: Windows(윈도우)를 시작할 때마다 자동으로 마운트해야 하는 비시스템 VeraCrypt 볼륨이 있는 경우 각 볼륨을 마운트하고 '즐겨찾기' > '시스템 즐겨찾기에 마운트된 볼륨 추가'를 선택하여 설정할 수 있습니다.</entry>
<entry lang="en" key="SYSTEM_ENCRYPTION_FINISHED">시스템 파티션/드라이브가 암호화되었습니다.\n\n참고: Windows(윈도우)를 시작할 때마다 자동으로 마운트해야 하는 비시스템 VeraCrypt 볼륨이 있는 경우 각 볼륨을 마운트하고 '즐겨찾기' > '시스템 즐겨찾기에 마운트된 볼륨 추가'를 선택하여 설정할 수 있습니다.</entry>
<entry lang="ko" key="SYSTEM_DECRYPTION_FINISHED">시스템 파티션/드라이브의 암호가 성공적으로 복호화 되었습니다.</entry>
<entry lang="ko" key="FORMAT_FINISHED_HELP">\n\nVeraCrypt 볼륨이 생성되었으며 사용할 준비가 되었습니다. 다른 VeraCrypt 볼륨을 생성하려면 다음을 클릭합니다. 그렇지 않으면 [종료]를 클릭합니다.</entry>
<entry lang="ko" key="SYSENC_HIDDEN_VOL_FORMAT_FINISHED_HELP">\n\n숨겨진 VeraCrypt 볼륨이 성공적으로 생성되었습니다(숨겨진 운영 체제는 이 숨겨진 볼륨 내에 있습니다). 계속하려면 다음을 클릭합니다.</entry>
@@ -509,8 +507,8 @@
<entry lang="ko" key="NONSYS_INPLACE_DEC_FINISHED_TITLE">볼륨이 완전히 복호화 되었습니다.</entry>
<entry lang="ko" key="NONSYS_INPLACE_ENC_FINISHED_INFO">중요: 새롭게 생성된 VeraCrypt 볼륨을 마운트하고 데이터에 접근하려면 메인 VeraCrypt 창에서 '장치 자동 마운트'를 클릭하세요. 올바른 암호를 입력하고 올바른 키 파일을 입력하면 볼륨이 VeraCrypt 창의 목록에서 선택한 드라이브 문자에 마운트됩니다(선택한 드라이브 문자를 통해 암호화 된 데이터에 액세스 할 수 있습니다).\n\n위의 단계를 기억하거나 적어주세요. 볼륨 및 저장 데이터를 마운트하려는 경우에는 반드시 이 방법을 사용해야 합니다. 또는 VeraCrypt 창에서 '장치 선택'을 클릭 한 다음이 파티션/볼륨을 선택하고 '마운트'를 클릭하세요.\n\n파티션/볼륨이 성공적으로 암호화 되었습니다(현재 완전히 암호화 된 VeraCrypt 볼륨이 포함되어 있음). 장치를 사용할 준비가 되었습니다.</entry>
<entry lang="ko" key="NONSYS_INPLACE_DEC_FINISHED_INFO">VeraCrypt 볼륨의 암호가 성공적으로 해제되었습니다.</entry>
<entry lang="ko" key="NONSYS_INPLACE_DEC_FINISHED_DRIVE_LETTER_SEL_INFO">VeraCrypt 볼륨의 암호가 성공적으로 해제되었습니다.\n\n암호화된 볼륨에 할당할 드라이브 문자를 선택한 다음 마침을 클릭합니다.\n\n주의: 드라이브 문자가 암호 해독된 볼륨에 할당될 때까지 볼륨에 저장된 데이터에 액세스할 수 없습니다.</entry>
<entry lang="ko" key="NONSYS_INPLACE_DEC_FINISHED_NO_DRIVE_LETTER_AVAILABLE">경고: 암호 해독된 데이터에 액세스할 수 있으려면 드라이브 문자를 암호 해독된 볼륨에 할당해야 합니다. 그러나 현재 사용 가능한 드라이브 문자가 없습니다.\n\nUSB 플래시 드라이브 또는 외장 하드 드라이브 연결을 해제하는 등 드라이브 문자를 비운 다음 확인을 클릭합니다.</entry>
<entry lang="en" key="NONSYS_INPLACE_DEC_FINISHED_DRIVE_LETTER_SEL_INFO">VeraCrypt 볼륨의 암호가 성공적으로 해제되었습니다.\n\n암호화된 볼륨에 할당할 드라이브 문자를 선택한 다음 마침을 클릭합니다.\n\n주의: 드라이브 문자가 암호 해독된 볼륨에 할당될 때까지 볼륨에 저장된 데이터에 액세스할 수 없습니다.</entry>
<entry lang="en" key="NONSYS_INPLACE_DEC_FINISHED_NO_DRIVE_LETTER_AVAILABLE">경고: 암호 해독된 데이터에 액세스할 수 있으려면 드라이브 문자를 암호 해독된 볼륨에 할당해야 합니다. 그러나 현재 사용 가능한 드라이브 문자가 없습니다.\n\nUSB 플래시 드라이브 또는 외장 하드 드라이브 연결을 해제하는 등 드라이브 문자를 비운 다음 확인을 클릭합니다.</entry>
<entry lang="ko" key="FORMAT_FINISHED_INFO">VeraCrypt 볼륨이 성공적으로 생성되었습니다.</entry>
<entry lang="ko" key="FORMAT_FINISHED_TITLE">볼륨 생성</entry>
<entry lang="ko" key="FORMAT_HELP">중요: 이 창에서 마우스를 가능한 한 무작위로 이동합니다. 오래 움직일수록 암호화 키의 암호화 강도가 크게 향상됩니다. 그런 다음 포맷을 클릭하여 볼륨을 생성하세요.</entry>
@@ -523,7 +521,7 @@
<entry lang="ko" key="HIDDEN_VOL_WIZARD_MODE_DIRECT_HELP">이 옵션을 선택하면 기존 VeraCrypt 볼륨 내에 숨겨진 볼륨이 생성됩니다. 숨겨진 볼륨을 호스팅하는 데 적합한 VeraCrypt 볼륨을 이미 생성했다고 가정합니다.</entry>
<entry lang="ko" key="HIDDEN_VOL_WIZARD_MODE_TITLE">볼륨 생성 모드</entry>
<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="en" 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">외부 볼륨이 생성되어 %hc: 드라이브로 마운트되었습니다. 이제 실제로 숨기지 않을 중요해 보이는 파일을 이 볼륨에 복사해야 합니다. 이 파일은 암호를 공개하도록 강요하는 모든 사용자를 위해 제공됩니다. 숨겨진 볼륨이 아닌 이 외부 볼륨의 암호만 표시됩니다. 사용자가 정말 신경 쓰는 파일은 나중에 생성되는 숨겨진 볼륨에 저장됩니다. 복사를 마치면 다음을 클릭합니다. 볼륨을 마운트 해제하지 않습니다.\n\n참고: 다음을 클릭하면 외부 볼륨의 클러스터 비트맵이 스캔되어 끝단이 볼륨의 끝과 정렬된 사용 가능한 공간의 중단 없는 영역 크기를 결정합니다. 이 영역은 숨겨진 볼륨을 수용하므로 가능한 최대 크기를 제한합니다. 클러스터 비트맵 검색은 숨겨진 볼륨에 의해 외부 볼륨의 데이터를 덮어쓰지 않도록 합니다.</entry>
@@ -590,7 +588,7 @@
<entry lang="ko" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">오류: 외부 볼륨에 복사 한 파일이 너무 많은 공간을 차지합니다. 따라서 숨긴 볼륨의 외부 볼륨에 여유 공간이 부족합니다.\n\n숨긴 볼륨은 시스템 파티션 (현재 실행중인 운영 체제가 설치된 파티션)만큼 커야합니다. 그 이유는 시스템 파티션의 내용을 숨긴 볼륨에 복사하여 숨겨진 운영 체제를 만들어야하기 때문입니다.\n\n\n숨겨진 운영 체제를 만드는 과정을 계속할 수 없습니다.</entry>
<entry lang="ko" key="OPENFILES_DRIVER">드라이버가 볼륨을 분리 할 수 없습니다. 볼륨에있는 일부 파일이 열려있을 수 있습니다.</entry>
<entry lang="ko" key="OPENFILES_LOCK">볼륨을 잠글 수 없습니다. 볼륨에 아직 열린 파일이 있어서 마운트 해제 할 수 없습니다.</entry>
<entry lang="ko" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt는 시스템 또는 응용 프로그램에서 사용 중이기 때문에 볼륨을 잠글 수 없습니다(볼륨에 열린 파일이있을 수 있음).\n\n볼륨에서 강제로 마운트 해제 하시겠습니까?</entry>
<entry lang="ko" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt는 시스템 또는 응용 프로그램에서 사용 중이기 때문에 볼륨을 잠글 수 없습니다(볼륨에 열린 파일이있을 수 있음).\n\n볼륨에서 강제로 마운트 해제 하시겠습니까?</entry>
<entry lang="ko" key="OPEN_VOL_TITLE">VeraCrypt 볼륨 선택</entry>
<entry lang="ko" key="OPEN_TITLE">경로 및 파일 이름 지정</entry>
<entry lang="ko" key="SELECT_PKCS11_MODULE">PKCS # 11 라이브러리 선택</entry>
@@ -613,7 +611,7 @@
<entry lang="ko" key="FAVORITE_PIM_CHANGED">이 볼륨은 시스템 즐겨찾기로 등록되어 PIM이 변경되었습니다.\nVeraCrypt가 시스템 즐겨찾기 구성을 자동으로 업데이트하도록 할까요? (관리자 권한 필요)\n\n아니오라고 대답할 경우 시스템 즐겨찾기를 수동으로 업데이트해야 합니다.</entry>
<entry lang="ko" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">중요: VeraCrypt 응급 복구 디스크를 폐기하지 않은 경우 이전 암호를 사용하여 시스템 파티션/드라이브를 해독 할 수 있습니다(VeraCrypt 응급 복구 디스크를 부팅하고 이전 암호 입력). 새로운 VeraCrypt 응급 복구 디스크를 작성한 다음 이전 버전을 폐기해야합니다.\n\n새로운 VeraCrypt 응급 복구 디스크를 만드시겠습니까?</entry>
<entry lang="ko" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">VeraCrypt 응급 복구 디스크는 여전히 이전 알고리즘을 사용합니다. 이전의 알고리즘이 안전하지 않다고 생각하면 새로운 VeraCrypt 응급 복구 디스크를 생성 한 다음 이전 VeraCrypt 응급 복구 디스크를 폐기해야합니다.\n\n새로운 VeraCrypt 응급 복구 디스크를 만드시겠습니까?</entry>
<entry lang="ko" key="KEYFILES_NOTE">VeraCrypt는 키 파일 내용을 수정하지 않습니다. 둘 이상의 키 파일을 선택할 수 있습니다(순서는 중요하지 않음). 폴더를 추가하면 그 안에있는 숨겨진 파일이 아닌 모든 키 파일이 키 파일로 사용됩니다. '토큰 파일 추가'를 클릭하여 보안 토큰 또는 스마트 카드에 저장된 키 파일을 선택하거나 키 파일을 보안 토큰 또는 스마트 카드로 가져옵니다.</entry>
<entry lang="ko" key="KEYFILES_NOTE">모든 종류의 파일 (예 :.mp3,.jpg,.zip,.avi)은 VeraCrypt 키 파일로 사용될 수 있습니다. VeraCrypt는 키 파일 내용을 수정하지 않습니다. 둘 이상의 키 파일을 선택할 수 있습니다(순서는 중요하지 않음). 폴더를 추가하면 그 안에있는 숨겨진 파일이 아닌 모든 키 파일이 키 파일로 사용됩니다. '토큰 파일 추가'를 클릭하여 보안 토큰 또는 스마트 카드에 저장된 키 파일을 선택하거나 키 파일을 보안 토큰 또는 스마트 카드로 가져옵니다.</entry>
<entry lang="ko" key="KEYFILE_CHANGED">키 파일이 성공적으로 추가/제거되었습니다.</entry>
<entry lang="ko" key="KEYFILE_EXPORTED">키 파일을 내보냄.</entry>
<entry lang="ko" key="PKCS5_PRF_CHANGED">헤더 키 유도 알고리즘이 성공적으로 설정되었습니다.</entry>
@@ -729,10 +727,10 @@
<entry lang="ko" key="DLL_FILES">라이브러리 모듈</entry>
<entry lang="ko" key="FORMAT_NTFS_STOP">NTFS/exFAT/ReFS 서식을 계속할 수 없습니다.</entry>
<entry lang="ko" key="CANT_MOUNT_VOLUME">볼륨을 마운트 할 수 없습니다.</entry>
<entry lang="ko" key="CANT_UNMOUNT_VOLUME">볼륨을 마운트 해제 할 수 없습니다.</entry>
<entry lang="ko" key="CANT_DISMOUNT_VOLUME">볼륨을 마운트 해제 할 수 없습니다.</entry>
<entry lang="ko" key="FORMAT_NTFS_FAILED">Windows에서 볼륨을 NTFS/exFAT/ReFS로 포맷하지 못했습니다.\n\n가능한 경우 다른 유형의 파일 시스템을 선택하고 다시 시도하세요. 또는 볼륨을 포맷하지 않고 (파일 시스템으로 '없음'을 선택)이 마법사를 종료하고 볼륨을 마운트 한 다음 시스템 또는 타사 도구를 사용하여 마운트 된 볼륨을 포맷 할 수 있습니다(볼륨은 암호화 된 상태로 유지됨).</entry>
<entry lang="ko" key="FORMAT_NTFS_FAILED_ASK_FAT">Windows에서 볼륨을 NTFS/exFAT/ReFS로 포맷하지 못했습니다.\n\n대신 볼륨을 FAT로 포맷 하시겠습니까?</entry>
<entry lang="ko" key="DEFAULT">기본값</entry>
<entry lang="ko" key="DEFAULT">태만</entry>
<entry lang="ko" key="PARTITION_LOWER_CASE">분할</entry>
<entry lang="ko" key="PARTITION_UPPER_CASE">분할</entry>
<entry lang="ko" key="DEVICE">장치</entry>
@@ -771,7 +769,7 @@
<entry lang="ko" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">오류로 인해 VeraCrypt가 파티션을 암호화하지 못했습니다. 이전에보고 된 문제를 해결하고 다시 시도하세요. 문제가 지속되면 아래 단계를 따르세요.</entry>
<entry lang="ko" key="INPLACE_ENC_GENERIC_ERR_RESUME">오류로 인해 VeraCrypt가 파티션/볼륨의 암호화/암호 해독 프로세스를 다시 시작할 수 없습니다.\n\n이전에보고 된 문제를 수정하고 가능한 경우 다시 시도하세요. 볼륨이 완전히 암호화되거나 완전히 해독 될 때까지 볼륨을 마운트 할 수 없습니다.</entry>
<entry lang="ko" key="INPLACE_DEC_GENERIC_ERR">VeraCrypt가 볼륨을 해독하지 못하게하는 오류가 발생했습니다. 이전에보고 된 문제를 수정하고 가능한 경우 다시 시도하세요.</entry>
<entry lang="ko" key="CANT_UNMOUNT_OUTER_VOL">오류: 외부 볼륨을 마운트 해제 할 수 없습니다!\n\n볼륨에 프로그램이나 시스템에서 사용중인 파일이나 폴더가 포함되어 있으면 볼륨을 마운트 해제 할 수 없습니다.\n\n볼륨에서 파일이나 디렉토리를 사용하고있는 프로그램을 닫고 재시도를 클릭하세요..</entry>
<entry lang="ko" key="CANT_DISMOUNT_OUTER_VOL">오류: 외부 볼륨을 마운트 해제 할 수 없습니다!\n\n볼륨에 프로그램이나 시스템에서 사용중인 파일이나 폴더가 포함되어 있으면 볼륨을 마운트 해제 할 수 없습니다.\n\n볼륨에서 파일이나 디렉토리를 사용하고있는 프로그램을 닫고 재시도를 클릭하세요..</entry>
<entry lang="ko" key="CANT_GET_OUTER_VOL_INFO">오류: 외부 볼륨에 대한 정보를 얻을 수 없습니다!\n볼륨 생성을 계속할 수 없습니다.</entry>
<entry lang="ko" key="CANT_ACCESS_OUTER_VOL">오류: 외부 볼륨에 액세스 할 수 없습니다! 볼륨 생성을 계속할 수 없습니다.</entry>
<entry lang="ko" key="CANT_MOUNT_OUTER_VOL">오류: 외부 볼륨을 탑재 할 수 없습니다! 볼륨 생성을 계속할 수 없습니다.</entry>
@@ -813,7 +811,7 @@
<entry lang="ko" key="SECONDARY_KEY_SIZE_LRW">비틀기 키 크기 (LRW 모드)</entry>
<entry lang="ko" key="BITS">조금</entry>
<entry lang="ko" key="BLOCK_SIZE">블록 크기</entry>
<entry lang="ko" key="KDF">KDF</entry>
<entry lang="ko" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="ko" key="PKCS5_ITERATIONS">PKCS-5 반복 횟수</entry>
<entry lang="ko" key="VOLUME_CREATE_DATE">생성 된 볼륨</entry>
<entry lang="ko" key="VOLUME_HEADER_DATE">헤더가 마지막으로 수정 됨</entry>
@@ -824,7 +822,7 @@
<entry lang="ko" key="FIRST_AVAILABLE">처음 사용 가능</entry>
<entry lang="ko" key="REMOVABLE_DISK">이동식 디스크</entry>
<entry lang="ko" key="HARDDISK">하드 디스크</entry>
<entry lang="ko" key="UNCHANGED">경 안 함</entry>
<entry lang="ko" key="UNCHANGED">하지 않은</entry>
<entry lang="ko" key="AUTODETECTION">자동 감지</entry>
<entry lang="ko" key="SETUP_MODE_TITLE">마법사 모드</entry>
<entry lang="ko" key="SETUP_MODE_INFO">모드 중 하나를 선택하세요. 선택 해야할지 확실하지 않은 경우 기본 모드를 사용하세요.</entry>
@@ -855,7 +853,7 @@
<entry lang="ko" key="TC_INSTALLER_IS_RUNNING">VeraCrypt Installer가 현재이 시스템에서 실행 중이며 VeraCrypt의 설치 또는 업데이트를 수행 중이거나 준비 중입니다. 진행하기 전에 끝내거나 닫을 때까지 기다리세요. 컴퓨터를 닫을 수없는 경우 계속하기 전에 컴퓨터를 다시 시작하세요.</entry>
<entry lang="ko" key="INSTALL_FAILED">설치가 실패했습니다.</entry>
<entry lang="ko" key="UNINSTALL_FAILED">제거에 실패했습니다.</entry>
<entry lang="ko" key="DIST_PACKAGE_CORRUPTED">이 배포 패키지가 손상되었습니다. 다시 VeraCrypt 웹 사이트 (https://veracrypt.jp)에서 다운로드하세요.</entry>
<entry lang="ko" key="DIST_PACKAGE_CORRUPTED">이 배포 패키지가 손상되었습니다. 다시 VeraCrypt 웹 사이트 (https://www.veracrypt.fr)에서 다운로드하세요.</entry>
<entry lang="ko" key="CANNOT_WRITE_FILE_X">%s 파일을 쓸 수 없습니다</entry>
<entry lang="ko" key="EXTRACTING_VERB">적출</entry>
<entry lang="ko" key="CANNOT_READ_FROM_PACKAGE">패키지에서 데이터를 읽을 수 없습니다.</entry>
@@ -882,7 +880,7 @@
<entry lang="ko" key="INSTALL_COMPLETED">설치 완료.</entry>
<entry lang="ko" key="CANT_CREATE_FOLDER">폴더 '%s'을 (를) 만들지 못했습니다.</entry>
<entry lang="ko" key="CLOSE_TC_FIRST">VeraCrypt 장치 드라이버를 언로드 할 수 없습니다.\n\n열려있는 모든 VeraCrypt 창을 먼저 닫으세요. 문제가 해결되지 않으면 Windows를 다시 시작한 다음 다시 시도하세요.</entry>
<entry lang="ko" key="UNMOUNT_ALL_FIRST">VeraCrypt를 설치하거나 제거하기 전에 모든 VeraCrypt 볼륨의 마운트를 해제해야합니다.</entry>
<entry lang="ko" key="DISMOUNT_ALL_FIRST">VeraCrypt를 설치하거나 제거하기 전에 모든 VeraCrypt 볼륨을 분리해야합니다.</entry>
<entry lang="ko" key="UNINSTALL_OLD_VERSION_FIRST">VeraCrypt의 구식 버전이 현재이 시스템에 설치되어 있습니다. 이 새 버전의 VeraCrypt를 설치하려면 먼저 제거해야합니다.\n\n이 메시지 상자를 닫으면 이전 버전의 제거 프로그램이 시작됩니다. VeraCrypt를 제거 할 때 볼륨이 암호 해독되지 않습니다. VeraCrypt의 이전 버전을 제거한 후 새 버전의 VeraCrypt 설치 프로그램을 다시 실행하세요.</entry>
<entry lang="ko" key="REG_INSTALL_FAILED">레지스트리 항목 설치가 실패했습니다.</entry>
<entry lang="ko" key="DRIVER_INSTALL_FAILED">장치 드라이버 설치에 실패했습니다. Windows를 다시 시작한 다음 VeraCrypt를 다시 설치하세요.</entry>
@@ -897,30 +895,30 @@
<entry lang="ko" key="TRAVELER_UAC_NOTE">VeraCrypt를 휴대용 모드로 실행하기로 결정한 경우 (VeraCrypt의 설치된 복사본을 실행하는 것과 달리) 시스템은 실행할 때마다 VeraCrypt (UAC 프롬프트) 실행 권한을 요청할 것입니다.\n\n그 이유는 휴대용 모드에서 VeraCrypt를 실행하면 VeraCrypt가 VeraCrypt 장치 드라이버를로드하고 시작해야합니다. VeraCrypt는 투명하고 즉각적인 암호화/해독을 제공하기 위해 장치 드라이버가 필요하며 관리자 권한이없는 사용자는 Windows에서 장치 드라이버를 시작할 수 없습니다. 따라서 시스템은 관리자 권한 (UAC 프롬프트)으로 VeraCrypt를 실행할 수있는 권한을 요청할 것입니다.\n\n(VeraCrypt를 휴대용 모드로 실행하는 대신) 시스템에 VeraCrypt를 설치하면 시스템에서 실행을 시도 할 때마다 VeraCrypt (UAC 프롬프트)를 실행할 수있는 권한.\n\n파일을 추출 하시겠습니까?</entry>
<entry lang="ko" key="CONTAINER_ADMIN_WARNING">경고: 볼륨 생성 마법사의이 인스턴스는 관리자 권한을가집니다.\n\n마운트 할 때 볼륨에 쓸 수 없도록하는 권한으로 새 볼륨을 만들 수 있습니다. 이를 피하려면 볼륨 생성 마법사의이 인스턴스를 닫고 관리자 권한없이 새 볼륨을 실행하세요.\n\n볼륨 생성 마법사의이 인스턴스를 닫으시겠습니까?</entry>
<entry lang="ko" key="CANNOT_DISPLAY_LICENSE">오류: 라이센스를 표시 할 수 없습니다.</entry>
<entry lang="ko" key="OUTER_VOL_WRITE_PREVENTED">외부(!)</entry>
<entry lang="ko" key="OUTER_VOL_WRITE_PREVENTED">밖의(!)</entry>
<entry lang="ko" key="DAYS"></entry>
<entry lang="ko" key="HOURS">시간</entry>
<entry lang="ko" key="MINUTES"></entry>
<entry lang="ko" key="SECONDS"></entry>
<entry lang="ko" key="OPEN"></entry>
<entry lang="ko" key="UNMOUNT">마운트 해제</entry>
<entry lang="ko" key="MINUTES">의사록</entry>
<entry lang="ko" key="SECONDS">에스</entry>
<entry lang="ko" key="OPEN"></entry>
<entry lang="ko" key="DISMOUNT">내리다</entry>
<entry lang="ko" key="SHOW_TC">VeraCrypt 표시</entry>
<entry lang="ko" key="HIDE_TC">VeraCrypt 숨기기</entry>
<entry lang="ko" key="TOTAL_DATA_READ">마운트 이후의 데이터 읽기</entry>
<entry lang="ko" key="TOTAL_DATA_WRITTEN">마운트 이후 작성된 데이터</entry>
<entry lang="ko" key="ENCRYPTED_PORTION">암호화 된 부분</entry>
<entry lang="ko" key="ENCRYPTED_PORTION_FULLY_ENCRYPTED">100% (완전히 암호화됨)</entry>
<entry lang="ko" key="ENCRYPTED_PORTION_FULLY_ENCRYPTED">100% (완전히 암호화 됨)</entry>
<entry lang="ko" key="ENCRYPTED_PORTION_NOT_ENCRYPTED">0% (암호화되지 않음)</entry>
<entry lang="ko" key="PROCESSED_PORTION_X_PERCENT">%.3f%%</entry>
<entry lang="ko" key="PROCESSED_PORTION_100_PERCENT">100%</entry>
<entry lang="ko" key="PROGRESS_STATUS_WAITING">기다리는</entry>
<entry lang="ko" key="PROGRESS_STATUS_PREPARING">준비 </entry>
<entry lang="ko" key="PROGRESS_STATUS_RESIZING">크기 조정</entry>
<entry lang="ko" key="PROGRESS_STATUS_ENCRYPTING">암호화</entry>
<entry lang="ko" key="PROGRESS_STATUS_DECRYPTING">해독</entry>
<entry lang="ko" key="PROGRESS_STATUS_FINALIZING">마무리</entry>
<entry lang="ko" key="PROGRESS_STATUS_WAITING">기다리는</entry>
<entry lang="ko" key="PROGRESS_STATUS_PREPARING">준비중</entry>
<entry lang="ko" key="PROGRESS_STATUS_RESIZING">크기 조정</entry>
<entry lang="ko" key="PROGRESS_STATUS_ENCRYPTING">암호화</entry>
<entry lang="ko" key="PROGRESS_STATUS_DECRYPTING">해독</entry>
<entry lang="ko" key="PROGRESS_STATUS_FINALIZING">마무리</entry>
<entry lang="ko" key="PROGRESS_STATUS_PAUSED">일시 중지됨</entry>
<entry lang="ko" key="PROGRESS_STATUS_FINISHED">완료</entry>
<entry lang="ko" key="PROGRESS_STATUS_FINISHED">끝마친</entry>
<entry lang="ko" key="PROGRESS_STATUS_ERROR">오류</entry>
<entry lang="ko" key="FAVORITE_DISCONNECTED_DEV">기기 분리됨</entry>
<entry lang="ko" key="SYS_FAVORITE_VOLUMES_SAVED">시스템 즐겨 찾기 볼륨이 저장되었습니다.\n\n시스템 시작시 시스템 즐겨 찾기 볼륨을 마운트하려면 '설정'> '시스템 즐겨 찾기 볼륨'> 'Windows 시작시 시스템 즐겨 찾기 볼륨 마운트'를 선택하세요.</entry>
@@ -940,7 +938,7 @@
<entry lang="ko" key="ENTER_HEADER_BACKUP_PASSWORD">백업 파일에 저장된 헤더의 비밀번호를 입력하세요.</entry>
<entry lang="ko" key="KEYFILE_CREATED">키 파일이 성공적으로 작성되었습니다.</entry>
<entry lang="ko" key="KEYFILE_INCORRECT_NUMBER">입력 한 키 파일의 수가 유효하지 않습니다.</entry>
<entry lang="ko" key="KEYFILE_INCORRECT_SIZE">키 파일 크기는 최소 64바이트여야 합니다.</entry>
<entry lang="ko" key="KEYFILE_INCORRECT_SIZE">키 파일 크기는 64에서 1048576 바이트 사이에서 구해야합니다.</entry>
<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>
@@ -975,7 +973,7 @@
<entry lang="ko" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - 시스템 즐겨 찾기 볼륨</entry>
<entry lang="ko" key="SYS_FAVORITES_HELP_LINK">시스템 선호 볼륨은 무엇입니까?</entry>
<entry lang="ko" key="SYS_FAVORITES_REQUIRE_PBA">시스템 파티션/드라이브가 암호화되지 않은 것 같습니다.\n\n시스템 부팅 볼륨 사전 인증 암호 만 사용하여 시스템 선호 볼륨을 마운트 할 수 있습니다. 따라서 시스템 즐겨 찾기 볼륨을 사용하려면 먼저 시스템 파티션/드라이브를 암호화해야합니다.</entry>
<entry lang="ko" key="UNMOUNT_FIRST">진행하기 전에 볼륨의 마운트를 해제하세요.</entry>
<entry lang="ko" key="DISMOUNT_FIRST">진행하기 전에 볼륨을 분리하세요.</entry>
<entry lang="ko" key="CANNOT_SET_TIMER">오류: 타이머를 설정할 수 없습니다.</entry>
<entry lang="ko" key="IDPM_CHECK_FILESYS">파일 시스템 검사</entry>
<entry lang="ko" key="IDPM_REPAIR_FILESYS">파일 시스템 복구</entry>
@@ -1009,12 +1007,12 @@
<entry lang="ko" key="NO_SYSENC_PARTITION_SELECTED">파티션을 선택하지 않았습니다.\n일반적으로 사전 부팅 인증이 필요한 분리 된 파티션을 선택하려면 '장치 선택'을 클릭하십시오 (예: 다른 운영 체제의 암호화 된 시스템 드라이브에 있거나 실행되지 않는 파티션 또는 암호화 된 시스템 다른 운영 체제의 파티션).\n\n참고: 선택한 파티션은 부팅 전 인증없이 일반 VeraCrypt 볼륨으로 마운트됩니다. 이것은 유용하다. 백업 또는 수리 작업용.</entry>
<entry lang="ko" key="CONFIRM_SAVE_DEFAULT_KEYFILES">경고: 기본 키 파일을 설정하고 활성화하면이 키 파일을 사용하지 않는 볼륨을 마운트 할 수 없습니다. 따라서 기본 키 파일을 활성화 한 후에는 해당 볼륨을 마운트 할 때 '비밀번호 파일 사용'확인란 (비밀번호 입력 필드 아래)을 선택 취소하세요.\n\n선택한 키 파일/경로를 기본값으로 저장 하시겠습니까?</entry>
<entry lang="ko" key="HK_AUTOMOUNT_DEVICES">자동 마운트 장치</entry>
<entry lang="ko" key="HK_UNMOUNT_ALL">모두 마운트 해제</entry>
<entry lang="ko" key="HK_DISMOUNT_ALL">모두 마운트 해제</entry>
<entry lang="ko" key="HK_WIPE_CACHE">캐시 지우기</entry>
<entry lang="ko" key="HK_UNMOUNT_ALL_AND_WIPE">전체 마운트 해제 및 캐시 삭</entry>
<entry lang="ko" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">전체 마운트 강제 해제 및 캐시 삭제</entry>
<entry lang="ko" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">전체 마운트 강제 해제 및 캐시 삭제 후 종료</entry>
<entry lang="ko" key="HK_MOUNT_FAVORITE_VOLUMES">자주찾는 볼륨 마운트</entry>
<entry lang="ko" key="HK_DISMOUNT_ALL_AND_WIPE">모든 지우기 캐시 마운트 해</entry>
<entry lang="ko" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">모든 지우기 캐시를 강제로 제거합니다.</entry>
<entry lang="ko" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">강제 모두 제거, 캐시 지우기 끝내기</entry>
<entry lang="ko" key="HK_MOUNT_FAVORITE_VOLUMES">좋아하는 볼륨 마운트</entry>
<entry lang="ko" key="HK_SHOW_HIDE_MAIN_WINDOW">주 VeraCrypt 창 표시/숨기기</entry>
<entry lang="ko" key="PRESS_A_KEY_TO_ASSIGN">(여기를 클릭하고 키를 누르십시오)</entry>
<entry lang="ko" key="ACTION">동작</entry>
@@ -1025,23 +1023,23 @@
<entry lang="ko" key="PAGING_FILE_CREATION_PREVENTED">페이징 파일 생성이 금지되었습니다.\n\nWindows 문제로 인해 페이징 파일을 시스템이 아닌 VeraCrypt 볼륨 (시스템 선호 볼륨 포함)에 위치시킬 수 없습니다. VeraCrypt는 암호화 된 시스템 파티션/드라이브에서만 페이징 파일 생성을 지원합니다.</entry>
<entry lang="ko" key="SYS_ENC_HIBERNATION_PREVENTED">오류 또는 비 호환성으로 인해 VeraCrypt가 최대 절전 모드 파일을 암호화하지 못합니다. 따라서 최대 절전 모드가 차단되었습니다.\n\n참고: 컴퓨터가 최대 절전 모드로 전환되거나 절전 모드로 전환되면 시스템 메모리의 내용이 시스템 드라이브에있는 최대 절전 모드 저장 파일에 기록됩니다. VeraCrypt는 암호화 키를 방지 할 수 없으며 RAM에서 열린 민감한 파일의 내용이 암호화되지 않은 상태에서 최대 절전 모드 저장 파일에 저장되지 않습니다.</entry>
<entry lang="ko" key="HIDDEN_OS_HIBERNATION_PREVENTED">최대 절전 모드가 차단되었습니다.\n\nVeraCrypt는 추가 부팅 파티션을 사용하는 숨겨진 운영 체제에서 최대 절전 모드를 지원하지 않습니다. 부팅 파티션은 미끼와 숨겨진 시스템에서 공유됩니다. 따라서 최대 절전 모드에서 다시 시작하는 동안 데이터 누출 및 문제를 방지하기 위해 VeraCrypt는 숨겨진 시스템이 공유 부팅 파티션에 쓰거나 최대 절전 모드로 전환하는 것을 방지해야합니다.</entry>
<entry lang="ko" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">%c:로 마운트 된 VeraCrypt 볼륨이 마운트 해제되었습니다.</entry>
<entry lang="ko" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt 볼륨이 마운트 해제되었습니다.</entry>
<entry lang="ko" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt 볼륨이 마운트 해제되었으며 암호 캐시가 지워졌습니다.</entry>
<entry lang="ko" key="SUCCESSFULLY_UNMOUNTED">성공적으로 마운트 해제 됨</entry>
<entry lang="ko" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">%c:로 마운트 된 VeraCrypt 볼륨이 마운트 해제되었습니다.</entry>
<entry lang="ko" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt 볼륨이 분리되었습니다.</entry>
<entry lang="ko" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt 볼륨이 분리되었으며 암호 캐시가 지워졌습니다.</entry>
<entry lang="ko" key="SUCCESSFULLY_DISMOUNTED">성공적으로 마운트 해제 됨</entry>
<entry lang="ko" key="CONFIRM_BACKGROUND_TASK_DISABLED">경고: VeraCrypt 백그라운드 작업을 사용하지 않으면 다음 기능이 비활성화됩니다.\n\n1) 핫 키\n2) 자동 마운트 해제 (예: 로그 오프, 부주의 한 호스트 장치 제거, 시간 초과 등)\n3 ) 좋아하는 볼륨의 자동 마운트\n4) 알림 (예: 숨겨진 볼륨의 손상이 방지 된 경우)\n5) 트레이 아이콘\n\n참고: VeraCrypt 트레이 아이콘을 마우스 오른쪽 버튼으로 클릭하고 백그라운드 작업을 종료 할 수 있습니다. '종료'를 선택하세요.\n\nVeraCrypt 백그라운드 작업을 영구적으로 비활성화 하시겠습니까?</entry>
<entry lang="ko" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">경고 :이 옵션을 사용하지 않으면 열려있는 파일/디렉토리가있는 볼륨을 자동으로 마운트 해제 할 수 없습니다.\n\n이 옵션을 비활성화 하시겠습니까?</entry>
<entry lang="ko" key="WARN_PREF_AUTO_UNMOUNT">경고: 열린 파일/디렉토리가있는 볼륨은 자동으로 마운트 해제되지 않습니다.\n\n이렇게하려면이 대화 상자 창에서 다음 옵션을 활성화하십시오: '볼륨에 열려있는 파일이나 디렉토리가 있어도 자동 마운트 해제를 강제하십시오'</entry>
<entry lang="ko" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">경고: 노트북 배터리 전원이 낮 으면 컴퓨터가 절전 모드로 전환 될 때 Windows에서 실행중인 응용 프로그램으로 적절한 메시지를 보내지 않을 수 있습니다. 따라서 VeraCrypt는 이러한 경우 자동 볼륨 마운트 해제에 실패 할 수 있습니다.</entry>
<entry lang="ko" key="CONFIRM_NO_FORCED_AUTODISMOUNT">경고 :이 옵션을 사용하지 않으면 열려있는 파일/디렉토리가있는 볼륨을 자동 마운트 해제 할 수 없습니다.\n\n이 옵션을 비활성화 하시겠습니까?</entry>
<entry lang="ko" key="WARN_PREF_AUTO_DISMOUNT">경고: 열린 파일/디렉토리가있는 볼륨은 자동으로 마운트 해제되지 않습니다.\n\n이렇게하려면이 대화 상자 창에서 다음 옵션을 활성화하십시오: '볼륨에 열려있는 파일이나 디렉토리가 있어도 자동 마운트 해제를 강제하십시오'</entry>
<entry lang="ko" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">경고: 노트북 배터리 전원이 낮 으면 컴퓨터가 절전 모드로 전환 될 때 Windows에서 실행중인 응용 프로그램으로 적절한 메시지를 보내지 않을 수 있습니다. 따라서 VeraCrypt는 이러한 경우 자동 볼륨 마운트 해제에 실패 할 수 있습니다.</entry>
<entry lang="ko" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">파티션/볼륨의 암호화/암호 해독 프로세스를 예약했습니다. 프로세스가 아직 완료되지 않았습니다.\n\n지금 프로세스를 재개 하시겠습니까?</entry>
<entry lang="ko" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">시스템 파티션/드라이브의 암호화 또는 암호 해독 프로세스를 예약했습니다. 프로세스가 아직 완료되지 않았습니다.\n\n프로세스를 지금 시작 (재개) 하시겠습니까?</entry>
<entry lang="ko" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">비 시스템 파티션/볼륨의 암호화/암호 해독에 대해 현재 예약 된 프로세스를 다시 시작할지 여부를 묻는 메시지 표시하시겠습니까?</entry>
<entry lang="ko" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">비 시스템 파티션/볼륨의 암호화/암호 해독에 대해 현재 예약 된 프로세스를 다시 시작할지 여부를 묻는 메시지 표시니까?</entry>
<entry lang="ko" key="KEEP_PROMPTING_ME">예, 계속 묻습니다.</entry>
<entry lang="ko" key="DO_NOT_PROMPT_ME">아니, 묻지 마세요.</entry>
<entry lang="ko" key="DO_NOT_PROMPT_ME">아니, 나에게 묻지마.</entry>
<entry lang="ko" key="NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL_NOTE">중요: '볼륨'&gt;을 선택하여 비 시스템 파티션/볼륨의 암호화/암호 해독 프로세스를 재개 할 수 있습니다. VeraCrypt 메인 윈도우의 메뉴 바에서 '중단 된 프로세스 재개'를 선택하세요.</entry>
<entry lang="ko" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">시스템 파티션/드라이브의 암호화 또는 암호 해독 프로세스를 예약했습니다. 그러나 사전 부팅 인증이 실패했거나 무시되었습니다.\n\n참고: 부팅 전 환경에서 시스템 파티션/드라이브의 암호를 해독 한 경우 '시스템'&gt;VeraCrypt 메인 윈도우의 메뉴 막대에서 '영구적으로 시스템 파티션/드라이브 해독'을 선택하세요.</entry>
<entry lang="ko" key="CONFIRM_EXIT">경고: VeraCrypt를 지금 종료하면, 다음 기능들이 비활성화됩니다.\n\n1) 핫 키\n2) 자동 마운트 해제 (예: 로그 오프, 부주의 한 호스트 장치 제거, 시간 초과 등)\n3 ) 좋아하는 볼륨의 자동 마운트\n4) 알림 (예: 숨겨진 볼륨의 손상이 방지 된 경우)\n\n참고: VeraCrypt를 백그라운드에서 실행하지 않으려면 환경 설정에서 VeraCrypt 백그라운드 작업을 사용하지 않도록 설정하십시오 (그리고 필요한 경우, 예를 들어, 숨긴 볼륨이 손상되지 않은 경우 환경 설정에서 VeraCrypt의 자동 시작을 비활성화하세요.)\n\nVeraCrypt를 종료 하시겠습니까?</entry>
<entry lang="ko" key="CONFIRM_EXIT_UNIVERSAL">나가시겠습니까?</entry>
<entry lang="ko" key="CONFIRM_EXIT">\n\n1) 핫 키\n2) 자동 마운트 해제 (예: 로그 오프, 부주의 한 호스트 장치 제거, 타임 아웃 등)\n3) 자동으로 마운트 해제합니다.\n\n참고: VeraCrypt를 백그라운드에서 실행하지 않으려면 환경 설정에서 VeraCrypt 백그라운드 작업을 사용하지 않도록 설정하십시오 (그리고 필요한 경우, 예를 들어, 숨긴 볼륨이 손상되지 않은 경우) 환경 설정에서 VeraCrypt의 자동 시작을 비활성화하세요.)\n\nVeraCrypt를 종료 하시겠습니까?</entry>
<entry lang="ko" key="CONFIRM_EXIT_UNIVERSAL">나가?</entry>
<entry lang="ko" key="CHOOSE_ENCRYPT_OR_DECRYPT">VeraCrypt에 암호화 또는 암호 해독 여부를 결정하는 데 필요한 충분한 정보가 없습니다.</entry>
<entry lang="ko" key="CHOOSE_ENCRYPT_OR_DECRYPT_FINALIZE_DECRYPT_NOTE">VeraCrypt에 암호화 또는 암호 해독 여부를 결정하는 데 필요한 충분한 정보가 없습니다.\n\n참고: 사전 부트 환경에서 시스템 파티션/드라이브의 암호를 해독하는 경우 암호 해독을 클릭하여 프로세스를 완료해야 할 수 있습니다.</entry>
<entry lang="ko" key="NONSYS_INPLACE_ENC_REVERSE_INFO">참고: 시스템이 아닌 파티션/볼륨을 암호화하는 동안 오류가 발생하여 프로세스를 완료할 수 없는 경우, 볼륨을 완전히 DECRYPT(즉, 프로세스 역방향)할 때까지 볼륨을 마운트할 수 없습니다.\n\n이 필요한 경우 다음 단계를 수행합니다.\n1) 이 마법사를 종료합니다.\n2) 기본 VeraCrypt 창에서 '볼륨' &gt; '중단된 프로세스 재개'를 선택합니다.\n3) '암호화'를 선택합니다.</entry>
@@ -1054,7 +1052,7 @@
<entry lang="ko" key="FAILED_TO_START_WIPING">오류: 지우는 프로세스를 시작하지 못했습니다.</entry>
<entry lang="ko" key="INCONSISTENCY_RESOLVED">불일치가 해결됨.\n\n\n(이 문제와 관련하여 버그를 보고하는 경우 버그 보고서에 다음 기술 정보를 포함시켜 주십시오.\n%hs)</entry>
<entry lang="ko" key="UNEXPECTED_STATE">오류: 예기치 않은 상태.\n\n\n(이 문제와 관련하여 버그를 보고하는 경우 버그 보고서에 다음 기술 정보를 포함시켜 주십시오.\n%hs)</entry>
<entry lang="ko" key="NO_SYS_ENC_PROCESS_TO_RESUME">재개할 시스템 파티션/드라이브의 암호화/암호화 프로세스가 중단되지 않습니다.\n\n참고: 시스템 파티션이 아닌 파티션/볼륨의 암호화/암호 해독 프로세스를 재개하려면 '볼륨' &gt; '중단 프로세스 재개'를 선택합니다.</entry>
<entry lang="ko" key="NO_SYS_ENC_PROCESS_TO_RESUME">재개할 시스템 파티션/드라이브의 암호화/암호화 프로세스가 중단되지 않습니다.\n\n참고: 시스템 파티션이 아닌 파티션/볼륨의 암호화/암호 해독 프로세스를 재개하려면 '볼륨' &gt; '휴지된 프로세스 재개'를 선택합니다.</entry>
<entry lang="ko" key="HIDVOL_PROT_BKG_TASK_WARNING">경고: VeraCrypt 백그라운드 작업이 비활성화되었습니다. VeraCrypt를 종료한 후 숨겨진 볼륨의 손상이 방지되면 알림이 표시되지 않습니다.\n\n참고: VeraCrypt 트레이 아이콘을 마우스 오른쪽 버튼으로 클릭하고 '종료'를 선택하여 언제든지 백그라운드 작업을 종료할 수 있습니다.\n\nVeraCrypt 백그라운드 작업을 활성화 하시겠습니까?</entry>
<entry lang="ko" key="LANG_PACK_VERSION">언어 팩 버전: %s</entry>
<entry lang="ko" key="CHECKING_FS">%s로 마운트된 VeraCrypt 볼륨에서 파일 시스템을 확인하는 중입니다...</entry>
@@ -1063,7 +1061,7 @@
<entry lang="ko" key="SYS_AUTOMOUNT_DISABLED">시스템이 새 볼륨을 자동으로 마운트하도록 구성되지 않았습니다. 디바이스 호스팅된 VeraCrypt 볼륨을 마운트하는 것이 불가능할 수 있습니다. 다음 명령을 실행하고 시스템을 재시작하여 자동 마운팅을 활성화할 수 있습니다.\n\nmountvol.exe /E</entry>
<entry lang="ko" key="SYS_ASSIGN_DRIVE_LETTER">계속하기 전에 파티션/장치에 드라이브 문자를 할당해 주십시오('제어판' > '시스템 및 유지관리' > '관리 도구' - '하드 디스크 파티션 생성 및 포맷').\n\n이것은 운영 체제의 요구 사항입니다.</entry>
<entry lang="ko" key="MOUNT_TC_VOLUME">VeraCrypt 볼륨을 마운트</entry>
<entry lang="ko" key="UNMOUNT_ALL_TC_VOLUMES">모든 VeraCrypt 볼륨 마운트 해제</entry>
<entry lang="ko" key="DISMOUNT_ALL_TC_VOLUMES">모든 VeraCrypt 볼륨 마운트 해제</entry>
<entry lang="ko" key="UAC_INIT_ERROR">VeraCrypt가 관리자 권한을 얻지 못했습니다.</entry>
<entry lang="ko" key="ERR_ACCESS_DENIED">운영 체제에서 액세스가 거부되었습니다.\n\n가능한 원인: 운영 체제에서는 특정 폴더, 파일 및 장치에서 데이터를 읽고 쓸 수 있도록 하려면 해당 폴더, 파일 및 장치에 대한 읽기/쓰기 권한(또는 관리자 권한)이 있어야 합니다. 일반적으로 관리자 권한이 없는 사용자는 문서 폴더에 파일을 만들고, 읽고, 수정할 수 있습니다.</entry>
<entry lang="ko" key="SECTOR_SIZE_UNSUPPORTED">오류: 드라이브가 지원되지 않는 섹터 크기를 사용합니다.\n\n현재 4096 바이트보다 큰 섹터를 사용하는 드라이브에서 파티션/장치 호스트 볼륨을 만들 수 없습니다. 그러나 이러한 드라이브에 파일 호스트 볼륨 (컨테이너)을 만들 수 있습니다.</entry>
@@ -1109,7 +1107,7 @@
<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>
<entry lang="ko" key="ALT_KEY_CHARS_NOT_FOR_SYS_ENCRYPTION">VeraCrypt는 일시적으로 키보드 레이아웃을 표준 미국 키보드 레이아웃으로 변경했기 때문에 오른쪽 Alt 키를 누른 상태에서 키를 눌러 문자를 입력할 수 없습니다. 그러나 Shift 키를 누른 상태에서 적절한 키를 눌러 대부분의 문자를 입력할 수 있습니다.</entry>
<entry lang="ko" key="KEYB_LAYOUT_CHANGE_PREVENTED">VeraCrypt 키보드 레이아웃 변경을 방지했습니다.</entry>
<entry lang="ko" key="KEYB_LAYOUT_CHANGE_PREVENTED">VeraCrypt 키보드 레이아웃 변경을 방지했습니다.</entry>
<entry lang="ko" key="KEYB_LAYOUT_SYS_ENC_EXPLANATION">참고: 비미국 Windows 키보드 레이아웃을 사용할 수 없는 사전 부트 환경(Windows가 시작되기 전)에서 암호를 입력해야 합니다. 따라서 항상 표준 미국 키보드 레이아웃을 사용하여 암호를 입력해야 합니다. 그러나 실제 미국 키보드는 필요하지 않습니다. VeraCrypt는 실제 미국 키보드가 없는 경우에도 암호(지금 및 사전 부트 환경)를 안전하게 입력할 수 있도록 자동으로 합니다.</entry>
<entry lang="ko" key="RESCUE_DISK_INFO">파티션/드라이브를 암호화하려면 먼저 VRD(VeraCrypt 복구 디스크)를 생성해야 합니다. VRD는 VeraCrypt 부트로더, 마스터 키 또는 기타 중요 데이터가 손상된 경우 VRD를 사용하여 복원할 수 있습니다(그러나 올바른 암호를 입력해야 함).\n\n- Windows가 손상되어 시작할 수 없는 경우 VRD를 사용하여 Windows가 시작되기 전에 파티션/드라이브의 영구적 암호를 해독할 수 있습니다.\n\n- VRD에는 첫 번째 드라이브 트랙(일반적으로 시스템 로더 또는 부트 관리자 포함)의 현재 컨텐츠의 백업이 포함되어 있으며 필요한 경우 복원할 수 있습니다.\n\nVeraCrypt 복구 디스크 ISO 이미지가 아래에 지정된 위치에 생성됩니다.</entry>
<entry lang="ko" key="RESCUE_DISK_WIN_ISOBURN_PRELAUNCH_NOTE">확인을 클릭하면 Microsoft Windows 디스크 이미지 버너가 시작됩니다. VeraCrypt 복구 디스크 ISO 이미지를 CD 또는 DVD에 구울 때 사용합니다.\n\n그렇게 한 후 VeraCrypt 볼륨 생성 마법사로 돌아가서 지침을 따릅니다.</entry>
@@ -1181,15 +1179,15 @@
<entry lang="ko" key="REMOVE_RESCUE_DISK_FROM_DRIVE">경고: 다음 단계에서 VeraCrypt 복구 디스크가 드라이브에 있으면 안 됩니다. 그렇지 않으면 단계를 올바르게 완료할 수 없습니다.\n\n지금 드라이브에서 제거하여 안전한 곳에 보관해 주십시오. 그런 다음 확인을 클릭합니다.</entry>
<entry lang="ko" key="PREBOOT_NOT_LOCALIZED">경고: 사전 부트 환경의 기술적 제한으로 인해 사전 부트 환경(즉, Windows가 시작되기 전)에서 VeraCrypt에 의해 표시되는 텍스트를 지역화할 수 없습니다. VeraCrypt 부트로더 사용자 인터페이스가 완전히 영어로 되어 있습니다.\n\n계속할까요?</entry>
<entry lang="ko" key="SYS_ENCRYPTION_PRETEST_INFO">시스템 파티션 또는 드라이브를 암호화하기 전에 VeraCrypt가 모든 것이 올바르게 작동하는지 확인해야 합니다.\n\nTest(테스트)를 클릭한 후 필요한 모든 구성 요소(예: VeraCrypt 부트로더)가 설치되고 컴퓨터가 다시 시작됩니다. 그런 다음 Windows가 시작되기 전에 나타나는 VeraCrypt 부트로더(VeraCrypt 부트 로더) 화면에 암호를 입력해야 합니다. Windows가 시작되면 이 사전 테스트 결과에 대해 자동으로 알립니다.\n\n다음 장치가 수정됩니다. 드라이브 #%d\n\n\n지금 취소를 클릭하면 아무것도 설치되지 않고 사전 테스트가 수행되지 않습니다.</entry>
<entry lang="ko" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_1">중요 참고 사항 - 이 내용을 읽거나 인쇄합니다('인쇄' 클릭).\n\n컴퓨터를 다시 시작하고 Windows를 시작하기 전에 모든 파일이 암호화되지 않습니다. 따라서 오류가 발생할 경우 데이터가 손실되지 않습니다. 그러나 문제가 발생하면 Windows를 시작하는 데 문제가 발생할 수 있습니다. 따라서 컴퓨터를 다시 시작한 후 Windows를 시작할 수 없는 경우 수행할 작업에 대한 다음 지침을 읽고 가능하면 인쇄해 주십시오.\n\n</entry>
<entry lang="ko" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_2">Windows를 시작할 수 없는 경우 어떻게 해야 합니까?\n--------------------------------------------------------------\n\n참고: 이러한 지침은 암호화를 시작하지 않은 경우에만 유효합니다.\n\n- 올바른 암호를 입력한 후 Windows가 시작되지 않는 경우(또는 올바른 암호를 반복적으로 입력하지만 VeraCrypt에서 암호가 올바르지 않다고 말하는 경우) 당황하지 않습니다. 컴퓨터를 다시 시작(전원 끄기 및 켜기)하고 VeraCrypt 부트로더(VeraCrypt 부트 로더) 화면에서 키보드의 Esc 키를 누릅니다(여러 시스템이 있는 경우 시작할 시스템을 선택하십시오). 그러면 Windows가 시작되어야 하며(암호화되지 않은 경우) VeraCrypt는 사전 부트 인증 구성 요소를 제거할지 여부를 자동으로 묻습니다. 시스템 파티션/드라이브가 암호화된 경우에는 이전 단계가 작동하지 않습니다(이 단계를 따르더라도 올바른 암호 없이 Windows를 시작하거나 드라이브의 암호화된 데이터에 액세스할 수 없음).\n\n</entry>
<entry lang="ko" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_1">중요 참고 사항 - 인쇄를 읽거나 인쇄합니다('인쇄' 클릭).\n\n컴퓨터를 다시 시작하고 Windows를 시작하기 전에 모든 파일이 암호화되지 않습니다. 따라서 오류가 발생할 경우 데이터가 손실되지 않습니다. 그러나 문제가 발생하면 Windows를 시작하는 데 문제가 발생할 수 있습니다. 따라서 컴퓨터를 다시 시작한 후 Windows를 시작할 수 없는 경우 수행할 작업에 대한 다음 지침을 읽고 가능하면 인쇄해 주십시오.\n\n</entry>
<entry lang="ko" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_2">Windows를 시작할 수 없는 경우 어떻게 해야 합니까?\n--------------------------------------------------------------참고: 이러한 지침은 암호화를 시작하지 않은 경우에만 유효합니다.\n\n- 올바른 암호를 입력한 후 Windows가 시작되지 않는 경우(또는 올바른 암호를 반복적으로 입력하지만 VeraCrypt에서 암호가 올바르지 않다고 말하는 경우) 당황하지 않습니다. 컴퓨터를 다시 시작(전원 끄기 및 켜기)하고 VeraCrypt 부트로더(VeraCrypt 부트 로더) 화면에서 키보드의 Esc 키를 누릅니다(여러 시스템이 있는 경우 시작할 시스템을 선택하십시오). 그러면 Windows가 시작되어야 하며(암호화되지 않은 경우) VeraCrypt는 사전 부트 인증 구성 요소를 제거할지 여부를 자동으로 묻습니다. 시스템 파티션/드라이브가 암호화된 경우에는 이전 단계가 작동하지 않습니다(이 단계를 따르더라도 올바른 암호 없이 Windows를 시작하거나 드라이브의 암호화된 데이터에 액세스할 수 없음).\n\n</entry>
<entry lang="ko" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_3">- 이전 단계에서 도움이 되지 않거나 VeraCrypt 부트로더 화면이 나타나지 않으면(Windows가 시작되기 전에) VeraCrypt 복구 디스크를 CD/DVD 드라이브에 넣고 컴퓨터를 다시 시작합니다. VeraCrypt 복구 디스크 화면이 나타나지 않는 경우(또는 VeraCrypt 복구 디스크 화면의 '키보드 컨트롤' 섹션에 '복구 옵션' 항목이 표시되지 않는 경우), CD/DVD 드라이브 이전에 하드 드라이브에서 부팅을 시도하도록 BIOS가 구성되어 있을 수 있습니다. 이 경우 BIOS 시작 화면이 표시되면 바로 컴퓨터를 다시 시작하고 F2 또는 Delete를 누른 다음 BIOS 구성 화면이 나타날 때까지 기다립니다. BIOS 구성 화면이 나타나지 않으면 시스템을 다시 시작(재설정)하고 컴퓨터를 다시 시작(재설정)하는 즉시 F2 또는 Delete를 반복해서 누르기 시작합니다. BIOS 구성 화면이 나타나면 먼저 CD/DVD 드라이브에서 부팅하도록 BIOS를 구성합니다(자세한 내용은 BIOS/마더보드 설명서를 참조하거나 컴퓨터 공급업체의 기술 지원 팀에 문의하십시오). 그런 다음 컴퓨터를 다시 시작합니다. VeraCrypt 복구 디스크(VeraCrypt 복구 디스크) 화면이 지금 나타납니다. VeraCrypt 복구 디스크 화면에서 키보드의 F8 키를 눌러 '복구 옵션'을 선택합니다. '복구 옵션' 메뉴에서 '원래 시스템 로더 복원'을 선택합니다. 그런 다음 CD/DVD 드라이브에서 복구 디스크를 제거하고 컴퓨터를 다시 시작합니다. 암호화되지 않은 경우 Windows를 정상적으로 시작해야 합니다.\n\n</entry>
<entry lang="ko" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_4">시스템 파티션/드라이브가 암호화된 경우에는 이전 단계가 작동하지 않습니다(이 단계를 따르더라도 올바른 암호 없이 Windows를 시작하거나 드라이브의 암호화된 데이터에 액세스할 수 없음).\n\n\n참고: VeraCrypt 복구 디스크를 분실하고 공격자가 디스크를 찾더라도 올바른 암호 없 시스템 파티션이나 드라이브의 암호를 해독할 수 없습니다.</entry>
<entry lang="ko" key="SYS_ENCRYPTION_PRETEST_RESULT_TITLE">사전 테스트 완료되었습니다.</entry>
<entry lang="ko" key="SYS_ENCRYPTION_PRETEST_RESULT_INFO">사전 테스트가 성공적으로 완료되었습니다.\n\n경고: 기존 데이터를 암호화하는 동안 전원 공급이 갑자기 중단되거나, VeraCrypt가 기존 데이터를 암호화하는 동안 소프트웨어 오류나 하드웨어 오작동으로 인해 운영 체제가 다운되면 데이터의 일부가 손상되거나 손실됩니다. 따라서 암호화를 시작하기 전에 암호화할 파일의 백업 복사본이 있는지 확인해야 합니다. 그렇지 않으면 지금 파일을 백업해 주십시오(연기를 클릭하고 파일을 백업한 다음 언제든지 VeraCrypt를 다시 실행하고 '시스템' &gt; '중단 프로세스 재개'를 선택하여 암호화를 시작할 수 있습니다).\n\n준비되면 암호화를 클릭하여 암호화를 시작합니다.</entry>
<entry lang="ko" key="SYSENC_ENCRYPTION_PAGE_INFO">언제든지 일시 중지 또는 연기를 클릭하여 암호화 또는 암호 해독 프로세스를 중단하고, 이 마법사를 종료하고, 컴퓨터를 다시 시작하거나 종료한 다음 프로세스를 재개할 수 있습니다. 이 작업은 중지된 시점부터 계속됩니다. 시스템 드라이브에서 시스템 또는 응용 프로그램이 데이터를 쓰거나 읽을 때 속도가 느려지는 것을 방지하기 위해 VeraCrypt는 데이터가 기록되거나 읽힐 때까지 자동으로 기다린 다음(위의 상태 참조) 자동으로 암호화 또는 암호 해독 작업을 계속합니다.</entry>
<entry lang="ko" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_4">시스템 파티션/드라이브가 암호화된 경우에는 이전 단계가 작동하지 않습니다(이 단계를 따르더라도 올바른 암호 없이 Windows를 시작하거나 드라이브의 암호화된 데이터에 액세스할 수 없음).\n\n\n참고: VeraCrypt 복구 디스크를 분실하고 공격자가 디스크를 찾더라도 올바른 암호 없 시스템 파티션이나 드라이브의 암호를 해독할 수 없습니다.</entry>
<entry lang="ko" key="SYS_ENCRYPTION_PRETEST_RESULT_TITLE">사전 테스트 완료되었습니다.</entry>
<entry lang="ko" key="SYS_ENCRYPTION_PRETEST_RESULT_INFO">사전 테스트가 성공적으로 완료되었습니다.\n\n경고: 기존 데이터를 암호화하는 동안 전원 공급이 갑자기 중단되거나, VeraCrypt가 기존 데이터를 암호화하는 동안 소프트웨어 오류나 하드웨어 오작동으로 인해 운영 체제가 다운되면 데이터의 일부가 손상되거나 손실됩니다. 따라서 암호화를 시작하기 전에 암호화할 파일의 백업 복사본이 있는지 확인해야 합니다. 그렇지 않으면 지금 파일을 백업해 주십시오(지연을 클릭하고 파일을 백업한 다음 언제든지 VeraCrypt를 다시 실행하고 '시스템' &gt; '중단 프로세스 재개'를 선택하여 암호화를 시작할 수 있습니다).\n\n준비되면 암호화를 클릭하여 암호화를 시작합니다.</entry>
<entry lang="ko" key="SYSENC_ENCRYPTION_PAGE_INFO">언제든지 일시 중지 또는 지연을 클릭하여 암호화 또는 암호 해독 프로세스를 중단하고, 이 마법사를 종료하고, 컴퓨터를 다시 시작하거나 종료한 다음 프로세스를 재개할 수 있습니다. 이 작업은 중지된 시점부터 계속됩니다. 시스템 드라이브에서 시스템 또는 응용 프로그램이 데이터를 쓰거나 읽을 때 속도가 느려지는 것을 방지하기 위해 VeraCrypt는 데이터가 기록되거나 읽힐 때까지 자동으로 기다린 다음(위의 상태 참조) 자동으로 암호화 또는 암호 해독 작업을 계속합니다.</entry>
<entry lang="ko" key="NONSYS_INPLACE_ENC_ENCRYPTION_PAGE_INFO">\n\n암호화 프로세스를 중단하거나, 이 마법사를 종료하고, 컴퓨터를 다시 시작하거나 종료한 다음, 프로세스를 다시 시작하려면 언제든지 일시 중지 또는 연기를 클릭합니다. 볼륨이 완전히 암호화되기 전에는 마운트할 수 없습니다.</entry>
<entry lang="ko" key="NONSYS_INPLACE_DEC_DECRYPTION_PAGE_INFO">\n\n언제든지 일시 중지 또는 연기를 클릭하여 암호 해독 프로세스를 중단하고, 이 마법사를 종료하고, 컴퓨터를 다시 시작하거나 종료한 다음 프로세스를 재개할 수 있습니다. 이 작업은 중지된 시점부터 계속됩니다. 볼륨은 암호를 완전히 해독할 때까지 마운트할 수 없습니다.</entry>
<entry lang="ko" key="NONSYS_INPLACE_DEC_DECRYPTION_PAGE_INFO">\n\n언제든지 일시 중지 또는 지연을 클릭하여 암호 해독 프로세스를 중단하고, 이 마법사를 종료하고, 컴퓨터를 다시 시작하거나 종료한 다음 프로세스를 재개할 수 있습니다. 이 작업은 중지된 시점부터 계속됩니다. 볼륨은 암호를 완전히 해독할 때까지 마운트할 수 없습니다.</entry>
<entry lang="ko" key="SYSENC_HIDDEN_OS_INITIAL_INFO_TITLE">숨겨진 시스템이 시작되었습니다.</entry>
<entry lang="ko" key="SYSENC_HIDDEN_OS_WIPE_INFO_TITLE">원본 시스템</entry>
<entry lang="ko" key="SYSENC_HIDDEN_OS_WIPE_INFO">Windows에서는 일반적으로 사용자 동의 없이 시스템 파티션에 다양한 로그 파일, 임시 파일 등을 만듭니다. 또한 시스템 파티션에 있는 RAM 콘텐츠를 최대 절전 모드 및 페이징 파일에 저장합니다. 따라서 원래 시스템이 있는 파티션(숨겨진 시스템이 복제본인)에 저장된 파일을 상대방이 분석한 경우 숨겨진 시스템 생성 모드(컴퓨터에 숨겨진 운영 체제의 존재를 나타낼 수 있음)에서 VeraCrypt 마법사를 사용한 것을 알 수 있습니다.\n\n이러한 문제를 방지하기 위해 VeraCrypt는 다음 단계에서 원래 시스템이 있는 파티션의 전체 내용을 안전하게 지웁니다. 그런 다음 그럴듯한 거부성을 얻으려면 파티션에 새 시스템을 설치하고 암호화해야 합니다. 따라서 디코이 시스템을 생성하고 숨겨진 운영 체제를 생성하는 전체 프로세스가 완료됩니다.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="ko" key="HIDDEN_OS_CREATION_PREINFO_HELP">다음 단계에서 VeraCrypt는 시스템 파티션의 내용을 숨겨진 볼륨에 복사하여 숨겨진 운영 체제를 만듭니다(복사되는 데이터는 디코이 운영 체제에 사용될 암호화 키와 다른 암호화 키로 즉시 암호화됩니다).\n\nWindows를 시작하기 전에 사전 부트 환경에서 프로세스가 수행되며 완료하는 데 시간이 오래 걸릴 수 있습니다(시스템 파티션 크기와 컴퓨터의 성능에 따라 다름).\n\n프로세스를 중단하고 컴퓨터를 종료하고 운영 체제를 시작한 다음 프로세스를 다시 시작할 수 있습니다. 그러나 시스템을 중단하면 시스템 파티션의 내용이 복제하는 동안 변경되어서는 안 되기 때문에 전체 복사 프로세스가 처음부터 시작되어야 합니다.</entry>
<entry lang="ko" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">숨겨진 운영 체제의 전체 생성 프로세스를 취소하시겠습니까?\n\n참고: 지금 취소하면 프로세스를 재개할 수 없습니다.</entry>
<entry lang="ko" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">시스템 암호화 사전 테스트를 취소하시겠습니까?</entry>
<entry lang="ko" key="BOOT_PRETEST_FAILED_RETRY">VeraCrypt 시스템 암호화 사전 테스트에 실패했습니다. 다시 시도 하시겠습니까?\n\n'아니요'를 선택하면 사전 부트 인증 구성 요소가 제거됩니다.\n\n알림:\n\n- VeraCrypt 부트로더가 Windows를 시작하기 전에 암호를 입력하라는 메시지를 표시하지 않은 경우 운영 체제가 설치된 드라이브에서 부팅되지 않을 수 있습니다. 지원되지 않습니다.\n\n- AES 이외의 암호화 알고리즘을 사용했지만 사전 테스트에 실패했으며 암호를 입력했다면 드라이버가 잘못 설계되어 발생한 것일 수 있습니다. '아니요'를 선택하고 다시 시스템 파티션/드라이브 암호화를 시도하지만 메모리 요구 사항이 가장 낮은 AES 암호화 알고리즘을 사용합니다.\n\n- 가능한 원인과 해결 방법은 https://veracrypt.jp/en/Troubleshooting.html을 참조합니다.</entry>
<entry lang="ko" key="BOOT_PRETEST_FAILED_RETRY">VeraCrypt 시스템 암호화 사전 테스트에 실패했습니다. 다시 시도 하시겠습니까?\n\n'아니요'를 선택하면 사전 부트 인증 구성 요소가 제거됩니다.\n\n알림:\n\n- VeraCrypt 부트로더가 Windows를 시작하기 전에 암호를 입력하라는 메시지를 표시하지 않은 경우 운영 체제가 설치된 드라이브에서 부팅되지 않을 수 있습니다. 지원되지 않습니다.\n\n- AES 이외의 암호화 알고리즘을 사용했지만 사전 테스트에 실패했으며 암호를 입력했다면 드라이버가 잘못 설계되어 발생한 것일 수 있습니다. '아니요'를 선택하고 다시 시스템 파티션/드라이브 암호화를 시도하지만 메모리 요구 사항이 가장 낮은 AES 암호화 알고리즘을 사용합니다.\n\n- 가능한 원인과 해결 방법은 https://www.veracrypt.fr/en/Troubleshooting.html을 참조합니다.</entry>
<entry lang="ko" key="SYS_DRIVE_NOT_ENCRYPTED">시스템 파티션/드라이브가 부분적으로 또는 완전히 암호화되지 않은 것 같습니다.</entry>
<entry lang="ko" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">시스템 파티션/드라이브가 부분적으로 또는 완전히 암호화됩니다.\n\n계속하기 전에 시스템 파티션/드라이브의 암호를 완전히 해독해 주십시오. 이렇게 하려면 기본 VeraCrypt 창의 메뉴 모음에서 '시스템' &gt; '시스템 파티션/드라이브 영구 해독'을 선택합니다.</entry>
<entry lang="ko" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">시스템 파티션/드라이브가 부분적으로 또는 완전히 암호화되면 VeraCrypt를 다운그레이드할 수 없지만 업그레이드하거나 동일한 버전을 다시 설치할 수 있습니다.</entry>
@@ -1306,8 +1304,8 @@
<entry lang="ko" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">스레드 수가 현재 제한되어 있으므로 벤치마크 결과에 영향을 미칩니다(성능 저하).\n\n프로세서의 모든 잠재력을 활용하려면 '설정' > '성능'을 선택하고 해당 옵션을 비활성화합니다.</entry>
<entry lang="ko" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">VeraCrypt가 파티션/드라이브의 쓰기 보호를 사용하지 않도록 설정하기를 원합니까?</entry>
<entry lang="ko" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">경고: 이 설정은 성능을 저하시킬 수 있습니다.\n\n이 설정을 사용하시겠습니까?</entry>
<entry lang="ko" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">경고: VeraCrypt 볼륨이 자동으로 마운트 해제되었습니다.</entry>
<entry lang="ko" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">마운트된 볼륨이 포함된 디바이스를 물리적으로 제거하거나 끄기 전에 항상 VeraCrypt에서 볼륨을 먼저 마운트 해제해야 합니다.\nn예상치 않은 자발적 하차는 일반적으로 간헐적으로 케이블, 드라이브(인클로저)에 장애가 발생하여 발생합니다.</entry>
<entry lang="ko" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">경고: VeraCrypt 볼륨이 자동으로 마운트 해제되었습니다.</entry>
<entry lang="ko" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">마운트된 볼륨이 포함된 디바이스를 물리적으로 제거하거나 끄기 전에 항상 VeraCrypt에서 볼륨을 먼저 마운트 해제해야 합니다.\nn예상치 않은 자발적 하차는 일반적으로 간헐적으로 케이블, 드라이브(인클로저)에 장애가 발생하여 발생합니다.</entry>
<entry lang="ko" key="UNSUPPORTED_TRUECRYPT_FORMAT">이 볼륨은 TrueCrypt %x를 사용하여 생성되었습니다. 하지만 VeraCrypt는 TrueCrypt 6.x/7.x 시리즈로 생성된 TrueCrypt 볼륨만 지원합니다.</entry>
<entry lang="ko" key="TEST">테스트</entry>
<entry lang="ko" key="KEYFILE">키파일</entry>
@@ -1438,7 +1436,7 @@
<entry lang="ko" key="IDC_USE_LEGACY_MAX_PASSWORD_LENGTH">기존 최대 암호 길이(64자)를 사용합니다.</entry>
<entry lang="ko" key="IDC_ENABLE_RAM_ENCRYPTION">RAM에 저장된 키 및 암호의 암호화를 활성화합니다.</entry>
<entry lang="ko" key="IDT_BENCHMARK">벤치마크:</entry>
<entry lang="ko" key="IDC_DISABLE_MOUNT_MANAGER">선택한 드라이브 문자에 마운트하지 않고 가상 장치 만 생성</entry>
<entry lang="en" key="IDC_DISABLE_MOUNT_MANAGER">선택한 드라이브 문자에 마운트하지 않고 가상 장치 만 생성</entry>
<entry lang="ko" key="LEGACY_PASSWORD_UTF8_TOO_LONG">입력한 암호가 너무 깁니다. UTF-8 표시가 64바이트를 초과합니다.</entry>
<entry lang="ko" key="HIDDEN_CREDS_SAME_AS_OUTER">숨겨진 볼륨은 외부 볼륨과 동일한 비밀번호 혹은 PIM 그리고 키 파일을 사용할 수 없습니다.</entry>
<entry lang="ko" key="SYSENC_BITLOCKER_CONFLICT">VeraCrypt는 이미 BitLocker로 암호화된 시스템 드라이버를 암호화하는 것을 지원하지 않습니다.</entry>
@@ -1453,7 +1451,7 @@
<entry lang="ko" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">현재 마운트된 모든 볼륨을 즐겨찾기에 추가...</entry>
<entry lang="ko" key="TASKICON_PREF_MENU_ITEMS">작업 아이콘 메뉴 항목</entry>
<entry lang="ko" key="TASKICON_PREF_OPEN_VOL">마운트된 볼륨들 열기</entry>
<entry lang="ko" key="TASKICON_PREF_UNMOUNT_VOL">마운트된 볼륨들 마운트 해제</entry>
<entry lang="ko" key="TASKICON_PREF_DISMOUNT_VOL">마운트된 볼륨들 마운트 해제</entry>
<entry lang="ko" key="DISK_FREE">남은 공간: {0}</entry>
<entry lang="ko" key="VOLUME_SIZE_HELP">생성할 컨테이너의 크기를 명시해주세요. 볼륨의 최소 크기는 292 KiB입니다.</entry>
<entry lang="ko" key="LINUX_CONFIRM_INNER_VOLUME_CALC">주의: FAT 포맷이 아닌 볼륨을 선택했습니다.\n이 경우에는 VeraCrypt가 숨겨진 볼륨에 대한 사용 가능한 최대 크기를 계산할 수 없으며 잘못될 수 있는 추정값만 사용하게 됩니다.\n그러므로 외부 볼륨을 덮어씌우지 않도록 숨겨진 볼륨 크기에 대한 적절한 값을 설정하는 것은 사용자 책임입니다.\n\n해당 파일 시스템을 외부 볼륨으로 사용하시겠습니까?</entry>
@@ -1483,14 +1481,14 @@
<entry lang="ko" key="LINUX_DO_NOT_MOUNT">마운트 하지 않기</entry>
<entry lang="ko" key="LINUX_MOUNT_AT_DIR">특정 디렉터리에 마운트:</entry>
<entry lang="ko" key="LINUX_SELECT">선택...</entry>
<entry lang="ko" key="LINUX_UNMOUNT_ALL_WHEN">이 때에 모든 볼륨 마운트 해제:</entry>
<entry lang="ko" key="LINUX_DISMOUNT_ALL_WHEN">이 때에 모든 볼륨 마운트 해제:</entry>
<entry lang="ko" key="LINUX_ENTERING_POWERSAVING">시스템이 절전 모드에 진입하고 있습니다.</entry>
<entry lang="ko" key="LINUX_LOGIN_ACTION">사용자가 로그온 했을 때 할 행동:</entry>
<entry lang="ko" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">마운트 해제되는 모든 파일 탐색기 창 종료</entry>
<entry lang="ko" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">마운트 해제되는 모든 파일 탐색기 창 종료</entry>
<entry lang="ko" key="LINUX_HOTKEYS">단축키</entry>
<entry lang="ko" key="LINUX_SYSTEM_HOTKEYS">시스템 전역 단축키</entry>
<entry lang="ko" key="LINUX_SOUND_NOTIFICATION">마운트/마운트 해제 후에 시스템 알림 소리 재생</entry>
<entry lang="ko" key="LINUX_CONFIRM_AFTER_UNMOUNT">마운트 해제 후에 확인 메세지 창 표시</entry>
<entry lang="ko" key="LINUX_CONFIRM_AFTER_DISMOUNT">마운트 해제 후에 확인 메세지 창 표시</entry>
<entry lang="ko" key="LINUX_VC_QUITS">VeraCrypt 종료</entry>
<entry lang="ko" key="LINUX_OPEN_FINDER">성공적으로 마운트된 볼륨에 파일 탐색기 창 열기</entry>
<entry lang="ko" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">이 설정은 커널 암호화 서비스가 비활성화되었을 때만 사용될 것입니다.</entry>
@@ -1522,8 +1520,7 @@
<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>
<entry lang="ko" key="LINUX_VOL_DISMOUNTED">{0} 볼륨이 마운트 해제되었습니다.</entry>
<entry lang="ko" key="LINUX_OOM">메모리 부족.</entry>
<entry lang="ko" key="LINUX_CANT_GET_ADMIN_PRIV">관리자 권한을 취득하는데에 실패했습니다.</entry>
<entry lang="ko" key="LINUX_COMMAND_GET_ERROR">{0} 명령어가 {1} 오류를 반환하였습니다.</entry>
@@ -1539,7 +1536,7 @@
<entry lang="ko" key="LINUX_EX2MSG_MOUNTPOINTREQUIRED">마운트 위치가 필요합니다.</entry>
<entry lang="ko" key="LINUX_EX2MSG_MOUNTPOINTUNAVAILABLE">마운트 위치가 이미 사용 중입니다.</entry>
<entry lang="ko" key="LINUX_EX2MSG_PASSWORDEMPTY">비밀번호 혹은 키 파일이 선택되지 않았습니다.</entry>
<entry lang="ko" key="LINUX_EX2MSG_PASSWORDORKEYBOARDLAYOUTINCORRECT">\n\n부팅 전 인증 비밀번호는 US 외 레이아웃이 지원되지 않는 부팅 전 환경에서 입력되어야 합니다. 그러므로 부팅 전 인증 비밀번호는 반드시 표준 US 키보드 레이아에서 입력이 가능해야 합니다. (그렇지 않으면 대부분의 경우에 비밀번호가 정확하게 입력되지 않을 것입니다). 그러나 실제로 US 레이아웃 키보드가 필요한 것은 아닙니다; 운영체제에서 키보드 레이아웃을 변경하기만 하면 됩니다.</entry>
<entry lang="ko" key="LINUX_EX2MSG_PASSWORDORKEYBOARDLAYOUTINCORRECT">\n\n부팅 전 인증 비밀번호는 US 외 레이아웃이 지원되지 않는 부팅 전 환경에서 입력되어야 합니다. 그러므로 부팅 전 인증 비밀번호는 반드시 표준 US 키보드 레이아.에서 입력이 가능해야 합니다. (그렇지 않으면 대부분의 경우에 비밀번호가 정확하게 입력되지 않을 것입니다). 그러나 실제로 US 레이아웃 키보드가 필요한 것은 아닙니다; 운영체제에서 키보드 레이아웃을 변경하기만 하면 됩니다.</entry>
<entry lang="ko" key="LINUX_EX2MSG_PASSWORDORMOUNTOPTIONSINCORRECT">\n\n참고: 만약 부팅 전 인증 과정없이 암호화된 시스템 드라이브의 파티션을 마운트하려고 하거나 운영체제가 실행 중이지 않은 암호화된 시스템 파티션을 마운트하려는 경우에는 '옵션 >' > '시스템 암호화를 사용하여 파티션 마운트'를 통해 가능합니다.</entry>
<entry lang="ko" key="LINUX_EX2MSG_PASSWORDTOOLONG">비밀번호는 {0}자보다 길어야 합니다.</entry>
<entry lang="ko" key="LINUX_EX2MSG_PARTITIONDEVICEREQUIRED">파티션 장치가 필요합니다.</entry>
@@ -1553,7 +1550,7 @@
<entry lang="ko" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">오류: 드라이브 섹터가 512 바이트가 아닌 크기를 사용합니다.\n\n사용가능한 플랫폼 구성요소의 제한으로 인해 드라이브 혹은 장치에 호스트된 볼륨을 이 장치에서 생성하거나 사용할 수 없습니다.\n\n가능한 해결책:\n- 파일 호스트 볼륨(컨테이너)를 생성합니다.\n- 512 바이트를 섹터 크기로 사용하는 드라이브를 사용하세요.\n- 다른 플랫폼에서 VeraCrypt를 사용하세요.</entry>
<entry lang="ko" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">호스트 파일이나 장치가 이미 사용 중입니다.</entry>
<entry lang="ko" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">볼륨 슬롯이 사용가능하지 않습니다.</entry>
<entry lang="ko" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt는 macFUSE 2.5 혹은 더 높은 버전을 필요로 합니다.</entry>
<entry lang="ko" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt는 OSXFUSE 2.5 혹은 더 높은 버전을 필요로 합니다.</entry>
<entry lang="ko" key="EXCEPTION_OCCURRED">예외 발생</entry>
<entry lang="ko" key="ENTER_PASSWORD">비밀번호 입력</entry>
<entry lang="ko" key="ENTER_TC_VOL_PASSWORD">VeraCrypt 볼륨 비밀번호 입력</entry>
@@ -1568,126 +1565,8 @@
<entry lang="ko" key="UNKNOWN_OPTION">알 수 없는 옵션</entry>
<entry lang="ko" key="VOLUME_LOCATION">볼륨 위치</entry>
<entry lang="ko" key="VOLUME_HOST_IN_USE">경고: 호스트 파일 및 장치 {0}이 이미 사용 중입니다!\n\n이 것을 무시하면 시스템 불안정을 포함한 원치 않은 결과를 불러일으킬 수 있습니다. 호스트 파일 혹은 장치를 사용하는 모든 애플리케이션은 볼륨을 마운트하기 전에 종료되어야 합니다.\n\n계속 마운트하시겠습니까?</entry>
<entry lang="ko" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt가 MSI 패키지(.msi)로 설치되어 표준 설치 프로그램으로 업데이트 할 수 없습니다.\n\nMSI 패키지를 사용하여 VeraCrypt를 업데이트하십시오.</entry>
<entry lang="ko" key="IDC_USE_ALL_FREE_SPACE">사용 가능한 모든 여유 공간 사용</entry>
<entry lang="ko" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">시스템 파티션/드라이브가 더 이상 지원되지 않는 알고리즘으로 암호화되었기 때문에 VeraCrypt를 업데이트할 수 없습니다.\nVeraCrypt를 업데이트 하기 전에 시스템 암호를 해독한 다음 다시 암호화하십시오.</entry>
<entry lang="ko" key="LINUX_EX2MSG_TERMINALNOTFOUND">지원되는 터미널 앱을 찾을 수 없습니다. (dbus-x11을 지원하는 xterm, konsole 혹은 gnome-terminal이 필요합니다)</entry>
<entry lang="ko" key="IDM_MOUNT_NO_CACHE">캐시 없이 마운트</entry>
<entry lang="ko" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nVeraCrypt 볼륨을 다시 포맷하지 않고 바로 확장합니다\n\n\nNTFS로 포맷된 모든 유형의 볼륨(컨테이너 파일, 디스크와 파티션)이 지원됩니다. VeraCrypt 볼륨의 호스트 드라이브나 호스트 기기에 충분한 공간이 있어야 합니다.\n\n이 소프트웨어를 숨겨진 볼륨을 포함하는 외부 볼륨에 사용하지 마십시오. 숨겨진 볼륨을 파괴할 것입니다!\n</entry>
<entry lang="ko" key="IDC_STEPSEXPAND">1. 확장할 VeraCrypt 볼륨 선택\n2. '마운트' 버튼 클릭</entry>
<entry lang="ko" key="IDT_VOL_NAME">볼륨: </entry>
<entry lang="ko" key="IDT_FILE_SYS">파일 시스템: </entry>
<entry lang="ko" key="IDT_CURRENT_SIZE">현재 크기: </entry>
<entry lang="ko" key="IDT_NEW_SIZE">새 크기: </entry>
<entry lang="ko" key="IDT_NEW_SIZE_BOX_TITLE">새 볼륨 크기 입력</entry>
<entry lang="ko" key="IDC_INIT_NEWSPACE">새 공간을 무작위 데이터로 채우기</entry>
<entry lang="ko" key="IDC_QUICKEXPAND">빠른 확장</entry>
<entry lang="ko" key="IDT_INIT_SPACE">새 공간 채움: </entry>
<entry lang="ko" key="EXPANDER_FREE_SPACE">호스트 드라이브에 %s 공간 남음</entry>
<entry lang="ko" key="EXPANDER_HELP_DEVICE">이 볼륨은 기기 기반 VeraCrypt 볼륨입니다.\n\n새 볼륨 크기는 호스트 기기의 크기에 따라 자동으로 설정될 것입니다.</entry>
<entry lang="ko" key="EXPANDER_HELP_FILE">VeraCrypt 볼륨의 새 크기를 지정하세요. (현재 크기보다 %I64u KB 만큼 커야 합니다)</entry>
<entry lang="ko" key="QUICK_EXPAND_WARNING">경고: 다음 경우에만 빠른 확장을 사용해야 합니다:\n\n1) 파일 컨테이너가 있는 기기에 중요한 데이터가 없고 그럴듯한 부인성이 필요 없는 경우.\n2) 파일 컨테이너가 있는 기기가 이미 안전하고 완전히 암호화된 경우.\n\n정말로 빠른 확장을 사용하시겠습니까?</entry>
<entry lang="ko" key="EXPANDER_STATUS_TEXT">중요: 이 창에서 마우스를 가능한 한 무작위로 이동하세요. 오래 움직일수록 좋으며, 이렇게 하면 보안이 대폭 강화됩니다. 완료되면 '계속'을 클릭해 볼륨을 확장하세요.</entry>
<entry lang="ko" key="EXPANDER_STATUS_TEXT_LEGACY">'계속'을 클릭해 볼륨을 확장하세요.</entry>
<entry lang="ko" key="EXPANDER_FINISH_ERROR">오류: 볼륨 확장에 실패했습니다.</entry>
<entry lang="ko" key="EXPANDER_FINISH_ABORT">오류: 작업이 사용자에 의해 취소되었습니다.</entry>
<entry lang="ko" key="EXPANDER_FINISH_OK">완료되었습니다. 볼륨이 성공적으로 확장되었습니다.</entry>
<entry lang="ko" key="EXPANDER_CANCEL_WARNING">경고: 볼륨 확장이 진행 중입니다!\n\n지금 멈추는 것은 볼륨을 손상시킬 수 있습니다.\n\n정말 취소하시겠습니까?</entry>
<entry lang="ko" key="EXPANDER_STARTING_STATUS">볼륨 확장 시작 중 ...\n</entry>
<entry lang="ko" key="EXPANDER_HIDDEN_VOLUME_ERROR">외부 볼륨이 숨겨진 볼륨을 포함하고 있는 경우 확장할 수 없습니다. 이 경우 숨겨진 볼륨이 파괴되기 때문입니다.\n</entry>
<entry lang="ko" key="EXPANDER_SYSTEM_VOLUME_ERROR">VeraCrypt 시스템 볼륨은 확장할 수 없습니다.</entry>
<entry lang="ko" key="EXPANDER_NO_FREE_SPACE">볼륨을 확장할 여유 공간이 부족합니다</entry>
<entry lang="ko" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">경고: 컨테이너 파일이 VeraCrypt 볼륨 공간보다 큽니다. VeraCrypt 볼륨 공간 이후에 있는 데이터는 덮어씌워질 것입니다.\n\n정말 계속하시겠습니까?</entry>
<entry lang="ko" key="EXPANDER_WARNING_FAT">경고: VeraCrypt 볼륨이 FAT 파일 시스템을 포함하고 있습니다!\n\n파일 시스템을 제외한 VeraCrypt 볼륨만 확장될 것입니다.\n\n정말 계속하시겠습니까?</entry>
<entry lang="ko" key="EXPANDER_WARNING_EXFAT">경고: VeraCrypt 볼륨이 exFAT 파일 시스템을 포함하고 있습니다!\n\n파일 시스템을 제외한 VeraCrypt 볼륨만 확장될 것입니다.\n\n정말 계속하시겠습니까?</entry>
<entry lang="ko" key="EXPANDER_WARNING_UNKNOWN_FS">경고: VeraCrypt 볼륨이 알 수 없는 파일 시스템을 포함하고 있거나 파일 시스템이 없습니다!\n\nVeraCrypt 볼륨만 확장되고 파일 시스템은 그대로 남을 것입니다.\n\n정말 계속하시겠습니까?</entry>
<entry lang="ko" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">새 볼륨 크기가 너무 작습니다. 현재 크기보다 최소 %I64u kB 만큼 커야 합니다.</entry>
<entry lang="ko" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">새 볼륨 크기가 너무 큽니다. 호스트 드라이브에 여유 공간이 부족합니다.</entry>
<entry lang="ko" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">호스트 드라이브의 최대 파일 크기인 %I64u MB를 초과했습니다.</entry>
<entry lang="ko" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">오류: 빠른 확장을 활성화하는데 필요한 권한을 얻지 못했습니다!\n빠른 확장 옵션을 체크 해제하고 다시 시도하십시오.</entry>
<entry lang="ko" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">최대 VeraCrypt 볼륨 크기인 %I64u TB를 초과했습니다!\n</entry>
<entry lang="ko" key="FULL_FORMAT">전체 포맷</entry>
<entry lang="ko" key="FAST_CREATE">빠른 생성</entry>
<entry lang="ko" key="WARN_FAST_CREATE">경고: 다음 경우에만 빠른 생성을 사용해야 합니다:\n\n1) 파일 컨테이너가 있는 기기에 중요한 데이터가 없고 그럴듯한 부인성이 필요 없는 경우.\n2) 파일 컨테이너가 있는 기기가 이미 안전하고 완전히 암호화된 경우.\n\n정말로 빠른 생성을 사용하시겠습니까?</entry>
<entry lang="ko" key="IDC_ENABLE_EMV_SUPPORT">EMV 지원 활성화</entry>
<entry lang="ko" key="COMMAND_APDU_INVALID">카드로 보낸 APDU 명령어가 유효하지 않습니다.</entry>
<entry lang="ko" key="EXTENDED_APDU_UNSUPPORTED">확장 APDU 명령어는 현재 토큰과 같이 사용할 수 없습니다.</entry>
<entry lang="ko" key="SCARD_MODULE_INIT_FAILED">WinSCard / PCSC 라이브러리를 불러오는 중에 오류가 발생했습니다.</entry>
<entry lang="ko" key="EMV_UNKNOWN_CARD_TYPE">리더에 있는 카드는 지원되는 EMV 카드가 아닙니다.</entry>
<entry lang="ko" key="EMV_SELECT_AID_FAILED">리더에 있는 카드의 AID는 선택할 수 없습니다.</entry>
<entry lang="ko" key="EMV_ICC_CERT_NOTFOUND">카드에서 ICC 공개 키 인증서를 찾을 수 없습니다.</entry>
<entry lang="ko" key="EMV_ISSUER_CERT_NOTFOUND">카드에서 발급자 공개 키 인증서를 찾을 수 없습니다.</entry>
<entry lang="ko" key="EMV_CPLC_NOTFOUND">EMV 카드에서 CPLC를 찾을 수 없습니다.</entry>
<entry lang="ko" key="EMV_PAN_NOTFOUND">EMV 카드에서 주 계정 번호 (PAN)를 찾을 수 없습니다.</entry>
<entry lang="ko" key="INVALID_EMV_PATH">EMV 경로가 올바르지 않습니다.</entry>
<entry lang="ko" key="EMV_KEYFILE_DATA_NOTFOUND">EMV 카드의 데이터에서 키 파일을 빌드할 수 없습니다.\n\n다음 중 하나가 없습니다:\n- ICC 공개 키 인증서.\n- 발급자 공개 키 인증서.\n- CPLC 데이터.</entry>
<entry lang="ko" key="SCARD_W_REMOVED_CARD">리더에 카드가 없습니다.\n\n카드가 잘 삽입되었는지 확인하십시오.</entry>
<entry lang="ko" key="FORMAT_EXTERNAL_FAILED">Windows format.com 명령어가 볼륨을 NTFS/exFAT/ReFS로 포맷하는 데 실패했습니다: 오류 0x%.8X.\n\nWindows FormatEx API를 대신 사용합니다.</entry>
<entry lang="ko" key="FORMATEX_API_FAILED">Windows FormatEx API가 볼륨을 NTFS/exFAT/ReFS로 포맷하는 데 실패했습니다.\n\n실패 상태 = %s.</entry>
<entry lang="ko" key="EXPANDER_WRITING_RANDOM_DATA">새로운 공간에 무작위 데이터 쓰는 중 ...\n</entry>
<entry lang="ko" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">재암호화된 백업 헤더 쓰는 중 ...\n</entry>
<entry lang="ko" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">재암호화된 주 헤더 쓰는 중 ...\n</entry>
<entry lang="ko" key="EXPANDER_WIPING_OLD_HEADER">오래된 백업 헤더 지우는 중 ...\n</entry>
<entry lang="ko" key="EXPANDER_MOUNTING_VOLUME">볼륨 마운트 중 ...\n</entry>
<entry lang="ko" key="EXPANDER_UNMOUNTING_VOLUME">볼륨 마운트 해제 중 ...\n</entry>
<entry lang="ko" key="EXPANDER_EXTENDING_FILESYSTEM">파일 시스템 확장 중 ...\n</entry>
<entry lang="ko" key="PARTIAL_SYSENC_MOUNT_READONLY">경고: 마운트하려고 한 시스템 파티션이 완전히 암호화되지 않았습니다. 손상 및 원치 않는 변경을 방지하기 위해서, 볼륨 '%s'가 읽기 전용으로 마운트되었습니다.</entry>
<entry lang="ko" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">제3자 파일 확장자 사용에 대한 중요한 정보</entry>
<entry lang="ko" key="IDC_DISABLE_MEMORY_PROTECTION">접근성 도구 호환성을 위해 메모리 보호 비활성화하기</entry>
<entry lang="ko" key="DISABLE_MEMORY_PROTECTION_WARNING">경고: 메모리 보호를 비활성화하면 보안이 상당히 저하됩니다. 당신이 스크린 리더와 같은 VeraCrypt의 UI와 상호작용하는 접근성 도구에 의존하는 경우에만 이 옵션을 활성화하세요.</entry>
<entry lang="ko" key="LINUX_LANGUAGE">언어</entry>
<entry lang="ko" key="LINUX_SELECT_SYS_DEFAULT_LANG">시스템의 기본 언어를 선택합니다</entry>
<entry lang="ko" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">언어 변경을 적용하려면, VeraCrypt를 다시 시작해야 합니다.</entry>
<entry lang="ko" key="ERR_XTS_MASTERKEY_VULNERABLE">경고: 볼륨의 마스터 키가 데이터 보안을 위협하는 공격에 취약합니다.\n\n새 볼륨을 생성하고 데이터를 해당 볼륨으로 옮기세요.</entry>
<entry lang="ko" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">경고: 암호화된 시스템의 마스터 키가 데이터 보안을 위협하는 공격에 취약합니다.\n시스템 파티션/드라이브를 복호화한 후 다시 암호화하세요.</entry>
<entry lang="ko" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">경고: 볼륨의 마스터 키에 보안 취약성이 있습니다.</entry>
<entry lang="ko" key="MOUNTPOINT_BLOCKED">오류: 볼륨 마운트 위치가 보호된 시스템 디렉터리를 덮어쓰기 때문에 차단되었습니다.\n\n다른 마운트 위치를 선택하세요.</entry>
<entry lang="ko" key="MOUNTPOINT_NOTALLOWED">오류: 볼륨 마운트 위치가 PATH 환경 변수의 일부인 디렉터리를 덮어쓰기 때문에 허용되지 않습니다.\n\n다른 마운트 위치를 선택하세요.</entry>
<entry lang="ko" key="INSECURE_MODE">[비보안 모드]</entry>
<entry lang="ko" key="IDC_DISABLE_SCREEN_PROTECTION">스크린샷 및 화면 녹화 보호 비활성화하기</entry>
<entry lang="ko" key="DISABLE_SCREEN_PROTECTION_WARNING">경고: 화면 보호를 비활성화하면 보안이 크게 저하됩니다. VeraCrypt 인터페이스를 캡처해야 하는 특별한 필요가 있을 때만 이 옵션을 활성화하세요. 이 설정은 스크린샷 도구 및 Windows 11 Recall과 같은 화면 녹화 기능에 민감한 데이터가 노출될 수 있습니다.</entry>
<entry lang="ko" key="MEMORY_COST">메모리 사용량</entry>
<entry lang="ko" key="IDT_KDF_ALGO">KDF 알고리즘</entry>
<entry lang="ko" key="IDD_PREFERENCES_TAB_GENERAL">일반</entry>
<entry lang="ko" key="IDD_PREFERENCES_TAB_ACTIONS">동작</entry>
<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_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>
<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="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+72 -193
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
@@ -135,8 +135,8 @@
<entry lang="en" key="IDC_FAVORITE_REMOVE">&amp;Remove</entry>
<entry lang="en" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Use favorite label as Explorer drive label</entry>
<entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key dismount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key dismount</entry>
<entry lang="lv" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="en" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="lv" key="IDC_HK_MOD_SHIFT">Shift</entry>
@@ -156,12 +156,12 @@
<entry lang="en" key="IDC_PIM_HELP">(Empty or 0 for default iterations)</entry>
<entry lang="lv" key="IDC_PREF_BKG_TASK_ENABLE">Iespējots</entry>
<entry lang="lv" key="IDC_PREF_CACHE_PASSWORDS">Ierakstīt paroles dziņa kešatmiņā</entry>
<entry lang="lv" key="IDC_PREF_UNMOUNT_INACTIVE">Auto-demontēt apgabalu, ja dati tajā nav lasīti/rakstīti tajā ilgāk par</entry>
<entry lang="lv" key="IDC_PREF_UNMOUNT_LOGOFF">Lietotājs atsakās sistēmā</entry>
<entry lang="en" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="lv" key="IDC_PREF_UNMOUNT_POWERSAVING">Ieejot enerģijas taupīš. režīmā</entry>
<entry lang="lv" key="IDC_PREF_UNMOUNT_SCREENSAVER">Tiek aktivēts ekrānsaudz.</entry>
<entry lang="lv" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Veikt auto-demontēšanu arī gadījumā, ja apgabalā ir atvērtas datnes vai mapes</entry>
<entry lang="lv" key="IDC_PREF_DISMOUNT_INACTIVE">Auto-demontēt apgabalu, ja dati tajā nav lasīti/rakstīti tajā ilgāk par</entry>
<entry lang="lv" key="IDC_PREF_DISMOUNT_LOGOFF">Lietotājs atsakās sistēmā</entry>
<entry lang="en" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="lv" key="IDC_PREF_DISMOUNT_POWERSAVING">Ieejot enerģijas taupīš. režīmā</entry>
<entry lang="lv" key="IDC_PREF_DISMOUNT_SCREENSAVER">Tiek aktivēts ekrānsaudz.</entry>
<entry lang="lv" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Veikt auto-demontēšanu arī gadījumā, ja apgabalā ir atvērtas datnes vai mapes</entry>
<entry lang="lv" key="IDC_PREF_LOGON_MOUNT_DEVICES">Uzstādīt visus ierīčveida VeraCrypt apgab.</entry>
<entry lang="en" key="IDC_PREF_LOGON_START">Start VeraCrypt Background Task</entry>
<entry lang="lv" key="IDC_PREF_MOUNT_READONLY">Uzstādīt apgabalus tikai lasīšanai</entry>
@@ -169,7 +169,7 @@
<entry lang="lv" key="IDC_PREF_OPEN_EXPLORER">Atvērt sekmīgi uzstādītu apgabalu Explorer logā</entry>
<entry lang="en" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">Temporarily cache password during "Mount Favorite Volumes" operations</entry>
<entry lang="en" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Use a different taskbar icon when there are mounted volumes</entry>
<entry lang="lv" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Auto-demontējot, iznīcināt kešatmiņā ierakstītās paroles</entry>
<entry lang="lv" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Auto-demontējot, iznīcināt kešatmiņā ierakstītās paroles</entry>
<entry lang="lv" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Aizverot, iznīcināt kešatmiņā ier. paroles</entry>
<entry lang="en" key="IDC_PRESERVE_TIMESTAMPS">Preserve modification timestamp of file containers</entry>
<entry lang="lv" key="IDC_RESET_HOTKEYS">Atsaukt</entry>
@@ -269,14 +269,14 @@
<entry lang="en" key="IDT_ACCELERATION_OPTIONS">Hardware Acceleration</entry>
<entry lang="lv" key="IDT_ASSIGN_HOTKEY">Taustiņu kombinācija</entry>
<entry lang="lv" key="IDT_AUTORUN">Auto-palaišanas konfigurācija (autorun.inf)</entry>
<entry lang="lv" key="IDT_AUTO_UNMOUNT">Auto-demontēšana</entry>
<entry lang="lv" key="IDT_AUTO_UNMOUNT_ON">Demontēt visus kad</entry>
<entry lang="lv" key="IDT_AUTO_DISMOUNT">Auto-demontēšana</entry>
<entry lang="lv" key="IDT_AUTO_DISMOUNT_ON">Demontēt visus kad</entry>
<entry lang="en" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader Screen Options</entry>
<entry lang="lv" key="IDT_CONFIRM_PASSWORD">Apstipriniet paroli:</entry>
<entry lang="lv" key="IDT_CURRENT">Aktuālais</entry>
<entry lang="en" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">Display this custom message in the pre-boot authentication screen (24 characters maximum):</entry>
<entry lang="lv" key="IDT_DEFAULT_MOUNT_OPTIONS">Noklusētās uzstādīšanas iespējas</entry>
<entry lang="lv" key="IDT_UNMOUNT_ACTION">Karsto taustiņu iespējas</entry>
<entry lang="lv" key="IDT_DISMOUNT_ACTION">Karsto taustiņu iespējas</entry>
<entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry>
<entry lang="en" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Enable extended disk control codes support</entry>
<entry lang="en" key="IDT_FAVORITE_LABEL">Label of selected favorite volume:</entry>
@@ -291,11 +291,10 @@
<entry lang="lv" key="IDT_NEW_PASSWORD">Parole:</entry>
<entry lang="en" key="IDT_PARALLELIZATION_OPTIONS">Thread-Based Parallelization</entry>
<entry lang="en" key="IDT_PKCS11_LIB_PATH">PKCS #11 Library Path</entry>
<entry lang="en" key="IDT_KDF">KDF:</entry>
<entry lang="en" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="en" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="en" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="lv" key="IDT_PW_CACHE_OPTIONS">Paroles kešatmiņa</entry>
<entry lang="en" key="IDT_SECURITY_OPTIONS">Security Options</entry>
<entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry>
<entry lang="lv" key="IDT_TASKBAR_ICON">VeraCrypt fona uzdevums</entry>
<entry lang="en" key="IDT_TRAVELER_MOUNT">VeraCrypt volume to mount (relative to traveler disk root):</entry>
<entry lang="en" key="IDT_TRAVEL_INSERTION">Upon insertion of traveler disk: </entry>
@@ -357,7 +356,7 @@
<entry lang="en" key="IDT_KEYFILE_WARNING">WARNING: If you lose a keyfile or if any bit of its first 1024 kilobytes changes, it will be impossible to mount volumes that use the keyfile!</entry>
<entry lang="lv" key="IDT_KEY_UNIT">biti</entry>
<entry lang="en" key="IDT_NUMBER_KEYFILES">Number of keyfiles:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size (in Bytes):</entry>
<entry lang="en" key="IDT_KEYFILES_BASE_NAME">Keyfiles base name:</entry>
<entry lang="lv" key="IDT_LANGPACK_AUTHORS">Tulkojis:</entry>
<entry lang="lv" key="IDT_PLAINTEXT">Vienkāršteksta izmērs:</entry>
@@ -390,7 +389,6 @@
<entry lang="en" key="ADMINISTRATOR">Administrator</entry>
<entry lang="en" key="ADMIN_PRIVILEGES_DRIVER">In order to load the VeraCrypt driver, you need to be logged into an account with administrator privileges.</entry>
<entry lang="en" key="ADMIN_PRIVILEGES_WARN_DEVICES">Please note that in order to encrypt, decrypt or format a partition/device you need to be logged into an account with administrator privileges.\n\nThis does not apply to file-hosted volumes.</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="en" key="ADMIN_PRIVILEGES_WARN_HIDVOL">In order to create a hidden volume you need to be logged into an account with administrator privileges.\n\nContinue?</entry>
<entry lang="en" key="ADMIN_PRIVILEGES_WARN_NTFS">Please note that in order to format the volume as NTFS you need to be logged into an account with administrator privileges.\n\nWithout administrator privileges, you can format the volume as FAT.</entry>
<entry lang="en" key="AES_HELP">FIPS-approved cipher (Rijndael, published in 1998) that may be used by U.S. government departments and agencies to protect classified information up to the Top Secret level. 256-bit key, 128-bit block, 14 rounds (AES-256). Mode of operation is XTS.</entry>
@@ -423,8 +421,8 @@
<entry lang="en" key="DEVICE_FREE_PB">Size of %s is %.2f PB</entry>
<entry lang="en" key="DEVICE_IN_USE_FORMAT">WARNING: The device/partition is in use by the operating system or applications. Formatting the device/partition might cause data corruption and system instability.\n\nContinue?</entry>
<entry lang="en" key="DEVICE_IN_USE_INPLACE_ENC">Warning: The partition is in use by the operating system or applications. You should close any applications that might be using the partition (including antivirus software).\n\nContinue?</entry>
<entry lang="en" key="FORMAT_CANT_UNMOUNT_FILESYS">Error: The device/partition contains a file system that could not be unmounted. The file system may be in use by the operating system. Formatting the device/partition would very likely cause data corruption and system instability.\n\nTo solve this issue, we recommend that you first delete the partition and then recreate it without formatting. To do so, follow these steps:\n1) Right-click the 'Computer' (or 'My Computer') icon in the 'Start Menu' and select 'Manage'. The 'Computer Management' window should appear.\n2) In the 'Computer Management' window, select 'Storage' &gt; 'Disk Management'.\n3) Right-click the partition you want to encrypt and select either 'Delete Partition', or 'Delete Volume', or 'Delete Logical Drive'.\n4) Click 'Yes'. If Windows asks you to restart the computer, do so. Then repeat the steps 1 and 2 and continue from the step 5.\n5) Right-click the unallocated/free space area and select either 'New Partition', or 'New Simple Volume', or 'New Logical Drive'.\n6) The 'New Partition Wizard' or 'New Simple Volume Wizard' window should appear now; follow its instructions. On the wizard page entitled 'Format Partition', select either 'Do not format this partition' or 'Do not format this volume'. In the same wizard, click 'Next' and then 'Finish'.\n7) Note that the device path you have selected in VeraCrypt may be wrong now. Therefore, exit the VeraCrypt Volume Creation Wizard (if it is still running) and then start it again.\n8) Try encrypting the device/partition again.\n\nIf VeraCrypt repeatedly fails to encrypt the device/partition, you may want to consider creating a file container instead.</entry>
<entry lang="en" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Error: The filesystem could not be locked and/or unmounted. It may be in use by the operating system or applications (for example, antivirus software). Encrypting the partition might cause data corruption and system instability.\n\nPlease close any applications that might be using the filesystem (including antivirus software) and try again. If it does not help, please follow the below steps.</entry>
<entry lang="en" key="FORMAT_CANT_DISMOUNT_FILESYS">Error: The device/partition contains a file system that could not be dismounted. The file system may be in use by the operating system. Formatting the device/partition would very likely cause data corruption and system instability.\n\nTo solve this issue, we recommend that you first delete the partition and then recreate it without formatting. To do so, follow these steps:\n1) Right-click the 'Computer' (or 'My Computer') icon in the 'Start Menu' and select 'Manage'. The 'Computer Management' window should appear.\n2) In the 'Computer Management' window, select 'Storage' &gt; 'Disk Management'.\n3) Right-click the partition you want to encrypt and select either 'Delete Partition', or 'Delete Volume', or 'Delete Logical Drive'.\n4) Click 'Yes'. If Windows asks you to restart the computer, do so. Then repeat the steps 1 and 2 and continue from the step 5.\n5) Right-click the unallocated/free space area and select either 'New Partition', or 'New Simple Volume', or 'New Logical Drive'.\n6) The 'New Partition Wizard' or 'New Simple Volume Wizard' window should appear now; follow its instructions. On the wizard page entitled 'Format Partition', select either 'Do not format this partition' or 'Do not format this volume'. In the same wizard, click 'Next' and then 'Finish'.\n7) Note that the device path you have selected in VeraCrypt may be wrong now. Therefore, exit the VeraCrypt Volume Creation Wizard (if it is still running) and then start it again.\n8) Try encrypting the device/partition again.\n\nIf VeraCrypt repeatedly fails to encrypt the device/partition, you may want to consider creating a file container instead.</entry>
<entry lang="en" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Error: The filesystem could not be locked and/or dismounted. It may be in use by the operating system or applications (for example, antivirus software). Encrypting the partition might cause data corruption and system instability.\n\nPlease close any applications that might be using the filesystem (including antivirus software) and try again. If it does not help, please follow the below steps.</entry>
<entry lang="en" key="DEVICE_IN_USE_INFO">WARNING: Some of the mounted devices/partitions were already in use!\n\nIgnoring this can cause undesired results including system instability.\n\nWe strongly recommend that you close any application that might be using the devices/partitions.</entry>
<entry lang="en" key="DEVICE_PARTITIONS_ERR">The selected device contains partitions.\n\nFormatting the device might cause system instability and/or data corruption. Please either select a partition on the device, or remove all partitions on the device to enable VeraCrypt to format it safely.</entry>
<entry lang="en" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">The selected non-system device contains partitions.\n\nEncrypted device-hosted VeraCrypt volumes can be created within devices that do not contain any partitions (including hard disks and solid-state drives). A device that contains partitions can be entirely encrypted in place (using a single master key) only if it is the drive where Windows is installed and from which it boots.\n\nIf you want to encrypt the selected non-system device using a single master key, you will need to remove all partitions on the device first to enable VeraCrypt to format it safely (formatting a device that contains partitions might cause system instability and/or data corruption). Alternatively, you can encrypt each partition on the drive individually (each partition will be encrypted using a different master key).\n\nNote: If you want to remove all partitions from a GPT disk, you may need to convert it to a MBR disk (using e.g. the Computer Management tool) in order to remove hidden partitions.</entry>
@@ -525,8 +523,8 @@
<entry lang="en" key="HIDVOL_FORMAT_FINISHED_TITLE">Hidden Volume Created</entry>
<entry lang="en" key="HIDVOL_FORMAT_FINISHED_HELP">The hidden VeraCrypt volume has been successfully created and is ready for use. If all the instructions have been followed and if the precautions and requirements listed in the section "Security Requirements and Precautions Pertaining to Hidden Volumes" in the VeraCrypt User's Guide are followed, it should be impossible to prove that the hidden volume exists, even when the outer volume is mounted.\n\nWARNING: IF YOU DO NOT PROTECT THE HIDDEN VOLUME (FOR INFORMATION ON HOW TO DO SO, REFER TO THE SECTION "PROTECTION OF HIDDEN VOLUMES AGAINST DAMAGE" IN THE VERACRYPT USER'S GUIDE), DO NOT WRITE TO THE OUTER VOLUME. OTHERWISE, YOU MAY OVERWRITE AND DAMAGE THE HIDDEN VOLUME!</entry>
<entry lang="en" key="FIRST_HIDDEN_OS_BOOT_INFO">You have started the hidden operating system. As you may have noticed, the hidden operating system appears to be installed on the same partition as the original operating system. However, in reality, it is installed within the partition behind it (in the hidden volume). All read and write operations are being transparently redirected from the original system partition to the hidden volume.\n\nNeither the operating system nor applications will know that data written to and read from the system partition are actually written to and read from the partition behind it (from/to a hidden volume). Any such data is encrypted and decrypted on the fly as usual (with an encryption key different from the one that will be used for the decoy operating system).\n\n\nPlease click Next to continue.</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP_SYSENC">The outer volume has been created and mounted as drive %hc:. To this outer volume you should now copy some sensitive-looking files that you actually do NOT want to hide. They will be there for anyone forcing you to disclose the password for the first partition behind the system partition, where both the outer volume and the hidden volume (containing the hidden operating system) will reside. You will be able to reveal the password for this outer volume, and the existence of the hidden volume (and of the hidden operating system) will remain secret.\n\nIMPORTANT: The files you copy to the outer volume should not occupy more than %s. Otherwise, there may not be enough free space on the outer volume for the hidden volume (and you will not be able to continue). After you finish copying, click Next (do not unmount the volume).</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP">Outer volume has been successfully created and mounted as drive %hc:. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not unmount the volume.\n\nNote: After you click Next, cluster bitmap of the outer volume will be scanned to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. Cluster bitmap scanning ensures that no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP_SYSENC">The outer volume has been created and mounted as drive %hc:. To this outer volume you should now copy some sensitive-looking files that you actually do NOT want to hide. They will be there for anyone forcing you to disclose the password for the first partition behind the system partition, where both the outer volume and the hidden volume (containing the hidden operating system) will reside. You will be able to reveal the password for this outer volume, and the existence of the hidden volume (and of the hidden operating system) will remain secret.\n\nIMPORTANT: The files you copy to the outer volume should not occupy more than %s. Otherwise, there may not be enough free space on the outer volume for the hidden volume (and you will not be able to continue). After you finish copying, click Next (do not dismount the volume).</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP">Outer volume has been successfully created and mounted as drive %hc:. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not dismount the volume.\n\nNote: After you click Next, cluster bitmap of the outer volume will be scanned to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. Cluster bitmap scanning ensures that no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_TITLE">Outer Volume Contents</entry>
<entry lang="en" key="HIDVOL_HOST_PRE_CIPHER_HELP">\n\nIn the next steps, you will set the options for the outer volume (within which the hidden volume will be created later on).</entry>
<entry lang="en" key="HIDVOL_HOST_PRE_CIPHER_HELP_SYSENC">\n\nIn the next steps, you will create a so-called outer VeraCrypt volume within the first partition behind the system partition (as was explained in one of the previous steps).</entry>
@@ -535,9 +533,9 @@
<entry lang="en" key="HIDDEN_OS_PRE_CIPHER_WARNING">IMPORTANT: Please remember the algorithms that you select in this step. You will have to select the same algorithms for the decoy system. Otherwise, the hidden system will be inaccessible! (The decoy system must be encrypted with the same encryption algorithm as the hidden system.)\n\nNote: The reason is that the decoy system and the hidden system will share a single boot loader, which supports only a single algorithm, selected by the user (for each algorithm, there is a special version of the VeraCrypt Boot Loader).</entry>
<entry lang="en" key="HIDVOL_PRE_CIPHER_HELP">\n\nThe volume cluster bitmap has been scanned and the maximum possible size of the hidden volume has been determined. In the next steps you will set the options, the size, and the password for the hidden volume.</entry>
<entry lang="en" key="HIDVOL_PRE_CIPHER_TITLE">Hidden Volume</entry>
<entry lang="en" key="HIDVOL_PROT_WARN_AFTER_MOUNT">The hidden volume is now protected against damage until the outer volume is unmounted.\n\nWARNING: If any data is attempted to be saved to the hidden volume area, VeraCrypt will start write-protecting the entire volume (both the outer and the hidden part) until it is unmounted. This may cause filesystem corruption on the outer volume, which (if repeated) might adversely affect plausible deniability of the hidden volume. Therefore, you should make every effort to avoid writing to the hidden volume area. Any data being saved to the hidden volume area will not be saved and will be lost. Windows may report this as a write error ("Delayed Write Failed" or "The parameter is incorrect").</entry>
<entry lang="en" key="HIDVOL_PROT_WARN_AFTER_MOUNT_PLURAL">Each of the hidden volumes within the newly mounted volumes is now protected against damage until unmounted.\n\nWARNING: If any data is attempted to be saved to protected hidden volume area of any of these volumes, VeraCrypt will start write-protecting the entire volume (both the outer and the hidden part) until it is unmounted. This may cause filesystem corruption on the outer volume, which (if repeated) might adversely affect plausible deniability of the hidden volume. Therefore, you should make every effort to avoid writing to the hidden volume area. Any data being saved to protected hidden volume areas will not be saved and will be lost. Windows may report this as a write error ("Delayed Write Failed" or "The parameter is incorrect").</entry>
<entry lang="en" key="DAMAGE_TO_HIDDEN_VOLUME_PREVENTED">WARNING: Data were attempted to be saved to the hidden volume area of the volume mounted as %c:! VeraCrypt prevented these data from being saved in order to protect the hidden volume. This may have caused filesystem corruption on the outer volume and Windows may have reported a write error ("Delayed Write Failed" or "The parameter is incorrect"). The entire volume (both the outer and the hidden part) will be write-protected until it is unmounted. If this is not the first time VeraCrypt has prevented data from being saved to the hidden volume area of this volume, plausible deniability of this hidden volume might be adversely affected (due to possible unusual correlated inconsistencies within the outer volume file system). Therefore, you should consider creating a new VeraCrypt volume (with Quick Format disabled) and moving files from this volume to the new volume; this volume should be securely erased (both the outer and the hidden part). We strongly recommend that you restart the operating system now.</entry>
<entry lang="en" key="HIDVOL_PROT_WARN_AFTER_MOUNT">The hidden volume is now protected against damage until the outer volume is dismounted.\n\nWARNING: If any data is attempted to be saved to the hidden volume area, VeraCrypt will start write-protecting the entire volume (both the outer and the hidden part) until it is dismounted. This may cause filesystem corruption on the outer volume, which (if repeated) might adversely affect plausible deniability of the hidden volume. Therefore, you should make every effort to avoid writing to the hidden volume area. Any data being saved to the hidden volume area will not be saved and will be lost. Windows may report this as a write error ("Delayed Write Failed" or "The parameter is incorrect").</entry>
<entry lang="en" key="HIDVOL_PROT_WARN_AFTER_MOUNT_PLURAL">Each of the hidden volumes within the newly mounted volumes is now protected against damage until dismounted.\n\nWARNING: If any data is attempted to be saved to protected hidden volume area of any of these volumes, VeraCrypt will start write-protecting the entire volume (both the outer and the hidden part) until it is dismounted. This may cause filesystem corruption on the outer volume, which (if repeated) might adversely affect plausible deniability of the hidden volume. Therefore, you should make every effort to avoid writing to the hidden volume area. Any data being saved to protected hidden volume areas will not be saved and will be lost. Windows may report this as a write error ("Delayed Write Failed" or "The parameter is incorrect").</entry>
<entry lang="en" key="DAMAGE_TO_HIDDEN_VOLUME_PREVENTED">WARNING: Data were attempted to be saved to the hidden volume area of the volume mounted as %c:! VeraCrypt prevented these data from being saved in order to protect the hidden volume. This may have caused filesystem corruption on the outer volume and Windows may have reported a write error ("Delayed Write Failed" or "The parameter is incorrect"). The entire volume (both the outer and the hidden part) will be write-protected until it is dismounted. If this is not the first time VeraCrypt has prevented data from being saved to the hidden volume area of this volume, plausible deniability of this hidden volume might be adversely affected (due to possible unusual correlated inconsistencies within the outer volume file system). Therefore, you should consider creating a new VeraCrypt volume (with Quick Format disabled) and moving files from this volume to the new volume; this volume should be securely erased (both the outer and the hidden part). We strongly recommend that you restart the operating system now.</entry>
<entry lang="en" key="CANNOT_SATISFY_OVER_4G_FILE_SIZE_REQ">You have indicated intent to store files larger than 4 GB on the volume. This requires the volume to be formatted as NTFS, which, however, will not be possible.</entry>
<entry lang="en" key="CANNOT_CREATE_NON_HIDDEN_NTFS_VOLUMES_UNDER_HIDDEN_OS">Please note that when a hidden operating system is running, non-hidden VeraCrypt volumes cannot be formatted as NTFS. The reason is that the volume would need to be temporarily mounted without write protection in order to allow the operating system to format it as NTFS (whereas formatting as FAT is performed by VeraCrypt, not by the operating system, and without mounting the volume). For further technical details, see below. You can create a non-hidden NTFS volume from within the decoy operating system.</entry>
<entry lang="en" key="HIDDEN_VOL_CREATION_UNDER_HIDDEN_OS_HOWTO">For security reasons, when a hidden operating system is running, hidden volumes can be created only in the 'direct' mode (because outer volumes must always be mounted as read-only). To create a hidden volume securely, follow these steps:\n\n1) Boot the decoy system.\n\n2) Create a normal VeraCrypt volume and, to this volume, copy some sensitive-looking files that you actually do NOT want to hide (the volume will become the outer volume).\n\n3) Boot the hidden system and start the VeraCrypt Volume Creation Wizard. If the volume is file-hosted, move it to the system partition or to another hidden volume (otherwise, the newly created hidden volume would be mounted as read-only and could not be formatted). Follow the instructions in the wizard so as to select the 'direct' hidden volume creation mode.\n\n4) In the wizard, select the volume you created in step 2 and then follow the instructions to create a hidden volume within it.</entry>
@@ -566,8 +564,8 @@
<entry lang="en" key="MAX_HIDVOL_SIZE_MB">Maximum possible hidden volume size for this volume is %.2f MB.</entry>
<entry lang="en" key="MAX_HIDVOL_SIZE_GB">Maximum possible hidden volume size for this volume is %.2f GB.</entry>
<entry lang="en" key="MAX_HIDVOL_SIZE_TB">Maximum possible hidden volume size for this volume is %.2f TB.</entry>
<entry lang="en" key="MOUNTED_NOPWCHANGE">Volume password/keyfiles cannot be changed while the volume is mounted. Please unmount the volume first.</entry>
<entry lang="en" key="MOUNTED_NO_PKCS5_PRF_CHANGE">The header key derivation algorithm cannot be changed while the volume is mounted. Please unmount the volume first.</entry>
<entry lang="en" key="MOUNTED_NOPWCHANGE">Volume password/keyfiles cannot be changed while the volume is mounted. Please dismount the volume first.</entry>
<entry lang="en" key="MOUNTED_NO_PKCS5_PRF_CHANGE">The header key derivation algorithm cannot be changed while the volume is mounted. Please dismount the volume first.</entry>
<entry lang="lv" key="MOUNT_BUTTON">Uzstādīt izvēlēto</entry>
<entry lang="en" key="NEW_VERSION_REQUIRED">A newer version of VeraCrypt is required to mount this volume.</entry>
<entry lang="en" key="VOL_CREATION_WIZARD_NOT_FOUND">Error: Volume Creation Wizard not found.\n\nPlease make sure that the file 'VeraCrypt Format.exe' is in the folder from which 'VeraCrypt.exe' was launched. If it is not, please reinstall VeraCrypt, or locate 'VeraCrypt Format.exe' on your disk and run it.</entry>
@@ -588,9 +586,9 @@
<entry lang="en" key="NO_PATH_SELECTED">No path selected!</entry>
<entry lang="en" key="NO_SPACE_FOR_HIDDEN_VOL">Not enough free space for the hidden volume! Volume creation cannot continue.</entry>
<entry lang="en" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">Error: The files you copied to the outer volume occupy too much space. Therefore, there is not enough free space on the outer volume for the hidden volume.\n\nNote that the hidden volume must be as large as the system partition (the partition where the currently running operating system is installed). The reason is that the hidden operating system needs to be created by copying the content of the system partition to the hidden volume.\n\n\nThe process of creation of the hidden operating system cannot continue.</entry>
<entry lang="en" key="OPENFILES_DRIVER">The driver is unable to unmount the volume. Some files located on the volume are probably still open.</entry>
<entry lang="en" key="OPENFILES_LOCK">Unable to lock the volume. There are still open files on the volume. Therefore, it cannot be unmounted.</entry>
<entry lang="en" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt cannot lock the volume because it is in use by the system or applications (there may be open files on the volume).\n\nDo you want to force unmount on the volume?</entry>
<entry lang="en" key="OPENFILES_DRIVER">The driver is unable to dismount the volume. Some files located on the volume are probably still open.</entry>
<entry lang="en" key="OPENFILES_LOCK">Unable to lock the volume. There are still open files on the volume. Therefore, it cannot be dismounted.</entry>
<entry lang="en" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt cannot lock the volume because it is in use by the system or applications (there may be open files on the volume).\n\nDo you want to force dismount on the volume?</entry>
<entry lang="en" key="OPEN_VOL_TITLE">Select a VeraCrypt Volume</entry>
<entry lang="en" key="OPEN_TITLE">Specify Path and File Name</entry>
<entry lang="en" key="SELECT_PKCS11_MODULE">Select PKCS #11 Library</entry>
@@ -613,7 +611,7 @@
<entry lang="en" key="FAVORITE_PIM_CHANGED">This volume is registered as a System Favorite and its PIM was changed.\nDo you want VeraCrypt to automatically update the System Favorite configuration (administrator privileges required)?\n\nPlease note that if you answer no, you'll have to update the System Favorite manually.</entry>
<entry lang="en" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">IMPORTANT: If you did not destroy your VeraCrypt Rescue Disk, your system partition/drive can still be decrypted using the old password (by booting the VeraCrypt Rescue Disk and entering the old password). You should create a new VeraCrypt Rescue Disk and then destroy the old one.\n\nDo you want to create a new VeraCrypt Rescue Disk?</entry>
<entry lang="en" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">Note that your VeraCrypt Rescue Disk still uses the previous algorithm. If you consider the previous algorithm insecure, you should create a new VeraCrypt Rescue Disk and then destroy the old one.\n\nDo you want to create a new VeraCrypt Rescue Disk?</entry>
<entry lang="en" key="KEYFILES_NOTE">Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="en" key="KEYFILES_NOTE">Any kind of file (for example, .mp3, .jpg, .zip, .avi) may be used as a VeraCrypt keyfile. Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="en" key="KEYFILE_CHANGED">Keyfile(s) successfully added/removed.</entry>
<entry lang="en" key="KEYFILE_EXPORTED">Keyfile exported.</entry>
<entry lang="en" key="PKCS5_PRF_CHANGED">Header key derivation algorithm successfully set.</entry>
@@ -694,10 +692,10 @@
<entry lang="en" key="MORE_INFO_ABOUT">More information on %s</entry>
<entry lang="en" key="UNKNOWN">Unknown</entry>
<entry lang="en" key="ERR_UNKNOWN">An unspecified or unknown error occurred (%d).</entry>
<entry lang="en" key="UNMOUNTALL_LOCK_FAILED">Some volumes contain files or folders being used by applications or system.\n\nForce unmount?</entry>
<entry lang="en" key="UNMOUNTALL_LOCK_FAILED">Some volumes contain files or folders being used by applications or system.\n\nForce dismount?</entry>
<entry lang="lv" key="UNMOUNT_BUTTON">Demontēt</entry>
<entry lang="lv" key="UNMOUNT_FAILED">Demontēšana nesekmīga.</entry>
<entry lang="lv" key="UNMOUNT_LOCK_FAILED">Apgabals satur datnes vai mapes, kas ko pašlaik izmantoto sistēma vai programmas.\n\nForce unmount?</entry>
<entry lang="lv" key="UNMOUNT_LOCK_FAILED">Apgabals satur datnes vai mapes, kas ko pašlaik izmantoto sistēma vai programmas.\n\nForce dismount?</entry>
<entry lang="en" key="NO_VOLUME_MOUNTED_TO_DRIVE">No volume is mounted to the specified drive letter.</entry>
<entry lang="en" key="VOL_ALREADY_MOUNTED">The volume you are trying to mount is already mounted. </entry>
<entry lang="en" key="VOL_MOUNT_FAILED">An error occurred when attempting to mount volume.</entry>
@@ -729,7 +727,7 @@
<entry lang="en" key="DLL_FILES">Library Modules</entry>
<entry lang="lv" key="FORMAT_NTFS_STOP">NTFS formatēšanu nav iespējams turpināt.</entry>
<entry lang="lv" key="CANT_MOUNT_VOLUME">Nav iespējams uzstādīt apgabalu.</entry>
<entry lang="lv" key="CANT_UNMOUNT_VOLUME">Nav iespējams demontēt apgabalu.</entry>
<entry lang="lv" key="CANT_DISMOUNT_VOLUME">Nav iespējams demontēt apgabalu.</entry>
<entry lang="en" key="FORMAT_NTFS_FAILED">Windows failed to format the volume as NTFS.\n\nPlease select a different type of file system (if possible) and try again. Alternatively, you could leave the volume unformatted (select 'None' as the filesystem), exit this wizard, mount the volume, and then use either a system or a third-party tool to format the mounted volume (the volume will remain encrypted).</entry>
<entry lang="en" key="FORMAT_NTFS_FAILED_ASK_FAT">Windows failed to format the volume as NTFS.\n\nDo you want to format the volume as FAT instead?</entry>
<entry lang="lv" key="DEFAULT">Noklus.</entry>
@@ -771,7 +769,7 @@
<entry lang="en" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">An error prevented VeraCrypt from encrypting the partition. Please try fixing any previously reported problems and then try again. If the problems persist, it might help to follow the below steps.</entry>
<entry lang="en" key="INPLACE_ENC_GENERIC_ERR_RESUME">An error prevented VeraCrypt from resuming the process of encryption of the partition.\n\nPlease try fixing any previously reported problems and then try resuming the process again. Note that the volume cannot be mounted until it has been fully encrypted.</entry>
<entry lang="en" key="INPLACE_DEC_GENERIC_ERR">An error prevented VeraCrypt from decrypting the volume. Please try fixing any previously reported problems and then try again if possible.</entry>
<entry lang="en" key="CANT_UNMOUNT_OUTER_VOL">Error: Cannot unmount the outer volume!\n\nVolume cannot be unmounted if it contains files or folders being used by a program or the system.\n\nPlease close any program that might be using files or directories on the volume and click Retry.</entry>
<entry lang="en" key="CANT_DISMOUNT_OUTER_VOL">Error: Cannot dismount the outer volume!\n\nVolume cannot be dismounted if it contains files or folders being used by a program or the system.\n\nPlease close any program that might be using files or directories on the volume and click Retry.</entry>
<entry lang="en" key="CANT_GET_OUTER_VOL_INFO">Error: Cannot obtain information about the outer volume!\nVolume creation cannot continue.</entry>
<entry lang="en" key="CANT_ACCESS_OUTER_VOL">Error: Cannot access the outer volume! Volume creation cannot continue.</entry>
<entry lang="en" key="CANT_MOUNT_OUTER_VOL">Error: Cannot mount the outer volume! Volume creation cannot continue.</entry>
@@ -813,7 +811,7 @@
<entry lang="en" key="SECONDARY_KEY_SIZE_LRW">Tweak Key Size (LRW Mode)</entry>
<entry lang="lv" key="BITS">biti</entry>
<entry lang="lv" key="BLOCK_SIZE">Bloka izmērs</entry>
<entry lang="lv" key="KDF">KDF</entry>
<entry lang="lv" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="lv" key="PKCS5_ITERATIONS">PKCS-5 Iterāciju skaits</entry>
<entry lang="lv" key="VOLUME_CREATE_DATE">Apgabals izveidots</entry>
<entry lang="lv" key="VOLUME_HEADER_DATE">Galvene pēdējoreiz modificēta</entry>
@@ -855,7 +853,7 @@
<entry lang="en" key="TC_INSTALLER_IS_RUNNING">VeraCrypt Installer is currently running on this system and performing or preparing installation or update of VeraCrypt. Before you proceed, please wait for it to finish or close it. If you cannot close it, please restart your computer before proceeding.</entry>
<entry lang="en" key="INSTALL_FAILED">Installation failed.</entry>
<entry lang="en" key="UNINSTALL_FAILED">Uninstallation failed.</entry>
<entry lang="en" key="DIST_PACKAGE_CORRUPTED">This distribution package is damaged. Please try downloading it again (preferably from the official VeraCrypt website at https://veracrypt.jp).</entry>
<entry lang="en" key="DIST_PACKAGE_CORRUPTED">This distribution package is damaged. Please try downloading it again (preferably from the official VeraCrypt website at https://www.veracrypt.fr).</entry>
<entry lang="en" key="CANNOT_WRITE_FILE_X">Cannot write file %s</entry>
<entry lang="en" key="EXTRACTING_VERB">Extracting</entry>
<entry lang="en" key="CANNOT_READ_FROM_PACKAGE">Cannot read data from the package.</entry>
@@ -882,7 +880,7 @@
<entry lang="lv" key="INSTALL_COMPLETED">Uzstādīšana paveikta.</entry>
<entry lang="lv" key="CANT_CREATE_FOLDER">Mapi '%s' nav iespējams izveidot</entry>
<entry lang="en" key="CLOSE_TC_FIRST">The VeraCrypt device driver cannot be unloaded.\n\nPlease close all open VeraCrypt windows first. If it does not help, please restart Windows and then try again.</entry>
<entry lang="en" key="UNMOUNT_ALL_FIRST">All VeraCrypt volumes must be unmounted before installing or uninstalling VeraCrypt.</entry>
<entry lang="en" key="DISMOUNT_ALL_FIRST">All VeraCrypt volumes must be dismounted before installing or uninstalling VeraCrypt.</entry>
<entry lang="en" key="UNINSTALL_OLD_VERSION_FIRST">An obsolete version of VeraCrypt is currently installed on this system. It needs to be uninstalled before you can install this new version of VeraCrypt.\n\nAs soon as you close this message box, the uninstaller of the old version will be launched. Note that no volume will be decrypted when you uninstall VeraCrypt. After you uninstall the old version of VeraCrypt, run the installer of the new version of VeraCrypt again.</entry>
<entry lang="en" key="REG_INSTALL_FAILED">The installation of the registry entries has failed</entry>
<entry lang="en" key="DRIVER_INSTALL_FAILED">The installation of the device driver has failed. Please restart Windows and then try installing VeraCrypt again.</entry>
@@ -903,7 +901,7 @@
<entry lang="lv" key="MINUTES">minūtes</entry>
<entry lang="en" key="SECONDS">s</entry>
<entry lang="lv" key="OPEN">Atvērt</entry>
<entry lang="lv" key="UNMOUNT">Demontēt</entry>
<entry lang="lv" key="DISMOUNT">Demontēt</entry>
<entry lang="lv" key="SHOW_TC">Parādīt VeraCrypt</entry>
<entry lang="lv" key="HIDE_TC">Aizvērt VeraCrypt logu</entry>
<entry lang="lv" key="TOTAL_DATA_READ">Nolasīts kopš uzstādīšanas</entry>
@@ -940,7 +938,7 @@
<entry lang="en" key="ENTER_HEADER_BACKUP_PASSWORD">Enter password for the header stored in backup file</entry>
<entry lang="lv" key="KEYFILE_CREATED">Atslēgdatne izveidota sekmīgi.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_NUMBER">The number of keyfiles you supplied is invalid.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be at least 64 bytes.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be comprized between 64 and 1048576 bytes.</entry>
<entry lang="en" key="KEYFILE_EMPTY_BASE_NAME">Please enter a name for the keyfile(s) to be generated</entry>
<entry lang="en" key="KEYFILE_INVALID_BASE_NAME">The base name of the keyfile(s) is invalid</entry>
<entry lang="en" key="KEYFILE_ALREADY_EXISTS">The keyfile '%s' already exists.\nDo you want to overwrite it? The generation process will be stopped if you answer No.</entry>
@@ -975,7 +973,7 @@
<entry lang="en" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - System Favorite Volumes</entry>
<entry lang="en" key="SYS_FAVORITES_HELP_LINK">What are system favorite volumes?</entry>
<entry lang="en" key="SYS_FAVORITES_REQUIRE_PBA">The system partition/drive does not appear to be encrypted.\n\nSystem favorite volumes can be mounted using only a pre-boot authentication password. Therefore, to enable use of system favorite volumes, you need to encrypt the system partition/drive first.</entry>
<entry lang="lv" key="UNMOUNT_FIRST">Lai turpinātu, vispirms demontējiet apgabalu.</entry>
<entry lang="lv" key="DISMOUNT_FIRST">Lai turpinātu, vispirms demontējiet apgabalu.</entry>
<entry lang="en" key="CANNOT_SET_TIMER">Error: Cannot set timer.</entry>
<entry lang="lv" key="IDPM_CHECK_FILESYS">Pārbaudīt datņu sistēmu</entry>
<entry lang="lv" key="IDPM_REPAIR_FILESYS">Labot datņu sistēmu</entry>
@@ -997,7 +995,7 @@
<entry lang="en" key="UNSUPPORTED_CHARS_IN_PWD">Error: Password must contain only ASCII characters.\n\nNon-ASCII characters in password might cause the volume to be impossible to mount when your system configuration changes.\n\nThe following characters are allowed:\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="en" key="UNSUPPORTED_CHARS_IN_PWD_RECOM">Warning: Password contains non-ASCII characters. This may cause the volume to be impossible to mount when your system configuration changes.\n\nYou should replace all non-ASCII characters in the password with ASCII characters. To do so, click 'Volumes' -&gt; 'Change Volume Password'.\n\nThe following are ASCII characters:\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="en" key="EXE_FILE_EXTENSION_CONFIRM">WARNING: We strongly recommend that you avoid file extensions that are used for executable files (such as .exe, .sys, or .dll) and other similarly problematic file extensions. Using such file extensions causes Windows and antivirus software to interfere with the container, which adversely affects the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension or change it (e.g., to '.hc').\n\nAre you sure you want to use the problematic file extension?</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you unmount the volume.</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you dismount the volume.</entry>
<entry lang="lv" key="HOMEPAGE">Mājaslapa</entry>
<entry lang="en" key="LARGE_IDE_WARNING_XP">WARNING: It appears that you have not applied any Service Pack to your Windows installation. You should not write to IDE disks larger than 128 GB under Windows XP to which you did not apply Service Pack 1 or later! If you do, data on the disk (no matter if it is a VeraCrypt volume or not) may get corrupted. Note that this is a limitation of Windows, not a bug in VeraCrypt.</entry>
<entry lang="en" key="LARGE_IDE_WARNING_2K">WARNING: It appears that you have not applied Service Pack 3 or later to your Windows installation. You should not write to IDE disks larger than 128 GB under Windows 2000 to which you did not apply Service Pack 3 or later! If you do, data on the disk (no matter if it is a VeraCrypt volume or not) may get corrupted. Note that this is a limitation of Windows, not a bug in VeraCrypt.\n\nNote: You may also need to enable the 48-bit LBA support in the registry; for more information, see http://support.microsoft.com/kb/305098/EN-US</entry>
@@ -1006,14 +1004,14 @@
<entry lang="en" key="VOLUME_TOO_LARGE_FOR_WINXP">Warning: Windows XP does not support files larger than 2048 GB (it will report that "Not enough storage is available"). Therefore, you cannot create a file-hosted VeraCrypt volume (container) larger than 2048 GB under Windows XP.\n\nNote that it is still possible to encrypt the entire drive or create a partition-hosted VeraCrypt volume larger than 2048 GB under Windows XP.</entry>
<entry lang="en" key="FREE_SPACE_FOR_WRITING_TO_OUTER_VOLUME">WARNING: If you want to be able to add more data/files to the outer volume in future, you should consider choosing a smaller size for the hidden volume.\n\nAre you sure you want to continue with the size you specified?</entry>
<entry lang="lv" key="NO_VOLUME_SELECTED">Neviens apgabals nav izvēlēts. Nospiediet 'Izvēlēties datni...' vai 'Izvēlēties ierīci...', lai izvēlētos VeraCrypt apgabalu.</entry>
<entry lang="en" key="NO_SYSENC_PARTITION_SELECTED">No partition selected.\n\nClick 'Select Device' to select a unmounted partition that normally requires pre-boot authentication (for example, a partition located on the encrypted system drive of another operating system, which is not running, or the encrypted system partition of another operating system).\n\nNote: The selected partition will be mounted as a regular VeraCrypt volume without pre-boot authentication. This is useful e.g. for backup or repair operations.</entry>
<entry lang="en" key="NO_SYSENC_PARTITION_SELECTED">No partition selected.\n\nClick 'Select Device' to select a dismounted partition that normally requires pre-boot authentication (for example, a partition located on the encrypted system drive of another operating system, which is not running, or the encrypted system partition of another operating system).\n\nNote: The selected partition will be mounted as a regular VeraCrypt volume without pre-boot authentication. This is useful e.g. for backup or repair operations.</entry>
<entry lang="en" key="CONFIRM_SAVE_DEFAULT_KEYFILES">WARNING: If default keyfiles are set and enabled, volumes that are not using these keyfiles will be impossible to mount. Therefore, after you enable default keyfiles, keep in mind to uncheck the 'Use keyfiles' checkbox (below a password input field) whenever mounting such volumes.\n\nAre you sure you want to save the selected keyfiles/paths as default?</entry>
<entry lang="en" key="HK_AUTOMOUNT_DEVICES">Auto-Mount Devices</entry>
<entry lang="en" key="HK_UNMOUNT_ALL">Unmount All</entry>
<entry lang="en" key="HK_DISMOUNT_ALL">Dismount All</entry>
<entry lang="en" key="HK_WIPE_CACHE">Wipe Cache</entry>
<entry lang="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All &amp; Wipe Cache</entry>
<entry lang="en" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Force Unmount All &amp; Wipe Cache</entry>
<entry lang="en" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Force Unmount All, Wipe Cache &amp; Exit</entry>
<entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All &amp; Wipe Cache</entry>
<entry lang="en" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Force Dismount All &amp; Wipe Cache</entry>
<entry lang="en" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Force Dismount All, Wipe Cache &amp; Exit</entry>
<entry lang="en" key="HK_MOUNT_FAVORITE_VOLUMES">Mount Favorite Volumes</entry>
<entry lang="en" key="HK_SHOW_HIDE_MAIN_WINDOW">Show/Hide Main VeraCrypt Window</entry>
<entry lang="en" key="PRESS_A_KEY_TO_ASSIGN">(Click here and press a key)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="en" key="PAGING_FILE_CREATION_PREVENTED">Paging file creation has been prevented.\n\nPlease note that, due to Windows issues, paging files cannot be located on non-system VeraCrypt volumes (including system favorite volumes). VeraCrypt supports creation of paging files only on an encrypted system partition/drive.</entry>
<entry lang="en" key="SYS_ENC_HIBERNATION_PREVENTED">An error or incompatibility prevents VeraCrypt from encrypting the hibernation file. Therefore, hibernation has been prevented.\n\nNote: When a computer hibernates (or enters a power-saving mode), the content of its system memory is written to a hibernation storage file residing on the system drive. VeraCrypt would not be able to prevent encryption keys and the contents of sensitive files opened in RAM from being saved unencrypted to the hibernation storage file.</entry>
<entry lang="en" key="HIDDEN_OS_HIBERNATION_PREVENTED">Hibernation has been prevented.\n\nVeraCrypt does not support hibernation on hidden operating systems that use an extra boot partition. Please note that the boot partition is shared by both the decoy and the hidden system. Therefore, in order to prevent data leaks and problems while resuming from hibernation, VeraCrypt has to prevent the hidden system from writing to the shared boot partition and from hibernating.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">VeraCrypt volume mounted as %c: has been unmounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt volumes have been unmounted.</entry>
<entry lang="en" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt volumes have been unmounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_UNMOUNTED">Successfully unmounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="en" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">WARNING: If this option is disabled, volumes containing open files/directories will not be possible to auto-unmount.\n\nAre you sure you want to disable this option?</entry>
<entry lang="en" key="WARN_PREF_AUTO_UNMOUNT">WARNING: Volumes containing open files/directories will NOT be auto-unmounted.\n\nTo prevent this, enable the following option in this dialog window: 'Force auto-unmount even if volume contains open files or directories'</entry>
<entry lang="en" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-unmount volumes in such cases.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">VeraCrypt volume mounted as %c: has been dismounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt volumes have been dismounted.</entry>
<entry lang="en" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt volumes have been dismounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_DISMOUNTED">Successfully dismounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="en" key="CONFIRM_NO_FORCED_AUTODISMOUNT">WARNING: If this option is disabled, volumes containing open files/directories will not be possible to auto-dismount.\n\nAre you sure you want to disable this option?</entry>
<entry lang="en" key="WARN_PREF_AUTO_DISMOUNT">WARNING: Volumes containing open files/directories will NOT be auto-dismounted.\n\nTo prevent this, enable the following option in this dialog window: 'Force auto-dismount even if volume contains open files or directories'</entry>
<entry lang="en" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-dismount volumes in such cases.</entry>
<entry lang="en" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">You have scheduled the process of encryption of a partition/volume. The process has not been completed yet.\n\nDo you want to resume the process now?</entry>
<entry lang="en" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">You have scheduled the process of encryption or decryption of the system partition/drive. The process has not been completed yet.\n\nDo you want to start (resume) the process now?</entry>
<entry lang="en" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">Do you want to be prompted about whether you want to resume the currently scheduled processes of encryption of non-system partitions/volumes?</entry>
@@ -1040,7 +1038,7 @@
<entry lang="en" key="DO_NOT_PROMPT_ME">No, do not prompt me</entry>
<entry lang="en" key="NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL_NOTE">IMPORTANT: Keep in mind that you can resume the process of encryption of any non-system partition/volume by selecting 'Volumes' &gt; 'Resume Interrupted Process' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="en" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">You have scheduled the process of encryption or decryption of the system partition/drive. However, pre-boot authentication failed (or was bypassed).\n\nNote: If you decrypted the system partition/drive in the pre-boot environment, you may need to finalize the process by selecting 'System' &gt; 'Permanently Decrypt System Partition/Drive' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="en" key="CONFIRM_EXIT_UNIVERSAL">Exit?</entry>
<entry lang="en" key="CHOOSE_ENCRYPT_OR_DECRYPT">VeraCrypt does not have sufficient information to determine whether to encrypt or decrypt.</entry>
<entry lang="en" key="CHOOSE_ENCRYPT_OR_DECRYPT_FINALIZE_DECRYPT_NOTE">VeraCrypt does not have sufficient information to determine whether to encrypt or decrypt.\n\nNote: If you decrypted the system partition/drive in the pre-boot environment, you may need to finalize the process by clicking Decrypt.</entry>
@@ -1063,7 +1061,7 @@
<entry lang="en" key="SYS_AUTOMOUNT_DISABLED">Your system is not configured to auto-mount new volumes. It may be impossible to mount device-hosted VeraCrypt volumes. Auto-mounting can be enabled by executing the following command and restarting the system.\n\nmountvol.exe /E</entry>
<entry lang="en" key="SYS_ASSIGN_DRIVE_LETTER">Please assign a drive letter to the partition/device before proceeding ('Control Panel' &gt; 'System and Maintenance' &gt; 'Administrative Tools' - 'Create and format hard disk partitions').\n\nNote that this is a requirement of the operating system.</entry>
<entry lang="en" key="MOUNT_TC_VOLUME">Mount VeraCrypt volume</entry>
<entry lang="en" key="UNMOUNT_ALL_TC_VOLUMES">Unmount all VeraCrypt volumes</entry>
<entry lang="en" key="DISMOUNT_ALL_TC_VOLUMES">Dismount all VeraCrypt volumes</entry>
<entry lang="en" key="UAC_INIT_ERROR">VeraCrypt failed to obtain Administrator privileges.</entry>
<entry lang="en" key="ERR_ACCESS_DENIED">Access was denied by the operating system.\n\nPossible cause: The operating system requires that you have read/write permission (or administrator privileges) for certain folders, files, and devices, in order for you to be allowed to read and write data to/from them. Normally, a user without administrator privileges is allowed to create, read and modify files in his or her Documents folder.</entry>
<entry lang="en" key="SECTOR_SIZE_UNSUPPORTED">Error: The drive uses an unsupported sector size.\n\nIt is currently not possible to create partition/device-hosted volumes on drives that use sectors larger than 4096 bytes. However, note that you can create file-hosted volumes (containers) on such drives.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="en" key="HIDDEN_OS_CREATION_PREINFO_HELP">In the next steps, VeraCrypt will create the hidden operating system by copying the content of the system partition to the hidden volume (data being copied will be encrypted on the fly with an encryption key different from the one that will be used for the decoy operating system).\n\nPlease note that the process will be performed in the pre-boot environment (before Windows starts) and it may take a long time to complete; several hours or even several days (depending on the size of the system partition and on the performance of your computer).\n\nYou will be able to interrupt the process, shut down your computer, start the operating system and then resume the process. However, if you interrupt it, the entire process of copying the system will have to start from the beginning (because the content of the system partition must not change during cloning).</entry>
<entry lang="en" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">Do you want to cancel the entire process of creation of the hidden operating system?\n\nNote: You will NOT be able to resume the process if you cancel it now.</entry>
<entry lang="en" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">Do you want to cancel the system encryption pretest?</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="en" key="SYS_DRIVE_NOT_ENCRYPTED">The system partition/drive does not appear to be encrypted (neither partially nor fully).</entry>
<entry lang="en" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">Your system partition/drive is encrypted (partially or fully).\n\nPlease decrypt your system partition/drive entirely before proceeding. To do so, select 'System' &gt; 'Permanently Decrypt System Partition/Drive' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="en" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">When the system partition/drive is encrypted (partially or fully), you cannot downgrade VeraCrypt (but you can upgrade it or reinstall the same version).</entry>
@@ -1285,17 +1283,17 @@
<entry lang="en" key="TOKEN_DATA_OBJECT_LABEL">File name</entry>
<entry lang="en" key="BOOT_PASSWORD_CACHE_KEYBOARD_WARNING">IMPORTANT: Please note that pre-boot authentication passwords are always typed using the standard US keyboard layout. Therefore, a volume that uses a password typed using any other keyboard layout may be impossible to mount using a pre-boot authentication password (note that this is not a bug in VeraCrypt). To allow such a volume to be mounted using a pre-boot authentication password, follow these steps:\n\n1) Click 'Select File' or 'Select Device' and select the volume.\n2) Select 'Volumes' &gt; 'Change Volume Password'.\n3) Enter the current password for the volume.\n4) Change the keyboard layout to English (US) by clicking the Language bar icon in the Windows taskbar and selecting 'EN English (United States)'.\n5) In VeraCrypt, in the field for the new password, type the pre-boot authentication password.\n6) Confirm the new password by retyping it in the confirmation field and click 'OK'.\nWARNING: Please keep in mind that if you follow these steps, the volume password will always have to be typed using the US keyboard layout (which is automatically ensured only in the pre-boot environment).</entry>
<entry lang="en" key="SYS_FAVORITES_KEYBOARD_WARNING">System favorite volumes will be mounted using the pre-boot authentication password. If any system favorite volume uses a different password, it will not be mounted.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Unmount All', auto-unmount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and unmount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be unmounted. Therefore, if you need e.g. to unmount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Unmount All' function, 'Auto-Unmount' functions, 'Unmount All' hot keys, etc.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Dismount All', auto-dismount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and dismount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be dismounted. Therefore, if you need e.g. to dismount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Dismount All' function, 'Auto-Dismount' functions, 'Dismount All' hot keys, etc.</entry>
<entry lang="en" key="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry>
<entry lang="en" key="COMMAND_LINE_ERROR">Error while parsing command line.</entry>
<entry lang="en" key="RESCUE_DISK">Rescue Disk</entry>
<entry lang="en" key="SELECT_FILE_AND_MOUNT">Select &amp;File and Mount...</entry>
<entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &amp;Device and Mount...</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and dismount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="MOUNT_SYSTEM_FAVORITES_ON_BOOT">Mount system favorite volumes when Windows starts (in the initial phase of the startup procedure)</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly unmounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always unmount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly unmounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly dismounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always dismount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly dismounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="FILESYS_REPAIR_CONFIRM_BACKUP">Warning: Repairing a damaged filesystem using the Microsoft 'chkdsk' tool might cause loss of files in damaged areas. Therefore, it is recommended that you first back up the files stored on the VeraCrypt volume to another, healthy, VeraCrypt volume.\n\nDo you want to repair the filesystem now?</entry>
<entry lang="en" key="MOUNTED_CONTAINER_FORCED_READ_ONLY">Volume '%s' has been mounted as read-only because write access was denied.\n\nPlease make sure the security permissions of the file container allow you to write to it (right-click the container and select Properties &gt; Security).\n\nNote that, due to a Windows issue, you may see this warning even after setting the appropriate security permissions. This is not caused by a bug in VeraCrypt. A possible solution is to move your container to, e.g., your 'Documents' folder.\n\nIf you intend to keep your volume read-only, set the read-only attribute of the container (right-click the container and select Properties &gt; Read-only), which will suppress this warning.</entry>
<entry lang="en" key="MOUNTED_DEVICE_FORCED_READ_ONLY">Volume '%s' had to be mounted as read-only because write access was denied.\n\nPlease make sure no other application (e.g. antivirus software) is accessing the partition/device on which the volume is hosted.</entry>
@@ -1306,8 +1304,8 @@
<entry lang="en" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Note that the number of threads is currently limited, which will affect benchmark results (worse performance).\n\nTo utilize the full potential of the processor(s), select 'Settings' > 'Performance' and disable the corresponding option.</entry>
<entry lang="en" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">Do you want VeraCrypt to attempt to disable write protection of the partition/drive?</entry>
<entry lang="en" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">WARNING: This setting may degrade performance.\n\nAre you sure you want to use this setting?</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-unmounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always unmount the volume in VeraCrypt first.\n\nUnexpected spontaneous unmount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-dismounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always dismount the volume in VeraCrypt first.\n\nUnexpected spontaneous dismount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="UNSUPPORTED_TRUECRYPT_FORMAT">This volume was created with TrueCrypt %x.%x but VeraCrypt supports only TrueCrypt volumes created with TrueCrypt 6.x/7.x series</entry>
<entry lang="en" key="TEST">Test</entry>
<entry lang="en" key="KEYFILE">Keyfile</entry>
@@ -1453,7 +1451,7 @@
<entry lang="en" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Add All Mounted Volumes to Favorites...</entry>
<entry lang="en" key="TASKICON_PREF_MENU_ITEMS">Task Icon Menu Items</entry>
<entry lang="en" key="TASKICON_PREF_OPEN_VOL">Open Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_DISMOUNT_VOL">Dismount Mounted Volumes</entry>
<entry lang="en" key="DISK_FREE">Free space available: {0}</entry>
<entry lang="en" key="VOLUME_SIZE_HELP">Please specify the size of the container to create. Note that the minimum possible size of a volume is 292 KiB.</entry>
<entry lang="en" key="LINUX_CONFIRM_INNER_VOLUME_CALC">WARNING: You have selected a filesystem other than FAT for the outer volume.\nPlease Note that in this case VeraCrypt can't calculate the exact maximum allowed size for the hidden volume and it will use only an estimation that can be wrong.\nThus, it is your responsibility to use an adequate value for the size of the hidden volume so that it does not overlap the outer volume.\n\nDo you want to continue using the selected filesystem for the outer volume?</entry>
@@ -1483,14 +1481,14 @@
<entry lang="en" key="LINUX_DO_NOT_MOUNT">Do &amp;not mount</entry>
<entry lang="en" key="LINUX_MOUNT_AT_DIR">Mount at directory:</entry>
<entry lang="en" key="LINUX_SELECT">Se&amp;lect...</entry>
<entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount All Volumes When</entry>
<entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry>
<entry lang="en" key="LINUX_ENTERING_POWERSAVING">System is entering power saving mode</entry>
<entry lang="en" key="LINUX_LOGIN_ACTION">Actions to Perform when User Logs On</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Close all Explorer windows of volume being dismounted</entry>
<entry lang="en" key="LINUX_HOTKEYS">Hotkeys</entry>
<entry lang="en" key="LINUX_SYSTEM_HOTKEYS">System-Wide Hotkeys</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/unmount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_UNMOUNT">Display confirmation message box after unmount</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/dismount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_DISMOUNT">Display confirmation message box after dismount</entry>
<entry lang="en" key="LINUX_VC_QUITS">VeraCrypt quits</entry>
<entry lang="en" key="LINUX_OPEN_FINDER">Open Finder window for successfully mounted volume</entry>
<entry lang="en" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Please note that this setting takes effect only if use of the kernel cryptographic services is disabled.</entry>
@@ -1510,11 +1508,11 @@
<entry lang="en" key="LINUX_DYNAMIC_NOTICE">Please note that if your operating system does not allocate files from the beginning of the free space, the maximum possible hidden volume size may be much smaller than the size of the free space on the outer volume. This is not a bug in VeraCrypt but a limitation of the operating system.</entry>
<entry lang="en" key="LINUX_MAX_HIDDEN_SIZE">Maximum possible hidden volume size for this volume is {0}.</entry>
<entry lang="en" key="LINUX_OPEN_OUTER_VOL">Open Outer Volume</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not unmount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not dismount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">Error: You are trying to encrypt a system drive.\n\nVeraCrypt can encrypt a system drive only under Windows.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">Error: You are trying to encrypt a system partition.\n\nVeraCrypt can encrypt system partitions only under Windows.</entry>
<entry lang="en" key="LINUX_WARNING_FORMAT_DESTROY_FS">WARNING: Formatting of the device will destroy all data on filesystem '{0}'.\n\nDo you want to continue?</entry>
<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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please dismount '{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>
@@ -1522,8 +1520,7 @@
<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>
<entry lang="en" key="LINUX_VOL_DISMOUNTED">Volume {0} has been dismounted.</entry>
<entry lang="en" key="LINUX_OOM">Out of memory.</entry>
<entry lang="en" key="LINUX_CANT_GET_ADMIN_PRIV">Failed to obtain administrator privileges</entry>
<entry lang="en" key="LINUX_COMMAND_GET_ERROR">Command {0} returned error {1}.</entry>
@@ -1553,7 +1550,7 @@
<entry lang="en" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Error: The drive uses a sector size other than 512 bytes.\n\nDue to limitations of components available on your platform, partition/device-hosted volumes cannot be created/used on the drive.\n\nPossible solutions:\n- Create a file-hosted volume (container) on the drive.\n- Use a drive with 512-byte sectors.\n- Use VeraCrypt on another platform.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">The host file/device is already in use.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Volume slot unavailable.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires macFUSE 2.5 or above.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires OSXFUSE 2.5 or above.</entry>
<entry lang="en" key="EXCEPTION_OCCURRED">Exception occurred</entry>
<entry lang="en" key="ENTER_PASSWORD">Enter password</entry>
<entry lang="en" key="ENTER_TC_VOL_PASSWORD">Enter VeraCrypt Volume Password</entry>
@@ -1570,124 +1567,6 @@
<entry lang="en" key="VOLUME_HOST_IN_USE">WARNING: The host file/device {0} is already in use!\n\nIgnoring this can cause undesired results including system instability. All applications that might be using the host file/device should be closed before mounting the volume.\n\nContinue mounting?</entry>
<entry lang="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
<entry lang="en" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">VeraCrypt cannot be upgraded because the system partition/drive was encrypted using an algorithm that is not supported anymore.\nPlease decrypt your system before upgrading VeraCrypt and then encrypt it again.</entry>
<entry lang="en" key="LINUX_EX2MSG_TERMINALNOTFOUND">Supported terminal application could not be found, you need either xterm, konsole or gnome-terminal (with dbus-x11).</entry>
<entry lang="en" key="IDM_MOUNT_NO_CACHE">Mount Without Cache</entry>
<entry lang="en" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nExpand a VeraCrypt volume on the fly without reformatting\n\n\nAll kind of volumes (container files, disks and partitions) formatted with NTFS are supported. The only condition is that there must be enough free space on the host drive or host device of the VeraCrypt volume.\n\nDo not use this software to expand an outer volume containing a hidden volume, because this destroys the hidden volume!\n</entry>
<entry lang="en" key="IDC_STEPSEXPAND">1. Select the VeraCrypt volume to be expanded\n2. Click the 'Mount' button</entry>
<entry lang="en" key="IDT_VOL_NAME">Volume: </entry>
<entry lang="en" key="IDT_FILE_SYS">File system: </entry>
<entry lang="en" key="IDT_CURRENT_SIZE">Current size: </entry>
<entry lang="en" key="IDT_NEW_SIZE">New size: </entry>
<entry lang="en" key="IDT_NEW_SIZE_BOX_TITLE">Enter new volume size</entry>
<entry lang="en" key="IDC_INIT_NEWSPACE">Fill new space with random data</entry>
<entry lang="en" key="IDC_QUICKEXPAND">Quick Expand</entry>
<entry lang="en" key="IDT_INIT_SPACE">Fill new space: </entry>
<entry lang="en" key="EXPANDER_FREE_SPACE">%s free space available on host drive</entry>
<entry lang="en" key="EXPANDER_HELP_DEVICE">This is a device-based VeraCrypt volume.\n\nThe new volume size will be choosen automatically as the size of the host device.</entry>
<entry lang="en" key="EXPANDER_HELP_FILE">Please specify the new size of the VeraCrypt volume (must be at least %I64u KB larger than the current size).</entry>
<entry lang="en" key="QUICK_EXPAND_WARNING">WARNING: You should use Quick Expand only in the following cases:\n\n1) The device where the file container is located contains no sensitive data and you do not need plausible deniability.\n2) The device where the file container is located has already been securely and fully encrypted.\n\nAre you sure you want to use Quick Expand?</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT">IMPORTANT: Move your mouse as randomly as possible within this window. The longer you move it, the better. This significantly increases the cryptographic strength of the encryption keys. Then click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT_LEGACY">Click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_FINISH_ERROR">Error: volume expansion failed.</entry>
<entry lang="en" key="EXPANDER_FINISH_ABORT">Error: operation aborted by user.</entry>
<entry lang="en" key="EXPANDER_FINISH_OK">Finished. Volume successfully expanded.</entry>
<entry lang="en" key="EXPANDER_CANCEL_WARNING">Warning: Volume expansion is in progress!\n\nStopping now may result in a damaged volume.\n\nDo you really want to cancel?</entry>
<entry lang="en" key="EXPANDER_STARTING_STATUS">Starting volume expansion ...\n</entry>
<entry lang="en" key="EXPANDER_HIDDEN_VOLUME_ERROR">An outer volume containing a hidden volume can't be expanded, because this destroys the hidden volume.\n</entry>
<entry lang="en" key="EXPANDER_SYSTEM_VOLUME_ERROR">A VeraCrypt system volume can't be expanded.</entry>
<entry lang="en" key="EXPANDER_NO_FREE_SPACE">Not enough free space to expand the volume</entry>
<entry lang="en" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Warning: The container file is larger than the VeraCrypt volume area. The data after the VeraCrypt volume area will be overwritten.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_FAT">Warning: The VeraCrypt volume contains a FAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_EXFAT">Warning: The VeraCrypt volume contains an exFAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_UNKNOWN_FS">Warning: The VeraCrypt volume contains an unknown or no file system!\n\nOnly the VeraCrypt volume itself will be expanded, the file system remains unchanged.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">New volume size too small, must be at least %I64u kB larger than the current size.</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">New volume size too large, not enough space on host drive.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Maximum file size of %I64u MB on host drive exceeded.</entry>
<entry lang="en" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Error: Failed to get necessary privileges to enable Quick Expand!\nPlease uncheck Quick Expand option and try again.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Maximum VeraCrypt volume size of %I64u TB exceeded!\n</entry>
<entry lang="en" key="FULL_FORMAT">Full Format</entry>
<entry lang="en" key="FAST_CREATE">Fast Create</entry>
<entry lang="en" key="WARN_FAST_CREATE">WARNING: You should use Fast Create only in the following cases:\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 Fast Create?</entry>
<entry lang="en" key="IDC_ENABLE_EMV_SUPPORT">Enable EMV Support</entry>
<entry lang="en" key="COMMAND_APDU_INVALID">The APDU command sent to the card is not valid.</entry>
<entry lang="en" key="EXTENDED_APDU_UNSUPPORTED">Extended APDU commands cannot be used with the current token.</entry>
<entry lang="en" key="SCARD_MODULE_INIT_FAILED">Error when loading the WinSCard / PCSC library.</entry>
<entry lang="en" key="EMV_UNKNOWN_CARD_TYPE">The card in the reader is not a supported EMV card.</entry>
<entry lang="en" key="EMV_SELECT_AID_FAILED">The AID of the card in the reader could not be selected.</entry>
<entry lang="en" key="EMV_ICC_CERT_NOTFOUND">ICC Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_ISSUER_CERT_NOTFOUND">Issuer Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_CPLC_NOTFOUND">CPLC was not found in the EMV card.</entry>
<entry lang="en" key="EMV_PAN_NOTFOUND">No Primary Account Number (PAN) found in the EMV card.</entry>
<entry lang="en" key="INVALID_EMV_PATH">EMV path is invalid.</entry>
<entry lang="en" key="EMV_KEYFILE_DATA_NOTFOUND">Unable to build a keyfile from the EMV card's data.\n\nOne of the following is missing:\n- ICC Public Key Certificate.\n- Issuer Public Key Certificate.\n- CPLC data.</entry>
<entry lang="en" key="SCARD_W_REMOVED_CARD">No card in the reader.\n\nPlease make sure the card is correctly slotted.</entry>
<entry lang="en" key="FORMAT_EXTERNAL_FAILED">Windows format.com command failed to format the volume as NTFS/exFAT/ReFS: Error 0x%.8X.\n\nFalling back to using Windows FormatEx API.</entry>
<entry lang="en" key="FORMATEX_API_FAILED">Windows FormatEx API failed to format the volume as NTFS/exFAT/ReFS.\n\nFailure status = %s.</entry>
<entry lang="en" key="EXPANDER_WRITING_RANDOM_DATA">Writing random data to new space ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Writing re-encrypted backup header ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Writing re-encrypted primary header ...\n</entry>
<entry lang="en" key="EXPANDER_WIPING_OLD_HEADER">Wiping old backup header ...\n</entry>
<entry lang="en" key="EXPANDER_MOUNTING_VOLUME">Mounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_UNMOUNTING_VOLUME">Unmounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_EXTENDING_FILESYSTEM">Extending file system ...\n</entry>
<entry lang="en" key="PARTIAL_SYSENC_MOUNT_READONLY">Warning: The system partition you attempted to mount was not fully encrypted. As a safety measure to prevent potential corruption or unwanted modifications, volume '%s' was mounted as read-only.</entry>
<entry lang="en" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Important information on using third-party file extensions</entry>
<entry lang="en" key="IDC_DISABLE_MEMORY_PROTECTION">Disable memory protection for Accessibility tools compatibility</entry>
<entry lang="en" key="DISABLE_MEMORY_PROTECTION_WARNING">WARNING: Disabling memory protection significantly reduces security. Enable this option ONLY if you rely on Accessibility tools, like Screen Readers, to interact with VeraCrypt's UI.</entry>
<entry lang="lv" key="LINUX_LANGUAGE">Valoda</entry>
<entry lang="en" key="LINUX_SELECT_SYS_DEFAULT_LANG">Select system's default language</entry>
<entry lang="en" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">For the language change to come into effect, VeraCrypt needs to be restarted.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE">WARNING: The volume's master key is vulnerable to an attack that compromises data security.\n\nPlease create a new volume and transfer the data to it.</entry>
<entry lang="en" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">WARNING: The encrypted system's master key is vulnerable to an attack that compromises data security.\nPlease decrypt the system partition/drive and then re-encrypt it.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">WARNING: The volume's master key has a security vulnerability.</entry>
<entry lang="en" key="MOUNTPOINT_BLOCKED">ERROR: The volume mount point is blocked because it overrides a protected system directory.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="MOUNTPOINT_NOTALLOWED">ERROR: The volume mount point is not allowed because it overrides a directory that is part of the PATH environment variable.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="INSECURE_MODE">[INSECURE MODE]</entry>
<entry lang="en" key="IDC_DISABLE_SCREEN_PROTECTION">Disable protection against screenshots and screen recording</entry>
<entry lang="en" key="DISABLE_SCREEN_PROTECTION_WARNING">WARNING: Disabling screen protection significantly reduces security. Enable this option ONLY if you have a specific need to capture VeraCrypt's interface. This may expose sensitive data to screenshot tools and screen recording features such as Windows 11 Recall.</entry>
<entry lang="en" key="MEMORY_COST">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="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>
<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>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+54 -175
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
@@ -135,8 +135,8 @@
<entry lang="my" key="IDC_FAVORITE_REMOVE">ဖယ်ရှားရန်</entry>
<entry lang="my" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">အနှစ်သက်ဆုံး အညွှန်းကို Explorer ဒရိုက်(ဗ်) အညွှန်းအဖြစ် အသုံးပြုရန်</entry>
<entry lang="my" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">ဘုံသုံး ချိန်ညှိချက်များ</entry>
<entry lang="my" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">အထူး ကီးကို အောင်မြင်စွာ အဆုံးသတ်ပြီးပါက ပူပေါင်း လမ်းညွှန်ကို ပြပါ</entry>
<entry lang="my" key="IDC_HK_UNMOUNT_PLAY_SOUND">အထူး ကီးကို အောင်မြင်စွာ အဆုံးသတ်ပြီးပါက စက် အချက်ပြ အသံကို ဖွင့်ပါ</entry>
<entry lang="my" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">အထူး ကီးကို အောင်မြင်စွာ အဆုံးသတ်ပြီးပါက ပူပေါင်း လမ်းညွှန်ကို ပြပါ</entry>
<entry lang="my" key="IDC_HK_DISMOUNT_PLAY_SOUND">အထူး ကီးကို အောင်မြင်စွာ အဆုံးသတ်ပြီးပါက စက် အချက်ပြ အသံကို ဖွင့်ပါ</entry>
<entry lang="my" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="my" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="my" key="IDC_HK_MOD_SHIFT">Shift</entry>
@@ -156,12 +156,12 @@
<entry lang="my" key="IDC_PIM_HELP">(နဂိုမူလ ထပ်တလဲလဲပြုလုပ်ခြင်းများအတွက် အလွတ် သို့မဟုတ် 0)</entry>
<entry lang="my" key="IDC_PREF_BKG_TASK_ENABLE">ဖွင့်ထားသည်</entry>
<entry lang="my" key="IDC_PREF_CACHE_PASSWORDS">စကားဝှက်ကို ဒရိုင်ဘာ မှတ်ဉာဏ်ထဲ၌ ခေတ္တ သိမ်းဆည်းရန်</entry>
<entry lang="my" key="IDC_PREF_UNMOUNT_INACTIVE">ဒေတာများကို ဖတ်ရှုခြင်း/ရေးသားခြင်း မပြုသည့်အခါ volume ကို အလိုအလျောက် အဆုံးသတ်ပါ</entry>
<entry lang="my" key="IDC_PREF_UNMOUNT_LOGOFF">သုံးစွဲသူ ထွက်ရန်</entry>
<entry lang="my" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">အသုံးပြုသူ အပိုင်းအခြားကာလ လော့ချထားသည်</entry>
<entry lang="my" key="IDC_PREF_UNMOUNT_POWERSAVING">စွမ်းအင် ချွေတာရေးစနစ်ကို သုံးစွဲရန်</entry>
<entry lang="my" key="IDC_PREF_UNMOUNT_SCREENSAVER">Screen saver ဖွင့်ထားသည်</entry>
<entry lang="my" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Volume ၌ ဖွင့်ထားသော ဖိုင်များ (သို့) ဖိုင်တွဲများ ပါ၀င်နေလျှင်လည်း ၎င်းကို အလိုအလျှောက် အတင်း အဆုံးသတ်ပါ</entry>
<entry lang="my" key="IDC_PREF_DISMOUNT_INACTIVE">ဒေတာများကို ဖတ်ရှုခြင်း/ရေးသားခြင်း မပြုသည့်အခါ volume ကို အလိုအလျောက် အဆုံးသတ်ပါ</entry>
<entry lang="my" key="IDC_PREF_DISMOUNT_LOGOFF">သုံးစွဲသူ ထွက်ရန်</entry>
<entry lang="my" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">အသုံးပြုသူ အပိုင်းအခြားကာလ လော့ချထားသည်</entry>
<entry lang="my" key="IDC_PREF_DISMOUNT_POWERSAVING">စွမ်းအင် ချွေတာရေးစနစ်ကို သုံးစွဲရန်</entry>
<entry lang="my" key="IDC_PREF_DISMOUNT_SCREENSAVER">Screen saver ဖွင့်ထားသည်</entry>
<entry lang="my" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Volume ၌ ဖွင့်ထားသော ဖိုင်များ (သို့) ဖိုင်တွဲများ ပါ၀င်နေလျှင်လည်း ၎င်းကို အလိုအလျှောက် အတင်း အဆုံးသတ်ပါ</entry>
<entry lang="my" key="IDC_PREF_LOGON_MOUNT_DEVICES">စက်ထဲရှိ VeraCrypt volumes အားလုံးကို အစပျိုးရန်</entry>
<entry lang="my" key="IDC_PREF_LOGON_START">VeraCrypt နောက်ခံ လုပ်ငန်းများ စတင်ရန်</entry>
<entry lang="my" key="IDC_PREF_MOUNT_READONLY">Volumes များကို ဖတ်ရှုရန် အတွက်သာ အစပျိုးရန်</entry>
@@ -169,7 +169,7 @@
<entry lang="my" key="IDC_PREF_OPEN_EXPLORER">အောင်မြင်စွာ အစပျိုးလိုက်သော volume အတွက် Explorer ၀င်းဒိုးကို ဖွင့်ရန်</entry>
<entry lang="my" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">"အနှစ်သက်ဆုံး Volume များ အစပျိုးရန်" လုပ်ဆောင်ချက်များပြုလုပ်စဉ် စကားဝှက်ကို ယာယီ သိမ်းထားရန်</entry>
<entry lang="my" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">အစပျိုးထားသော volumes များ ရှိပါက ခြားနားသော taskbar ပုံများကို သုံးစွဲရန်</entry>
<entry lang="my" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">အလိုအလျောက် အဆုံးသတ်သည့်အခါ ခေတ္တ မှတ်ထားသော စကားဝှက်များကို ရှင်းလင်းရန်</entry>
<entry lang="my" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">အလိုအလျောက် အဆုံးသတ်သည့်အခါ ခေတ္တ မှတ်ထားသော စကားဝှက်များကို ရှင်းလင်းရန်</entry>
<entry lang="my" key="IDC_PREF_WIPE_CACHE_ON_EXIT">ထွက်သည့်အခါ ခေတ္တ မှတ်ထားသော စကားဝှက်များကို ရှင်းလင်းရန်</entry>
<entry lang="my" key="IDC_PRESERVE_TIMESTAMPS">ဖိုင် သိမ်းဆည်းခန်းများ၏ ပြုပြင်မှု အချိန်စာရင်းကို ထိန်းသိမ်းရန်</entry>
<entry lang="my" key="IDC_RESET_HOTKEYS">ပြန်ချိန်ရန်</entry>
@@ -269,14 +269,14 @@
<entry lang="my" key="IDT_ACCELERATION_OPTIONS">Hardware စွမ်းရည်မြှင့်ခြင်း</entry>
<entry lang="my" key="IDT_ASSIGN_HOTKEY">ဖြတ်လမ်း</entry>
<entry lang="my" key="IDT_AUTORUN">AutoRun ပြုပြင်ဖန်တီးမှု (autorun.inf)</entry>
<entry lang="my" key="IDT_AUTO_UNMOUNT">အလိုအလျောက် အဆုံးသတ်ရန်</entry>
<entry lang="my" key="IDT_AUTO_UNMOUNT_ON">အားလုံး အဆုံးသတ်မည့် အချိန် -</entry>
<entry lang="my" key="IDT_AUTO_DISMOUNT">အလိုအလျောက် အဆုံးသတ်ရန်</entry>
<entry lang="my" key="IDT_AUTO_DISMOUNT_ON">အားလုံး အဆုံးသတ်မည့် အချိန် -</entry>
<entry lang="my" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader မျက်နှာပြင် ရွေးစရာများ</entry>
<entry lang="my" key="IDT_CONFIRM_PASSWORD">စကားဝှက် အတည်ပြုရန် -</entry>
<entry lang="my" key="IDT_CURRENT">လက်ရှိ</entry>
<entry lang="my" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">စက်မတက်မီ စစ်ဆေးမှု မျက်နှာပြင်တွင် ဤစိတ်ကြိုက် စာတမ်းကို ပြရန် (စာလုံးရေ အများဆုံး ၂၄ လုံးသာ) -</entry>
<entry lang="my" key="IDT_DEFAULT_MOUNT_OPTIONS">မူလ အစပျိုး ရွေးစရာများ</entry>
<entry lang="my" key="IDT_UNMOUNT_ACTION">အထူး ကီး ရွေးစရာများ</entry>
<entry lang="my" key="IDT_DISMOUNT_ACTION">အထူး ကီး ရွေးစရာများ</entry>
<entry lang="my" key="IDT_DRIVER_OPTIONS">ဒရိုက်ဗာ အစိတ်အပိုင်းများဖွဲ့စည်းပုံ</entry>
<entry lang="my" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">ချဲ့ထွင်ထားသော ဒစ်(စ်)ထိန်းချုပ်မှု ကုဒ်များ ပံ့ပိုးမှုကို ဖွင့်ရန်</entry>
<entry lang="my" key="IDT_FAVORITE_LABEL">ရွေးချယ်ထားသော စိတ်ကြိုက် volume အညွှန်း -</entry>
@@ -291,11 +291,10 @@
<entry lang="my" key="IDT_NEW_PASSWORD">စကားဝှက် -</entry>
<entry lang="my" key="IDT_PARALLELIZATION_OPTIONS">Thread-အခြေပြု ပြိုင်တူပြုလုပ်ခြင်း</entry>
<entry lang="my" key="IDT_PKCS11_LIB_PATH">PKCS #11 လိုင်ဘရာရီ လမ်းကြောင်း</entry>
<entry lang="my" key="IDT_KDF">KDF-</entry>
<entry lang="my" key="IDT_NEW_KDF">KDF -</entry>
<entry lang="my" key="IDT_PKCS5_PRF">PKCS-5 PRF-</entry>
<entry lang="my" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF -</entry>
<entry lang="my" key="IDT_PW_CACHE_OPTIONS">စကားဝှက် ယာယီ သိမ်းဆည်းခန်း</entry>
<entry lang="my" key="IDT_SECURITY_OPTIONS">လုံခြုံရေး ရွေးစရာများ</entry>
<entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry>
<entry lang="my" key="IDT_TASKBAR_ICON">VeraCrypt နောက်ခံ လုပ်ငန်း</entry>
<entry lang="my" key="IDT_TRAVELER_MOUNT">အစပျိုးရမည့် VeraCrypt volume (ခရီးဆောင် disk root နှင့် ဆက်စပ်သည်) -</entry>
<entry lang="my" key="IDT_TRAVEL_INSERTION">Traveler disk ကို ထည့်လိုက်သည့်အခါ -</entry>
@@ -357,7 +356,7 @@
<entry lang="my" key="IDT_KEYFILE_WARNING">သတိပေးချက် - ကီးဖိုင်​ ပျောက်သွားသည် ဖြစ်စေ (သို့) ၄င်း၏ ပထမဆုံး ၁၀၂၄ kilobytes ပြောင်းသွားသည် ဖြစ်စေ၊ အဲဒီ ကီးဖိုင်ကို အသုံးပြုသော volumes များကို အစပျိုးနိုင်မည် မဟုတ်ပါ။</entry>
<entry lang="my" key="IDT_KEY_UNIT">bits</entry>
<entry lang="my" key="IDT_NUMBER_KEYFILES">စကားဝှက်သော့ဖိုင် အရေအတွက် -</entry>
<entry lang="my" key="IDT_KEYFILES_SIZE">စကားဝှက်သော့ဖိုင်များ၏ အရွယ်အစား -</entry>
<entry lang="my" key="IDT_KEYFILES_SIZE">စကားဝှက်သော့ဖိုင်များ၏ အရွယ်အစား (ဘိုက်) -</entry>
<entry lang="my" key="IDT_KEYFILES_BASE_NAME">စကားဝှက်သော့ဖိုင်များ အခြေ အမည် -</entry>
<entry lang="my" key="IDT_LANGPACK_AUTHORS">ဘာသာပြန်ဆိုသူ -</entry>
<entry lang="my" key="IDT_PLAINTEXT">စာသား သက်သက် အရွယ် -</entry>
@@ -390,7 +389,6 @@
<entry lang="my" key="ADMINISTRATOR">စီမံခန့်ခွဲသူ</entry>
<entry lang="my" key="ADMIN_PRIVILEGES_DRIVER">VeraCrypt ဒရိုင်ဘာကို ဖွင့်ရန်၊ အကောင့်ထဲသို့ စီမံခန့်ခွဲသူ လုပ်ပိုင်ခွင့်ဖြင့် ၀င်ရောက် ဝင်ရောက်ရန် လိုအပ်သည်။</entry>
<entry lang="my" key="ADMIN_PRIVILEGES_WARN_DEVICES">အခန်းကန့်/စက်ပစ္စည်း တစ်ခုကို စာဝှက်ရန်/ဖော်မက်ချရန် သင်သည် အကောင့်ထဲသို့ စီမံခန့်ခွဲသူ လုပ်ပိုင်ခွင့်ဖြင့် ဝင်ရောက်ရန် လိုအပ်သည်။\n\n ၎င်းသည် ဖိုင် သိမ်းဆည်းသော volumes များနှင့် မသက်ဆိုင်ပါ။</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="my" key="ADMIN_PRIVILEGES_WARN_HIDVOL">လျှို့ဝှက် volume တစ်ခုကို ဖန်တီးရန် သင်သည် အကောင့်ထဲသို့ စီမံခန့်ခွဲသူ လုပ်ပိုင်ခွင့်ဖြစ် ဝင်ရောက်ရန် လိုအပ်သည်။\n\nဆက်လုပ်မည်လား?</entry>
<entry lang="my" key="ADMIN_PRIVILEGES_WARN_NTFS">Volume ကို NTFS အဖြစ် ဖော်မက်ချရန် သင်သည် ​အကောင့်ထဲသို့ စီမံခန့်ခွဲသူ လုပ်ပိုင်ခွင့်ဖြင့် ဝင်ရောက်ရန် လိုအပ်သည်။\n\n စီမံခန့်ခွဲသူ လုပ်ပိုင်ခွင့်မပါပဲ၊ မဟုတ်ပါက volume ကို FAT အဖြစ်သာ ဖော်မက်ချနိုင်မည် ဖြစ်သည်။</entry>
<entry lang="my" key="AES_HELP">FIPS မှ ထောက်ခံထားသော စာဝှက်စနစ် (Rijndael, ၁၉၉၈ ခုနှစ်၌ ထုတ်ပြန်ထားသည်) ကို ယူအက်စ် အစိုးရ အဖွဲ့အစည်းနှင့် အခြား အေဂျင်စီများသည် ထိပ်တန်း လျှို့ဝှက် အဆင့် 256-bit ကီး၊ 128-bit block, 14 rounds (AES-256) အထိ သတ်မှတ်ထားသော အချက်အလက်များကို ကာကွယ်ရန် အသုံးပြုနိုင်ကြသည်။ လုပ်ဆောင်ပုံ စနစ်မှာ XTS ဖြစ်သည်။</entry>
@@ -423,8 +421,8 @@
<entry lang="my" key="DEVICE_FREE_PB">%s ၏အရွယ်မှာ %.2f PB ဖြစ်သည်</entry>
<entry lang="my" key="DEVICE_IN_USE_FORMAT">သတိပေးချက် - စက်ပစ္စည်း/အခန်းကန့်ကို OS မှ (သို့) အ​ပ္ပလီကေးရှင်းများမှ အသုံးပြုထားသည်။ စက်ပစ္စည်း/အခန်းကန့်ကို ဖော်မက်ချခြင်းဖြင့် ဒေတာ ပျက်စီမှုနှင့် စက်လည်ပတ်မှု မတည်မငြိမ် ဖြစ်စေနိုင်သည်။\n\nဆက်လုပ်မည်လား?</entry>
<entry lang="my" key="DEVICE_IN_USE_INPLACE_ENC">သတိပေးချက် - စက်ပစ္စည်း/အခန်းကန့်ကို OS မှ (သို့) အ​ပ္ပလီကေးရှင်းများမှ အသုံးပြုထားသည်။ အခန်းကန့်ကို အသုံးပြုသော ​အပ္ပလီကေးရှင်းများ (ဗိုင်းရပ်စ်သတ် ဆော့ဗ်ဝဲ အပါအဝင်)ကို ပိတ်ထားပါ။\n\n ဆက်လုပ်မည်လား?</entry>
<entry lang="my" key="FORMAT_CANT_UNMOUNT_FILESYS">ချို့ယွင်းချက် - စက်ပစ္စည်း/အခန်းကန့်၌ အဆုံးသတ်၍ မရနိုင်သော ဖိုင်စနစ် တစ်ခု ပါရှိနေသည်။ ​၎င်းဖိုင်စနစ်ကို စက်လည်ပတ်မှုစနစ်က အသုံးပြုထားနိုင်သည်။ စက်ပစ္စည်း/အခန်းကန့်ကို ဖော်မက်ချခြင်းဖြင့် ဒေတာ ပျက်စီခြင်းနှင့် စက်လည်ပတ်မှုစနစ် မတည်ငြိမ်မှုများ ဖြစ်ပေါ်စေနိုင်သည်။\n\nဤပြဿနာကို ဖြေရှင်းရန်၊ ထိုအခန်းကန့်ကို ဦးစွာ ပယ်ဖျက်ပြီး ၄င်းကို ဖော်မက်ချစရာ မလိုပဲ အသစ် ပြန်ဖန်တီးပါ။ ထိုသို့ ဆောင်ရွတ်ရန်၊ အောက်ပါ အဆင့်များကို လုပ်ဆောင်ပါ -\n၁) 'Start Menu' ရှိ 'Computer' ပုံကို ညာဖက် နှိပ်ပြီး 'Manage' ကို ရွေးပါ။ 'Computer Management' ၀င်းဒိုး ပေါ်လာလိမ့်မည်။\n၂) 'Disk Management' ဝင်းဒိုးထဲ၌ 'Storage' &gt; 'Disk Management' ကို ရွေးပါ။\n၃) သင် စာဝှက်လိုသော အခန်းကန့်ကို ညာဖက် နှိပ်ပြီး 'Delete Partition', (သို့) 'Delete Volume', (သို့) 'Delete Logical Drive' ကို ရွေးပါ။\n၄) 'Yes' ကို နှိပ်ပါ။ အကယ်၍ ဝင်းဒိုးက စက်ပြန်ဖွင့်ရန် တောင်းဆိုလာပါက ကွန်ပျူတာစက်ကို ပြန်စလိုက်ပါ။ ထို့နောက် အဆင့် ၁ နှင့် ၂ ကို ပြန်လုပ်ပြီး အဆင့် ၅ မှ ဆက်လုပ်ပါ။\n၅) နေရာမယူထားသော/နေရာလွတ်၌ ညာဖက် နှိပ်ပြီး 'New Partition', (သို့) 'New Simple Volume', (သို့) 'New Logical Drive' ကို ရွေးပါ။\n၆) ယခုအချိန်၌ 'New Partition Wizard' (သို့) 'New Simple Volume Wizard' ၀င်းဒိုး ပေါ်လာမည် ဖြစ်သည်။ ညွန်ကြားချက်အတိုင်း ဆက်လုပ်ပါ။ 'Format Partition' ခေါင်းစဉ်အောက်ရှိ 'Do not format this partition' (သို့) 'Do not format this volume' တစ်ခုခုကို ရွေးချယ်ပါ။ အညွှန်း တစ်ခုထဲ၌၊ 'Next' ကို နှိပ်ပြီးနောက် 'Finish' ကို နှိပ်ပါ။\n၇) VeraCrypt ၌ သင် ရွေးချယ်ခဲ့သော လမ်းကြောင်း မှားနေနိုင်သည်ကို သတိပြုပါ။ ထို့ကြောင့်၊ VeraCrypt Volume ဖန်တီးမှု အညွှန်းမှ ထွက်ပြီး ပြန်ဖွင့်ပါ။\n၈) စက်ပစ္စည်း/အခန်းကန့်ကို တဖန် စာဝှက်လိုက်ပါ။\n\n အကယ်၍ VeraCrypt သည် စက်ပစ္စည်း/အခန်းကန့်ကို စာဝှက်ရန် အကြိမ်ကြိမ် မအောင်မြင်ပါက၊ ၄င်းအစား ဖိုင် သိမ်းဆည်းခန်းတစ်ခုကို ဖန်တီးရန် စဉ်းစားပါ။</entry>
<entry lang="my" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">ချို့ယွင်းချက် - filesystem ကို သော့ခတ်၍ မရ/အဆုံးသတ်၍ မရ ဖြစ်နေသည်။ ၎င်းကို စက်လည်ပတ်မှုစနစ် (သို့) အပ္ပလီကေးရှင်းများ (ဥပမာ - ဗိုင်းရပ်စ် ဖယ်ရှား ဆော့ဗ်ဝဲ) မှ အသုံးပြုနေခြင်း ဖြစ်နိုင်သည်။ ၎င်းအခန်းကန့်ကို စာဝှက်ခြင်းဖြင့် ဒေတာ ပျက်စီးခြင်းနှင့် စက်လည်ပတ်မှုစနစ် မတည်မငြိမ် ဖြစ်စေနိုင်သည်။\n\n Filesystem ကို အသုံးပြုနေသည့် အပ္ပလီကေးရှင်းများကို ပိတ်ပြီး ထပ်ကြိုးစားပါ။ အကြောင်းမထူးပါက၊ အောက်ပါ အဆင့်များကို လုပ်ဆောင်ပါ။</entry>
<entry lang="my" key="FORMAT_CANT_DISMOUNT_FILESYS">ချို့ယွင်းချက် - စက်ပစ္စည်း/အခန်းကန့်၌ အဆုံးသတ်၍ မရနိုင်သော ဖိုင်စနစ် တစ်ခု ပါရှိနေသည်။ ​၎င်းဖိုင်စနစ်ကို စက်လည်ပတ်မှုစနစ်က အသုံးပြုထားနိုင်သည်။ စက်ပစ္စည်း/အခန်းကန့်ကို ဖော်မက်ချခြင်းဖြင့် ဒေတာ ပျက်စီခြင်းနှင့် စက်လည်ပတ်မှုစနစ် မတည်ငြိမ်မှုများ ဖြစ်ပေါ်စေနိုင်သည်။\n\nဤပြဿနာကို ဖြေရှင်းရန်၊ ထိုအခန်းကန့်ကို ဦးစွာ ပယ်ဖျက်ပြီး ၄င်းကို ဖော်မက်ချစရာ မလိုပဲ အသစ် ပြန်ဖန်တီးပါ။ ထိုသို့ ဆောင်ရွတ်ရန်၊ အောက်ပါ အဆင့်များကို လုပ်ဆောင်ပါ -\n၁) 'Start Menu' ရှိ 'Computer' ပုံကို ညာဖက် နှိပ်ပြီး 'Manage' ကို ရွေးပါ။ 'Computer Management' ၀င်းဒိုး ပေါ်လာလိမ့်မည်။\n၂) 'Disk Management' ဝင်းဒိုးထဲ၌ 'Storage' &gt; 'Disk Management' ကို ရွေးပါ။\n၃) သင် စာဝှက်လိုသော အခန်းကန့်ကို ညာဖက် နှိပ်ပြီး 'Delete Partition', (သို့) 'Delete Volume', (သို့) 'Delete Logical Drive' ကို ရွေးပါ။\n၄) 'Yes' ကို နှိပ်ပါ။ အကယ်၍ ဝင်းဒိုးက စက်ပြန်ဖွင့်ရန် တောင်းဆိုလာပါက ကွန်ပျူတာစက်ကို ပြန်စလိုက်ပါ။ ထို့နောက် အဆင့် ၁ နှင့် ၂ ကို ပြန်လုပ်ပြီး အဆင့် ၅ မှ ဆက်လုပ်ပါ။\n၅) နေရာမယူထားသော/နေရာလွတ်၌ ညာဖက် နှိပ်ပြီး 'New Partition', (သို့) 'New Simple Volume', (သို့) 'New Logical Drive' ကို ရွေးပါ။\n၆) ယခုအချိန်၌ 'New Partition Wizard' (သို့) 'New Simple Volume Wizard' ၀င်းဒိုး ပေါ်လာမည် ဖြစ်သည်။ ညွန်ကြားချက်အတိုင်း ဆက်လုပ်ပါ။ 'Format Partition' ခေါင်းစဉ်အောက်ရှိ 'Do not format this partition' (သို့) 'Do not format this volume' တစ်ခုခုကို ရွေးချယ်ပါ။ အညွှန်း တစ်ခုထဲ၌၊ 'Next' ကို နှိပ်ပြီးနောက် 'Finish' ကို နှိပ်ပါ။\n၇) VeraCrypt ၌ သင် ရွေးချယ်ခဲ့သော လမ်းကြောင်း မှားနေနိုင်သည်ကို သတိပြုပါ။ ထို့ကြောင့်၊ VeraCrypt Volume ဖန်တီးမှု အညွှန်းမှ ထွက်ပြီး ပြန်ဖွင့်ပါ။\n၈) စက်ပစ္စည်း/အခန်းကန့်ကို တဖန် စာဝှက်လိုက်ပါ။\n\n အကယ်၍ VeraCrypt သည် စက်ပစ္စည်း/အခန်းကန့်ကို စာဝှက်ရန် အကြိမ်ကြိမ် မအောင်မြင်ပါက၊ ၄င်းအစား ဖိုင် သိမ်းဆည်းခန်းတစ်ခုကို ဖန်တီးရန် စဉ်းစားပါ။</entry>
<entry lang="my" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">ချို့ယွင်းချက် - filesystem ကို သော့ခတ်၍ မရ/အဆုံးသတ်၍ မရ ဖြစ်နေသည်။ ၎င်းကို စက်လည်ပတ်မှုစနစ် (သို့) အပ္ပလီကေးရှင်းများ (ဥပမာ - ဗိုင်းရပ်စ် ဖယ်ရှား ဆော့ဗ်ဝဲ) မှ အသုံးပြုနေခြင်း ဖြစ်နိုင်သည်။ ၎င်းအခန်းကန့်ကို စာဝှက်ခြင်းဖြင့် ဒေတာ ပျက်စီးခြင်းနှင့် စက်လည်ပတ်မှုစနစ် မတည်မငြိမ် ဖြစ်စေနိုင်သည်။\n\n Filesystem ကို အသုံးပြုနေသည့် အပ္ပလီကေးရှင်းများကို ပိတ်ပြီး ထပ်ကြိုးစားပါ။ အကြောင်းမထူးပါက၊ အောက်ပါ အဆင့်များကို လုပ်ဆောင်ပါ။</entry>
<entry lang="my" key="DEVICE_IN_USE_INFO">သတိပေးချက် - အစပျိုးထားသော စက်ပစ္စည်းများ/အခန်းကန့်များ အချို့ကို သုံးစွဲထားပြီး ဖြစ်နိုင်သည်။\n\n ၎င်းကို လျှစ်လျှူရှုခြင်းဖြင့် စက်လည်ပတ်ရာ၌ မတည်ငြိမ်မှုများကဲ့သို့ မလိုလားအပ်သော ရလဒ်များကို ဖြစ်ပေါ်စေနိုင်သည်။\n\n စက်ပစ္စည်းများ/အခန်းကန့်များကို အသုံးပြုနေနိုင်သော အပ္ပလီကေးရှင်းများကို ပိတ်ထားရန် အလေးအနက် အကြံပြုလိုပါသည်။</entry>
<entry lang="my" key="DEVICE_PARTITIONS_ERR">ရွေးချယ်ထားသော စက်ပစ္စည်း၌ အခန်းကန့်များ ပါရှိသည်။\n\n စက်ပစ္စည်းကို ဖော်မက်ချခြင်းဖြင့် စက်လည်ပတ်မှု စနစ်ပိုင်းဆိုင်ရာ မတည်ငြိမ်မှုများ/ဒေတာ ပျက်စီးမှုများ ဖြစ်ပေါ်စေနိုင်သည်။ VeraCrypt ကို သုံးပြီး လုံခြုံ​စွာ ဖော်မက်ချနိုင်ရန် စက်ပစ္စည်းပေါ်၌ အခန်းကန့် တစ်ခုကို ရွေးချယ်ပါ၊ (သို့) စက်ပစ္စည်းပေါ်မှ အခန်းကန့် အားလုံးကို ဖယ်ရှားပါ။</entry>
<entry lang="my" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">ကွန်ပျူတာစနစ် မဟုတ်သော စက်ပစ္စည်း၌ အခန်းကန့်များ ပါရှိသည်။\n\n အခန်းကန့်များ မရှိသော စက်ပစ္စည်းများထဲ၌ စာဝှက်ထားသော စက်ပစ္စည်း အခြေပြု VeraCrypt volumes များကို (hard disks နှင့် solid-state drives များ အပါအဝင်) ဖန်တီးနိုင်သည်။ ၄င်းစက်ပစ္စည်းထဲ၌ ဝင်းဒိုးတင်ထားပြီး ၎င်းမှ ဝင်းဒိုးတက်မည် ဆိုလျှင်၊ အခန်းကန့်များ ပါရှိသော စက်ပစ္စည်း တစ်ခုလုံးကို နေရာတကျ စာဝှက်နိုင်မည် ဖြစ်သည်။\n\nမာစတာကီး တစ်ခုတည်းကို သုံးပြီး ရွေးချယ်ထားသော ကွန်ပျူတာစနစ် မဟုတ်သည့် စက်ပစ္စည်းကို စာှက်လိုပါက၊ ၄င်းကို VeraCrypt ဖြင့် လုံခြုံစွာ ဖော်မက်ချနိုင်ရန် စက်ပစ္စည်းထဲရှိ အခန်းကန့် အားလုံးကို သင် ဖယ်ရှားရမည် (အခန်းကန့်များ ပါရှိသော စက်ပစ္စည်း တစ်ခုကို ဖော်မက်ချခြင်းကြောင့် စက်လည်ပတ်မှု စနစ်ကို မတည်ငြိမ်မှု/ ဒေတာ ပျက်စီးမှု ဖြစ်ပေါ်စေနိုင်သည်)။ တစ်နည်းအားဖြင့်၊ စက်ပစ္စည်းရှိ အခန်းကန့် တစ်ခုစီကို သီးခြား စာဝှက်နိုင်သည် (အခန်းကန့် တစ်ခုစီကို သီးခြား မာစတာကီး အသုံးပြုပြီး စာဝှက်နိုင်မည် ဖြစ်သည်)။ \n\n မှတ်ချက် - GPT disk မှ အခန်းကန့် အားလုံးကို သင် ဖယ်ရှားလိုပါက၊ လျှို့ဝှက် အခန်းကန့်များကို ဖယ်ရှားရန် MBR disk (ဥပမာ -Computer Management tool ကို အသုံးပြုပြီး) အဖြစ် ပြောင်းလဲရန် လိုအပ်သည်။</entry>
@@ -591,7 +589,7 @@
<entry lang="my" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">ျို့ယွင်းချက် - ပြင်ပ volume ၌ သင် ကော်ပီးလိုက်သော ဖိုင်များသည် နေရာယူလွန်းသည်။ ထိုကြောင့်၊ ပြင်ပ volume ၌ လျှို့ဝှက် volume အတွက် နေရာလွတ် မလုံလောက်ပါ။\n\nလျှို့ဝှက် volume (လောလောဆယ် OS ထည့်သွင်းထားသော အခန်းကန့်) သည် ကွန်ပျူတာစနစ် အခန်းကန့်ကဲ့သို့ ကြီးနေရမည်။ အကြောင်းရင်းမှာ ကွန်ပျူတာစနစ် အခန်းကန့်ရှိ ​အကြောင်းအရာကို လျှို့ဝှက် volume ထဲ ကော်ပီးကူးပြီး လျှို့ဝှက် OS စနစ် ဖန်တီးရမည် ဖြစ်​​​သောကြောင့် ဖြစ်သည်။\n\n\nလျှို့ဝှက် OS စနစ် ဖန်တီးမှု လုပ်ငန်းစဉ်ကို ဆက်လက် မလုပ်ဆောင်နိုင်ပါ။</entry>
<entry lang="my" key="OPENFILES_DRIVER">ဒရိုင်ဘာကို volume ကို အဆုံးမသတ်နိုင်ပါ။ volume ထဲရှိ အချို့ဖိုင်များကို ဖွင့်နေသေး၌ ဖြစ်မည်။</entry>
<entry lang="my" key="OPENFILES_LOCK">Volume ကို ပိတ်ထား၌ မရပါ။ Volume ထဲ၌ ဖွင့်နေဆဲ ဖိုင်များ ရှိနေသေးသည်။ ထိုကြောင့်၊ ၄င်းကို အဆုံးသတ်၍ မရပါ။</entry>
<entry lang="my" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt သည် volume ကို ပိတ်​ထား၍ မရပါ၊ အဘယ်ကြောင့် ဆိုသော် ၄င်းကို ကွန်ပျူတာစနစ်က (သို့) အပ္ပလီကေးရှင်း () က အသုံးပြုနေသည်။\n\nVolume ကို အတင်း အဆုံးသတ်လိုသလား?</entry>
<entry lang="my" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt သည် volume ကို ပိတ်​ထား၍ မရပါ၊ အဘယ်ကြောင့် ဆိုသော် ၄င်းကို ကွန်ပျူတာစနစ်က (သို့) အပ္ပလီကေးရှင်း () က အသုံးပြုနေသည်။\n\nVolume ကို အတင်း အဆုံးသတ်လိုသလား?</entry>
<entry lang="my" key="OPEN_VOL_TITLE">VeraCrypt Volume တစ်ခု ရွေးချယ်ရန်</entry>
<entry lang="my" key="OPEN_TITLE">ဖိုင် လမ်းကြောင်းနှင့် ဖိုင်အမည် သတ်မှတ်ရန်</entry>
<entry lang="my" key="SELECT_PKCS11_MODULE">PKCS #11 လိုင်ဘရာရီ ရွေးချယ်ရန်</entry>
@@ -614,7 +612,7 @@
<entry lang="my" key="FAVORITE_PIM_CHANGED">ဤ Volume ကို စနစ်၏ အနှစ်သက်ဆုံးအဖြစ် စာရင်းသွင်းထားပြီး ၎င်း၏ PIM ကို ပြောင်းလဲထားပါသည်။\nသင်သည် VeraCrypt အား စနစ်၏ အနှစ်သက်ဆုံး အစိတ်အပိုင်းများဖွဲ့စည်းပုံကို အလိုအလျောက် အပ်ဒိတ်လုပ်စေချင်ပါသလား (စီမံအုပ်ချုပ်သူ အခွင့်ထူးများ လိုအပ်ပါသည်)။\n\nကျေးဇူးပြု၍ သင်က မလုပ်စေချင်ပါဟု ဖြေပါက စနစ်၏ အနှစ်သက်ဆုံးကို သင်ကိုယ်တိုင် အပ်ဒိတ်လုပ်ရမည်ကို သတိပြုပါ။</entry>
<entry lang="my" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">အရေးကြီးချက် - အကယ်၍ VeraCrypt ဆယ်တင်​ရေး အခွေကို သင် မဖျက်ဆီးပါက၊သင့် ကွန်ပျူတာစနစ် အခန်းကန့်/drive ကို စကားဝှက် အဟောင်းဖြင့် (VeraCrypt ဆယ်တင်ရေး အခွေကို ထည့်၊ စကားဝှက်ကို ရေးထည့်ပြီး) စာဝှက်ဖြည်နိုင်မည် ဖြစ်သည်။ VeraCrypt ဆယ်ဆင်ရေး အခွေကို ဖန်တီးပြီး အဟောင်းကို ဖျက်ဆီးလိုက်ပါ။\n\nVeraCrypt ဆယ်တင်ရေး ​အခွေသစ် တစ်ခုကို သင် ဖန်တီးလိုသလား?</entry>
<entry lang="my" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">သင့် VeraCrypt ဆယ်တင်ရေး ​အခွေသည် ယခင် အယ်လဂိုရီသမ်ကို သုံးစွဲနေဆဲဖြစ်သည်ကို သတိပြုပါ။ အကယ်၍ ယခင်က အယ်လဂိုရီသမ်သည် လုံခြုံမှုမရှိဟု ယူဆပါက၊ VeraCrypt ဆယ်တင်ရေး အခွေသစ် တစ်ခု ဖန်တီးပြီး အဟောင်းကို ဖျက်ဆီးလိုက်ပါ။\n\nVeraCrypt ပျက်စီးဒေတာပြန်ဖော်ဓာတ်ပြားကို သင်သည် ဖန်တီးလိုပါသလား?</entry>
<entry lang="my" key="KEYFILES_NOTE">VeraCrypt သည် ကီးဖိုင်ပါ အကြောင်းအရာများကို အပြောင်းအလဲ မလုပ်ပါ။ သင်သည် ကီးဖိုင် တစ်ခုပို၍ ရွေးချယ်နိုင်သည် (ဖိုင်ဟောင်းလျှင်လည်း ကိစ္စမရှိပါ)။ အကယ်၍ ဖိုင်တွဲ တစ်ခုကို သင် ထည့်သွင်းလျှင်၊ ၄င်း၌ တွေ့ရှိသော လျှို့ဝှက်မထားသည့် ဖိုင်အားလုံးကို ကီးဖိုင်များအဖြင့် အသုံးပြုလိမ့်မည်။ လုံခြုံရေး တိုကင်များ သို့မဟုတ် စမတ်ကတ်များ၌ သိမ်းဆည်းထားသော ကီးဖိုင်များကို ရွေးချယ်ရန် (သို့မဟုတ် တိုကင်များ (သို့) စမတ်ကတ်များ အတွက် ကီးဖိုင်များကို တင်သွင်းရန်) 'တိုကင် ဖိုင်များ ထည့်သွင်းရန်' ကို နှိပ်ပါ။</entry>
<entry lang="my" key="KEYFILES_NOTE">မည်သည့် ဖိုင်အမျိုးအစားမဆို (ဥပမာ - .mp3, .jpg, .zip, .avi) VeraCrypt ကီးဖိုင် အဖြစ် အသုံးပြုနိုင်သည်။ VeraCrypt သည် ကီးဖိုင်ပါ အကြောင်းအရာများကို အပြောင်းအလဲ မလုပ်ပါ။ သင်သည် ကီးဖိုင် တစ်ခုပို၍ ရွေးချယ်နိုင်သည် (ဖိုင်ဟောင်းလျှင်လည်း ကိစ္စမရှိပါ)။ အကယ်၍ ဖိုင်တွဲ တစ်ခုကို သင် ထည့်သွင်းလျှင်၊ ၄င်း၌ တွေ့ရှိသော လျှို့ဝှက်မထားသည့် ဖိုင်အားလုံးကို ကီးဖိုင်များအဖြင့် အသုံးပြုလိမ့်မည်။ လုံခြုံရေး တိုကင်များ သို့မဟုတ် စမတ်ကတ်များ၌ သိမ်းဆည်းထားသော ကီးဖိုင်များကို ရွေးချယ်ရန် (သို့မဟုတ် တိုကင်များ (သို့) စမတ်ကတ်များ အတွက် ကီးဖိုင်များကို တင်သွင်းရန်) 'တိုကင် ဖိုင်များ ထည့်သွင်းရန်' ကို နှိပ်ပါ။</entry>
<entry lang="my" key="KEYFILE_CHANGED">ကီးဖိုင်(များ) ကို အောင်မြင်စွာ ထည့်သွင်းလိုက်ပြီ/ဖယ်ရှားလိုက်ပြီ။</entry>
<entry lang="my" key="KEYFILE_EXPORTED">ကီးဖိုင် တင်ပို့လိုက်ပြီ။</entry>
<entry lang="my" key="PKCS5_PRF_CHANGED">ခေါင်းစီး ကီး ဆင်းသက်မှု အယ်လဂိုရီသမ်ကို အောင်မြင်စွာ သတ်မှတ်လိုက်ပြီ။</entry>
@@ -731,7 +729,7 @@
<entry lang="my" key="DLL_FILES">လိုင်ဘရာရီ အခန်းများ</entry>
<entry lang="my" key="FORMAT_NTFS_STOP">NTFS ​ဖော်မက် ဆက်လုပ်၍ မရပါ</entry>
<entry lang="my" key="CANT_MOUNT_VOLUME">Volume ကို အစပျိုး၍ မရပါ။</entry>
<entry lang="my" key="CANT_UNMOUNT_VOLUME">Volume ကို အဆုံးသတ်၍ မရပါ။</entry>
<entry lang="my" key="CANT_DISMOUNT_VOLUME">Volume ကို အဆုံးသတ်၍ မရပါ။</entry>
<entry lang="my" key="FORMAT_NTFS_FAILED">ဝင်းဒိုးသည် volume ကို NTFS ဖော်မက်ချ၍ မရပါ။\n\nဖြစ်နိုင်ပါက အခြား ဖိုင်စနစ် အမျိုးအစား တစ်ခုခုကို ရွေးပြီး ထပ်ကြိုးစားပါ။ တနည်းအားဖြင့်၊ volume ကို ဖော်မက်မချပဲ ('ဘာမျှမရှိ' ဖိုင်စနစ်အဖြစ် ရွေးပြီး)၊ ဤအညွှန်းမှ ထွက်ပါ၊ volume ကို အစပျိုးပြီး၊ အစပျိုးထားသော volume ကို ဖော်မက်ချရန် ကွန်ပျူတာစနစ် တစ်ခု (သို့) အခြား ကိရိယာ တစ်ခုကို သုံးပါ (volume သည် ဆက်ပြီး စာဝှက်နေမည် ဖြစ်သည်)</entry>
<entry lang="my" key="FORMAT_NTFS_FAILED_ASK_FAT">ဝင်းဒိုးသည် volume ကို NTFS အဖြစ် ဖော်မက်ချ၍ မရပါ။\n\nဤ volume ကို FAT အဖြစ် ဖော်မက်ချလိုသလား?</entry>
<entry lang="my" key="DEFAULT">ပုံမှန်</entry>
@@ -773,7 +771,7 @@
<entry lang="my" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">ချို့ယွင်းချက် တစ်ခုသည် VeraCrypt ကို အခန်းကန့် စာဝှက်၍ မရနိုင်အောင် တားဆီးနေသည်။ ယခင်က သတင်း​ပို့ထားသော ပြဿနာများကို ပြင်ဆင်ပြီး ထပ်ကြိုးစားပါ။ အကယ်၍ ပြဿနာ ဆက်ရှိနေပါက၊ အောက်ပါ အဆင့်များကို လိုက်နာခြင်းဖြင့် အ​ကူအညီ ရနိုင်သည်။</entry>
<entry lang="my" key="INPLACE_ENC_GENERIC_ERR_RESUME">ချို့ယွင်းချက် တစ်ခုသည် VeraCrypt ကို အခန်းကန့် စာဝှက်သည့် လုပ်ငန်းစဉ် ပြန်စ၍ မရနိုင်အောင် တားဆီးနေသည်။\n\nယခင်က သတင်း​ပို့ထားသော ပြဿနာများကို ပြင်ဆင်ပြီး လုပ်ငန်းစဉ်ကို ပြန်စပါ။ Volume ကို အပြည့်အ၀ စာဝှက်ခြင်း မပြီးမချင်း ၄င်းကို ​အစပျိုး၍ ရမည် မဟုတ်ပါ။</entry>
<entry lang="my" key="INPLACE_DEC_GENERIC_ERR">ပြဿနာတစ်ခုက VeraCrypt အား volume ကို ပြန်မဖြည်နိုင်အောင် တားဆီးထားသည်။ ကျေးဇူးပြု၍ ယခင်က အစီရင်ခံထားသော ပြဿနာများကို ပြင်ကြည့်ပြီးနောက် ဖြစ်နိုင်ပါက ထပ်မံကြိုးစားပါ။</entry>
<entry lang="my" key="CANT_UNMOUNT_OUTER_VOL">ချို့ယွင်းချက် - ပြင်ပ volume ကို အဆုံးသတ်၍ မရပါ!\n\nVolume သည် ၄င်း၌ ပါသော ဖိုင်များ (သို့) ဖိုင်တွဲများကို ပရိုဂရမ် တစ်ခုခု (သို့) ကွန်ပျူတာစနစ် တစ်ခုခုက အသုံးပြုနေပါက အဆုံးသတ်၍ ရမည် မဟုတ်ပါ။\n\nVolume ထဲမှ ဖိုင်များ (သို့) ဖိုင်တွဲများကို သုံးစွဲနေသော ပရိုဂရမ်ကို ပိတ်ပြီး ထပ်ကြိုးစားပါ။</entry>
<entry lang="my" key="CANT_DISMOUNT_OUTER_VOL">ချို့ယွင်းချက် - ပြင်ပ volume ကို အဆုံးသတ်၍ မရပါ!\n\nVolume သည် ၄င်း၌ ပါသော ဖိုင်များ (သို့) ဖိုင်တွဲများကို ပရိုဂရမ် တစ်ခုခု (သို့) ကွန်ပျူတာစနစ် တစ်ခုခုက အသုံးပြုနေပါက အဆုံးသတ်၍ ရမည် မဟုတ်ပါ။\n\nVolume ထဲမှ ဖိုင်များ (သို့) ဖိုင်တွဲများကို သုံးစွဲနေသော ပရိုဂရမ်ကို ပိတ်ပြီး ထပ်ကြိုးစားပါ။</entry>
<entry lang="my" key="CANT_GET_OUTER_VOL_INFO">ချို့ယွင်းချက် - ပြင်ပ volume နှင့်ပါတ်သက်သော အချက်အလက် မရနိုင်ပါ!\n\nVolume ကို ဆက်လက် မဖန်တီးနိုင်ပါ။</entry>
<entry lang="my" key="CANT_ACCESS_OUTER_VOL">ချို့ယွင်းချက် - ပြင်ပ volume ကို မဖွင့်နိုင်ပါ! Volume ကို ဆက်လက် မဖန်တီးနိုင်ပါ။</entry>
<entry lang="my" key="CANT_MOUNT_OUTER_VOL">ချို့ယွင်းချက် - ပြင်ပ volume ကို အစပျိုး၍ မရပါ! Volume ကို ဆက်လက် မဖန်တီးနိုင်ပါ။</entry>
@@ -815,7 +813,7 @@
<entry lang="my" key="SECONDARY_KEY_SIZE_LRW">Tweak ကီး အရွယ်ပမာဏ (LRW စနစ်)</entry>
<entry lang="my" key="BITS">bits</entry>
<entry lang="my" key="BLOCK_SIZE">အကန့် အရွယ်ပမာဏ</entry>
<entry lang="my" key="KDF">KDF</entry>
<entry lang="my" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="my" key="PKCS5_ITERATIONS">PKCS-5 ထပ်မံ ရေတွက်ခြင်း</entry>
<entry lang="my" key="VOLUME_CREATE_DATE">Volume ဖန်တီးလိုက်ပြီ</entry>
<entry lang="my" key="VOLUME_HEADER_DATE">ခေါင်းစီး နောက်ဆုံး ပြုပြင်မှု</entry>
@@ -857,7 +855,7 @@
<entry lang="my" key="TC_INSTALLER_IS_RUNNING">VeraCrypt ဆော့ဗ်ဝဲ ထည့်သွင်းစနစ်သည် လောလောဆယ် ဤစက်ပေါ်၌ အလုပ်လုပ်နေပြီး စက်ထဲ ထည့်သွင်းရန် ပြင်ဆင်နေသည် (သို့) VeraCrypt မွမ်းမံချက်ကို လုပ်ဆောင်နေသည်။ ရှေ့ဆက် မသွားမီ၊ ၄င်းပြီးဆုံးသည့်အထိ စောင့်ဆိုင်းပါ (သို့) ပိတ်လိုက်ပါ။ အကယ်၍ ပိတ် မရပါက ကွန်ပြူတာကို ပြန်ဖွင့်ပါ။</entry>
<entry lang="my" key="INSTALL_FAILED">စက်ထဲ ထည့်သွင်းမှု မအောင်မြင်ပါ။</entry>
<entry lang="my" key="UNINSTALL_FAILED">ဖယ်ထုတ်မှု မအောင်မြင်ပါ။</entry>
<entry lang="my" key="DIST_PACKAGE_CORRUPTED">ဖြန့်ချီသော ဖိုင်ထုတ် ပျက်စီးနေသည်။ ထပ်မံ၍ ဒေါင်းလုဒ် ဆွဲယူပါ (တရား၀င် VeraCrypt ကွန်ရက် စာမျက်နှာ https://veracrypt.jp ၌ ရယူရန် ပိုသင့်လျှော်သည်)။ </entry>
<entry lang="my" key="DIST_PACKAGE_CORRUPTED">ဖြန့်ချီသော ဖိုင်ထုတ် ပျက်စီးနေသည်။ ထပ်မံ၍ ဒေါင်းလုဒ် ဆွဲယူပါ (တရား၀င် VeraCrypt ကွန်ရက် စာမျက်နှာ https://www.veracrypt.fr ၌ ရယူရန် ပိုသင့်လျှော်သည်)။ </entry>
<entry lang="my" key="CANNOT_WRITE_FILE_X">%s ဖိုင်ကို ရေး၍ မရပါ</entry>
<entry lang="my" key="EXTRACTING_VERB">ဖြည်ချနေသည်</entry>
<entry lang="my" key="CANNOT_READ_FROM_PACKAGE">ဒေတာများကို ဖိုင်ထုတ်ထဲမှ ဖတ်၍ မရပါ။</entry>
@@ -884,7 +882,7 @@
<entry lang="my" key="INSTALL_COMPLETED">စက်ထဲ ထည့်သွင်းမှု ပြီးစီးသွားပြီ။</entry>
<entry lang="my" key="CANT_CREATE_FOLDER">ဖိုင်တွဲ '%s' ကို ဖန်တီး၍ မရပါ</entry>
<entry lang="my" key="CLOSE_TC_FIRST">VeraCrypt device ဒရိုင်ဘာကို ရပ်တန့်၍ မရပါ။\n\n ဦးစွာ VeraCrypt ဝင်းဒိုး အားလုံးကို ပိတ်ပါ။ အကယ်၍ အလုပ်မဖြစ်ပါက၊ ၀င်းဒိုးကို ပြန်ဖွင့်ပြီး ထပ်ကြိုးစားပါ။</entry>
<entry lang="my" key="UNMOUNT_ALL_FIRST">VeraCrypt ကို စက်ထဲ မထည့်သွင်းမီ (သို့) ဖယ်ထုတ်ခြင်း မပြုမီ VeraCrypt volumes အားလုံကို အဆုံးသတ်ပါ။</entry>
<entry lang="my" key="DISMOUNT_ALL_FIRST">VeraCrypt ကို စက်ထဲ မထည့်သွင်းမီ (သို့) ဖယ်ထုတ်ခြင်း မပြုမီ VeraCrypt volumes အားလုံကို အဆုံးသတ်ပါ။</entry>
<entry lang="my" key="UNINSTALL_OLD_VERSION_FIRST">တိမ်ကောနေပြီ ဖြစ်သော VeraCrypt ဗားရှင်း တစ်ခုကို ဤစက်ထဲတွင် သုံးစွဲနေသည်။ VeraCrypt ဗားရှင်း မသွင်းမီ ၄င်းကို ဖယ်ထုတ်ရမည် ဖြစ်သည်။\n\n ဤစာပုံးကို သင် ပိတ်သည့်အခါ၊ ဗားရှင်း အဟောင်၏ ဆော့ဗ်ဝဲ ဖယ်ထုတ်စနစ် ပွင့်လာလိမ့်မည်။ VeraCrypt ကို ဖယ်ထုတ်နေစဉ် မည်သည့် volume ကိုမျှ စာဝှက်ပေးမည် မဟုတ်ပါ။ VeraCrypt ဗားရှင်း အဟောင်းကို ဖယ်ထုတ်ပြီးနောက်၊ ဗားရှင်းအသစ်ကို ထည့်သွင်းပါ။</entry>
<entry lang="my" key="REG_INSTALL_FAILED">Registery ရေးသွင်းချက်ထဲ ထည့်သွင်းမှု မအောင်မြင်ပါ</entry>
<entry lang="my" key="DRIVER_INSTALL_FAILED">Device ဒရိုင်ဘာ ထည့်သွင်းမှု မအောင်မြင်ပါ။ ဝင်းဒိုးကို ပြန်ဖွင့်ပြီး VeraCrypt ကို စက်ထဲ ထည့်သွင်းရန် ထပ်ကြိုးစားပါ။</entry>
@@ -905,7 +903,7 @@
<entry lang="my" key="MINUTES">မိနစ်</entry>
<entry lang="my" key="SECONDS">စက္ကန့်</entry>
<entry lang="my" key="OPEN">ဖွင့်ရန်</entry>
<entry lang="my" key="UNMOUNT">အဆုံးသတ်ရန်</entry>
<entry lang="my" key="DISMOUNT">အဆုံးသတ်ရန်</entry>
<entry lang="my" key="SHOW_TC">VeraCrypt ကို ပြန်ရန်</entry>
<entry lang="my" key="HIDE_TC">VeraCrypt ကို ဖျောက်ထားရန်</entry>
<entry lang="my" key="TOTAL_DATA_READ">အစပျိုး ကတည်းက ဖတ်ရှုသော ဒေတာများ</entry>
@@ -942,7 +940,7 @@
<entry lang="my" key="ENTER_HEADER_BACKUP_PASSWORD">အရံသင့် ဖိုင်ထဲ၌ သိမ်းဆည်းထားသော ခေါင်းစီးအတွက် စကားဝှက် ရေးထည့်ပါ</entry>
<entry lang="my" key="KEYFILE_CREATED">ကီးဖိုင်ကို အောင်မြင်စွာ ဖန်တီးလိုက်ပြီ။</entry>
<entry lang="my" key="KEYFILE_INCORRECT_NUMBER">သင် ပေးသွင်းခဲ့သော စကားဝှက်သော့ဖိုင် အရေအတွက်မှာ မမှန်ကန်ပါ။</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be at least 64 bytes.</entry>
<entry lang="my" key="KEYFILE_INCORRECT_SIZE">စကားဝှက်သော့ဖိုင် အရွယ်အစားသည် ၆၄ နှင့် ၁၀၄၈၅၇၆ ဘိုက် အကြား ရှိရမည်။</entry>
<entry lang="my" key="KEYFILE_EMPTY_BASE_NAME">ကျေးဇူးပြု၍ စကားဝှက်သော့ဖိုင်(များ)ကို ထုတ်လုပ်ရန် အမည်တစ်ခု ရိုက်ထည့်ပါ</entry>
<entry lang="my" key="KEYFILE_INVALID_BASE_NAME">စကားဝှက်သော့ဖိုင်(များ)၏ အခြေအမည်မှာ မမှန်ကန်ပါ</entry>
<entry lang="my" key="KEYFILE_ALREADY_EXISTS">စကားဝှက်သော့ဖိုင် '%s' သည် ရှိပြီးသားဖြစ်သည်။\nသင်သည် ၎င်းကို ထပ်ရေးလိုပါသလား။ ထပ်မရေးလိုပါ ဟု သင်ဖြေပါက ထုတ်လုပ်သည့်လုပ်ငန်းစဉ်ကို ရပ်လိုက်ပါမည်။</entry>
@@ -977,7 +975,7 @@
<entry lang="my" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - ကွန်ပျူတာစနစ် စိတ်ကြိုက် Volumes များ</entry>
<entry lang="my" key="SYS_FAVORITES_HELP_LINK">ကွန်ပျူတာစနစ် စိတ်ကြိုက် volumes ဆိုသည်မှာ အဘယ်နည်း?</entry>
<entry lang="my" key="SYS_FAVORITES_REQUIRE_PBA">ကွန်ပျူတာစနစ် အခန်းကန့်/drive ကို စာဝှက်ထားပုံ မပေါ်ပါ။\n\nကွန်ပျူတာစနစ် စိတ်ကြိုက် volumes ကို စက်မဖွင့်မီ အတည်ပြု စကားဝှက်ဖြင့်သာ အစပျိုးနိုင်မည် ဖြစ်သည်။ ထို့ကြောင့်၊ ကွန်ပျူတာစနစ် စိတ်ကြိုက် volumes များကို ဖွင့်ရန်၊ ကွန်ပျူတာစနစ် အခန်းကန့်/drive ကို အရင် စာဝှက်ထားရန် လိုသည်။</entry>
<entry lang="my" key="UNMOUNT_FIRST">ဆက်မလုပ်မီ volume ကို အဆုံးသတ်လိုက်ပါ။</entry>
<entry lang="my" key="DISMOUNT_FIRST">ဆက်မလုပ်မီ volume ကို အဆုံးသတ်လိုက်ပါ။</entry>
<entry lang="my" key="CANNOT_SET_TIMER">ချို့ယွင်းချက် - အချိန် သတ်မှတ်၍ မရပါ။</entry>
<entry lang="my" key="IDPM_CHECK_FILESYS">ဖိုင်စနစ် စစ်ဆေးရန်</entry>
<entry lang="my" key="IDPM_REPAIR_FILESYS">ဖိုင်စနစ် ပြုပြင်ရန်</entry>
@@ -1011,11 +1009,11 @@
<entry lang="my" key="NO_SYSENC_PARTITION_SELECTED">ရွေးထားသော အခန်းကန့် မရှိပါ။\n\nစက်မတက်မီ အတည်ပြုချက် လိုအပ်သော အဆုံးသတ်ထားသော အခန်းကန့် တစ်ခုကို ရွေးချယ်ရန် 'Device ရွေးချယ်ရန်' ကို နှိပ်ပါ (ဥပမာ အားဖြင့်၊ အခြား OS ၏ စာဝှက်ထားသော drive ထဲ၌ ရှိသော အခန်းကန့် တစ်ခု၊ (သို့) အခြား OS ၏ စာဝှက်ထားသော အခန်းကန့်)။ \n\n မှတ်ချက် - ရွေးချယ်ထားသော အခန်းကန့်ကို စက်မတက်မီ အတည်ပြုစရာ မလိုပဲ ပုံမှန် VeraCrypt volume ကဲ့သို့ အစပျိုးနိုင်သည်။ ဤအချက်သည် အရန်သင့် သိမ်းဆည်းရန် (သို့) လုပ်​ငန်းလည်ပတ်မှုများ ပြုပြင်ရန် အသုံး၀င်သည်။</entry>
<entry lang="my" key="CONFIRM_SAVE_DEFAULT_KEYFILES">သတိပေးချက် - အကယ်၍ ကီးဖိုင်များကို သတ်မှတ်ပြီး ဖွင့်ထားပါက၊ ၄င်းကီးဖိုင်များကို အသုံးမပြုသော volumes များကို အစပျိုးနိုင်မည် မဟုတ်ပါ။ ထို့ကြောင့်၊ ပုံမှန် ကီးဖိုင်များကို ဖွင့်ပြီးပါက၊ ယင်းကဲ့သို့ volumes မျိုးကို အစပျိုးသည့်အခါတိုင်း အမှန်ခြစ်ကွက်ထဲမှ 'ကီးဖိုင်များ သုံးရန်' ကို မရွေးရန် သတိပြပါ။\n\nရွေးချယ်ထားသော ကီးဖိုင်/ဖိုင်လမ်းကြောင်းများကို ပုံမှန်အတိုင်း သိမ်းဆည်းရန် သေချာသလား? </entry>
<entry lang="my" key="HK_AUTOMOUNT_DEVICES">အလိုလို-အစပျိုးသော Devices များ</entry>
<entry lang="my" key="HK_UNMOUNT_ALL">အားလုံးကို အဆုံးသတ်ရန်</entry>
<entry lang="my" key="HK_DISMOUNT_ALL">အားလုံးကို အဆုံးသတ်ရန်</entry>
<entry lang="my" key="HK_WIPE_CACHE">ကေ့ချ်ကို ရှင်းလင်းရန်</entry>
<entry lang="my" key="HK_UNMOUNT_ALL_AND_WIPE">အားလုံးကို အဆုံးသတ်ပါ၊ ကေ့ချ်ကို ရှင်းလင်းပါ</entry>
<entry lang="my" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">အားလုံးကို အတင်း အဆုံးသတ်ပါ၊ ကေ့ချ်ကို ရှင်းလင်းပါ</entry>
<entry lang="my" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">အားလုံးကို အတင်း အဆုံးသတ်ပါ၊ ကေ့ချ်ကို ရှင်းလင်းပါ &amp; ထွက်ပါ</entry>
<entry lang="my" key="HK_DISMOUNT_ALL_AND_WIPE">အားလုံးကို အဆုံးသတ်ပါ၊ ကေ့ချ်ကို ရှင်းလင်းပါ</entry>
<entry lang="my" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">အားလုံးကို အတင်း အဆုံးသတ်ပါ၊ ကေ့ချ်ကို ရှင်းလင်းပါ</entry>
<entry lang="my" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">အားလုံးကို အတင်း အဆုံးသတ်ပါ၊ ကေ့ချ်ကို ရှင်းလင်းပါ &amp; ထွက်ပါ</entry>
<entry lang="my" key="HK_MOUNT_FAVORITE_VOLUMES">စိတ်ကြိုက် Volumes များ အစပျိုးရန်</entry>
<entry lang="my" key="HK_SHOW_HIDE_MAIN_WINDOW">ပင်မ VeraCrypt ဝင်းဒိုးကို ပြပါ/ဝှက်ပါ</entry>
<entry lang="my" key="PRESS_A_KEY_TO_ASSIGN">(ဤနေရာကို နှိပ်ပြီး ကီးတစ်ခု နှိပ်ပါ)</entry>
@@ -1027,14 +1025,14 @@
<entry lang="my" key="PAGING_FILE_CREATION_PREVENTED">ဆက်သွယ်​ရေး ဖိုင် ဖန်တီးမှုကို တားမြစ်ထားသည်။\n\n၀င်းဒိုး ပြဿနာကြောင့်၊ ကွန်ပျူတာစနစ် မဟုတ်သော (ကွန်ပျူတာ စိတ်ကြိုက် volumes) VeraCrypt volumes များထဲ၌ ဆက်သွယ်ရေး ဖိုင်များကို မ​ရှာနိုင်ပါ။ VeraCrypt သည် ဆက်သွယ်ရေး ဖိုင်များကို စာဝှက်ထားသော ကွန်ပျူတာစနစ် အခန်းကန့်/drive ၌သာ ပံ့ပိုးထားသည်။</entry>
<entry lang="my" key="SYS_ENC_HIBERNATION_PREVENTED">ချို့ယွင်းချက် (သို့) မညီမျှမှု တစ်ခုသည် VeraCrypt က hibernation ဖိုင်ကို စာဝှက်၍ မရအောင် တားမြစ်နေသည်။ ထို့ကြောင့်၊ hibernation လုပ်ခြင်းကို တားမြစ်ထားသည်။\n\nမှတ်ချက် - ကွန်ပျူတာ တစ်လုံး hibernate လုပ်သည့်အခါ (သို့မဟုတ် ဓါတ်အား ​​​​​​​​​​ချွေတာရေးစနစ်၌ ထားသည့်အခါ)၊ ၄င်း၏ ကွန်ပျူတာစနစ် မှတ်ဉာဏ်ထဲမှ အကြောင်းအရာကို ကွန်ပျူတာစနစ် drive ၌ တည်ရှိသော hibernation သိုလှောင်ရေး ဖိုင်ထဲသို့ ရေးသားထားသည်။ VeraCrypt သည် RAM ထဲ၌ ဖွင့်ထားသော စာဝှက်စနစ် ကီးများနှင့် အ​ထိခိုက်မခံသော ဖိုင်များကို hibernation သိုလှောင်ရေး ဖိုင်ထဲ၌ စာဝှက်မထားပဲ သိမ်းဆည်းထားမည် မဟုတ်ပါ။</entry>
<entry lang="my" key="HIDDEN_OS_HIBERNATION_PREVENTED">Hibernation ပြုလုပ်ခြင်းကို တားမြစ်ထားသည်။\n\nVeraCrypt သည် အပို boot အခန်းကန့် တစ်ခု ပါရှိသော လျှို့ဝှက် OS စနစ်၌ hibernation ကို ထောက်ပံ့မပေးပါ။ ၄င်း boot အခန်းကန့်သည် မျက်လှည့် စနစ်နှင့် လျှို့ဝှက် စနစ်တို့က ဝေမျှထားသည်ကို သတိပြုပါ။ ထို့ကြောင့်၊ hibernation ပြုလုပ်ရာမှ ပြန်ဖွင့်သည့်အခါ ဒေတာ ယိုဖိတ်မှုများနှင့် ပြဿနာများကို ကာကွယ်နိုင်ရန်၊ VeraCrypt သည် လျှို့ဝှက် ကွန်ပျူတာစနစ်ကို ဝေမျှသော boot အခန်းကန့်ထဲ ရေးသားခြင်း မပြုနိုင်ရန်နှင့် hibernating မလုပ်နိုင်ရန် တားဆီးပေးမည် ဖြစ်သည်။</entry>
<entry lang="my" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">%c အဖြစ် အစပျိုးထားသော VeraCrypt volume ကို အဆုံးသတ်ထားသည်။</entry>
<entry lang="my" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt volumes များကို အဆုံးသတ်ထားသည်။</entry>
<entry lang="my" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt volumes များကို အဆုံးသတ်ထားပြီး စကားဝှက် ကေ့ချ်ကို ရှင်းလင်းထားသည်။</entry>
<entry lang="my" key="SUCCESSFULLY_UNMOUNTED">အောင်မြင်စွာ အဆုံးသတ်ထားသည်</entry>
<entry lang="my" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">%c အဖြစ် အစပျိုးထားသော VeraCrypt volume ကို အဆုံးသတ်ထားသည်။</entry>
<entry lang="my" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt volumes များကို အဆုံးသတ်ထားသည်။</entry>
<entry lang="my" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt volumes များကို အဆုံးသတ်ထားပြီး စကားဝှက် ကေ့ချ်ကို ရှင်းလင်းထားသည်။</entry>
<entry lang="my" key="SUCCESSFULLY_DISMOUNTED">အောင်မြင်စွာ အဆုံးသတ်ထားသည်</entry>
<entry lang="my" key="CONFIRM_BACKGROUND_TASK_DISABLED">သတိပေးချက် - အကယ်၍ VeraCrypt နောက်ခံ လုပ်ဆောင်မှုကို ပိတ်ထားပါက၊ အောက်ပါ လုပ်ဆောင်ချက်များကို ပိတ်ထားမည် ဖြစ်သည် -\n\n၁) အထူးကီးများ\n၂) အလိုလို-အဆုံးသတ်ရန် (ဥပမာ - ခေတ္တ ပိတ်ထားခြင်း၊ လွတ်နေသော host device ဖယ်ရှားခြင်း၊ အချိန်ကုန်သွားခြင်း၊ စသဖြင့်။)\n၃) စိတ်ကြိုက် volumes များကို အလိုလို-အစပျိုးခြင်း၄) သတိပေးချက်များ (ဥပမာ - လျှို့ဝှက် volume ဖျက်ဆီးမှုကို တားမြစ်သည့်အခါ)\n၅) အမှိုက်ပုံး အိုင်ကွန်ပုံ\nမှတ်ချက် - VeraCrypt ၏ အမှိုက်ပုံး အိုင်ကွန်ပုံကို ညာဖက် နှိပ်ခြင်းဖြင့်၊ 'ထွက်ရန်' ကို ရွေးခြင်းဖြင့် နောက်ခံ လုပ်ဆောင်ချက်ကို အချိန်မရွေး ပိတ်နိုင်သည်။\n\nVeraCrypt ၏ နောက်ခံ လုပ်ဆောင်ချက်ကို အမြဲတမ်း ပိတ်ရန် သေချာသလား?</entry>
<entry lang="my" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">သတိပေးချက် - အကယ်၍ ဤရွေးစရာကို ပိတ်ထားပါက၊ ဖွင့်ထားသော ဖိုင်များ/ဖိုင်တွဲများ ပါရှိသော volumes များကို အလိုလို-အဆုံးသတ်နိုင်မည် မဟုတ်ပါ။\n\nဤရွေးစရာကို သင် ပိတ်ထားရန် အလိုရှိသလား?</entry>
<entry lang="my" key="WARN_PREF_AUTO_UNMOUNT">သတိပေးချက် - ဖွင့်ထားသော ဖိုင်များ/ဖိုင်တွဲများ ပါရှိသော volumes များကို အလိုလို-အဆုံးသတ်နိုင်မည် မဟုတ်ပါ။\n\nဤအချက်ကို တားမြစ်ရန်၊ ​အောက်ပါ ရွေးစရာကို အညွှန်း ၀င်းဒိုးထဲ၌ ဖွင့်ထားပါ - အကယ်၍ 'volume ၌ ဖွင့်ထားသော ဖိုင်များ/ဖိုင်တွဲများ ရှိနေလျှင်ပင် အတင်းအကျပ် အလိုလို-အဆုံးသက်ပါ'</entry>
<entry lang="my" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">သတိပေးချက် - ဘက်ထရီ အားနည်းလာသည့်အခါ၊ ကွန်ပျူတာသည် ဓါတ်အား ​ချွေတာရေး စနစ်ထဲ ၀င်လာသည့်နှင့် အလုပ်လုပ်နေသော အပ္ပလီကေးရှင်းများထံ သင့်လျှော်သော စာတမ်းများ ပေးပို့မှု ရပ်ဆိုင်းမည် ဖြစ်သည်။ ထို့ကြောင့်၊ ယင်းကဲ့သို့ အခြေအနေများတွင် VeraCrypt သည် volumes များကို အလိုလို-အဆုံးသတ်နိုင်မည် မဟုတ်ပါ။</entry>
<entry lang="my" key="CONFIRM_NO_FORCED_AUTODISMOUNT">သတိပေးချက် - အကယ်၍ ဤရွေးစရာကို ပိတ်ထားပါက၊ ဖွင့်ထားသော ဖိုင်များ/ဖိုင်တွဲများ ပါရှိသော volumes များကို အလိုလို-အဆုံးသတ်နိုင်မည် မဟုတ်ပါ။\n\nဤရွေးစရာကို သင် ပိတ်ထားရန် အလိုရှိသလား?</entry>
<entry lang="my" key="WARN_PREF_AUTO_DISMOUNT">သတိပေးချက် - ဖွင့်ထားသော ဖိုင်များ/ဖိုင်တွဲများ ပါရှိသော volumes များကို အလိုလို-အဆုံးသတ်နိုင်မည် မဟုတ်ပါ။\n\nဤအချက်ကို တားမြစ်ရန်၊ ​အောက်ပါ ရွေးစရာကို အညွှန်း ၀င်းဒိုးထဲ၌ ဖွင့်ထားပါ - အကယ်၍ 'volume ၌ ဖွင့်ထားသော ဖိုင်များ/ဖိုင်တွဲများ ရှိနေလျှင်ပင် အတင်းအကျပ် အလိုလို-အဆုံးသက်ပါ'</entry>
<entry lang="my" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">သတိပေးချက် - ဘက်ထရီ အားနည်းလာသည့်အခါ၊ ကွန်ပျူတာသည် ဓါတ်အား ​ချွေတာရေး စနစ်ထဲ ၀င်လာသည့်နှင့် အလုပ်လုပ်နေသော အပ္ပလီကေးရှင်းများထံ သင့်လျှော်သော စာတမ်းများ ပေးပို့မှု ရပ်ဆိုင်းမည် ဖြစ်သည်။ ထို့ကြောင့်၊ ယင်းကဲ့သို့ အခြေအနေများတွင် VeraCrypt သည် volumes များကို အလိုလို-အဆုံးသတ်နိုင်မည် မဟုတ်ပါ။</entry>
<entry lang="my" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">သင်သည် အခန်းကန့်/volume တစ်ခုခု စာဝှက်နေမှု လုပ်ငန်းစဉ်အတွက် အချိန်သတ်မှတ်ထားပြီး။ ၄င်းလုပ်ငန်းစဉ်သည် မပြီးဆုံးသေးပါ။\n\nလုပ်ငန်းစဉ်ကို ယခု ပြန်စတင်ရန် အလိုရှိသလား?</entry>
<entry lang="my" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">သင်သည် အခန်းကန့်/volume တစ်ခုခု စာဝှက်နေမှု (သို့) စာဝှက်ဖြည်မှု လုပ်ငန်းစဉ်အတွက် အချိန်သတ်မှတ်ထားပြီး။ ၄င်းလုပ်ငန်းစဉ်သည် မပြီးဆုံးသေးပါ။\n\nလုပ်ငန်းစဉ်ကို ယခု ပြန်စတင်ရန် အလိုရှိသလား?</entry>
<entry lang="my" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">လက်ရှိ အချိန်သတ်မှတ်ထားသော ကွန်ပျူတာစနစ် မဟုတ်သည့် အခန်းကန့်များ/volumes များ စာဝှက်သည့် လုပ်ငန်းစဉ်များကို ပြန်စတင်ရန် အချက်ပေး စေလိုသလား?</entry>
@@ -1065,7 +1063,7 @@
<entry lang="my" key="SYS_AUTOMOUNT_DISABLED">သင့်ကွန်ပျူတာစနစ်သည် အလိုလို-အစပျိုး volume အသစ်များအတွက် ပြုပြင်ဖန်တီးထားခြင်း မရှိပါ။ Device-အခြေခံ VeraCrypt volumes များကို အစပျိုးရန် မဖြစ်နိုင်ပါ။ အောက်ပါ ညွှန်ကြားချက်ကို လုပ်ဆောင်ပြိး ကွန်ပျူတာစနစ်ကို ပြန်ဖွင့်ခြင်းဖြင့် အလိုလို-အစပျိုးခြင်းကို ဖွင့်ထားနိုင်သည်။\n\nmountvol.exe /E</entry>
<entry lang="my" key="SYS_ASSIGN_DRIVE_LETTER">('Control Panel' &gt; 'System and Maintenance' &gt; 'Administrative Tools' - 'Create and format hard disk partitions') ကို ဆက်လက် မလုပ်​ဆောင်မီ အခန်းကန့်/device အတွက် drive အက္ခရာ တစ်ခု သတ်မှတ်ပါ။\n\n၄င်းသည် OS စနစ်၏ တောင်းဆိုချက် တစ်ခု ဖြစ်သည်။</entry>
<entry lang="my" key="MOUNT_TC_VOLUME">VeraCrypt volume ကို အစပျိုးရန်</entry>
<entry lang="my" key="UNMOUNT_ALL_TC_VOLUMES">VeraCrypt volume အားလုံးကို အဆုံးသတ်ရန်</entry>
<entry lang="my" key="DISMOUNT_ALL_TC_VOLUMES">VeraCrypt volume အားလုံးကို အဆုံးသတ်ရန်</entry>
<entry lang="my" key="UAC_INIT_ERROR">VeraCrypt သည် စီမံခန့်ခွဲသူ လုပ်ပိုင်ခွင့်များ မရရှိနိုင်ပါ။</entry>
<entry lang="my" key="ERR_ACCESS_DENIED">OS စနစ်ထဲ ၀င်ရောက်မှု ငြင်းပယ်ခံရသည်။\n\n ဖြစ်နိုင်ချ အကြောင်းရင်း - OS စနစ်သည် အချို့ ဖိုင်တွဲများ၊ ဖိုင်များနှင့် devices ကို သင် ရေးသားနိုင်/ဖတ်ရှုနိုင်ရန်အတွက် အရေး/အဖတ် ခွင့်ပြုချက် (သို့မဟုတ် စီမံခန့်ခွဲသူ လုပ်ပိုင်ခွင့်များ) ကို တောင်းဆိုထားသည်။ ပုံမှန်အားဖြင့်၊ စီမံခန့်ခွဲသူ လုပ်ပိုင်ခွင့်များ မရထားသော သုံးစွဲသူကို ၄င်း၏Documents ဖိုင်တွဲကို ဖန်တီးခွင့်၊ ဖတ်ရှုခွင့်၊ ပြုပြင်ခွင့် မရှိပါ။</entry>
<entry lang="my" key="SECTOR_SIZE_UNSUPPORTED">ချို့ယွင်းချက် - ဤ drive သည် ထောက်ပံ့မထာသော sector အရွယ်အစားကို သုံးစွဲထားသည်။\n\n လောလောဆယ်၌ 4096 bytes ထက် များသော sectors များကို သုံးစွဲသော drives ပေါ်၌ အခန်းကန့်/device-အခြေခံ volumes များကို ဖန်တီး၍ မရပါ။ သို့သော်၊ ယင်းကဲ့သို့ drives များတွင် ဖိုင်-အခြေခံ volumes (သိမ်းဆည်းခန်းများ) ကို သင် ဖန်တီးနိုင်သည်။</entry>
@@ -1231,7 +1229,7 @@
<entry lang="my" key="HIDDEN_OS_CREATION_PREINFO_HELP">နောက်အဆင့်များတွင်၊ VeraCrypt သည် ကွန်ပျူတာစနစ် အခန်းကန့်ထဲရှိ အကြောင်းအရာများကို လျှို့ဝှက် volume ထဲ ကော်ပီကူးခြင်းဖြင့် လျှို့ဝှက် OS စနစ်ကို ဖန်တီးသွားမည် ဖြစ်သည် (ကော်ပီးကူးနေသည့် ဒေတာများကို မျက်လှည့် OS စနစ်အတွက် အသုံးပြုမည့် ကီးနှင့် မတူသော စာဝှက်စနစ် ကီးတစ်ခုဖြင့် ချက်ခြင်း စာဝှက်ပေးမည် ဖြစ်သည်)။\n\nစက်မတက်မီ အခြေအနေ (Windows မဖွင့်မီ) တွင် လုပ်ငန်းစဉ်ကို လုပ်ဆောင်သွားမည် ဖြစ်ပြီး ပြီးစီးရန် (ကွန်ပျူတာ အခန်းကန့် အရွယ်အစားနှင့် စွမ်းဆောင်ရည်တို့အပေါ် မူတည်ပြီး) အ​ချိန်အတော်ကြာ ယူမည် ဖြစ်သည် - နာရီ အတော်ကြာ (သို့) ရက်အတန်ကြာ ဖြစ်နိုင်သည်။\n\nဤလုပ်ငန်းစဉ်ကို သင် ရပ်ဆိုင်းနိုင်သည်။ ကွန်ပျူတာကို စက်ပိတ်ထားနိုင်သည်။ OS စနစ်ကို စဖွင့်ပြီး လုပ်ငန်းစဉ်ကို ပြန်စနိုင်သည်။ သို့သော်၊ ၄င်းကို ရပ်ဆိုင်းလိုက်ပါက၊ ကွန်ပျူတာစနစ် ကော်ပီ လုပ်ခြင်း လုပ်ငန်းစဉ် တစ်ခုလုံးကို အစမှ ပြန်လည် စတင်ရမည် ဖြစ်သည် (အဘယ်ကြောင့် ဆိုသော် ကွန်ပျူတာစနစ် အခန်းကန့်ရှိ အကြောင်းအရာသည် ကိုယ်ပွား ပြုလုပ်နေစဉ် ပြောင်းလဲမည် မဟုတ်သောကြောင့် ဖြစ်သည်)</entry>
<entry lang="my" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">လျှို့ဝှက် OS စနစ် ဖန်တီးမှု လုပ်ငန်းစဉ် တစ်ခုလုံးကို ဖျက်သိမ်းရန် အလိုရှိသလား?\n\nမှတ်ချက် - အကယ်၍ ၄င်းကို ယခု ဖျက်သိမ်းပါက လုပ်ငန်းစဉ်ကို ပြန်စနိုင်မည် မဟုတ်ပါ။</entry>
<entry lang="my" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">ကွန်ပျူတာစနစ် စာဝှက်ခြင်း အကြို စမ်းသပ်ချက်ကို ဖျက်သိမ်းလိုသလား?</entry>
<entry lang="my" key="BOOT_PRETEST_FAILED_RETRY">VeraCrypt စနစ် စာဝှက်ခြင်း အကြို စမ်းသပ်ချက် မအောင်မြင်ပါ။ သင် ထပ်မံ ကြိုးစားလိုသလား?\n\nအကယ်၍ 'မဟုတ်ပါ' ကို ရွေးချယ်ပါက၊ စက်မတင်မီ စစ်ဆေးအတည်ပြုချက် အစိတ်အပိုင်းကို ဖယ်ထုတ်သွားမည် ဖြစ်သည်။\n\nမှတ်ချက်များ - \n\n- အကယ်၍ Windows မတက်မီ VeraCrypt Boot Loader က စကားဝှက် ရေးထည့်ရန် မတောင်းပါက၊ သင့် OS စနစ်သည် ၄င်းကို ထည့်သွင်းထားသော drive မှ boot မတက်၍ ဖြစ်မည်။ ဤအချက်အတွက် ပံ့ပိုးမထားပါ။\n\n- အကယ်၍ သင်သည် AES ကို မသုံးပဲ စာဝှက်စနစ် အယ်လဂိုရီသမ် တစ်ခုကို အသုံးပြုပြီး အကြို စမ်းသပ်ချက် မအောင်မြင်ပါက (စကားဝှက် ရေးထည့်သော်လည်း)၊ စနစ်တကျ စီမံရေးသားခြင်း မပြုသော ဒရိုင်ဘာ တစ်ခုကြောင့် ဖြစ်နိုင်သည်။ 'မဟုတ်ပါ' ကို ရွေးပြီး၊ ကွန်ပျူတာစနစ် အခန်းကန့်/drive ကို ထပ်မံ စာဝှက်ကြည့်ပါ၊ သို့သော် AES စာဝှက်စနစ် အယ်လဂိုရီသမ်ကို အသုံးပြုပါ (၄င်း၌ မှတ်ဉာဏ် လုပ်အပ်ချက် အနိမ့်ဆုံး ရှိသည်)။\n\nဖြစ်နိုင်ချေ အကြောင်းရင်းများနှင့် ဖြေရှင်းချက်များအတွက်၊ https://veracrypt.jp/en/Troubleshooting.html ကို လေ့လာပါ။</entry>
<entry lang="my" key="BOOT_PRETEST_FAILED_RETRY">VeraCrypt စနစ် စာဝှက်ခြင်း အကြို စမ်းသပ်ချက် မအောင်မြင်ပါ။ သင် ထပ်မံ ကြိုးစားလိုသလား?\n\nအကယ်၍ 'မဟုတ်ပါ' ကို ရွေးချယ်ပါက၊ စက်မတင်မီ စစ်ဆေးအတည်ပြုချက် အစိတ်အပိုင်းကို ဖယ်ထုတ်သွားမည် ဖြစ်သည်။\n\nမှတ်ချက်များ - \n\n- အကယ်၍ Windows မတက်မီ VeraCrypt Boot Loader က စကားဝှက် ရေးထည့်ရန် မတောင်းပါက၊ သင့် OS စနစ်သည် ၄င်းကို ထည့်သွင်းထားသော drive မှ boot မတက်၍ ဖြစ်မည်။ ဤအချက်အတွက် ပံ့ပိုးမထားပါ။\n\n- အကယ်၍ သင်သည် AES ကို မသုံးပဲ စာဝှက်စနစ် အယ်လဂိုရီသမ် တစ်ခုကို အသုံးပြုပြီး အကြို စမ်းသပ်ချက် မအောင်မြင်ပါက (စကားဝှက် ရေးထည့်သော်လည်း)၊ စနစ်တကျ စီမံရေးသားခြင်း မပြုသော ဒရိုင်ဘာ တစ်ခုကြောင့် ဖြစ်နိုင်သည်။ 'မဟုတ်ပါ' ကို ရွေးပြီး၊ ကွန်ပျူတာစနစ် အခန်းကန့်/drive ကို ထပ်မံ စာဝှက်ကြည့်ပါ၊ သို့သော် AES စာဝှက်စနစ် အယ်လဂိုရီသမ်ကို အသုံးပြုပါ (၄င်း၌ မှတ်ဉာဏ် လုပ်အပ်ချက် အနိမ့်ဆုံး ရှိသည်)။\n\nဖြစ်နိုင်ချေ အကြောင်းရင်းများနှင့် ဖြေရှင်းချက်များအတွက်၊ https://www.veracrypt.fr/en/Troubleshooting.html ကို လေ့လာပါ။</entry>
<entry lang="my" key="SYS_DRIVE_NOT_ENCRYPTED">ကွန်ပျူတာစနစ် အခန်းကန့်/drive သည် (တစ်၀က်တစ်ပိုင်း ဖြစ်စေ၊ အပြည့်အ၀ ဖြစ်စေ) စာဝှက်ထားပုံ မပေါ်ပါ။</entry>
<entry lang="my" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">ကွန်ပျူတာစနစ် အခန်းကန့်/drive ကို (တစ်၀က်တစ်ပိုင်း ဖြစ်စေ၊ အပြည့်အ၀ ဖြစ်စေ) စာဝှက်ထားသည်။\n\nဆက်လက် မလုပ်ဆောင်မီ ကွန်ပျူတာစနစ် အခန်းကန့်/drive ကို စာဝှက်ဖြည်ပါ။ ထိုသို့ ပြုလုပ်ရန်၊ ပင်မ VeraCrypt ၀င်းဒိုးရှိ မီနူးဘားမှ 'System' &gt; 'Permanently Decrypt System Partition/Drive' ကို ရွေးပါ။</entry>
<entry lang="my" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">ကွန်ပျူတာစနစ် အခန်းကန့်/drive ကို (တစ်၀က်တစ်ပိုင်း ဖြစ်စေ၊ အပြည့်အ၀ ဖြစ်စေ) စာဝှက်ပြီးသည့်အခါ၊ VeraCrypt (သို့ရာတွင် ၄င်းကို အဆင့်မြှင့်နိုင်ပြီး အလားတူ ဗားရှင်းကို ပြန်လည် ထည့်သွင်းနိုင်သည်) ကို အဆင့်လျှော့၍ မရပါ။</entry>
@@ -1287,7 +1285,7 @@
<entry lang="my" key="TOKEN_DATA_OBJECT_LABEL">ဖိုင်အမည်</entry>
<entry lang="my" key="BOOT_PASSWORD_CACHE_KEYBOARD_WARNING">အရေးကြီးချက် - စက်မတက်မီ အတည်​ပြု စကားဝှက်ကို standard US ကီးဘုတ် လေးအောက်ဖြင့် အမြဲ ရေးထည့်ရသည်။ ထို့ကြောင့်၊ အခြား ကီးဘုတ် လေးအောက်ကို အသုံးပြုပြီး စကားဝှက် ရေးထည့်ရသော volume ကို စက်မတက်မီ အတည်ပြု စကားဝှက်ဖြင့် (ဤအရာသည် VeraCrypt ၏ ပရိုဂရမ် အမှား မဟုတ်ပါ) အစပျိုးရန် မဖြစ်နိုင်ချေ။ ယင်းကဲ့သို့ volume မျိုးကို စက်မတက်မီ အတည်ပြု စကားဝှက်ဖြင့် အစပျိုးနိုင်ရန်၊ အောက်ပါ အဆင့်များကို လိုက်နာပါ -\n\n၁) 'ဖိုင် ရွေးရန်' (သို့) 'Device ရွေးရန်' ကို နှိပ်ပြီး volume ကို ရွေးပါ။\n၂) 'Volumes များ' &gt; 'Volume စကားဝှက် ပြောင်းရန်' ကို ရွေးချယ်ပါ။\n၃) Volume ၏ လက်ရှိ စကားဝှက်ကို ရေးထည့်ပါ။\n၄) Windows taskbar မှ ဘာသာစကား ဘား အိုင်ကွန်ပုံကို နှိပ်ပြီးဖြစ်စေ၊ 'EN English (United States)' ကို ရွေးပြီး ဖြစ်စေ ကီးဘုတ် လေးအောက်ကို English (US) အဖြစ် ပြောင်းပါ။\n၅) VeraCrypt ၏ စကားဝှက်အသစ် နေရာကွက်တွင်၊ စက်မတက်မီ အတည်ပြု စကားဝှက်ကို ရေးထည့်ပါ။\n၆) စကားဝှက်အသစ်ကို အတည်ပြုရန် ထပ်မံ ရေးထည့်ပြီး 'ကောင်းပြီ' ခလုတ်ကို နှိပ်ပါ။\nသတိပေးချက် - အကယ်၍ အောက်ပါ အဆင့်များကို လိုက်နာပါက၊ volume စကားဝှက်ကို US ကီး​ဘုတ် လေးအောက် သုံးပြီး အမြဲ ရေးထည့်ရမည် ဖြစ်သည် (၄င်းကို စက်မတက်မီ အခြေအနေတွင်သာ အလိုအလျောက် အတည်ပြုသည်)။</entry>
<entry lang="my" key="SYS_FAVORITES_KEYBOARD_WARNING">ကွန်ပျူတာစနစ် စိတ်ကြိုက် volumes များသည် စက်မတက်မီ အတည်ပြု စကားဝှက်ကို သုံးပြီး အစပျိုးမည် ဖြစ်သည်။ အကယ်၍ ကွန်ပျူတာစနစ် စိတ်ကြိုက် volume တစ်ခုခုသည် အခြား စကားဝှက်တစ်ခုကို အသုံးပြုပါက၊ ၄င်းကို အစပျိုးနိုင်မည် မဟတ်ပါ။</entry>
<entry lang="my" key="SYS_FAVORITES_ADMIN_ONLY_INFO">ကွန်ပျူတာစနစ် စိတ်ကြိုက် volumes များကို မထိခိုက်စေရန် အကယ်၍ သာမန် VeraCrypt volume လုပ်ဆောင်ချက်များကို ('အားလုံး အဆုံးသတ်ရန်'၊ အလိုလို-အဆုံးသတ်ရန်၊ စသဖြင့်) တားဆီး​လိုပါက၊ ရွေးစရာ 'စီမံခန့်ခွဲသူကိုသာ ကြည့်ရှုခွင့်ပြုရန်နှင့် VeraCrypt ထဲရှိ ကွန်ပျူတာစနစ် စိတ်ကြိုက် volumes များကို အဆုံးသတ်ရန်' ကို ဖွင့်ပါ။ ထို့အပြင်၊ VeraCrypt သည် စီမံခန့်ခွဲသူ လုပ်ပိုင်ခွင့်မပါပဲ သုံးစွဲသည့်အခါ၊ ကွန်ပျူတာစနစ် စိက်ကြိုက် volumes များသည် VeraCrypt ပင်ပ အပ္ပလီကေးရှင်း ၀င်းဒိုးရှိ 'Unmount All'အခွင့်အရေးများ (Windows Vista နှင့် နောက်ထွက်တွင် ပုံမှန် ပါရှိသည်) မပါဘဲ ဖွင့်သည့်အခါ VeraCrypt အသုံးချဆော့ဖ်ဝဲလ်အဓိကဝင်းဒိုးထဲရှိ drive အက္ခရာစာရင်းတွင် ဖေါ်ပြလာမည် မဟုတ်ပါ။</entry>
<entry lang="my" key="SYS_FAVORITES_ADMIN_ONLY_INFO">ကွန်ပျူတာစနစ် စိတ်ကြိုက် volumes များကို မထိခိုက်စေရန် အကယ်၍ သာမန် VeraCrypt volume လုပ်ဆောင်ချက်များကို ('အားလုံး အဆုံးသတ်ရန်'၊ အလိုလို-အဆုံးသတ်ရန်၊ စသဖြင့်) တားဆီး​လိုပါက၊ ရွေးစရာ 'စီမံခန့်ခွဲသူကိုသာ ကြည့်ရှုခွင့်ပြုရန်နှင့် VeraCrypt ထဲရှိ ကွန်ပျူတာစနစ် စိတ်ကြိုက် volumes များကို အဆုံးသတ်ရန်' ကို ဖွင့်ပါ။ ထို့အပြင်၊ VeraCrypt သည် စီမံခန့်ခွဲသူ လုပ်ပိုင်ခွင့်မပါပဲ သုံးစွဲသည့်အခါ၊ ကွန်ပျူတာစနစ် စိက်ကြိုက် volumes များသည် VeraCrypt ပင်ပ အပ္ပလီကေးရှင်း ၀င်းဒိုးရှိ 'Dismount All'အခွင့်အရေးများ (Windows Vista နှင့် နောက်ထွက်တွင် ပုံမှန် ပါရှိသည်) မပါဘဲ ဖွင့်သည့်အခါ VeraCrypt အသုံးချဆော့ဖ်ဝဲလ်အဓိကဝင်းဒိုးထဲရှိ drive အက္ခရာစာရင်းတွင် ဖေါ်ပြလာမည် မဟုတ်ပါ။</entry>
<entry lang="my" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">အရေးကြီးချက် - အကယ်၍ ဤရွေးစရာကို ဖွင့်ထားပြီး VeraCrypt ၌ စီမံခန့်ခွဲသူ လုပ်ပိုင်ခွင့် မရှိပါက၊ အစပျိုးထားသော ကွန်ပျူတာစနစ် စိတ်ကြိုက် volumes များကို VeraCrypt အပ္ပလီကေးရှင်းတွင် မြင်တွေ့ရမည် မဟုတ်ပါ၊ ၄င်းတို့ကို အဆုံးသတ်နိုင်မည် မဟုတ်ပါ။ ထို့ကြောင့်၊ ကွန်ပျူတာစနစ် စိတ်ကြိုက် volume ကို အဆုံးသတ်လိုပါက၊ VeraCrypt အိုင်ကွန် (Start မီနူးထဲ) ၌ ညာဖက်နှိပ်ပြီး ပထမဦးဆုံး 'စီမံခန့်ခွဲသူ အဖြစ် ဖွင့်ရန်' ကို ရွေးချယ်ပါ။ အလားတူ ကန့်သတ်ချက်သည် 'အားလုံး အဆုံးသတ်ရန်' ဖန်ရှင်၊ 'အလိုလို-အဆုံးသတ်ရန်' ဖန်ရှင်များ၊ 'အားလုံး အဆုံးသတ်ရန်' အထူးကီးများ၊ စသည်တို့၌ အကျုံးဝင်သည်။</entry>
<entry lang="my" key="SETTING_REQUIRES_REBOOT">ဤချိန်ညှိချက်သည် OS စနစ်ကို ပြန်ဖွင့်သည့်အခါ၌သာ သက်ရောက်မှု ရှိမည် ဖြစ်သည်။</entry>
<entry lang="my" key="COMMAND_LINE_ERROR">Command line ပိုင်းခြားစိစစ်နေစဉ် ချို့ယွင်းချက်။</entry>
@@ -1308,8 +1306,8 @@
<entry lang="my" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">(စွမ်းဆောင်ရည် အားနည်းသော) Benchmark ရလဒ်များကို ထိခိုက်​​စေသော threads အရေအတွက်ကို လောလောဆယ် ကန့်သတ်ထားသည်။\n\nProcessor(များ) ၏ စွမ်းရည် အပြည့်အ၀ကို အသုံးချရန်၊ 'ချိန်ညှိချက်များ' &gt; 'လုပ်ဆောင်ချက်' ကို ရွေးချယ်ပြီး၊ သက်ဆိုင်သော ရွေးစရာကို ပိတ်ထားပါ။</entry>
<entry lang="my" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">အခန်းကန့်/drive ကို ရေးသားနိုင်မှု ပိတ်ထားချက်ကို VeraCrypt ဖြင့် ပိတ်လိုသလား?</entry>
<entry lang="my" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">သတိပေးချက် - ဤချိန်ညှိချက်သည် စွမ်းဆောင်ရည်ကို နိမ့်ကျစေနိုင်သည်။\n\nဤချိန်ညှိချက်ကို သင်တကယ် အသုံးပြုလိုသလား?</entry>
<entry lang="my" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">သတိပေးချက် - VeraCrypt volume ကို အလိုလို-အဆုံးသတ်ထားသည်</entry>
<entry lang="my" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">အစပျိုးထားသော volume တစ်ခုပါသော device တစ်ခုကို ရုပ်ပိုင်းဆိုင်ရာ မဖယ်ရှားမီ (သို့) စက်မပိတ်မီ၊ VeraCrypt ဖြင့် volume ကို ပထမဦးဆုံး အမြဲတမ်း အဆုံးသတ်ရမည် ဖြစ်သည်။\n\nကေဘယ်ကြိုး၊ drive (enclosure) တို့ ပြတ်တောင်းပြတ်တောင်း ဖြစ်နေမှုကြောင့် မမျှော်လင့်သော အလိုလို အဆုံးသတ်မှု ဖြစ်ပွားနေသည်။</entry>
<entry lang="my" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">သတိပေးချက် - VeraCrypt volume ကို အလိုလို-အဆုံးသတ်ထားသည်</entry>
<entry lang="my" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">အစပျိုးထားသော volume တစ်ခုပါသော device တစ်ခုကို ရုပ်ပိုင်းဆိုင်ရာ မဖယ်ရှားမီ (သို့) စက်မပိတ်မီ၊ VeraCrypt ဖြင့် volume ကို ပထမဦးဆုံး အမြဲတမ်း အဆုံးသတ်ရမည် ဖြစ်သည်။\n\nကေဘယ်ကြိုး၊ drive (enclosure) တို့ ပြတ်တောင်းပြတ်တောင်း ဖြစ်နေမှုကြောင့် မမျှော်လင့်သော အလိုလို အဆုံးသတ်မှု ဖြစ်ပွားနေသည်။</entry>
<entry lang="my" key="UNSUPPORTED_TRUECRYPT_FORMAT">ဤ volume ကို TrueCrypt %x.%x ဖြင့် ဖန်တီးခဲ့သည်။ သို့သော် VeraCrypt သည် TrueCrypt 6.x/7.x စီးရီးဖြင့် ဖန်တီးထားသော TrueCrypt volume များကိုသာ ပံ့ပိုးပါသည်။</entry>
<entry lang="my" key="TEST">စမ်းသပ်ရန်</entry>
<entry lang="my" key="KEYFILE">ကီးဖိုင်</entry>
@@ -1455,7 +1453,7 @@
<entry lang="my" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">အစပျိုးထားသော Volume အားလုံးကို စိတ်ကြိုက်စာရင်းထဲ ထည့်ရန်…</entry>
<entry lang="my" key="TASKICON_PREF_MENU_ITEMS">အလုပ် အိုင်ကွန် မီနူး ပါဝင်မှုများ</entry>
<entry lang="my" key="TASKICON_PREF_OPEN_VOL">အစပျိုးထားသော Volume များကို ဖွင့်ပါ</entry>
<entry lang="my" key="TASKICON_PREF_UNMOUNT_VOL">အစပျိုးထားသော Volume များကို အဆုံးသတ်ပါ</entry>
<entry lang="my" key="TASKICON_PREF_DISMOUNT_VOL">အစပျိုးထားသော Volume များကို အဆုံးသတ်ပါ</entry>
<entry lang="my" key="DISK_FREE">နေရာလွတ် ရရှိနိုင်သည် - {0}</entry>
<entry lang="my" key="VOLUME_SIZE_HELP">ဖန်တီးမည့် ထည့်သွင်းစရာ၏ အရွယ်အစားကို သတ်မှတ်ဖော်ပြပါ။ volume တစ်ခု၏ အသေးဆုံး အရွယ်အစားမှာ ၂၉၂ KiB ဖြစ်ကြောင်း သတိပြုပါ။</entry>
<entry lang="my" key="LINUX_CONFIRM_INNER_VOLUME_CALC">သတိပေးချက် - သင်သည် ပြင်ပ volume အတွက် FAT မဟုတ်သည့် ဖိုင်စနစ်တစ်ခုကို ရွေးချယ်ထားသည်။\nဤကိစ္စရပ်တွင် VeraCrypt သည် လျှို့ဝှက် volume အတွက် အများဆုံး ခွင့်ပြုထားသော အရွယ်အစား အတိအကျကို မတွက်နိုင်သောကြောင့် ခန့်မှန်းခြေတစ်ခုကိုသာ အသုံးပြုမည်ဖြစ်ပြီး ၎င်းသည် မှားနိုင်ကြောင်း သတိပြုပါ။\nထို့ကြောင့် ပြင်ပ volume အတွက် သင့်တော်သော တန်ဖိုးကို အသုံးပြုရန်မှာ သင့်တာဝန်ဖြစ်သည်။\n\nရွေးချယ်ထားသော ဖိုင်စနစ်ကို ပြင်ပ volume အတွက် ဆက်လက် အသုံးပြုလိုပါသလား။</entry>
@@ -1485,14 +1483,14 @@
<entry lang="my" key="LINUX_DO_NOT_MOUNT">&amp;အစမပျိုးပါနှင့်</entry>
<entry lang="my" key="LINUX_MOUNT_AT_DIR">လမ်းညွှန်တွင် အစပျိုးပါ -</entry>
<entry lang="my" key="LINUX_SELECT">ရွေးချယ်ရန်…</entry>
<entry lang="my" key="LINUX_UNMOUNT_ALL_WHEN">ဤအချိန်တွင် Volume အားလုံးကို အဆုံးသတ်ပါ</entry>
<entry lang="my" key="LINUX_DISMOUNT_ALL_WHEN">ဤအချိန်တွင် Volume အားလုံးကို အဆုံးသတ်ပါ</entry>
<entry lang="my" key="LINUX_ENTERING_POWERSAVING">စနစ်သည် ပါဝါချွေတာရေးမုဒ်သို့ ဝင်ရောက်နေသည်</entry>
<entry lang="my" key="LINUX_LOGIN_ACTION">အသုံးပြုသူ ဝင်ရောက်သည့်အခါ ဆောင်ရွက်ရန် လုပ်ဆောင်ချက်များ</entry>
<entry lang="my" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">အဆုံးသတ်နေသော volume ၏ Explorer windows အားလုံးကို ပိတ်ပါ</entry>
<entry lang="my" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">အဆုံးသတ်နေသော volume ၏ Explorer windows အားလုံးကို ပိတ်ပါ</entry>
<entry lang="my" key="LINUX_HOTKEYS">အထူးကီးများ</entry>
<entry lang="my" key="LINUX_SYSTEM_HOTKEYS">စနစ်သုံး အထူးကီးများ</entry>
<entry lang="my" key="LINUX_SOUND_NOTIFICATION">အစပျိုးပြီးနောက်/အဆုံးသတ်ပြီးနောက် စနစ်အသိပေးချက်အသံကို ဖွင့်ပါ</entry>
<entry lang="my" key="LINUX_CONFIRM_AFTER_UNMOUNT">အဆုံးသတ်ပြီးနောက် အတည်ပြုမက်ဆေ့ချ်အကွက်ကို ပြသပါ</entry>
<entry lang="my" key="LINUX_CONFIRM_AFTER_DISMOUNT">အဆုံးသတ်ပြီးနောက် အတည်ပြုမက်ဆေ့ချ်အကွက်ကို ပြသပါ</entry>
<entry lang="my" key="LINUX_VC_QUITS">VeraCrypt ထွက်ပါပြီ</entry>
<entry lang="my" key="LINUX_OPEN_FINDER">အောင်မြင်စွာ အစပျိုးထားသော volume အတွက် Finder ဝင်းဒိုးကို ဖွင့်ပါ</entry>
<entry lang="my" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">kernel ကုဒ်ထည့်ထားသော ဝန်ဆောင်မှုများကို အသုံးပြုမှု ပယ်ဖျက်ထားမှသာ ဤဆက်တင် အကျိုးသက်ရောက်မှုရှိကြောင်း ကျေးဇူးပြု၍ သတိပြုပါ။</entry>
@@ -1507,7 +1505,7 @@
<entry lang="my" key="LINUX_MESSAGE_ON_MOUNT_AGAIN">\n\nနောက်တစ်ကြိမ် ထိုကဲ့သို့ volume ကို သင် အစပျိုးချိန်တွင် ဤမက်ဆေ့ချ်ကို ပြသလိုပါသလား။</entry>
<entry lang="my" key="LINUX_WARNING">သတိပေးချက်</entry>
<entry lang="my" key="LINUX_ERROR">ချို့ယွင်းချက်</entry>
<entry lang="my" key="LINUX_ONLY_TEXTMODE">ဤအပြင်အဆင်ကို လတ်တလောတွင် စာသားမုဒ်ဖြင့်သာ ပံ့ပိုးထားသည်။</entry>
<entry lang="my" key="LINUX_ONLY_TEXTMODE">ဤအပြင်အဆင်ကို လတ်တလောတွင် စာသားမုဒ်ဖြင့်သာ ပံ့ပိုးထားသည်။</entry>
<entry lang="my" key="LINUX_FREE_SPACE_ON_DRIVE">ဒရိုက်(ဗ်) {0}: ရှိ နေရာလွတ်မှာ {1} ဖြစ်သည်။</entry>
<entry lang="my" key="LINUX_DYNAMIC_NOTICE">သင့်ကွန်ပျူတာလည်ပတ်မှုစနစ်သည် နေရာလွတ်အစကတည်းက ဖိုင်များကို ခွဲဝေသတ်မှတ်မပေးပါက အများဆုံး လျှို့ဝှက် volume အရွယ်အစားသည် ပြင်ပ volume ရှိ နေရာလွတ် အရွယ်အစားထက် များစွာငယ်နိုင်ကြောင်း သတိပြုပါ။ ယင်းသည် VeraCrypt ရှိ ပြဿနာ မဟုတ်ဘဲ ကွန်ပျူတာလည်ပတ်မှုစနစ်၏ ကန့်သတ်ချက်တစ်ခုသာ ဖြစ်သည်။</entry>
<entry lang="my" key="LINUX_MAX_HIDDEN_SIZE">ဤ volume အတွက် လျှို့ဝှက် volume ၏ အကြီးဆုံး အရွယ်အစားမှာ {0} ဖြစ်သည်။</entry>
@@ -1524,13 +1522,12 @@
<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>
<entry lang="my" key="LINUX_VOL_DISMOUNTED">Volume {0} ကို အဆုံးသတ်လိုက်ပါပြီ။</entry>
<entry lang="my" key="LINUX_OOM">မမ်မိုရီ မကျန်တော့ပါ။</entry>
<entry lang="my" key="LINUX_CANT_GET_ADMIN_PRIV">စီမံအုပ်ချုပ်သူ အခွင့်ထူးများကို ရယူခြင်း မအောင်မြင်ပါ</entry>
<entry lang="my" key="LINUX_COMMAND_GET_ERROR">ညွှန်ကြားချက် {0} က ပြဿနာ {1} ကို ပြန်ပို့ပေးသည်။</entry>
<entry lang="my" key="LINUX_CMD_HELP">VeraCrypt Command Line အကူအညီ</entry>
<entry lang="my" key="LINUX_HIDDEN_FILES_PRESENT_IN_KEYFILE_PATH">\n\nသတိပေးချက်- စကားဝှက်သော့ဖိုင် လမ်းကြောင်းတစ်ခုတွင် လျှို့ဝှက်ဖိုင်များ ရှိနေသည်။ သင်သည် ၎င်းတို့ကို စကားဝှက်သော့ဖိုင်များအဖြစ် အသုံးပြုရန် လိုအပ်ပါက ၎င်းတို့၏ ဖိုင်အမည်များ၏ ရှေ့မှလာသော အက်ကို ဖယ်ရှားပါ။ လျှို့ဝှက်ဖိုင်များကို စနစ်ရွေးချယ်မှုများတွင် ဖွင့်ထားမှသာ မြင်နိုင်ပါသည်။</entry>
<entry lang="my" key="LINUX_HIDDEN_FILES_PRESENT_IN_KEYFILE_PATH">\n\nစကားဝှက်သော့ဖိုင် လမ်းကြောင်းတစ်ခုတွင် လျှို့ဝှက်ဖိုင်များ ရှိနေသည်။ သင်သည် ၎င်းတို့ကို စကားဝှက်သော့ဖိုင်များအဖြစ် အသုံးပြုရန် လိုအပ်ပါက ၎င်းတို့၏ ဖိုင်အမည်များ၏ ရှေ့မှလာသော အပြောက်ကို ဖယ်ရှားပါ။ လျှို့ဝှက်ဖိုင်များကို စနစ်ရွေးချယ်မှုများတွင် ဖွင့်ထားမှသာ မြင်နိုင်ပါသည်။</entry>
<entry lang="my" key="LINUX_EX2MSG_DEVICESECTORSIZEMISMATCH">သိုလှောင်စက်နှင့် VC volume အပိုင်း အရွယ်အစား လွဲနေသည်</entry>
<entry lang="my" key="LINUX_EX2MSG_ENCRYPTEDSYSTEMREQUIRED">volume က လက်ခံထားသော စနစ်ကို လည်ပတ်နေစဉ်တွင်သာ ဤလုပ်ဆောင်ချက်ကို ဆောင်ရွက်ရမည်။</entry>
<entry lang="my" key="LINUX_EX2MSG_INSUFFICIENTDATA">ဒေတာ အလုံအလောက် မရရှိနိုင်ပါ။</entry>
@@ -1555,7 +1552,7 @@
<entry lang="my" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">ပြဿနာ - ဒရိုက်(ဗ်)သည် ၅၁၂ ဘိုက် မဟုတ်သည့် အပိုင်းအရွယ်အစားကို အသုံးပြုသည်။\n\nသင့်ပလက်ဖောင်းပေါ်တွင် ရရှိနိုင်သော အစိတ်အပိုင်းများ၏ ကန့်သတ်ချက်များကြောင့် ဒရိုက်(ဗ်)တွင် အခန်းကန့်/စက်ပစ္စည်း လက်ခံထားရှိသော volume များကို မဖန်တီးနိုင်ပါ/အသုံးမပြုနိုင်ပါ။\n\nဖြစ်နိုင်ခြေရှိသော ဖြေရှင်းနည်းများ -\n- ဒရိုက်(ဗ်)ပေါ်တွင် ဖိုင်လက်ခံထားရှိသော volume (ထည့်စရာ) တစ်ခုကို ဖန်တီးပါ။\n- 512-byte အပိုင်းများပါသော ဒရိုက်(ဗ်)တစ်ခုကို သုံးပါ။\n- အခြားပလက်ဖောင်းပေါ်တွင် VeraCrypt ကို အသုံးပြုပါ။</entry>
<entry lang="my" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">လက်ခံဖိုင်/စက်ကို အသုံးပြုထားပြီး ဖြစ်သည်။</entry>
<entry lang="my" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Volume အပေါက် မရရှိနိုင်ပါ။</entry>
<entry lang="my" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt သည် macFUSE 2.5 နှင့်အထက် လိုအပ်သည်။</entry>
<entry lang="my" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt သည် OSXFUSE 2.5 နှင့်အထက် လိုအပ်သည်။</entry>
<entry lang="my" key="EXCEPTION_OCCURRED">ခြွင်းချက် ဖြစ်ပေါ်ခဲ့သည်</entry>
<entry lang="my" key="ENTER_PASSWORD">စကားဝှက် ရိုက်ထည့်ပါ</entry>
<entry lang="my" key="ENTER_TC_VOL_PASSWORD">VeraCrypt Volume စကားဝှက် ရေးထည့်ရန်</entry>
@@ -1570,126 +1567,8 @@
<entry lang="my" key="UNKNOWN_OPTION">အမည်မသိသော ရွေးချယ်မှု</entry>
<entry lang="my" key="VOLUME_LOCATION">Volume တည်နေရာ</entry>
<entry lang="my" key="VOLUME_HOST_IN_USE">သတိပေးချက် - Host ဖိုင်/device {0} ကို အသုံးပြုထားပြီးဖြစ်သည်။\n\n ဤအချက်ကို လျစ်လျူရှုခြင်းအားဖြင့် ကွန်ပျူတာစနစ် မတည်ငြိမ်မှု စသော မလိုလားအပ်သည့် ရလဒ်များ ဖြစ်ပေါ်စေနိုင်သည်။ Volume ကို အစမ​ပျိုးခင် host ဖိုင်/device ကို သုံးစွဲနေသည့် အက်ပလီကေးရှင်း အားလုံးကို ပိတ်ထားရမည်။\n\n ဆက်လက် အစပျိုးမလား။</entry>
<entry lang="my" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt ကို ယခင်က MSI ပက်ကေ့ချ်ဖြင့် ထည့်သွင်းခဲ့သောကြောင့် ပုံမှန် installer ဖြင့် အပ်ဒိတ်လုပ်၍မရပါ။\n\nသင်၏ VeraCrypt ထည့်သွင်းမှုကို အပ်ဒိတ်လုပ်ရန် MSI ပက်ကေ့ချ်ကို အသုံးပြုပါ။</entry>
<entry lang="my" key="IDC_USE_ALL_FREE_SPACE">ရရှိနိုင်သော နေရာလွတ်အားလုံးကို အသုံးပြုပါ</entry>
<entry lang="my" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">စနစ် partition/drive ကို ယခုအခါ မပံ့ပိုးတော့သော algorithm ဖြင့် ကုဒ်ဝှက်ထားသောကြောင့် VeraCrypt ကို အဆင့်မြှင့်၍မရပါ။\nကျေးဇူးပြု၍ VeraCrypt ကို အဆင့်မမြှင့်မီ သင့်စနစ်ကို ကုဒ်ဝှက်ဖြည်ပြီးနောက် တစ်ကြိမ်ပြန်၍ ကုဒ်ဝှက်ပါ။</entry>
<entry lang="my" key="LINUX_EX2MSG_TERMINALNOTFOUND">ပံ့ပိုးထားသော terminal application ကို ရှာမတွေ့ပါ၊ သင်သည် xterm၊ konsole သို့မဟုတ် gnome-terminal (dbus-x11 ဖြင့်) တစ်ခုခု လိုအပ်သည်။</entry>
<entry lang="my" key="IDM_MOUNT_NO_CACHE">Cache မပါဘဲ အစပျိုးပါ</entry>
<entry lang="my" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nဖောမတ်ပြန်မချဘဲ VeraCrypt volume တစ်ခုကို လက်ရှိအခြေအနေမှ တိုးချဲ့ပါ\n\n\nNTFS ဖြင့် ဖောမတ်ချထားသော volume အမျိုးအစားအားလုံး (container ဖိုင်များ၊ disk များနှင့် partition များ) ကို ပံ့ပိုးထားသည်။ တစ်ခုတည်းသော အခြေအနေမှာ VeraCrypt volume ၏ host drive သို့မဟုတ် host device တွင် နေရာလွတ်အလုံအလောက် ရှိရမည်ဖြစ်သည်။\n\nလျှို့ဝှက် volume ပါရှိသော ပြင်ပ volume တစ်ခုကို တိုးချဲ့ရန် ဤဆော့ဖ်ဝဲကို မသုံးပါနှင့်၊ အဘယ်ကြောင့်ဆိုသော် ၎င်းသည် လျှို့ဝှက် volume ကို ဖျက်ဆီးသောကြောင့်ဖြစ်သည်!\n</entry>
<entry lang="my" key="IDC_STEPSEXPAND">၁။ တိုးချဲ့ရန် VeraCrypt volume ကို ရွေးချယ်ပါ\n၂။ 'အစပျိုးရန်' ခလုတ်ကို နှိပ်ပါ</entry>
<entry lang="my" key="IDT_VOL_NAME">Volume: </entry>
<entry lang="my" key="IDT_FILE_SYS">ဖိုင်စနစ်: </entry>
<entry lang="my" key="IDT_CURRENT_SIZE">လက်ရှိအရွယ်အစား: </entry>
<entry lang="my" key="IDT_NEW_SIZE">အရွယ်အစားအသစ်: </entry>
<entry lang="my" key="IDT_NEW_SIZE_BOX_TITLE">Volume အရွယ်အစားအသစ် ထည့်ပါ</entry>
<entry lang="my" key="IDC_INIT_NEWSPACE">နေရာအသစ်ကို ကျပန်းဒေတာများဖြင့် ဖြည့်ပါ</entry>
<entry lang="my" key="IDC_QUICKEXPAND">အမြန်တိုးချဲ့ပါ</entry>
<entry lang="my" key="IDT_INIT_SPACE">နေရာအသစ် ဖြည့်ပါ: </entry>
<entry lang="my" key="EXPANDER_FREE_SPACE">Host drive တွင် %s နေရာလွတ် ရရှိနိုင်သည်</entry>
<entry lang="my" key="EXPANDER_HELP_DEVICE">ဤသည်မှာ device-based VeraCrypt volume ဖြစ်သည်။\n\nVolume အရွယ်အစားအသစ်ကို host device ၏ အရွယ်အစားအဖြစ် အလိုအလျောက် ရွေးချယ်ပါမည်။</entry>
<entry lang="my" key="EXPANDER_HELP_FILE">VeraCrypt volume ၏ အရွယ်အစားအသစ်ကို သတ်မှတ်ပါ (လက်ရှိအရွယ်အစားထက် အနည်းဆုံး %I64u KB ပိုကြီးရမည်)။</entry>
<entry lang="my" key="QUICK_EXPAND_WARNING">သတိပေးချက်- အောက်ပါအခြေအနေများတွင်သာ အမြန်တိုးချဲ့ခြင်းကို အသုံးပြုသင့်သည်-\n\n၁) ဖိုင် container တည်ရှိရာ device တွင် ထိလွယ်ရှလွယ်ဒေတာများ မပါဝင်ဘဲ သင်သည် ယုတ္တိတန်သော ငြင်းဆိုနိုင်စွမ်း မလိုအပ်ပါ။\n၂) ဖိုင် container တည်ရှိရာ device ကို လုံခြုံစွာနှင့် အပြည့်အဝ ကုဒ်ဝှက်ထားပြီးဖြစ်သည်။\n\nအမြန်တိုးချဲ့ခြင်းကို အသုံးပြုလိုကြောင်း သေချာပါသလား။</entry>
<entry lang="my" key="EXPANDER_STATUS_TEXT">အရေးကြီး- သင်၏မောက်စ်ကို ဤဝင်းဒိုးအတွင်းတွင် တတ်နိုင်သမျှ ကျပန်းရွှေ့ပါ။ ကြာကြာရွှေ့လေ ပိုကောင်းလေဖြစ်သည်။ ၎င်းသည် ကုဒ်ဝှက်သော့များ၏ ကုဒ်ဝှက်ခြင်းဆိုင်ရာ ခိုင်မာမှုကို သိသိသာသာ တိုးမြှင့်ပေးသည်။ ထို့နောက် volume ကို တိုးချဲ့ရန် 'ဆက်လုပ်ရန်' ကို နှိပ်ပါ။</entry>
<entry lang="my" key="EXPANDER_STATUS_TEXT_LEGACY">Volume ကို တိုးချဲ့ရန် 'ဆက်လုပ်ရန်' ကို နှိပ်ပါ။</entry>
<entry lang="my" key="EXPANDER_FINISH_ERROR">ချို့ယွင်းချက်- volume တိုးချဲ့ခြင်း မအောင်မြင်ပါ။</entry>
<entry lang="my" key="EXPANDER_FINISH_ABORT">ချို့ယွင်းချက်- အသုံးပြုသူမှ လုပ်ဆောင်ချက်ကို ပယ်ဖျက်လိုက်သည်။</entry>
<entry lang="my" key="EXPANDER_FINISH_OK">ပြီးပါပြီ။ Volume ကို အောင်မြင်စွာ တိုးချဲ့ပြီးဖြစ်သည်။</entry>
<entry lang="my" key="EXPANDER_CANCEL_WARNING">သတိပေးချက်- Volume တိုးချဲ့ခြင်း လုပ်ဆောင်နေသည်!\n\nယခုရပ်တန့်ပါက volume ပျက်စီးသွားနိုင်သည်။\n\nတကယ် ပယ်ဖျက်လိုပါသလား။</entry>
<entry lang="my" key="EXPANDER_STARTING_STATUS">Volume တိုးချဲ့ခြင်း စတင်နေသည် ...\n</entry>
<entry lang="my" key="EXPANDER_HIDDEN_VOLUME_ERROR">လျှို့ဝှက် volume ပါရှိသော ပြင်ပ volume တစ်ခုကို တိုးချဲ့၍မရပါ၊ အဘယ်ကြောင့်ဆိုသော် ၎င်းသည် လျှို့ဝှက် volume ကို ဖျက်ဆီးသောကြောင့်ဖြစ်သည်။\n</entry>
<entry lang="my" key="EXPANDER_SYSTEM_VOLUME_ERROR">VeraCrypt စနစ် volume တစ်ခုကို တိုးချဲ့၍မရပါ။</entry>
<entry lang="my" key="EXPANDER_NO_FREE_SPACE">Volume ကို တိုးချဲ့ရန် နေရာလွတ်အလုံအလောက် မရှိပါ</entry>
<entry lang="my" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">သတိပေးချက်- Container ဖိုင်သည် VeraCrypt volume ဧရိယာထက် ပိုကြီးနေသည်။ VeraCrypt volume ဧရိယာနောက်ရှိ ဒေတာများကို ထပ်ရေးပါမည်။\n\nဆက်လုပ်လိုပါသလား။</entry>
<entry lang="my" key="EXPANDER_WARNING_FAT">သတိပေးချက်- VeraCrypt volume တွင် FAT ဖိုင်စနစ် ပါဝင်သည်!\n\n VeraCrypt volume ကိုယ်တိုင်သာ တိုးချဲ့မည်ဖြစ်ပြီး ဖိုင်စနစ်ကိုမူ တိုးချဲ့မည်မဟုတ်ပါ။\n\nဆက်လုပ်လိုပါသလား။</entry>
<entry lang="my" key="EXPANDER_WARNING_EXFAT">သတိပေးချက်- VeraCrypt volume တွင် exFAT ဖိုင်စနစ် ပါဝင်သည်!\n\n VeraCrypt volume ကိုယ်တိုင်သာ တိုးချဲ့မည်ဖြစ်ပြီး ဖိုင်စနစ်ကိုမူ တိုးချဲ့မည်မဟုတ်ပါ။\n\nဆက်လုပ်လိုပါသလား။</entry>
<entry lang="my" key="EXPANDER_WARNING_UNKNOWN_FS">သတိပေးချက်- VeraCrypt volume တွင် အမည်မသိ သို့မဟုတ် ဖိုင်စနစ်မရှိသော ဖိုင်စနစ် ပါဝင်သည်!\n\n VeraCrypt volume ကိုယ်တိုင်သာ တိုးချဲ့မည်ဖြစ်ပြီး ဖိုင်စနစ်မှာမူ မပြောင်းလဲဘဲ ကျန်ရှိနေမည်ဖြစ်သည်။\n\nဆက်လုပ်လိုပါသလား။</entry>
<entry lang="my" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">Volume အရွယ်အစားအသစ်မှာ အလွန်ငယ်နေသည်၊ လက်ရှိအရွယ်အစားထက် အနည်းဆုံး %I64u KB ပိုကြီးရမည်။</entry>
<entry lang="my" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">Volume အရွယ်အစားအသစ်မှာ အလွန်ကြီးနေသည်၊ host drive တွင် နေရာအလုံအလောက်မရှိပါ။</entry>
<entry lang="my" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Host drive ရှိ အများဆုံးဖိုင်အရွယ်အစား %I64u MB ကို ကျော်လွန်သွားသည်။</entry>
<entry lang="my" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">ချို့ယွင်းချက်- အမြန်တိုးချဲ့ခြင်းကို ဖွင့်ရန် လိုအပ်သော အခွင့်အရေးများ ရယူခြင်း မအောင်မြင်ပါ!\nကျေးဇူးပြု၍ အမြန်တိုးချဲ့ခြင်း ရွေးချယ်မှုကို အမှန်ခြစ်ဖြုတ်ပြီး ထပ်မံကြိုးစားပါ။</entry>
<entry lang="my" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">အများဆုံး VeraCrypt volume အရွယ်အစား %I64u TB ကို ကျော်လွန်သွားသည်!\n</entry>
<entry lang="my" key="FULL_FORMAT">ဖောမတ် အပြည့်အစုံချပါ</entry>
<entry lang="my" key="FAST_CREATE">အမြန်ဖန်တီးပါ</entry>
<entry lang="my" key="WARN_FAST_CREATE">သတိပေးချက်- အောက်ပါအခြေအနေများတွင်သာ အမြန်ဖန်တီးခြင်းကို အသုံးပြုသင့်သည်-\n\n၁) device တွင် ထိလွယ်ရှလွယ်ဒေတာများ မပါဝင်ဘဲ သင်သည် ယုတ္တိတန်သော ငြင်းဆိုနိုင်စွမ်း မလိုအပ်ပါ။\n၂) device ကို လုံခြုံစွာနှင့် အပြည့်အဝ ကုဒ်ဝှက်ထားပြီးဖြစ်သည်။\n\nအမြန်ဖန်တီးခြင်းကို အသုံးပြုလိုကြောင်း သေချာပါသလား။</entry>
<entry lang="my" key="IDC_ENABLE_EMV_SUPPORT">EMV ပံ့ပိုးမှု ဖွင့်ပါ</entry>
<entry lang="my" key="COMMAND_APDU_INVALID">ကတ်သို့ ပေးပို့လိုက်သော APDU command သည် မမှန်ကန်ပါ။</entry>
<entry lang="my" key="EXTENDED_APDU_UNSUPPORTED">တိုးချဲ့ထားသော APDU command များကို လက်ရှိ token ဖြင့် အသုံးမပြုနိုင်ပါ။</entry>
<entry lang="my" key="SCARD_MODULE_INIT_FAILED">WinSCard / PCSC library ကို တင်ရာတွင် ချို့ယွင်းချက်။</entry>
<entry lang="my" key="EMV_UNKNOWN_CARD_TYPE">Reader ထဲရှိ ကတ်သည် ပံ့ပိုးထားသော EMV ကတ်မဟုတ်ပါ။</entry>
<entry lang="my" key="EMV_SELECT_AID_FAILED">Reader ထဲရှိ ကတ်၏ AID ကို ရွေးချယ်၍မရပါ။</entry>
<entry lang="my" key="EMV_ICC_CERT_NOTFOUND">ICC Public Key Certificate ကို ကတ်ထဲတွင် ရှာမတွေ့ပါ။</entry>
<entry lang="my" key="EMV_ISSUER_CERT_NOTFOUND">Issuer Public Key Certificate ကို ကတ်ထဲတွင် ရှာမတွေ့ပါ။</entry>
<entry lang="my" key="EMV_CPLC_NOTFOUND">CPLC ကို EMV ကတ်ထဲတွင် ရှာမတွေ့ပါ။</entry>
<entry lang="my" key="EMV_PAN_NOTFOUND">EMV ကတ်ထဲတွင် Primary Account Number (PAN) ကို ရှာမတွေ့ပါ။</entry>
<entry lang="my" key="INVALID_EMV_PATH">EMV လမ်းကြောင်း မမှန်ကန်ပါ။</entry>
<entry lang="my" key="EMV_KEYFILE_DATA_NOTFOUND">EMV ကတ်၏ ဒေတာမှ စကားဝှက်သော့ဖိုင် တည်ဆောက်၍မရပါ။\n\nအောက်ပါတို့အနက် တစ်ခုခု ပျောက်ဆုံးနေသည်-\n- ICC Public Key Certificate။\n- Issuer Public Key Certificate။\n- CPLC ဒေတာ။</entry>
<entry lang="my" key="SCARD_W_REMOVED_CARD">Reader ထဲတွင် ကတ်မရှိပါ။\n\nကတ်ကို မှန်ကန်စွာ ထည့်သွင်းထားကြောင်း သေချာအောင်လုပ်ပါ။</entry>
<entry lang="my" key="FORMAT_EXTERNAL_FAILED">Windows format.com command သည် volume ကို NTFS/exFAT/ReFS အဖြစ် ဖောမတ်ချရန် မအောင်မြင်ပါ- ချို့ယွင်းချက် 0x%.8X။\n\nWindows FormatEx API ကို အသုံးပြုခြင်းသို့ ပြန်သွားနေသည်။</entry>
<entry lang="my" key="FORMATEX_API_FAILED">Windows FormatEx API သည် volume ကို NTFS/exFAT/ReFS အဖြစ် ဖောမတ်ချရန် မအောင်မြင်ပါ။\n\nမအောင်မြင်မှု အခြေအနေ = %s။</entry>
<entry lang="my" key="EXPANDER_WRITING_RANDOM_DATA">နေရာအသစ်သို့ ကျပန်းဒေတာများ ရေးသားနေသည် ...\n</entry>
<entry lang="my" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">ကုဒ်ဝှက်ပြန်လုပ်ထားသော အရန် header ကို ရေးသားနေသည် ...\n</entry>
<entry lang="my" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">ကုဒ်ဝှက်ပြန်လုပ်ထားသော မူလ header ကို ရေးသားနေသည် ...\n</entry>
<entry lang="my" key="EXPANDER_WIPING_OLD_HEADER">အရန် header အဟောင်းကို ဖျက်ပစ်နေသည် ...\n</entry>
<entry lang="my" key="EXPANDER_MOUNTING_VOLUME">Volume ကို အစပျိုးနေသည် ...\n</entry>
<entry lang="my" key="EXPANDER_UNMOUNTING_VOLUME">Volume ကို အဆုံးသတ်နေသည် ...\n</entry>
<entry lang="my" key="EXPANDER_EXTENDING_FILESYSTEM">ဖိုင်စနစ်ကို တိုးချဲ့နေသည် ...\n</entry>
<entry lang="my" key="PARTIAL_SYSENC_MOUNT_READONLY">သတိပေးချက်- သင် အစပျိုးရန် ကြိုးစားခဲ့သော စနစ် partition ကို အပြည့်အဝ ကုဒ်ဝှက်မထားပါ။ ဖြစ်နိုင်ခြေရှိသော ပျက်စီးမှု သို့မဟုတ် မလိုလားအပ်သော ပြင်ဆင်မှုများကို တားဆီးရန် ဘေးကင်းရေး အစီအမံအနေဖြင့် volume '%s' ကို ဖတ်ရန်သာ အဖြစ် အစပျိုးထားသည်။</entry>
<entry lang="my" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">ပြင်ပအဖွဲ့အစည်း ဖိုင် extension များ အသုံးပြုခြင်းဆိုင်ရာ အရေးကြီးအချက်အလက်များ</entry>
<entry lang="my" key="IDC_DISABLE_MEMORY_PROTECTION">Accessibility ကိရိယာများ လိုက်ဖက်ညီမှုအတွက် မမ်မိုရီကာကွယ်မှုကို ပိတ်ပါ</entry>
<entry lang="my" key="DISABLE_MEMORY_PROTECTION_WARNING">သတိပေးချက်- မမ်မိုရီကာကွယ်မှုကို ပိတ်ခြင်းသည် လုံခြုံရေးကို သိသိသာသာ လျှော့ချသည်။ Screen Readers ကဲ့သို့ Accessibility ကိရိယာများကို အားကိုး၍ VeraCrypt ၏ UI နှင့် အပြန်အလှန်ဆက်သွယ်မှသာ ဤရွေးချယ်မှုကို ဖွင့်ပါ။</entry>
<entry lang="my" key="LINUX_LANGUAGE">ဘာသာစကား</entry>
<entry lang="my" key="LINUX_SELECT_SYS_DEFAULT_LANG">စနစ်၏ ပုံသေဘာသာစကားကို ရွေးချယ်ပါ</entry>
<entry lang="my" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">ဘာသာစကားပြောင်းလဲမှု အကျိုးသက်ရောက်ရန် VeraCrypt ကို ပြန်လည်စတင်ရန် လိုအပ်သည်။</entry>
<entry lang="my" key="ERR_XTS_MASTERKEY_VULNERABLE">သတိပေးချက်- Volume ၏ master key သည် ဒေတာလုံခြုံရေးကို ထိခိုက်စေသော တိုက်ခိုက်မှုတစ်ခုအတွက် အားနည်းချက်ရှိသည်။\n\nကျေးဇူးပြု၍ volume အသစ်တစ်ခု ဖန်တီးပြီး ဒေတာများကို ၎င်းသို့ လွှဲပြောင်းပါ။</entry>
<entry lang="my" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">သတိပေးချက်- ကုဒ်ဝှက်ထားသော စနစ်၏ master key သည် ဒေတာလုံခြုံရေးကို ထိခိုက်စေသော တိုက်ခိုက်မှုတစ်ခုအတွက် အားနည်းချက်ရှိသည်။\nကျေးဇူးပြု၍ စနစ် partition/drive ကို ကုဒ်ဝှက်ဖြည်ပြီးနောက် တစ်ကြိမ်ပြန်၍ ကုဒ်ဝှက်ပါ။</entry>
<entry lang="my" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">သတိပေးချက်- Volume ၏ master key တွင် လုံခြုံရေးအားနည်းချက်တစ်ခု ရှိသည်။</entry>
<entry lang="my" key="MOUNTPOINT_BLOCKED">ချို့ယွင်းချက်- Volume အစပျိုးပွိုင့်ကို ပိတ်ဆို့ထားသည်၊ အဘယ်ကြောင့်ဆိုသော် ၎င်းသည် ကာကွယ်ထားသော စနစ်လမ်းညွှန်တစ်ခုကို ထပ်ရေးသောကြောင့်ဖြစ်သည်။\n\nကျေးဇူးပြု၍ မတူညီသော အစပျိုးပွိုင့်တစ်ခုကို ရွေးချယ်ပါ။</entry>
<entry lang="my" key="MOUNTPOINT_NOTALLOWED">ချို့ယွင်းချက်- Volume အစပျိုးပွိုင့်ကို ခွင့်မပြုပါ၊ အဘယ်ကြောင့်ဆိုသော် ၎င်းသည် PATH ပတ်ဝန်းကျင် variable ၏ အစိတ်အပိုင်းဖြစ်သော လမ်းညွှန်တစ်ခုကို ထပ်ရေးသောကြောင့်ဖြစ်သည်။\n\nကျေးဇူးပြု၍ မတူညီသော အစပျိုးပွိုင့်တစ်ခုကို ရွေးချယ်ပါ။</entry>
<entry lang="my" key="INSECURE_MODE">[လုံခြုံမှုမရှိသောမုဒ်]</entry>
<entry lang="my" key="IDC_DISABLE_SCREEN_PROTECTION">စခရင်ရှော့များနှင့် စခရင်မှတ်တမ်းတင်ခြင်းမှ ကာကွယ်မှုကို ပိတ်ပါ</entry>
<entry lang="my" key="DISABLE_SCREEN_PROTECTION_WARNING">သတိပေးချက်- စခရင်ကာကွယ်မှုကို ပိတ်ခြင်းသည် လုံခြုံရေးကို သိသိသာသာ လျှော့ချသည်။ VeraCrypt ၏ interface ကို ဖမ်းယူရန် သီးခြားလိုအပ်ချက်ရှိမှသာ ဤရွေးချယ်မှုကို ဖွင့်ပါ။ ၎င်းသည် ထိလွယ်ရှလွယ်ဒေတာများကို စခရင်ရှော့ကိရိယာများနှင့် Windows 11 Recall ကဲ့သို့ စခရင်မှတ်တမ်းတင်ခြင်း အင်္ဂါရပ်များသို့ ဖော်ထုတ်နိုင်သည်။</entry>
<entry lang="my" 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="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>
<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="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
</localization>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" attributeFormDefault="unqualified" elementFormDefault="qualified">
<xs:element name="VeraCrypt">
File diff suppressed because it is too large Load Diff
+81 -192
View File
@@ -1,7 +1,8 @@
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<language langid="nl" name="Nederlands" en-name="Dutch" version="2026-05-19" translators="Jan van der Wal, Peter Tak, Thomas De Rocker"/>
<localization prog-version= "1.25.9">
<language langid="nl" name="Nederlands" en-name="Dutch" version="0.0.0" 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"/>
@@ -9,7 +10,7 @@
<entry lang="nl" key="IDCANCEL">Annuleren</entry>
<entry lang="nl" key="IDC_ALL_USERS">Installeren voor alle gebruikers</entry>
<entry lang="nl" key="IDC_BROWSE">Bladeren...</entry>
<entry lang="nl" key="IDC_DESKTOP_ICON">VeraCrypt-pictogram toevoegen aan bureaublad</entry>
<entry lang="nl" key="IDC_DESKTOP_ICON">VeraCrypt-pictogram toevoegen aan het bureaublad</entry>
<entry lang="nl" key="IDC_DONATE">Nu doneren...</entry>
<entry lang="nl" key="IDC_FILE_TYPE">De .hc-bestandsextensie koppelen aan VeraCrypt</entry>
<entry lang="nl" key="IDC_OPEN_CONTAINING_FOLDER">De bestemmingslocatie openen wanneer klaar</entry>
@@ -135,8 +136,8 @@
<entry lang="nl" key="IDC_FAVORITE_REMOVE">Verwijderen</entry>
<entry lang="nl" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Het favoriete label gebruiken als verkenner-schijflabel.</entry>
<entry lang="nl" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Globale instellingen</entry>
<entry lang="nl" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Ballonmelding weergeven na succesvol ontkoppelen via sneltoets</entry>
<entry lang="nl" key="IDC_HK_UNMOUNT_PLAY_SOUND">Systeemgeluid afspelen na succesvol ontkoppelen via sneltoetsen</entry>
<entry lang="nl" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Ballonmelding weergeven na succesvol ontkoppelen via sneltoets</entry>
<entry lang="nl" key="IDC_HK_DISMOUNT_PLAY_SOUND">Systeemgeluid afspelen na succesvol ontkoppelen via sneltoetsen</entry>
<entry lang="nl" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="nl" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="nl" key="IDC_HK_MOD_SHIFT">Shift</entry>
@@ -152,16 +153,16 @@
<entry lang="nl" key="IDC_MOUNT_OPTIONS">Koppelopties...</entry>
<entry lang="nl" key="IDC_MOUNT_READONLY">Volume koppelen als alleen-lezen</entry>
<entry lang="nl" key="IDC_NEW_KEYFILES">Sleutelbestanden...</entry>
<entry lang="nl" key="IDC_OLD_PIM_HELP">(Leeg of 0 voor standaardwaarden)</entry>
<entry lang="nl" key="IDC_PIM_HELP">(Leeg of 0 voor standaardwaarden)</entry>
<entry lang="nl" key="IDC_OLD_PIM_HELP">(Leeg of 0 voor standaard iteraties)</entry>
<entry lang="nl" key="IDC_PIM_HELP">(leeg of 0 voor standaard iteraties)</entry>
<entry lang="nl" key="IDC_PREF_BKG_TASK_ENABLE">Ingeschakeld</entry>
<entry lang="nl" key="IDC_PREF_CACHE_PASSWORDS">Wachtw. in stuurprog.-geheugen opslaan</entry>
<entry lang="nl" key="IDC_PREF_UNMOUNT_INACTIVE">Volume automatisch ontkoppelen na inactiviteit lezen/schrijven van</entry>
<entry lang="nl" key="IDC_PREF_UNMOUNT_LOGOFF">gebruiker afmeldt</entry>
<entry lang="nl" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">gebruikerssessie wordt vergrendeld</entry>
<entry lang="nl" key="IDC_PREF_UNMOUNT_POWERSAVING">energiebesparende modus start</entry>
<entry lang="nl" key="IDC_PREF_UNMOUNT_SCREENSAVER">schermbeveiliging start</entry>
<entry lang="nl" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Automatisch ontkoppelen forceren, zelfs als volume open bestanden of mappen bevat</entry>
<entry lang="nl" key="IDC_PREF_DISMOUNT_INACTIVE">Volume automatisch ontkoppelen na inactiviteit lezen/schrijven van</entry>
<entry lang="nl" key="IDC_PREF_DISMOUNT_LOGOFF">gebruiker afmeldt</entry>
<entry lang="nl" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">gebruikerssessie wordt vergrendeld</entry>
<entry lang="nl" key="IDC_PREF_DISMOUNT_POWERSAVING">energiebesparende modus start</entry>
<entry lang="nl" key="IDC_PREF_DISMOUNT_SCREENSAVER">schermbeveiliging start</entry>
<entry lang="nl" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Automatisch ontkoppelen forceren, zelfs als volume open bestanden of mappen bevat</entry>
<entry lang="nl" key="IDC_PREF_LOGON_MOUNT_DEVICES">Alle apparaat-gehoste VeraCrypt-volumes koppelen</entry>
<entry lang="nl" key="IDC_PREF_LOGON_START">VeraCrypt-achtergrondtaak starten</entry>
<entry lang="nl" key="IDC_PREF_MOUNT_READONLY">Volumes koppelen als alleen-lezen</entry>
@@ -169,7 +170,7 @@
<entry lang="nl" key="IDC_PREF_OPEN_EXPLORER">Verkennervenster openen voor met succes gekoppeld volume</entry>
<entry lang="nl" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">Wachtwoord tijdelijk opslaan tijdens "favoriete volumes koppelen"-handelingen</entry>
<entry lang="nl" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Een ander taakbalkpictogram gebruiken als er gekoppelde volumes zijn</entry>
<entry lang="nl" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Opgeslagen wachtwoorden wissen bij auto-ontkoppelen</entry>
<entry lang="nl" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Opgeslagen wachtwoorden wissen bij auto-ontkoppelen</entry>
<entry lang="nl" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Opgeslagen wachtwoorden wissen bij afsluiten</entry>
<entry lang="nl" key="IDC_PRESERVE_TIMESTAMPS">Tijdstempel van wijziging van bestandscontainers bewaren</entry>
<entry lang="nl" key="IDC_RESET_HOTKEYS">Herstellen</entry>
@@ -269,14 +270,14 @@
<entry lang="nl" key="IDT_ACCELERATION_OPTIONS">Hardwareversnelling</entry>
<entry lang="nl" key="IDT_ASSIGN_HOTKEY">Sneltoets</entry>
<entry lang="nl" key="IDT_AUTORUN">AutoRun-configuratie (autorun.inf)</entry>
<entry lang="nl" key="IDT_AUTO_UNMOUNT">Automatisch ontkoppelen</entry>
<entry lang="nl" key="IDT_AUTO_UNMOUNT_ON">Alles ontkoppelen als:</entry>
<entry lang="nl" key="IDT_AUTO_DISMOUNT">Automatisch ontkoppelen</entry>
<entry lang="nl" key="IDT_AUTO_DISMOUNT_ON">Alles ontkoppelen als:</entry>
<entry lang="nl" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Opties bootloaderscherm</entry>
<entry lang="nl" key="IDT_CONFIRM_PASSWORD">Wachtwoord bevestigen:</entry>
<entry lang="nl" key="IDT_CURRENT">Huidige</entry>
<entry lang="nl" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">Geef dit aangepaste bericht weer in het authenticatiescherm vóór het opstarten (maximaal 24 tekens):</entry>
<entry lang="nl" key="IDT_DEFAULT_MOUNT_OPTIONS">Standaard koppelopties</entry>
<entry lang="nl" key="IDT_UNMOUNT_ACTION">Sneltoetsopties</entry>
<entry lang="nl" key="IDT_DISMOUNT_ACTION">Sneltoetsopties</entry>
<entry lang="nl" key="IDT_DRIVER_OPTIONS">Stuurprogrammaconfiguratie</entry>
<entry lang="nl" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Uitgebreide ondersteuning voor schijfbesturingscodes inschakelen</entry>
<entry lang="nl" key="IDT_FAVORITE_LABEL">Label van het geselecteerde favoriete volume:</entry>
@@ -291,11 +292,10 @@
<entry lang="nl" key="IDT_NEW_PASSWORD">Wachtwoord:</entry>
<entry lang="nl" key="IDT_PARALLELIZATION_OPTIONS">Threadgebaseerde parallellisatie</entry>
<entry lang="nl" key="IDT_PKCS11_LIB_PATH">Pad naar PKCS #11 bibliotheek</entry>
<entry lang="nl" key="IDT_KDF">KDF:</entry>
<entry lang="nl" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="nl" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="nl" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="nl" key="IDT_PW_CACHE_OPTIONS">Wachtwoordcache</entry>
<entry lang="nl" key="IDT_SECURITY_OPTIONS">Beveiligingsopties</entry>
<entry lang="nl" key="IDT_EMV_OPTIONS">EMV-opties</entry>
<entry lang="nl" key="IDT_TASKBAR_ICON">VeraCrypt-achtergrondtaak</entry>
<entry lang="nl" key="IDT_TRAVELER_MOUNT">Te koppelen VeraCrypt-volume (t.o.v. reisschijf-basismap):</entry>
<entry lang="nl" key="IDT_TRAVEL_INSERTION">Bij plaatsen van de reisschijf: </entry>
@@ -357,7 +357,7 @@
<entry lang="nl" key="IDT_KEYFILE_WARNING">WAARSCHUWING: als u een sleutelbestand verliest of als er een bit van de eerste 1024 KiB verandert, is het onmogelijk om volumes te koppelen die het sleutelbestand gebruiken!</entry>
<entry lang="nl" key="IDT_KEY_UNIT">bits</entry>
<entry lang="nl" key="IDT_NUMBER_KEYFILES">Aantal sleutelbestanden:</entry>
<entry lang="nl" key="IDT_KEYFILES_SIZE">Grootte sleutelbestanden:</entry>
<entry lang="nl" key="IDT_KEYFILES_SIZE">Grootte sleutelbestand (bytes):</entry>
<entry lang="nl" key="IDT_KEYFILES_BASE_NAME">Basisnaam sleutelbestanden:</entry>
<entry lang="nl" key="IDT_LANGPACK_AUTHORS">Vertaald door:</entry>
<entry lang="nl" key="IDT_PLAINTEXT">Grootte van platte tekst:</entry>
@@ -390,7 +390,6 @@
<entry lang="nl" key="ADMINISTRATOR">Beheerder</entry>
<entry lang="nl" key="ADMIN_PRIVILEGES_DRIVER">Om het VeraCrypt-stuurprogramma te laden, moet u ingelogd zijn op een account met beheerdersrechten.</entry>
<entry lang="nl" key="ADMIN_PRIVILEGES_WARN_DEVICES">Om een partitie/apparaat te versleutelen, te ontsleutelen of te formatteren, moet u aangemeld zijn bij een account met beheerdersrechten.\n\nDit is niet van toepassing op volumes die door bestanden worden gehost.</entry>
<entry lang="nl" key="ADMIN_PRIVILEGES_WARN_MANAGE_VOLUME">Kan snelle bestandsaanmaak niet inschakelen: Administratorrechten vereist.\nStart het programma opnieuw als administrator om deze functie in te schakelen.\n\nWilt u doorgaan zonder snel bestanden maken?</entry>
<entry lang="nl" key="ADMIN_PRIVILEGES_WARN_HIDVOL">Om een verborgen volume aan te maken moet u ingelogd zijn op een account met beheerdersrechten.\n\nDoorgaan?</entry>
<entry lang="nl" key="ADMIN_PRIVILEGES_WARN_NTFS">Om het volume als NTFS/exFAT/ReFS te formatteren, moet u aangemeld zijn bij een account met beheerdersrechten.\n\nZonder beheerdersrechten kunt u het volume formatteren als FAT.</entry>
<entry lang="nl" key="AES_HELP">FIPS-goedgekeurde code (Rijndael, gepubliceerd in 1998) die door Amerikaanse ministeries en instanties mag worden gebruikt om gerubriceerde informatie te beschermen tot op het topgeheime niveau. 256-bit sleutel, 128-bit blok, 14 ronden (AES-256). Werkingswijze is XTS.</entry>
@@ -423,8 +422,8 @@
<entry lang="nl" key="DEVICE_FREE_PB">Grootte van %s is %.2f PiB</entry>
<entry lang="nl" key="DEVICE_IN_USE_FORMAT">WAARSCHUWING: het apparaat/de partitie wordt gebruikt door het besturingssysteem of toepassingen. Het formatteren van het apparaat/de partitie kan gegevensbeschadiging en systeeminstabiliteit veroorzaken.\n\nDoorgaan?</entry>
<entry lang="nl" key="DEVICE_IN_USE_INPLACE_ENC">Waarschuwing: de partitie wordt gebruikt door het besturingssysteem of door toepassingen. U moet alle toepassingen die de partitie kunnen gebruiken (inclusief antivirussoftware) sluiten.\n\nDoorgaan?</entry>
<entry lang="nl" key="FORMAT_CANT_UNMOUNT_FILESYS">Fout: Het apparaat/de partitie bevat een bestandssysteem dat niet kon worden ontkoppeld. Het bestandssysteem kan in gebruik zijn door het besturingssysteem. Het formatteren van het apparaat/de partitie zou zeer waarschijnlijk gegevensbeschadiging en systeeminstabiliteit veroorzaken.\n\nOm dit probleem op te lossen, raden wij u aan om eerst de partitie te verwijderen en deze dan opnieuw aan te maken zonder te formatteren. Volg deze stappen om dit te doen:\n1) Klik met de rechtermuisknop op het pictogram 'deze pc' (of 'deze computer') in het startmenu en selecteer 'beheren'. Het venster 'computerbeheer' zou moeten verschijnen.\n2) Selecteer in het venster 'computerbeheer' 'opslag' &gt; 'schijfbeheer'.\n3) Klik met de rechtermuisknop op de partitie die u wilt versleutelen en selecteer 'partitie verwijderen', 'volume verwijderen' of 'logisch station verwijderen'.\n4) Klik op 'Ja'. Als Windows u vraagt de computer opnieuw op te starten, doe dit dan. Herhaal vervolgens de stappen 1 en 2 en ga verder vanaf stap 5.\n5) Klik met de rechtermuisknop op het gebied niet-toegewezen/vrije ruimte en selecteer ofwel 'nieuwe partitie', of 'nieuw eenvoudig volume', of 'nieuw logisch station'.\n6) Het venster 'wizard nieuw volume' of 'wizard nieuw eenvoudig volume' zou nu moeten verschijnen; volg de instructies. Op de wizardpagina met de titel 'partitie formatteren', selecteert u ofwel 'deze partitie niet formatteren' of 'dit volume niet formatteren'. In dezelfde wizard klikt u op 'volgende' en vervolgens op 'voltooien'.\n7) Merk op dat het stationspad dat u in VeraCrypt hebt geselecteerd, nu mogelijk verkeerd is. Sluit daarom de VeraCrypt wizard volume aanmaken af (als deze nog steeds actief is) en start deze opnieuw.\n8) Probeer het apparaat/partitie opnieuw te versleutelen.\n\nAls VeraCrypt er herhaaldelijk niet in slaagt om het apparaat/partitie te versleutelen, kunt u overwegen om een bestandscontainer te maken.</entry>
<entry lang="nl" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Fout: Het bestandssysteem kon niet worden vergrendeld en/of ontkoppeld. Het kan in gebruik zijn door het besturingssysteem of de toepassingen (bijvoorbeeld antivirussoftware). Het versleutelen van de partitie kan gegevensbeschadiging en systeeminstabiliteit veroorzaken.\n\nSluit alle toepassingen die gebruik maken van het bestandssysteem (inclusief antivirussoftware) en probeer het opnieuw. Als het niet helpt, volg dan de onderstaande stappen.</entry>
<entry lang="nl" key="FORMAT_CANT_DISMOUNT_FILESYS">Fout: Het apparaat/de partitie bevat een bestandssysteem dat niet kon worden ontkoppeld. Het bestandssysteem kan in gebruik zijn door het besturingssysteem. Het formatteren van het apparaat/de partitie zou zeer waarschijnlijk gegevensbeschadiging en systeeminstabiliteit veroorzaken.\n\nOm dit probleem op te lossen, raden wij u aan om eerst de partitie te verwijderen en deze dan opnieuw aan te maken zonder te formatteren. Volg deze stappen om dit te doen:\n1) Klik met de rechtermuisknop op het pictogram 'deze pc' (of 'deze computer') in het startmenu en selecteer 'beheren'. Het venster 'computerbeheer' zou moeten verschijnen.\n2) Selecteer in het venster 'computerbeheer' 'opslag' &gt; 'schijfbeheer'.\n3) Klik met de rechtermuisknop op de partitie die u wilt versleutelen en selecteer 'partitie verwijderen', 'volume verwijderen' of 'logisch station verwijderen'.\n4) Klik op 'Ja'. Als Windows u vraagt de computer opnieuw op te starten, doe dit dan. Herhaal vervolgens de stappen 1 en 2 en ga verder vanaf stap 5.\n5) Klik met de rechtermuisknop op het gebied niet-toegewezen/vrije ruimte en selecteer ofwel 'nieuwe partitie', of 'nieuw eenvoudig volume', of 'nieuw logisch station'.\n6) Het venster 'wizard nieuw volume' of 'wizard nieuw eenvoudig volume' zou nu moeten verschijnen; volg de instructies. Op de wizardpagina met de titel 'partitie formatteren', selecteert u ofwel 'deze partitie niet formatteren' of 'dit volume niet formatteren'. In dezelfde wizard klikt u op 'volgende' en vervolgens op 'voltooien'.\n7) Merk op dat het stationspad dat u in VeraCrypt hebt geselecteerd, nu mogelijk verkeerd is. Sluit daarom de VeraCrypt wizard volume aanmaken af (als deze nog steeds actief is) en start deze opnieuw.\n8) Probeer het apparaat/partitie opnieuw te versleutelen.\n\nAls VeraCrypt er herhaaldelijk niet in slaagt om het apparaat/partitie te versleutelen, kunt u overwegen om een bestandscontainer te maken.</entry>
<entry lang="nl" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Fout: Het bestandssysteem kon niet worden vergrendeld en/of ontkoppeld. Het kan in gebruik zijn door het besturingssysteem of de toepassingen (bijvoorbeeld antivirussoftware). Het versleutelen van de partitie kan gegevensbeschadiging en systeeminstabiliteit veroorzaken.\n\nSluit alle toepassingen die gebruik maken van het bestandssysteem (inclusief antivirussoftware) en probeer het opnieuw. Als het niet helpt, volg dan de onderstaande stappen.</entry>
<entry lang="nl" key="DEVICE_IN_USE_INFO">WAARSCHUWING: sommige van de gekoppelde apparaten/partities waren al in gebruik!\n\nHet negeren hiervan kan leiden tot ongewenste resultaten, zoals instabiliteit van het systeem.\n\nWij raden u ten zeerste aan om elke toepassing die de apparaten/partities zou kunnen gebruiken, te sluiten.</entry>
<entry lang="nl" key="DEVICE_PARTITIONS_ERR">Het geselecteerde apparaat bevat partities.\n\nHet formatteren van het apparaat kan instabiliteit van het systeem en/of gegevensbeschadiging veroorzaken. Selecteer een partitie op het apparaat of verwijder alle partities op het apparaat om VeraCrypt in staat te stellen het veilig te formatteren.</entry>
<entry lang="nl" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">Het geselecteerde niet-systeemapparaat bevat partities.\n\nVersleutelde apparaatgehoste VeraCrypt-volumes kunnen worden aangemaakt binnen apparaten die geen partities bevatten (inclusief harde schijven en solid-state drives). Een apparaat dat partities bevat, kan alleen volledig ter plaatse worden versleuteld (met behulp van een enkele hoofdsleutel) als het de schijf is waar Windows is geïnstalleerd en van waaruit het opstart.\n\nAls u het geselecteerde niet-systeemapparaat wilt versleutelen met een enkele hoofdsleutel, moet u eerst alle partities op het apparaat verwijderen om VeraCrypt in staat te stellen het apparaat veilig te formatteren (het formatteren van een apparaat dat partities bevat kan instabiliteit van het systeem en/of gegevensbeschadiging veroorzaken). Als alternatief kunt u elke partitie op de schijf afzonderlijk versleutelen (elke partitie wordt versleuteld met een andere hoofdsleutel).\n\nOpmerking: Als u alle partities van een GPT-schijf wilt verwijderen, moet u deze mogelijk converteren naar een MBR-schijf (met behulp van bijvoorbeeld het computerbeheerprogramma) om verborgen partities te verwijderen.</entry>
@@ -590,7 +589,7 @@
<entry lang="nl" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">Fout: de bestanden die u naar het buitenste volume hebt gekopieerd nemen te veel ruimte in beslag. Daarom is er niet genoeg vrije ruimte op het buitenste volume voor het verborgen volume.\n\nMerk op dat het verborgen volume even groot moet zijn als de systeempartitie (de partitie waar het huidige besturingssysteem is geïnstalleerd). De reden is dat het verborgen besturingssysteem moet worden gemaakt door het kopiëren van de inhoud van de systeempartitie naar het verborgen volume.\n\n\nHet proces van het aanmaken van het verborgen besturingssysteem kan niet doorgaan. </entry>
<entry lang="nl" key="OPENFILES_DRIVER">Het stuurprogramma kan het volume niet ontkoppelen. Sommige bestanden op het volume zijn waarschijnlijk nog open.</entry>
<entry lang="nl" key="OPENFILES_LOCK">Kan het volume niet vergrendelen. Er zijn nog steeds open bestanden op het volume. Daarom kan het niet worden ontkoppeld.</entry>
<entry lang="nl" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt kan het volume niet vergrendelen omdat het in gebruik is door het systeem of toepassingen (er kunnen geopende bestanden op het volume zijn).\n\nWilt u het volume geforceerd ontkoppelen?</entry>
<entry lang="nl" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt kan het volume niet vergrendelen omdat het in gebruik is door het systeem of toepassingen (er kunnen geopende bestanden op het volume zijn).\n\nWilt u het volume geforceerd ontkoppelen?</entry>
<entry lang="nl" key="OPEN_VOL_TITLE">Selecteer een VeraCrypt-volume</entry>
<entry lang="nl" key="OPEN_TITLE">Geef pad en bestandsnaam op</entry>
<entry lang="nl" key="SELECT_PKCS11_MODULE">PKCS #11 bibliotheek selecteren</entry>
@@ -613,7 +612,7 @@
<entry lang="nl" key="FAVORITE_PIM_CHANGED">Dit volume is geregistreerd als een systeemfavoriet en zijn PIM is gewijzigd.\nWilt u dat VeraCrypt de configuratie van de systeemfavorieten automatisch bijwerkt (beheerdersrechten vereist)?\n\nHoud er rekening mee dat als u nee antwoordt, u de systeemfavoriet handmatig moet bijwerken.</entry>
<entry lang="nl" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">BELANGRIJK: Als u uw VeraCrypt-herstelschijf niet hebt vernietigd, kan uw systeempartitie/-schijf nog steeds worden ontsleuteld met behulp van het oude wachtwoord (door vanaf de VeraCrypt-herstelschijf op te starten en het oude wachtwoord in te voeren). U moet een nieuwe VeraCrypt-herstelschijf aanmaken en vervolgens de oude vernietigen.\n\nWilt u een nieuwe VeraCrypt-herstelschijf aanmaken?</entry>
<entry lang="nl" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">Merk op dat uw VeraCrypt-herstelschijf nog steeds het vorige algoritme gebruikt. Als u het vorige algoritme onveilig vindt, moet u een nieuwe VeraCrypt-herstelschijf maken en vervolgens de oude schijf vernietigen.\n\nWilt u een nieuwe VeraCrypt-herstelschijf aanmaken?</entry>
<entry lang="nl" key="KEYFILES_NOTE">Merk op dat VeraCrypt de inhoud van het sleutelbestand nooit wijzigt. U kunt meer dan één sleutelbestand selecteren (de volgorde maakt niet uit). Als u een map toevoegt, worden alle niet-verborgen bestanden in deze map gebruikt als sleutelbestanden. Klik op 'tokenbestanden toevoegen' om sleutelbestanden te selecteren op veiligheidstokens of smartcards (of om ze te importeren in veiligheidstokens of smartcards).</entry>
<entry lang="nl" key="KEYFILES_NOTE">Elk soort bestand (bijvoorbeeld .mp3, .jpg, .zip, .avi, .mp3, .jpg, .zip, .avi) kan gebruikt worden als VeraCrypt-sleutelbestand. Merk op dat VeraCrypt de inhoud van het sleutelbestand nooit wijzigt. U kunt meer dan één sleutelbestand selecteren (de volgorde maakt niet uit). Als u een map toevoegt, worden alle niet-verborgen bestanden in deze map gebruikt als sleutelbestanden. Klik op 'tokenbestanden toevoegen' om sleutelbestanden te selecteren op veiligheidstokens of smartcards (of om ze te importeren in veiligheidstokens of smartcards).</entry>
<entry lang="nl" key="KEYFILE_CHANGED">Sleutelbestand(en) met succes toegevoegd/verwijderd.</entry>
<entry lang="nl" key="KEYFILE_EXPORTED">Sleutelbestand geëxporteerd.</entry>
<entry lang="nl" key="PKCS5_PRF_CHANGED">Sleutel-afleidingsalgoritme van header met succes ingesteld.</entry>
@@ -632,12 +631,12 @@
<entry lang="nl" key="PASSWORD_HIDDEN_OS_TITLE">Wachtwoord voor verborgen besturingssysteem</entry>
<entry lang="nl" key="PASSWORD_LENGTH_WARNING">WAARSCHUWING: korte wachtwoorden zijn gemakkelijk te kraken met behulp van brute-force technieken!\n\nWij raden u aan een wachtwoord te kiezen dat uit 20 of meer tekens bestaat. Weet u zeker dat u een kort wachtwoord wilt gebruiken?</entry>
<entry lang="nl" key="PASSWORD_TITLE">Volumewachtwoord</entry>
<entry lang="nl" key="PASSWORD_WRONG">De bewerking is mislukt door een of meer van de volgende oorzaken:\n - onjuist wachtwoord\n - onjuist volume-PIM-nummer\n - onjuiste PRF (hash)\n - geen geldig volume.\n - Volume gebruikt een oud algoritme dat werd verwijderd.\n - Volumes in Truecrypt-formaat worden niet langer ondersteund.</entry>
<entry lang="nl" key="PASSWORD_OR_KEYFILE_WRONG">De bewerking is mislukt door een of meer van de volgende oorzaken:\n - onjuist(e) sleutelbestand(en).\n - onjuist wachtwoord\n - onjuist volume-PIM-nummer\n - onjuiste PRF (hash)\n - geen geldig volume.\n - Volume gebruikt een oud algoritme dat werd verwijderd.\n - Volumes in Truecrypt-formaat worden niet langer ondersteund.</entry>
<entry lang="nl" key="PASSWORD_OR_MODE_WRONG">De bewerking is mislukt door een of meer van de volgende oorzaken:\n - onjuiste koppelingsmodus.\n - onjuist wachtwoord\n - onjuist volume-PIM-nummer\n - onjuiste PRF (hash)\n - geen geldig volume.\n - Volume gebruikt een oud algoritme dat werd verwijderd.\n - Volumes in Truecrypt-formaat worden niet langer ondersteund.</entry>
<entry lang="nl" key="PASSWORD_OR_KEYFILE_OR_MODE_WRONG">De bewerking is mislukt door een of meer van de volgende oorzaken:\n - onjuiste koppelingsmodus.\n - onjuist(e) sleutelbestand(en).\n - onjuist wachtwoord\n - onjuist volume-PIM-nummer\n - onjuiste PRF (hash)\n - geen geldig volume.\n - Volume gebruikt een oud algoritme dat werd verwijderd.\n - Volumes in Truecrypt-formaat worden niet langer ondersteund.</entry>
<entry lang="nl" key="PASSWORD_WRONG_AUTOMOUNT">Automatisch koppelen is mislukt door een of meer van de volgende oorzaken:\n - onjuist wachtwoord\n - onjuist volume-PIM-nummer\n - onjuiste PRF (hash)\n - geen geldig volume gevonden.\n - Volume gebruikt een oud algoritme dat werd verwijderd.\n - Volumes in Truecrypt-formaat worden niet langer ondersteund.</entry>
<entry lang="nl" key="PASSWORD_OR_KEYFILE_WRONG_AUTOMOUNT">Automatisch koppelen is mislukt door een of meer van de volgende oorzaken:\n - onjuist(e) sleutelbestand(en).\n - onjuist wachtwoord\n - onjuist volume-PIM-nummer\n - onjuiste PRF (hash)\n - geen geldig volume gevonden.\n - Volume gebruikt een oud algoritme dat werd verwijderd.\n - Volumes in Truecrypt-formaat worden niet langer ondersteund.</entry>
<entry lang="nl" key="PASSWORD_WRONG">De bewerking is mislukt door een of meer van de volgende oorzaken:\n - onjuist wachtwoord\n - onjuist volume-PIM-nummer\n - onjuiste PRF (hash)\n - geen geldig volume</entry>
<entry lang="nl" key="PASSWORD_OR_KEYFILE_WRONG">De bewerking is mislukt door een of meer van de volgende oorzaken:\n - sleutelbestand(en) onjuist\n - onjuist wachtwoord\n - onjuist volume-PIM-nummer\n - onjuiste PRF (hash)\n - geen geldig volume</entry>
<entry lang="nl" key="PASSWORD_OR_MODE_WRONG">De bewerking is mislukt door een of meer van de volgende oorzaken:\n - onjuiste koppelmodus\n - onjuist wachtwoord\n - onjuist volume-PIM-nummer\n - onjuiste PRF (hash)\n - geen geldig volume</entry>
<entry lang="nl" key="PASSWORD_OR_KEYFILE_OR_MODE_WRONG">De bewerking is mislukt door een of meer van de volgende oorzaken:\n - onjuiste koppelingsmodus\n - sleutelbestand(en) onjuist\n - onjuist wachtwoord\n - onjuist volume-PIM-nummer\n - onjuiste PRF (hash)\n - geen geldig volume</entry>
<entry lang="nl" key="PASSWORD_WRONG_AUTOMOUNT">Automatische koppeling is mislukt door een of meer van de volgende oorzaken:\n - Onjuist wachtwoord.\n - Onjuist volume PIM-nummer.\n - Onjuiste PRF (hash).\n - Geen geldig volume gevonden.</entry>
<entry lang="nl" key="PASSWORD_OR_KEYFILE_WRONG_AUTOMOUNT">De automatische koppeling is mislukt door een of meer van de volgende oorzaken:\n - sleutelbestand(en) onjuist\n - onjuist wachtwoord\n - onjuist volume-PIM-nummer\n - onjuiste PRF (hash)\n - geen geldig volume gevonden.</entry>
<entry lang="nl" key="PASSWORD_WRONG_CAPSLOCK_ON">\n\nWaarschuwing: Caps Lock is aan. Dit kan ertoe leiden dat u uw wachtwoord verkeerd invoert.</entry>
<entry lang="nl" key="PIM_CHANGE_WARNING">Onthoud het nummer om het volume te koppelen</entry>
<entry lang="nl" key="PIM_HIDVOL_HOST_TITLE">PIM buitenste volume</entry>
@@ -703,7 +702,8 @@
<entry lang="nl" key="VOL_MOUNT_FAILED">Er is een fout opgetreden bij het koppelen van het volume.</entry>
<entry lang="nl" key="VOL_SEEKING">Fout bij het zoeken naar een locatie binnen het volume.</entry>
<entry lang="nl" key="VOL_SIZE_WRONG">Fout: onjuiste volumegrootte.</entry>
<entry lang="nl" key="WARN_QUICK_FORMAT">WAARSCHUWING: gebruik snelformatteren alleen in de volgende gevallen:\n\n1) Het apparaat bevat geen gevoelige gegevens en u hebt geen aannemelijke ontkenning nodig.\n2) Het apparaat is al op een veilige manier en volledig gecodeerd.\n\nWeet u zeker dat u snelformatteren wilt gebruiken?</entry>
<entry lang="nl" key="WARN_QUICK_FORMAT">WAARSCHUWING: gebruik snelformatteren alleen in de volgende gevallen:\n\n1) Het apparaat bevat geen gevoelige gegevens en u hebt geen aannemelijke ontkenning nodig.
2) Het apparaat is al op een veilige manier en volledig gecodeerd.\n\nWeet u zeker dat u snelformatteren wilt gebruiken?</entry>
<entry lang="nl" key="CONFIRM_SPARSE_FILE">Een dynamische container is een vooraf toegewezen NTFS spaarzaam bestand waarvan de fysieke grootte (de werkelijk gebruikte schijfruimte) groeit naarmate er nieuwe gegevens aan worden toegevoegd.\n\nWAARSCHUWING: de prestaties van volumes die door spaarzame bestanden worden gehost, zijn aanzienlijk slechter dan de prestaties van gewone volumes. Ze zijn ook minder veilig, omdat het mogelijk is om te zien welke sectoren van het volume niet worden gebruikt. Bovendien kunnen deze volumes geen plausibele ontkenning bieden (een verborgen volume huisvesten). Merk ook op dat als gegevens worden geschreven naar een spaarzame bestandscontainer wanneer er niet genoeg vrije ruimte is in het host-bestandssysteem, het versleutelde bestandssysteem beschadigd kan raken.\n\nWeet u zeker dat u een volume wilt aanmaken dat wordt gehost door een spaarzaam bestand?</entry>
<entry lang="nl" key="SPARSE_FILE_SIZE_NOTE">Merk op dat de grootte van de dynamische container die door Windows en VeraCrypt wordt gerapporteerd altijd gelijk zal zijn aan de maximale grootte. Om de huidige fysieke grootte van de container te weten te komen (de werkelijke schijfruimte die hij gebruikt), klikt u met de rechtermuisknop op het containerbestand (in een Windows Verkenner-venster, niet in VeraCrypt), selecteert u vervolgens 'eigenschappen' en ziet u de waarde 'grootte op schijf'.\n\nMerk ook op dat als u een dynamische container naar een ander volume of station verplaatst, de fysieke grootte van de container zal worden uitgebreid tot het maximum. (U kunt dat voorkomen door een nieuwe dynamische container aan te maken op de plaats van bestemming, deze te koppelen en vervolgens de bestanden van de oude container naar de nieuwe te verplaatsen.)</entry>
<entry lang="nl" key="PASSWORD_CACHE_WIPED_SHORT">Wachtwoordcache gewist</entry>
@@ -715,7 +715,8 @@
<entry lang="nl" key="CANT_CREATE_AUTORUN">Fout: kan autorun.inf niet aanmaken</entry>
<entry lang="nl" key="ERR_PROCESS_KEYFILE">Fout bij het verwerken van het sleutelbestand!</entry>
<entry lang="nl" key="ERR_PROCESS_KEYFILE_PATH">Fout bij het verwerken van het pad van sleutelbestanden!</entry>
<entry lang="nl" key="ERR_KEYFILE_PATH_EMPTY">Het pad naar het sleutelbestand bevat geen bestanden.\n\nMerk op dat mappen (en bestanden die ze bevatten) die gevonden worden in de zoekpaden voor sleutelbestanden worden genegeerd.</entry>
<entry lang="nl" key="ERR_KEYFILE_PATH_EMPTY">Het pad naar het sleutelbestand bevat geen bestanden.\n\nMerk op dat mappen (en bestanden die ze bevatten) die gevonden worden in de zoekpaden voor sleutelbestanden worden genegeerd.
</entry>
<entry lang="nl" key="UNSUPPORTED_OS">VeraCrypt ondersteunt dit besturingssysteem niet.</entry>
<entry lang="nl" key="UNSUPPORTED_BETA_OS">Fout: VeraCrypt ondersteunt alleen stabiele versies van dit besturingssysteem (bèta/RC-versies worden niet ondersteund).</entry>
<entry lang="nl" key="ERR_MEM_ALLOC">Fout: kan geen geheugen toewijzen.</entry>
@@ -729,7 +730,7 @@
<entry lang="nl" key="DLL_FILES">Bibliotheek-modules</entry>
<entry lang="nl" key="FORMAT_NTFS_STOP">Formatteren van NTFS/exFAT/ReFS kan niet doorgaan.</entry>
<entry lang="nl" key="CANT_MOUNT_VOLUME">Kan volume niet koppelen.</entry>
<entry lang="nl" key="CANT_UNMOUNT_VOLUME">Kan volume niet ontkoppelen.</entry>
<entry lang="nl" key="CANT_DISMOUNT_VOLUME">Kan volume niet ontkoppelen.</entry>
<entry lang="nl" key="FORMAT_NTFS_FAILED">Windows is er niet in geslaagd het volume te formatteren als NTFS/exFAT/ReFS.\n\nSelecteer een ander type bestandssysteem (indien mogelijk) en probeer het opnieuw. Als alternatief kunt u het volume ongeformatteerd laten (selecteer 'geen' als bestandssysteem), sluit deze wizard af, koppel het volume en gebruik dan een systeem of een tool van derden om het gekoppelde volume te formatteren (het volume zal versleuteld blijven).</entry>
<entry lang="nl" key="FORMAT_NTFS_FAILED_ASK_FAT">Windows kon het volume niet formatteren als NTFS/exFAT/ReFS.\n\nWilt u het volume formatteren als FAT?</entry>
<entry lang="nl" key="DEFAULT">Standaard</entry>
@@ -771,7 +772,7 @@
<entry lang="nl" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">Een fout verhinderde dat VeraCrypt de partitie kon versleutelen. Probeer eerder gemelde problemen op te lossen en probeer het dan opnieuw. Als de problemen blijven bestaan, kan het helpen om de onderstaande stappen te volgen.</entry>
<entry lang="nl" key="INPLACE_ENC_GENERIC_ERR_RESUME">Een fout verhinderde dat VeraCrypt het proces van versleuteling/ontsleuteling van de partitie / het volume kon hervatten.\n\nProbeer eerder gemelde problemen op te lossen en probeer het proces indien mogelijk opnieuw te hervatten. Merk op dat het volume niet kan worden gekoppeld totdat het volledig is versleuteld of volledig ontsleuteld.</entry>
<entry lang="nl" key="INPLACE_DEC_GENERIC_ERR">Een fout verhinderde dat VeraCrypt het volume kon ontsleutelen. Probeer eerder gemelde problemen op te lossen en probeer het dan indien mogelijk opnieuw.</entry>
<entry lang="nl" key="CANT_UNMOUNT_OUTER_VOL">Fout: kan het buitenste volume niet ontkoppelen!\n\nHet volume kan niet worden ontkoppeld als het bestanden of mappen bevat die door een programma of het systeem worden gebruikt.\n\nSluit elk programma dat bestanden of mappen gebruikt op het volume en klik op opnieuw proberen.</entry>
<entry lang="nl" key="CANT_DISMOUNT_OUTER_VOL">Fout: kan het buitenste volume niet ontkoppelen!\n\nHet volume kan niet worden ontkoppeld als het bestanden of mappen bevat die door een programma of het systeem worden gebruikt.\n\nSluit elk programma dat bestanden of mappen gebruikt op het volume en klik op opnieuw proberen.</entry>
<entry lang="nl" key="CANT_GET_OUTER_VOL_INFO">Fout: Kan geen informatie krijgen over het buitenste volume!\nHet aanmaken van het volume kan niet doorgaan.</entry>
<entry lang="nl" key="CANT_ACCESS_OUTER_VOL">Fout: Kan het buitenste volume niet bereiken! Het aanmaken van het volume kan niet doorgaan.</entry>
<entry lang="nl" key="CANT_MOUNT_OUTER_VOL">Fout: kan het buitenste volume niet koppelen! Het aanmaken van het volume kan niet doorgaan.</entry>
@@ -813,7 +814,7 @@
<entry lang="nl" key="SECONDARY_KEY_SIZE_LRW">Tweak-sleutelgrootte (LRW-modus)</entry>
<entry lang="nl" key="BITS">bits</entry>
<entry lang="nl" key="BLOCK_SIZE">Blokgrootte</entry>
<entry lang="nl" key="KDF">KDF</entry>
<entry lang="nl" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="nl" key="PKCS5_ITERATIONS">PKCS-5-iteratieteller</entry>
<entry lang="nl" key="VOLUME_CREATE_DATE">Volume aangemaakt</entry>
<entry lang="nl" key="VOLUME_HEADER_DATE">Header laatst gewijzigd</entry>
@@ -855,7 +856,7 @@
<entry lang="nl" key="TC_INSTALLER_IS_RUNNING">VeraCrypt Installer draait momenteel op dit systeem en is bezig met het uitvoeren of voorbereiden van de installatie of update van VeraCrypt. Voordat u verder gaat, wacht u tot hij is voltooid of sluit u hem. Als u hem niet kunt sluiten, start uw computer dan opnieuw op voordat u verder gaat.</entry>
<entry lang="nl" key="INSTALL_FAILED">Installatie mislukt.</entry>
<entry lang="nl" key="UNINSTALL_FAILED">Het verwijderen is mislukt.</entry>
<entry lang="nl" key="DIST_PACKAGE_CORRUPTED">Dit distributiepakket is beschadigd. Probeer het opnieuw te downloaden (bij voorkeur van de officiële VeraCrypt-website op https://veracrypt.jp).</entry>
<entry lang="nl" key="DIST_PACKAGE_CORRUPTED">Dit distributiepakket is beschadigd. Probeer het opnieuw te downloaden (bij voorkeur van de officiële VeraCrypt-website op https://www.veracrypt.fr).</entry>
<entry lang="nl" key="CANNOT_WRITE_FILE_X">Kan bestand %s niet schrijven</entry>
<entry lang="nl" key="EXTRACTING_VERB">Uitpakken</entry>
<entry lang="nl" key="CANNOT_READ_FROM_PACKAGE">Kan geen gegevens uit het pakket lezen.</entry>
@@ -882,7 +883,7 @@
<entry lang="nl" key="INSTALL_COMPLETED">Installatie voltooid.</entry>
<entry lang="nl" key="CANT_CREATE_FOLDER">De map '%s' kon niet worden aangemaakt.</entry>
<entry lang="nl" key="CLOSE_TC_FIRST">Het VeraCrypt-apparaatstuurprogramma kan niet worden uitgeladen.\n\nSluit eerst alle geopende VeraCrypt-vensters. Als het niet helpt, start Windows dan opnieuw op en probeer het dan opnieuw.</entry>
<entry lang="nl" key="UNMOUNT_ALL_FIRST">Alle VeraCrypt-volumes moeten worden ontkoppeld voordat u VeraCrypt installeert of verwijdert.</entry>
<entry lang="nl" key="DISMOUNT_ALL_FIRST">Alle VeraCrypt-volumes moeten worden ontkoppeld voordat u VeraCrypt installeert of verwijdert.</entry>
<entry lang="nl" key="UNINSTALL_OLD_VERSION_FIRST">Er is momenteel een verouderde versie van VeraCrypt op dit systeem geïnstalleerd. Deze moet worden verwijderd voordat u deze nieuwe versie van VeraCrypt kunt installeren.\n\nZodra u deze melding sluit, wordt het verwijderingsprogramma van de oude versie gestart. Merk op dat er geen volume zal worden ontsleuteld wanneer u VeraCrypt verwijdert. Nadat u de oude versie van VeraCrypt heeft verwijderd, start u het installatieprogramma van de nieuwe versie van VeraCrypt opnieuw.</entry>
<entry lang="nl" key="REG_INSTALL_FAILED">Het toevoegen van de registervermeldingen is mislukt.</entry>
<entry lang="nl" key="DRIVER_INSTALL_FAILED">De installatie van het apparaatstuurprogramma is mislukt. Start Windows opnieuw op en probeer VeraCrypt opnieuw te installeren.</entry>
@@ -903,7 +904,7 @@
<entry lang="nl" key="MINUTES">minuten</entry>
<entry lang="nl" key="SECONDS"> s</entry>
<entry lang="nl" key="OPEN">Openen</entry>
<entry lang="nl" key="UNMOUNT">Ontkoppelen</entry>
<entry lang="nl" key="DISMOUNT">Ontkoppelen</entry>
<entry lang="nl" key="SHOW_TC">VeraCrypt weergeven</entry>
<entry lang="nl" key="HIDE_TC">VeraCrypt verbergen</entry>
<entry lang="nl" key="TOTAL_DATA_READ">Gegevens gelezen sinds koppeling</entry>
@@ -940,7 +941,7 @@
<entry lang="nl" key="ENTER_HEADER_BACKUP_PASSWORD">Voer het wachtwoord in voor de header die in het back-upbestand is opgeslagen</entry>
<entry lang="nl" key="KEYFILE_CREATED">Sleutelbestanden zijn met succes aangemaakt.</entry>
<entry lang="nl" key="KEYFILE_INCORRECT_NUMBER">Het aantal door u opgegeven sleutelbestanden is ongeldig.</entry>
<entry lang="nl" key="KEYFILE_INCORRECT_SIZE">Het sleutelbestand moet ten minste 64 bytes groot zijn.</entry>
<entry lang="nl" key="KEYFILE_INCORRECT_SIZE">De grootte van het sleutelbestand moet liggen tussen 64 en 1048576 bytes.</entry>
<entry lang="nl" key="KEYFILE_EMPTY_BASE_NAME">Voer een naam in voor de aan te maken sleutelbestanden.</entry>
<entry lang="nl" key="KEYFILE_INVALID_BASE_NAME">Basisnaam van sleutelbestand(en) is ongeldig</entry>
<entry lang="nl" key="KEYFILE_ALREADY_EXISTS">Het sleutelbestand '%s' bestaat al.\nWilt u het overschrijven? Het genereren wordt gestopt als u nee antwoordt.</entry>
@@ -971,11 +972,11 @@
<entry lang="nl" key="ERROR_CREATING_RESCUE_DISK">Fout bij het aanmaken van de VeraCrypt-herstelschijf.</entry>
<entry lang="nl" key="CANNOT_CREATE_RESCUE_DISK_ON_HIDDEN_OS">De VeraCrypt-herstelschijf kan niet worden aangemaakt wanneer een verborgen besturingssysteem draait.\n\nOm een VeraCrypt-herstelschijf aan te maken, start u het afleidingsbesturingssysteem op en selecteert u vervolgens 'systeem' &gt; 'herstelschijf aanmaken'.</entry>
<entry lang="nl" key="RESCUE_DISK_CHECK_FAILED">Kan niet verifiëren of de herstelschijf correct is gebrand.\n\nAls u de herstelschijf hebt gebrand, moet u de cd/dvd uitwerpen en opnieuw plaatsen; klik vervolgens op Volgende om het opnieuw te proberen. Als dit niet helpt, probeer dan een ander medium%s.\n\nAls u de herstelschijf nog niet hebt gebrand, doe dit dan en klik vervolgens op Volgende.\n\nAls u geprobeerd hebt een VeraCrypt-herstelschijf te verifiëren die is gemaakt voordat u deze wizard opstartte, moet u er rekening mee houden dat een dergelijke herstelschijf niet kan worden gebruikt, omdat deze voor een andere hoofdsleutel is gemaakt. U moet de nieuw gegenereerde herstelschijf branden.</entry>
<entry lang="nl" key="RESCUE_DISK_CHECK_FAILED_SENTENCE_APPENDIX"> en/of andere cd/dvd-opname-software</entry>
<entry lang="nl" key="RESCUE_DISK_CHECK_FAILED_SENTENCE_APPENDIX"> en/of andere cd/dvd-opname-software</entry>
<entry lang="nl" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - Systeemfavoriete volumes</entry>
<entry lang="nl" key="SYS_FAVORITES_HELP_LINK">Wat zijn systeemfavoriete volumes?</entry>
<entry lang="nl" key="SYS_FAVORITES_REQUIRE_PBA">De systeempartitie/-schijf lijkt niet versleuteld te zijn.\n\nSysteemfavoriete volumes kunnen worden gekoppeld met alleen een authenticatiewachtwoord voor het opstarten. Om het gebruik van systeemfavoriete volumes mogelijk te maken, moet u daarom eerst de systeempartitie/-schijf versleutelen.</entry>
<entry lang="nl" key="UNMOUNT_FIRST">Ontkoppel het volume voordat u verder gaat.</entry>
<entry lang="nl" key="DISMOUNT_FIRST">Ontkoppel het volume voordat u verder gaat.</entry>
<entry lang="nl" key="CANNOT_SET_TIMER">Fout: kan de timer niet instellen.</entry>
<entry lang="nl" key="IDPM_CHECK_FILESYS">Bestandssysteem controleren</entry>
<entry lang="nl" key="IDPM_REPAIR_FILESYS">Bestandssysteem repareren</entry>
@@ -997,7 +998,7 @@
<entry lang="nl" key="UNSUPPORTED_CHARS_IN_PWD">Fout: Wachtwoord mag alleen ASCII-tekens bevatten.\n\nNiet-ASCII-tekens in het wachtwoord kunnen ervoor zorgen dat het volume niet kan worden gekoppeld wanneer uw systeemconfiguratie verandert.\n\nDe volgende tekens zijn toegestaan:\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="nl" key="UNSUPPORTED_CHARS_IN_PWD_RECOM">Waarschuwing: het wachtwoord bevat niet-ASCII-tekens. Dit kan ertoe leiden dat het volume onmogelijk te koppelen is wanneer uw systeemconfiguratie verandert.\n\nU moet alle niet-ASCII-tekens in het wachtwoord vervangen door ASCII-tekens. Klik hiervoor op 'volumes' -&gt; 'volumewachtwoord wijzigen'.\n\nHet volgende zijn ASCII-tekens:\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="nl" key="EXE_FILE_EXTENSION_CONFIRM">WAARSCHUWING: wij raden u ten zeerste aan om bestandsextensies te vermijden die worden gebruikt voor uitvoerbare bestanden (zoals .exe, .sys of .dll) en andere vergelijkbare problematische bestandsextensies. Het gebruik van dergelijke bestandsextensies zorgt ervoor dat Windows en antivirussoftware interfereren met de container, wat de prestaties van het volume negatief beïnvloedt en ook andere ernstige problemen kan veroorzaken.\n\nWij raden u ten zeerste aan de bestandsextensie te verwijderen of te wijzigen (bijv. in '.hc').\n\nWeet u zeker dat u de problematische bestandsextensie wilt gebruiken?</entry>
<entry lang="nl" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WAARSCHUWING: deze container heeft een bestandsextensie die wordt gebruikt voor uitvoerbare bestanden (zoals .exe, .sys of .dll) of een andere vergelijkbare problematische bestandsextensie. Het zal er zeer waarschijnlijk voor zorgen dat Windows en antivirussoftware interfereren met de container, wat de prestaties van het volume nadelig zal beïnvloeden en ook andere ernstige problemen kan veroorzaken.\n\nWij raden u sterk aan om de bestandsextensie van de container te verwijderen of te wijzigen (bijv. in '.hc') nadat u het volume hebt ontkoppeld.</entry>
<entry lang="nl" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WAARSCHUWING: deze container heeft een bestandsextensie die wordt gebruikt voor uitvoerbare bestanden (zoals .exe, .sys of .dll) of een andere vergelijkbare problematische bestandsextensie. Het zal er zeer waarschijnlijk voor zorgen dat Windows en antivirussoftware interfereren met de container, wat de prestaties van het volume nadelig zal beïnvloeden en ook andere ernstige problemen kan veroorzaken.\n\nWij raden u sterk aan om de bestandsextensie van de container te verwijderen of te wijzigen (bijv. in '.hc') nadat u het volume hebt losgekoppeld.</entry>
<entry lang="nl" key="HOMEPAGE">Startpagina</entry>
<entry lang="nl" key="LARGE_IDE_WARNING_XP">WAARSCHUWING: het lijkt erop dat u geen service pack hebt toegepast op uw Windows-installatie. Schrijf niet naar IDE-schijven groter dan 128 GiB onder Windows XP waarop u Service Pack 1 of later niet hebt toegepast! Als u dat wel doet, kunnen gegevens op de schijf (ongeacht of het een VeraCrypt-volume is of niet) beschadigd raken. Merk op dat dit een beperking van Windows is, geen bug in VeraCrypt.</entry>
<entry lang="nl" key="LARGE_IDE_WARNING_2K">WAARSCHUWING: het lijkt erop dat u Service Pack 3 of later niet hebt toegepast op uw Windows-installatie. Schrijf niet naar IDE-schijven groter dan 128 GiB onder Windows 2000 waarop u Service Pack 3 of later niet hebt toegepast! Als u dat wel doet, kunnen gegevens op de schijf (ongeacht of het een VeraCrypt-volume is of niet) beschadigd raken. Merk op dat dit een beperking van Windows is, geen bug in VeraCrypt.\n\nOpmerking: Het kan ook nodig zijn om de 48-bits LBA-ondersteuning in het register in te schakelen; voor meer informatie raadpleegt u http://support.microsoft.com/kb/305098/EN-US</entry>
@@ -1009,11 +1010,11 @@
<entry lang="nl" key="NO_SYSENC_PARTITION_SELECTED">Geen partitie geselecteerd.\n\nKlik op "apparaat selecteren" om een ontkoppelde partitie te selecteren waarvoor normaal gesproken vóór het opstarten authenticatie nodig is (bijvoorbeeld een partitie op de versleutelde systeemschijf van een ander besturingssysteem dat niet actief is, of de versleutelde systeempartitie van een ander besturingssysteem).\n\nOpmerking: De geselecteerde partitie wordt gekoppeld als een normaal VeraCrypt-volume zonder voorafgaande authenticatie bij het opstarten. Dit is bijvoorbeeld handig voor back-up- of hersteloperaties.</entry>
<entry lang="nl" key="CONFIRM_SAVE_DEFAULT_KEYFILES">WAARSCHUWING: als standaard sleutelbestanden zijn ingesteld en ingeschakeld, zullen volumes die deze sleutelbestanden niet gebruiken, niet kunnen worden gekoppeld. Nadat u de standaard sleutelbestanden hebt ingeschakeld, moet u daarom het selectievakje 'sleutelbestanden gebruiken' (onder een wachtwoordinvoerveld) uitvinken als u dergelijke volumes wilt koppelen.\n\nWeet u zeker dat u de geselecteerde sleutelbestanden/paden als standaard wilt opslaan?</entry>
<entry lang="nl" key="HK_AUTOMOUNT_DEVICES">Automatisch koppelen</entry>
<entry lang="nl" key="HK_UNMOUNT_ALL">Alles ontkoppelen</entry>
<entry lang="nl" key="HK_DISMOUNT_ALL">Alles ontkoppelen</entry>
<entry lang="nl" key="HK_WIPE_CACHE">Cache wissen</entry>
<entry lang="nl" key="HK_UNMOUNT_ALL_AND_WIPE">Alles ontkoppelen en cache wissen</entry>
<entry lang="nl" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Alles geforceerd ontkoppelen en cache wissen</entry>
<entry lang="nl" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Alles geforceerd ontkoppelen, cache wissen en sluiten</entry>
<entry lang="nl" key="HK_DISMOUNT_ALL_AND_WIPE">Alles ontkoppelen en cache wissen</entry>
<entry lang="nl" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Alles geforceerd ontkoppelen en cache wissen</entry>
<entry lang="nl" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Alles geforceerd ontkoppelen, cache wissen en sluiten</entry>
<entry lang="nl" key="HK_MOUNT_FAVORITE_VOLUMES">Favoriete volumes koppelen</entry>
<entry lang="nl" key="HK_SHOW_HIDE_MAIN_WINDOW">Hoofdvenster van VeraCrypt weergeven/verbergen</entry>
<entry lang="nl" key="PRESS_A_KEY_TO_ASSIGN">(klik hier en druk op een toets)</entry>
@@ -1025,14 +1026,14 @@
<entry lang="nl" key="PAGING_FILE_CREATION_PREVENTED">Het aanmaken van paging-bestanden is voorkomen.\n\nHoud er rekening mee dat paging-bestanden vanwege Windows-problemen niet kunnen worden gelokaliseerd op niet-systeem-VeraCrypt-volumes (inclusief favoriete volumes van het systeem). VeraCrypt ondersteunt het maken van paging-bestanden alleen op een versleutelde systeempartitie/schijf.</entry>
<entry lang="nl" key="SYS_ENC_HIBERNATION_PREVENTED">Een fout of incompatibiliteit voorkomt dat VeraCrypt het sluimerstand-bestand versleutelt. Hierdoor is sluimerstand voorkomen.\n\nOpmerking: wanneer een computer in sluimerstand gaat (of in een energiebesparende modus komt), wordt de inhoud van het systeemgeheugen van de computer geschreven naar een sluimerstand-opslagbestand dat zich op de systeemschijf bevindt. VeraCrypt zou niet in staat zijn om te voorkomen dat encryptiesleutels en de inhoud van gevoelige bestanden die in het RAM worden geopend, onversleuteld worden opgeslagen in dit bestand.</entry>
<entry lang="nl" key="HIDDEN_OS_HIBERNATION_PREVENTED">Sluimerstand is voorkomen.\n\nVeraCrypt ondersteunt geen sluimerstand op verborgen besturingssystemen die een extra opstartpartitie gebruiken. Merk op dat de opstartpartitie gedeeld wordt door zowel het afleidings- als het verborgen systeem. Daarom moet VeraCrypt, om datalekken en problemen tijdens de hervatting van de sluimerstand te voorkomen, voorkomen dat het verborgen systeem naar de gedeelde opstartpartitie schrijft en in de sluimerstand komt.</entry>
<entry lang="nl" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">VeraCrypt-volume gekoppeld als %c: is ontkoppeld.</entry>
<entry lang="nl" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt-volumes zijn ontkoppeld.</entry>
<entry lang="nl" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt volumes zijn ontkoppeld en de wachtwoordcache is gewist.</entry>
<entry lang="nl" key="SUCCESSFULLY_UNMOUNTED">Met succes ontkoppeld</entry>
<entry lang="nl" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">VeraCrypt-volume gekoppeld als %c: is ontkoppeld.</entry>
<entry lang="nl" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt-volumes zijn ontkoppeld.</entry>
<entry lang="nl" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt volumes zijn ontkoppeld en de wachtwoordcache is gewist.</entry>
<entry lang="nl" key="SUCCESSFULLY_DISMOUNTED">Met succes ontkoppeld</entry>
<entry lang="nl" key="CONFIRM_BACKGROUND_TASK_DISABLED">WAARSCHUWING: als de VeraCrypt-achtergrondtaak is uitgeschakeld, zullen de volgende functies worden uitgeschakeld:\n\n1) Sneltoetsen\n2) Automatisch ontkoppelen (bijv. bij het afmelden, onbedoelde verwijdering van het gastheerapparaat, time-out, etc.)\n3) Automatisch koppelen van favoriete volumes\n4) Meldingen (bijv. wanneer schade aan het verborgen volume wordt voorkomen)\n5) Systeemvakpictogram\n\nOpmerking: U kunt de achtergrondtaak op elk moment afsluiten door met de rechtermuisknop op het VeraCrypt-systeemvakpictogram te klikken en 'afsluiten' te selecteren.\n\nWeet u zeker dat u de VeraCrypt-achtergrondtaak permanent wilt uitschakelen?</entry>
<entry lang="nl" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">WAARSCHUWING: als deze optie is uitgeschakeld, zijn volumes met open bestanden/mappen niet mogelijk om automatisch te ontkoppelen.\n\nWeet u zeker dat u deze optie wilt uitschakelen?</entry>
<entry lang="nl" key="WARN_PREF_AUTO_UNMOUNT">WAARSCHUWING: volumes met open bestanden/mappen worden NIET automatisch ontkoppeld.\n\nOm dit te voorkomen, schakelt u de volgende optie in dit dialoogvenster in: 'Automatisch ontkoppelen forceren, zelfs als het volume open bestanden of mappen bevat'.</entry>
<entry lang="nl" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">WAARSCHUWING: wanneer de batterij van de laptop bijna leeg is, kan het zijn dat Windows niet de juiste berichten verstuurt naar actieve toepassingen wanneer de computer naar de energiebesparende modus overschakelt. Daarom is het mogelijk dat VeraCrypt er in dergelijke gevallen niet in slaagt om volumes automatisch te ontkoppelen.</entry>
<entry lang="nl" key="CONFIRM_NO_FORCED_AUTODISMOUNT">WAARSCHUWING: als deze optie is uitgeschakeld, zijn volumes met open bestanden/mappen niet mogelijk om automatisch te ontkoppelen.\n\nWeet u zeker dat u deze optie wilt uitschakelen?</entry>
<entry lang="nl" key="WARN_PREF_AUTO_DISMOUNT">WAARSCHUWING: volumes met open bestanden/mappen worden NIET automatisch ontkoppeld.\n\nOm dit te voorkomen, schakelt u de volgende optie in dit dialoogvenster in: 'Automatisch ontkoppelen forceren, zelfs als het volume open bestanden of mappen bevat'.</entry>
<entry lang="nl" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">WAARSCHUWING: wanneer de batterij van de laptop bijna leeg is, kan het zijn dat Windows niet de juiste berichten verstuurt naar actieve toepassingen wanneer de computer naar de energiebesparende modus overschakelt. Daarom is het mogelijk dat VeraCrypt er in dergelijke gevallen niet in slaagt om volumes automatisch te ontkoppelen.</entry>
<entry lang="nl" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">U hebt het proces van versleuteling/ontsleuteling van een partitie/volume gepland. Het proces is nog niet voltooid.\n\nWilt u het proces nu hervatten?</entry>
<entry lang="nl" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">U hebt het proces van versleuteling of ontsleuteling van de systeempartitie/-schijf gepland. Het proces is nog niet voltooid.\n\nWilt u het proces nu starten (hervatten)?</entry>
<entry lang="nl" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">Wilt u gevraagd worden of u de huidige geplande processen van versleuteling/ontsleuteling van niet-systeempartities/volumes wilt hervatten?</entry>
@@ -1063,7 +1064,7 @@
<entry lang="nl" key="SYS_AUTOMOUNT_DISABLED">Uw systeem is niet geconfigureerd om nieuwe volumes automatisch te koppelen. Het is wellicht onmogelijk om apparaat-gehoste VeraCrypt-volumes te koppelen. Automatisch koppelen kan worden ingeschakeld door de volgende opdracht uit te voeren en het systeem opnieuw op te starten.\n\nmountvol.exe /E</entry>
<entry lang="nl" key="SYS_ASSIGN_DRIVE_LETTER">Wijs een stationsletter toe aan de partitie/het apparaat voordat u verder gaat ('Configuratiescherm' &gt; 'Systeem en onderhoud' &gt; 'Administratieve tools' - 'Partities op de harde schijf aanmaken en formatteren').\n\nMerk op dat dit een vereiste is van het besturingssysteem.</entry>
<entry lang="nl" key="MOUNT_TC_VOLUME">VeraCrypt-volume koppelen</entry>
<entry lang="nl" key="UNMOUNT_ALL_TC_VOLUMES">Alle VeraCrypt-volumes ontkoppelen</entry>
<entry lang="nl" key="DISMOUNT_ALL_TC_VOLUMES">Alle VeraCrypt-volumes ontkoppelen</entry>
<entry lang="nl" key="UAC_INIT_ERROR">VeraCrypt kon geen beheerdersrechten verkrijgen.</entry>
<entry lang="nl" key="ERR_ACCESS_DENIED">Toegang werd geweigerd door het besturingssysteem.\n\nMogelijke oorzaak: het besturingssysteem vereist dat u lees-/schrijfrechten (of beheerdersrechten) hebt voor bepaalde mappen, bestanden en apparaten, zodat u er gegevens van/naar kunt lezen en schrijven. Normaal gesproken mag een gebruiker zonder beheerdersrechten bestanden in zijn of haar map Documenten aanmaken, lezen en wijzigen.</entry>
<entry lang="nl" key="SECTOR_SIZE_UNSUPPORTED">Fout: De schijf gebruikt een niet-ondersteunde sectorgrootte.\n\nHet is momenteel niet mogelijk om partitie-/apparaatgehoste volumes aan te maken op schijven die sectoren groter dan 4096 bytes gebruiken. Merk echter op dat u op dergelijke schijven bestandsgehoste volumes (containers) kunt aamaken.</entry>
@@ -1092,7 +1093,8 @@
<entry lang="nl" key="WHOLE_SYC_DEVICE_RECOM">Aangezien uw systeemschijf slechts één enkele partitie bevat die de hele schijf in beslag neemt, is het beter (veiliger) om de hele schijf te versleutelen, inclusief de vrije onbenutte ruimte die normaal gesproken een dergelijke partitie omringt.\n\nWilt u de volledige systeemschijf versleutelen?</entry>
<entry lang="nl" key="TEMP_NOT_ON_SYS_PARTITION">Uw systeem is geconfigureerd om tijdelijke bestanden op te slaan op een niet-systeempartitie.\n\nTijdelijke bestanden mogen alleen op de systeempartitie worden opgeslagen.</entry>
<entry lang="nl" key="USER_PROFILE_NOT_ON_SYS_PARTITION">Uw gebruikersprofielbestanden worden niet opgeslagen op de systeempartitie.\n\nGebruikersprofielbestanden mogen alleen op de systeempartitie worden opgeslagen.</entry>
<entry lang="nl" key="PAGING_FILE_NOT_ON_SYS_PARTITION">Er bevinden zich wisselbestanden op niet-systeempartities.\n\nWisselbestanden kunnen zich alleen op de systeempartitie bevinden.</entry>
<entry lang="nl" key="PAGING_FILE_NOT_ON_SYS_PARTITION">Er bevinden zich wisselbestanden op niet-systeempartities.\n\n
Wisselbestanden kunnen zich alleen op de systeempartitie bevinden.</entry>
<entry lang="nl" key="RESTRICT_PAGING_FILES_TO_SYS_PARTITION">Wilt u Windows zo configureren dat het nu alleen nog maar wisselbestanden aanmaakt op de Windows-partitie?\n\nMerk op dat als u op 'Ja' klikt, de computer opnieuw wordt opgestart. Start vervolgens VeraCrypt en probeer het verborgen besturingssysteem opnieuw aan te maken.</entry>
<entry lang="nl" key="LEAKS_OUTSIDE_SYSPART_UNIVERSAL_EXPLANATION">Anders kan de aannemelijke ontkenning van het verborgen besturingssysteem negatief worden beïnvloed.\n\nOpmerking: Als een tegenstander de inhoud van dergelijke bestanden (die zich op een niet-systeempartitie bevinden) heeft geanalyseerd, kan hij erachter komen dat u deze wizard hebt gebruikt in de modus voor aanmaken van een verborgen systeem (wat kan wijzen op het bestaan van een verborgen besturingssysteem op uw computer). Merk ook op dat dergelijke bestanden die op de systeempartitie zijn opgeslagen, veilig door VeraCrypt zullen worden gewist tijdens het proces van het aanmaken van het verborgen besturingssysteem.</entry>
<entry lang="nl" key="DECOY_OS_REINSTALL_WARNING">WAARSCHUWING: tijdens het proces van het aanmaken van het verborgen besturingssysteem moet u het huidige systeem volledig opnieuw installeren (om veilig een afleidingsysteem aan te maken).\n\nOpmerking: Het huidige besturingssysteem en de volledige inhoud van de systeempartitie zal worden gekopieerd naar het verborgen volume (om het verborgen systeem aan te maken).\n\nWeet u zeker dat u Windows kunt installeren met behulp van een Windows-installatiemedium (of met behulp van een service-partitie)?</entry>
@@ -1204,11 +1206,14 @@
<entry lang="nl" key="RESCUE_DISK_HELP_PORTION_4">1) Als het VeraCrypt-bootloader-scherm niet verschijnt nadat u uw computer opstart (of als Windows niet opstart), kan de VeraCrypt-bootloader beschadigd zijn. Met de VeraCrypt-herstelschijf kunt u deze herstellen en zo weer toegang krijgen tot uw versleutelde systeem en gegevens (let wel dat u dan nog steeds het juiste wachtwoord moet invoeren). Selecteer in het scherm van de herstelschijf 'Herstelopties' &gt; 'VeraCrypt-bootloader herstellen'. Druk vervolgens op 'Y' om de actie te bevestigen, verwijder de herstelschijf uit uw cd/dvd-station en start uw computer opnieuw op.\n\n</entry>
<entry lang="nl" key="RESCUE_DISK_HELP_PORTION_5">2) Als u herhaaldelijk het juiste wachtwoord invoert, maar VeraCrypt zegt dat het wachtwoord onjuist is, kunnen de hoofdsleutel of andere belangrijke gegevens beschadigd zijn. Met de VeraCrypt-herstelschijf kunt u deze herstellen en zo weer toegang krijgen tot uw versleutelde systeem en gegevens (let wel dat u dan nog steeds het juiste wachtwoord moet invoeren). Selecteer in het scherm van de herstelschijf 'herstelopties' &gt; 'sleutelgegevens herstellen'. Voer vervolgens uw wachtwoord in, druk op 'Y' om de actie te bevestigen, verwijder de herstelschijf uit uw cd/dvd-station en start uw computer opnieuw op.\n\n</entry>
<entry lang="nl" key="RESCUE_DISK_HELP_PORTION_6">3) Als de VeraCrypt-bootloader beschadigd is, kunt u voorkomen dat deze wordt uitgevoerd door direct vanaf de VeraCrypt-herstelschijf op te starten. Plaats uw herstelschijf in uw cd/dvd-station en voer vervolgens uw wachtwoord in het scherm van de herstelschijf in.\n\n</entry>
<entry lang="nl" key="RESCUE_DISK_HELP_PORTION_7">4) Als Windows beschadigd is en niet kan starten, kunt u met de VeraCrypt-herstelschijf de partitie/schijf permanent ontsleutelen voordat Windows start. Selecteer in het herstelschijf-scherm 'herstelopties' &gt; 'Systeempartitie/-schijf permanent ontsleutelen'. Voer het juiste wachtwoord in en wacht tot de ontsleuteling is voltooid. Dan kunt u bijvoorbeeld uw MS Windows setup-cd/dvd opstarten om uw Windows-installatie te repareren.\n\n</entry>
<entry lang="nl" key="RESCUE_DISK_HELP_PORTION_7">4) Als Windows beschadigd is en niet kan starten, kunt u met de VeraCrypt-herstelschijf de partitie/schijf permanent ontsleutelen voordat Windows start. Selecteer in het herstelschijf-scherm 'herstelopties' &gt; 'Systeempartitie/-schijf permanent ontsleutelen'. Voer het juiste wachtwoord in en wacht tot de ontsleuteling is voltooid. Dan kunt u bijvoorbeeld uw MS Windows setup-cd/dvd opstarten om uw Windows-installatie te repareren.
</entry>
<entry lang="nl" key="RESCUE_DISK_HELP_PORTION_8">Opmerking: als Windows beschadigd is (niet kan starten) en u moet het herstellen (of toegang krijgen tot bestanden op het systeem), kunt u voorkomen dat u de systeempartitie/schijf moet ontsleutelen door deze stappen te volgen: als u meerdere besturingssystemen op uw computer hebt geïnstalleerd, start dan het systeem op dat geen verificatie voor het opstarten vereist. Als u niet meerdere besturingssystemen op uw computer hebt geïnstalleerd, kunt u een WinPE- of BartPE-cd/dvd opstarten of u kunt uw systeemstation als een tweede of externe schijf aansluiten op een andere computer en vervolgens het besturingssysteem dat op de computer is geïnstalleerd opstarten. Nadat u een systeem hebt opgestart, voert u VeraCrypt uit, klikt u op 'apparaat selecteren', selecteert u de betreffende systeempartitie, klikt u op 'ok', selecteert u 'systeem' &gt; 'koppelen zonder pre-boot-authenticatie', voert u uw authenticatiewachtwoord voor het opstarten in en klikt u op 'ok'. De partitie wordt gekoppeld als een normaal VeraCrypt-volume (de gegevens worden zoals gewoonlijk on-the-fly ontsleuteld/versleuteld in RAM bij toegang).\n\n\n</entry>
<entry lang="nl" key="RESCUE_DISK_HELP_PORTION_9">Merk op dat zelfs als u uw VeraCrypt-herstelschijf verliest en een aanvaller ze vindt, hij of zij NIET in staat zal zijn om de systeempartitie of -schijf te ontsleutelen zonder het juiste wachtwoord.</entry>
<entry lang="nl" key="DECOY_OS_INSTRUCTIONS_PORTION_1">\n\nBELANGRIJK - DRUK DEZE TEKST INDIEN MOGELIJK AF (klik op 'afdrukken' hieronder).\n\n\nLet op: deze tekst wordt automatisch weergegeven telkens als u het verborgen systeem start, totdat u begint met het maken van het afleidingsysteem.\n\n\n</entry>
<entry lang="nl" key="DECOY_OS_INSTRUCTIONS_PORTION_2">Hoe maakt u veilig en betrouwbaar een afleidingsysteem aan?\n----------------------------------------------------------------------------\n\nOm een plausibele ontkenning te bereiken, moet u nu het afleidingsbesturingssysteem maken. Volg deze stappen om dit te doen:\n\n</entry>
<entry lang="nl" key="DECOY_OS_INSTRUCTIONS_PORTION_2">Hoe maakt u veilig en betrouwbaar een afleidingsysteem aan?\n----------------------------------------------------------------------------\n\nOm een plausibele ontkenning te bereiken, moet u nu het afleidingsbesturingssysteem maken. Volg deze stappen om dit te doen:
</entry>
<entry lang="nl" key="DECOY_OS_INSTRUCTIONS_PORTION_3">1) Sluit uw computer om veiligheidsredenen af en laat deze minstens enkele minuten uitgeschakeld (hoe langer, hoe beter). Dit is nodig om het geheugen, dat gevoelige gegevens bevat, te wissen. Zet vervolgens de computer aan, maar start het verborgen systeem niet op.\n\n</entry>
<entry lang="nl" key="DECOY_OS_INSTRUCTIONS_PORTION_4">2) installeer Windows op de partitie waarvan de inhoud is gewist (d.w.z. op de partitie waar het oorspronkelijke systeem, waarvan het verborgen systeem een kloon is, is geïnstalleerd).\n\nBELANGRIJK: WANNEER U BEGINT MET HET INSTALLEREN VAN HET AFLEIDINGSYSTEEM, ZAL HET VERBORGEN SYSTEEM *NIET* KUNNEN OPSTARTEN (omdat de Veracrypt-bootloader zal worden gewist door de Windows-systeem-installer). DIT IS NORMAAL EN VERWACHT. GEEN PANIEK. U ZAL IN STAAT ZIJN OM HET VERBORGEN SYSTEEM OPNIEUW OP TE STARTEN ZODRA U BEGINT MET HET VERSLEUTELEN VAN HET AFLEIDINGSYSTEEM (omdat Veracrypt dan automatisch de Veracrypt-bootloader op de systeemschijf zal installeren).\n\nBelangrijk: de grootte van de partitie van het afleidingsysteem moet gelijk blijven aan de grootte van het verborgen volume (aan deze voorwaarde is nu voldaan). Bovendien mag u geen partitie maken tussen de partitie van het afleidingsysteem en de partitie waar het verborgen systeem zich bevindt.\n\n</entry>
<entry lang="nl" key="DECOY_OS_INSTRUCTIONS_PORTION_5">3) Start het afleidingsysteem (dat u in stap 2 hebt geïnstalleerd) en installeer VeraCrypt erop.\n\nHoud er rekening mee dat het afleidingsysteem nooit gevoelige gegevens mag bevatten.\n\n</entry>
@@ -1218,7 +1223,8 @@
<entry lang="nl" key="DECOY_OS_INSTRUCTIONS_PORTION_9">7) Als alleen het verborgen systeem en het afleidingsysteem op de computer zijn geïnstalleerd, selecteer dan de optie 'Single-boot' (als er meer dan deze twee systemen op de computer zijn geïnstalleerd, selecteer dan 'Multi-boot'). Klik vervolgens op 'Volgende'.\n\n</entry>
<entry lang="nl" key="DECOY_OS_INSTRUCTIONS_PORTION_10">8) Belangrijk: in deze stap moet u VOOR HET AFLEIDINGSSYSTEEM HETZELFDE VERSLEUTELINGS- EN HASH-ALGORITME SELECTEREN DAT U VOOR HET VERBORGEN SYSTEEM HEBT GESELECTEERD! ANDERS ZAL HET VERBORGEN SYSTEEM ONTOEGANKELIJK ZIJN! Met andere woorden, het afleidingssysteem moet worden versleuteld met hetzelfde versleutelingsalgoritme als het verborgen systeem. Merk op: de reden is dat het afleidingssysteem en het verborgen systeem een enkele bootloader zullen delen, die slechts een enkel algoritme ondersteunt, geselecteerd door de gebruiker (voor elk algoritme is er een speciale versie van de VeraCrypt-bootloader).\n\n</entry>
<entry lang="nl" key="DECOY_OS_INSTRUCTIONS_PORTION_11">9) Kies in deze stap een wachtwoord voor het afleidingsbesturingssysteem. Dit zal het wachtwoord zijn dat u aan een tegenstander kunt vrijgeven als u gevraagd of gedwongen wordt om uw authenticatiewachtwoord voor het opstarten vrij te geven (het andere wachtwoord dat u kunt vrijgeven is het wachtwoord voor het buitenste volume). Het bestaan van het derde wachtwoord (d.w.z. van het authenticatiewachtwoord vóór het opstarten van het verborgen besturingssysteem) blijft geheim. Belangrijk: het wachtwoord dat u voor het afleidingssysteem kiest, moet substantieel verschillen van het wachtwoord dat u voor het verborgen volume (d.w.z. voor het verborgen besturingssysteem) hebt gekozen.\n\n</entry>
<entry lang="nl" key="DECOY_OS_INSTRUCTIONS_PORTION_12">10) Volg de overige instructies in de wizard om het afleidingsbesturingssysteem te versleutelen.\n\n\n\n</entry>
<entry lang="nl" key="DECOY_OS_INSTRUCTIONS_PORTION_12">10) Volg de overige instructies in de wizard om het afleidingsbesturingssysteem te versleutelen.\n\n\n\n
</entry>
<entry lang="nl" key="DECOY_OS_INSTRUCTIONS_PORTION_13">Nadat het afleidingsysteem is aangemaakt\n------------------------------------------------\n\nNadat u het afleidingsysteem heeft versleuteld, zal het hele proces van het aanmaken van het verborgen besturingssysteem voltooid zijn en zult u in staat zijn om deze drie wachtwoorden te gebruiken:\n\n1) Pre-boot-authenticatiewachtwoord voor het verborgen besturingssysteem.\n\n2) Pre-boot-authenticatiewachtwoord voor het afleidingsbesturingssysteem.\n\n3) Wachtwoord voor het buitenste volume.\n\n</entry>
<entry lang="nl" key="DECOY_OS_INSTRUCTIONS_PORTION_14">Als u het verborgen besturingssysteem wilt starten, hoeft u alleen maar het wachtwoord voor het verborgen besturingssysteem in te voeren in het VeraCrypt-bootloader-scherm (dat verschijnt nadat u uw computer hebt aangezet of herstart).\n\nAls u het afleidingsbesturingssysteem wilt starten, hoeft u alleen maar het wachtwoord voor het afleidingsbesturingssysteem in te voeren in het VeraCrypt-bootloader-scherm.\n\nHet wachtwoord voor het afleidingsysteem kan aan iedereen worden bekendgemaakt die u dwingt om uw authenticatiewachtwoord voor het opstarten te onthullen. Het bestaan van het verborgen volume (en van het verborgen besturingssysteem) blijft geheim.\n\n</entry>
<entry lang="nl" key="DECOY_OS_INSTRUCTIONS_PORTION_15">Het derde wachtwoord (voor het buitenste volume) kan worden bekendgemaakt aan iedereen die u dwingt om het wachtwoord voor de eerste partitie achter de systeempartitie te onthullen, waar zowel het buitenste volume als het verborgen volume (dat het verborgen besturingssysteem bevat) zich bevindt. Het bestaan van het verborgen volume (en van het verborgen besturingssysteem) blijft geheim.\n\n\n</entry>
@@ -1229,7 +1235,7 @@
<entry lang="nl" key="HIDDEN_OS_CREATION_PREINFO_HELP">In de volgende stappen zal VeraCrypt het verborgen besturingssysteem aanmaken door de inhoud van de systeempartitie te kopiëren naar het verborgen volume (de gegevens die worden gekopieerd zullen ter plaatse worden versleuteld met een encryptiesleutel die verschilt van de sleutel die voor het afleidingsbesturingssysteem zal worden gebruikt).\n\nMerk op dat het proces zal worden uitgevoerd in de pre-boot omgeving (voordat Windows start) en het kan lang duren; enkele uren of zelfs enkele dagen (afhankelijk van de grootte van de systeempartitie en de prestaties van uw computer).\n\nU kunt het proces onderbreken, uw computer afsluiten, het besturingssysteem starten en vervolgens het proces hervatten. Echter, als u het onderbreekt, zal het hele proces van het kopiëren van het systeem vanaf het begin moeten beginnen (omdat de inhoud van de systeempartitie niet mag veranderen tijdens het klonen).</entry>
<entry lang="nl" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">Wilt u het hele proces van het aanmaken van het verborgen besturingssysteem annuleren?\n\nOpmerking: U kunt het proces NIET hervatten als u het proces nu annuleert.</entry>
<entry lang="nl" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">Wilt u de voorafgaande test van de systeemversleuteling annuleren?</entry>
<entry lang="nl" key="BOOT_PRETEST_FAILED_RETRY">De VeraCrypt systeemversleuteling-pretest is mislukt. Wilt u het opnieuw proberen?\n\nAls u 'Nee' selecteert, wordt de pre-boot authenticatiecomponent verwijderd.\n\nOpmerkingen:\n\n- Als de VeraCryp-bootloader u niet heeft gevraagd om het wachtwoord in te voeren voordat Windows is gestart, is het mogelijk dat uw besturingssysteem niet opstart vanaf de schijf waarop het is geïnstalleerd. Dit wordt niet ondersteund.\n\n- Als u een ander versleutelingsalgoritme dan AES hebt gebruikt en de pretest is mislukt (en u hebt het wachtwoord ingevoerd), kan dit zijn veroorzaakt door een onjuist ontworpen stuurprogramma. Selecteer 'Nee' en probeer de systeempartitie/drive opnieuw te versleutelen, maar gebruik het AES-versleutelingsalgoritme (dat de laagste geheugenvereisten heeft).\n\n- Voor meer mogelijke oorzaken en oplossingen, zie: https://veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="nl" key="BOOT_PRETEST_FAILED_RETRY">De VeraCrypt systeemversleuteling-pretest is mislukt. Wilt u het opnieuw proberen?\n\nAls u 'Nee' selecteert, wordt de pre-boot authenticatiecomponent verwijderd.\n\nOpmerkingen:\n\n- Als de VeraCryp-bootloader u niet heeft gevraagd om het wachtwoord in te voeren voordat Windows is gestart, is het mogelijk dat uw besturingssysteem niet opstart vanaf de schijf waarop het is geïnstalleerd. Dit wordt niet ondersteund.\n\n- Als u een ander versleutelingsalgoritme dan AES hebt gebruikt en de pretest is mislukt (en u hebt het wachtwoord ingevoerd), kan dit zijn veroorzaakt door een onjuist ontworpen stuurprogramma. Selecteer 'Nee' en probeer de systeempartitie/drive opnieuw te versleutelen, maar gebruik het AES-versleutelingsalgoritme (dat de laagste geheugenvereisten heeft).\n\n- Voor meer mogelijke oorzaken en oplossingen, zie: https://www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="nl" key="SYS_DRIVE_NOT_ENCRYPTED">De systeempartitie/-schijf lijkt niet versleuteld te zijn (ook niet gedeeltelijk).</entry>
<entry lang="nl" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">Uw systeempartitie/schijf is versleuteld (gedeeltelijk of volledig).\n\nOntsleutel uw systeempartitie/schijf volledig voordat u verder gaat. Selecteer hiervoor 'Systeem' &gt; 'Systeempartitie/schijf permanent ontsleutelen' in de menubalk van het hoofdvenster van VeraCrypt.</entry>
<entry lang="nl" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">Wanneer de systeempartitie/schijf versleuteld is (gedeeltelijk of volledig), kunt u VeraCrypt niet downgraden (maar u kunt het upgraden of dezelfde versie opnieuw installeren).</entry>
@@ -1306,8 +1312,8 @@
<entry lang="nl" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Merk op dat het aantal threads momenteel beperkt is, wat van invloed zal zijn op de benchmarkresultaten (slechtere prestaties).\n\nOm het volledige potentieel van de processor(s) te benutten, selecteert u 'instellingen' &gt; 'prestaties' en schakelt u de overeenkomstige optie uit.</entry>
<entry lang="nl" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">Wilt u dat VeraCrypt probeert de schrijfbeveiliging van de partitie/drive uit te schakelen?</entry>
<entry lang="nl" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">WAARSCHUWING: deze instelling kan de prestaties verminderen.\n\nWeet u zeker dat u deze instelling wilt gebruiken?</entry>
<entry lang="nl" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Waarschuwing: VeraCrypt-volume automatisch ontkoppeld</entry>
<entry lang="nl" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Voordat u een apparaat met een gekoppeld volume fysiek verwijdert of uitschakelt, moet u altijd eerst het volume in VeraCrypt ontkoppelen.\n\nOnverwachte spontane ontkoppeling wordt meestal veroorzaakt door een intermitterend defecte kabel, schijf (behuizing), enz.</entry>
<entry lang="nl" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Waarschuwing: VeraCrypt-volume automatisch ontkoppeld</entry>
<entry lang="nl" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Voordat u een apparaat met een gekoppeld volume fysiek verwijdert of uitschakelt, moet u altijd eerst het volume in VeraCrypt ontkoppelen.\n\nOnverwachte spontane ontkoppeling wordt meestal veroorzaakt door een intermitterend defecte kabel, schijf (behuizing), enz.</entry>
<entry lang="nl" key="UNSUPPORTED_TRUECRYPT_FORMAT">Dit volume is aangemaakt met TrueCrypt %x.%x maar VeraCrypt ondersteunt alleen TrueCrypt-volumes die zijn aangemaakt met TrueCrypt 6.x/7.x.</entry>
<entry lang="nl" key="TEST">Testen</entry>
<entry lang="nl" key="KEYFILE">Sleutelbestand</entry>
@@ -1403,7 +1409,7 @@
<entry lang="nl" key="ITERATIONS">Iteraties</entry>
<entry lang="nl" key="PRE-BOOT">Pre-boot</entry>
<entry lang="nl" key="RESCUE_DISK_EFI_INFO">Voordat u de partitie kunt versleutelen, moet u een VeraCrypt-herstelschijf aanmaken, die de volgende doeleinden dient:\n\n- Als de VeraCrypt-bootlader, de hoofdsleutel of andere kritieke gegevens beschadigd raken, kunt u deze met de herstelschijf herstellen (let wel, dan moet u nog steeds het juiste wachtwoord invoeren).\n\n- Als Windows beschadigd raakt en niet kan starten, kunt u met de herstelschijf de partitie permanent ontsleutelen voordat Windows start.\n\n- De herstelschijf bevat een back-up van de huidige EFI-bootloader en stelt u in staat om deze indien nodig te herstellen.\n\nDe ZIP-image van de VeraCrypt-herstelschijf zal worden aangemaakt op de hieronder opgegeven locatie.</entry>
<entry lang="nl" key="RESCUE_DISK_EFI_EXTRACT_INFO">De ZIP-image van de herstelschijf is aangemaakt en opgeslagen in dit bestand:%s\n\nNu moet u het uitpakken naar een USB-stick die is geformatteerd als FAT/FAT32.\n\n%lsNadat u de herstelschijf hebt gemaakt, klikt u op Volgende om te controleren of ze correct is gemaakt.</entry>
<entry lang="nl" key="RESCUE_DISK_EFI_EXTRACT_INFO">Het ZIP-bestand van de herstelschijf is aangemaakt en opgeslagen in dit bestand:%s\n\nNu moet u het uitpakken naar een USB-stick die is geformatteerd als FAT/FAT32.\n\n%lsNadat u de herstelschijf hebt gemaakt, klikt u op Volgende om te controleren of ze correct is gemaakt.</entry>
<entry lang="nl" key="RESCUE_DISK_EFI_EXTRACT_INFO_NO_CHECK">De ZIP-image van de herstelschijf is aangemaakt en opgeslagen in dit bestand:\n%s\n\nNu moet u de image ofwel uitpakken naar een USB-stick die is geformatteerd als FAT/FAT32 of hem naar een veilige locatie verplaatsen voor later gebruik.\n\n%lsKlik op Volgende om verder te gaan.</entry>
<entry lang="nl" key="RESCUE_DISK_EFI_EXTRACT_INFO_NOTE">BELANGRIJK: Merk op dat het zip-bestand rechtstreeks naar de root van de USB-stick moet worden uitgepakt. Als de stationsletter van de USB-stick bijvoorbeeld E: is, dan zou het uitpakken van het zip-bestand een map E:\\EFI op de USB-stick moeten aanmaken.\n\n</entry>
<entry lang="nl" key="RESCUE_DISK_EFI_CHECK_FAILED">Kan niet controleren of de herstelschijf correct is uitgepakt.\n\nAls u de herstelschijf hebt uitgepakt, werpt u de USB-stick uit en plaatst u hem opnieuw; klik vervolgens op Volgende om het opnieuw te proberen. Als dit niet helpt, probeer dan een andere USB-stick en/of andere ZIP-software.\n\nAls u de herstelschijf nog niet hebt uitgepakt, doe dit dan en klik vervolgens op Volgende.\n\nAls u geprobeerd hebt een VeraCrypt-herstelschijf te verifiëren die is gemaakt voordat u deze wizard startte, let er dan op dat een dergelijke herstelschijf niet kan worden gebruikt, omdat deze voor een andere hoofdsleutel is gemaakt. U moet de nieuw gegenereerde ZIP-image van de herstelschijf uitpakken.</entry>
@@ -1453,10 +1459,11 @@
<entry lang="nl" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Alle gekoppelde volumes aan favorieten toevoegen...</entry>
<entry lang="nl" key="TASKICON_PREF_MENU_ITEMS">Menu-onderdelen van het taakpictogram</entry>
<entry lang="nl" key="TASKICON_PREF_OPEN_VOL">Gekoppelde volumes openen</entry>
<entry lang="nl" key="TASKICON_PREF_UNMOUNT_VOL">Gekoppelde volumes ontkoppelen</entry>
<entry lang="nl" key="TASKICON_PREF_DISMOUNT_VOL">Gekoppelde volumes ontkoppelen</entry>
<entry lang="nl" key="DISK_FREE">Beschikbare vrije ruimte: {0}</entry>
<entry lang="nl" key="VOLUME_SIZE_HELP">Geef de grootte van de container op die u wilt maken. Merk op dat de minimaal mogelijke grootte van een volume 292 KiB is.</entry>
<entry lang="nl" key="LINUX_CONFIRM_INNER_VOLUME_CALC">WAARSCHUWING: u hebt een ander bestandssysteem dan FAT geselecteerd voor het buitenste volume.\nMerk op dat VeraCrypt in dit geval niet de exacte maximaal toegestane grootte voor het verborgen volume kan berekenen en dat het alleen een schatting zal gebruiken die verkeerd kan zijn.\nHet is dus uw verantwoordelijkheid om een adequate waarde te gebruiken voor de grootte van het verborgen volume zodat het niet overlapt met het buitenste volume.\n\nWilt u het geselecteerde bestandssysteem blijven gebruiken voor het buitenste volume?</entry>
<entry lang="nl" key="LINUX_CONFIRM_INNER_VOLUME_CALC">WAARSCHUWING: u hebt een ander bestandssysteem dan FAT geselecteerd voor het buitenste volume.
Merk op dat VeraCrypt in dit geval niet de exacte maximaal toegestane grootte voor het verborgen volume kan berekenen en dat het alleen een schatting zal gebruiken die verkeerd kan zijn.\nHet is dus uw verantwoordelijkheid om een adequate waarde te gebruiken voor de grootte van het verborgen volume zodat het niet overlapt met het buitenste volume.\n\nWilt u het geselecteerde bestandssysteem blijven gebruiken voor het buitenste volume?</entry>
<entry lang="nl" key="LINUX_PREF_TAB_SECURITY">Beveiliging</entry>
<entry lang="nl" key="LINUX_PREF_TAB_MOUNT_OPTIONS">Koppelopties</entry>
<entry lang="nl" key="LINUX_PREF_TAB_BACKGROUND_TASK">Achtergrondtaak</entry>
@@ -1483,14 +1490,14 @@
<entry lang="nl" key="LINUX_DO_NOT_MOUNT">Niet koppelen</entry>
<entry lang="nl" key="LINUX_MOUNT_AT_DIR">Koppelen in map:</entry>
<entry lang="nl" key="LINUX_SELECT">Selecteren...</entry>
<entry lang="nl" key="LINUX_UNMOUNT_ALL_WHEN">Alle volumes ontkoppelen als</entry>
<entry lang="nl" key="LINUX_DISMOUNT_ALL_WHEN">Alle volumes ontkoppelen als</entry>
<entry lang="nl" key="LINUX_ENTERING_POWERSAVING">energiebesparende modus start</entry>
<entry lang="nl" key="LINUX_LOGIN_ACTION">Uit te voeren acties wanneer gebruiker aanmeldt</entry>
<entry lang="nl" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Alle verkennervensters sluiten van volume dat ontkoppeld wordt</entry>
<entry lang="nl" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Alle verkennervensters sluiten van volume dat ontkoppeld wordt</entry>
<entry lang="nl" key="LINUX_HOTKEYS">Sneltoetsen</entry>
<entry lang="nl" key="LINUX_SYSTEM_HOTKEYS">Systeembrede sneltoetsen</entry>
<entry lang="nl" key="LINUX_SOUND_NOTIFICATION">Systeemgeluid afspelen na koppelen/ontkoppelen</entry>
<entry lang="nl" key="LINUX_CONFIRM_AFTER_UNMOUNT">Bevestiging via berichtvenster weergeven na ontkoppelen</entry>
<entry lang="nl" key="LINUX_CONFIRM_AFTER_DISMOUNT">Bevestiging via berichtvenster weergeven na ontkoppelen</entry>
<entry lang="nl" key="LINUX_VC_QUITS">VeraCrypt is aan het afsluiten</entry>
<entry lang="nl" key="LINUX_OPEN_FINDER">Finder-venster openen voor met succes gekoppeld volume</entry>
<entry lang="nl" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Merk op dat deze instelling alleen van kracht wordt als gebruik van de cryptografische services van kernel is uitgeschakeld.</entry>
@@ -1517,13 +1524,13 @@
<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_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.
</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>
<entry lang="nl" key="LINUX_VOL_DISMOUNTED">Volume {0} is ontkoppeld.</entry>
<entry lang="nl" key="LINUX_OOM">Onvoldoende geheugen.</entry>
<entry lang="nl" key="LINUX_CANT_GET_ADMIN_PRIV">Geen beheerdersrechten verkregen</entry>
<entry lang="nl" key="LINUX_COMMAND_GET_ERROR">Opdracht {0} gaf fout {1}.</entry>
@@ -1553,7 +1560,7 @@
<entry lang="nl" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Fout: de schijf gebruikt een andere sectorgrootte dan 512 bytes.\n\nVanwege de beperkingen van de onderdelen die beschikbaar zijn op uw platform, kunnen er geen partitie-/apparaatgehoste volumes worden aangemaakt/gebruikt op de schijf.\n\nMogelijke oplossingen:\n- Een bestandsgehost volume (container) op de schijf maken.\n- Een schijf met sectoren van 512 bytes gebruiken.\n- VeraCrypt op een ander platform gebruiken.</entry>
<entry lang="nl" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">Het hostbestand/-apparaat is al in gebruik.</entry>
<entry lang="nl" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Volumeslot niet beschikbaar.</entry>
<entry lang="nl" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt vereist macFUSE 2.5 or nieuwer.</entry>
<entry lang="nl" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt vereist OSXFUSE 2.5 or nieuwer.</entry>
<entry lang="nl" key="EXCEPTION_OCCURRED">Er deed zich een uitzondering voor</entry>
<entry lang="nl" key="ENTER_PASSWORD">Wachtwoord invoeren</entry>
<entry lang="nl" key="ENTER_TC_VOL_PASSWORD">Voer het VeraCrypt-volume-wachtwoord in</entry>
@@ -1570,124 +1577,6 @@
<entry lang="nl" key="VOLUME_HOST_IN_USE">WAARSCHUWING: hostbestand/apparaat {0} is al in gebruik!\n\nHet negeren hiervan kan ongewenste resultaten veroorzaken, waaronder systeeminstabiliteit. Alle toepassingen die het hostbestand/apparaat gebruiken moeten worden gesloten voordat het volume wordt gekoppeld.\n\nDoorgaan met koppelen?</entry>
<entry lang="nl" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt werd eerder geïnstalleerd met een MSI-pakket en kan dus niet worden bijgewerkt met het standaardinstallatieprogramma. Gebruik het MSI-pakket om uw VeraCrypt-installatie bij te werken.</entry>
<entry lang="nl" key="IDC_USE_ALL_FREE_SPACE">Alle beschikbare vrije ruimte gebruiken</entry>
<entry lang="nl" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">VeraCrypt kan niet worden bijgewerkt omdat de systeempartitie/schijf is versleuteld met een algoritme dat niet meer wordt ondersteund.\nOntsleutel uw systeem voordat u VeraCrypt bijwerkt en versleutel het dan opnieuw.</entry>
<entry lang="nl" key="LINUX_EX2MSG_TERMINALNOTFOUND">Er kon geen ondersteunde terminalapplicatie worden gevonden. U hebt ofwel xterm, konsole of gnome-terminal (met dbus-x11) nodig.</entry>
<entry lang="nl" key="IDM_MOUNT_NO_CACHE">Koppelen zonder cache</entry>
<entry lang="nl" key="EXPANDER_INFO">:: VeraCrypt Uitbreider ::\n\nEen VeraCrypt-volume on the fly uitbreiden zonder opnieuw te formatteren\n\n\nAlle soorten volumes (containerbestanden, schijven en partities) die met NTFS zijn geformatteerd, worden ondersteund. De enige voorwaarde is dat er voldoende vrije ruimte moet zijn op de hostschijf of het hostapparaat van het VeraCrypt-volume.\n\nGebruik deze software niet om een buitenste volume uit te breiden dat een verborgen volume bevat, omdat dit het verborgen volume vernietigt!\n</entry>
<entry lang="nl" key="IDC_STEPSEXPAND">1. Selecteer het VeraCrypt-volume dat moet worden uitgebreid\n2. Klik op de knop 'Koppelen'</entry>
<entry lang="nl" key="IDT_VOL_NAME">Volume: </entry>
<entry lang="nl" key="IDT_FILE_SYS">Bestandssysteem:</entry>
<entry lang="nl" key="IDT_CURRENT_SIZE">Huidige grootte:</entry>
<entry lang="nl" key="IDT_NEW_SIZE">Nieuwe grootte:</entry>
<entry lang="nl" key="IDT_NEW_SIZE_BOX_TITLE">Voer de nieuwe volumegrootte in</entry>
<entry lang="nl" key="IDC_INIT_NEWSPACE">Nieuwe ruimte met willekeurige gegevens vullen</entry>
<entry lang="nl" key="IDC_QUICKEXPAND">Snel uitbreiden</entry>
<entry lang="nl" key="IDT_INIT_SPACE">Nieuwe ruimte vullen:</entry>
<entry lang="nl" key="EXPANDER_FREE_SPACE">%s vrije ruimte beschikbaar op host-schijf</entry>
<entry lang="nl" key="EXPANDER_HELP_DEVICE">Dit is een apparaatgebaseerd VeraCrypt-volume.\n\nDe nieuwe volumegrootte wordt automatisch gekozen als de grootte van het host-apparaat.</entry>
<entry lang="nl" key="EXPANDER_HELP_FILE">Geef de nieuwe grootte van het VeraCrypt-volume op (moet minstens %I64u kB groter zijn dan de huidige grootte).</entry>
<entry lang="nl" key="QUICK_EXPAND_WARNING">WAARSCHUWING: gebruik snel uitbreiden alleen in de volgende gevallen:\n\n1) Het apparaat waar de bestandscontainer zich bevindt, bevat geen gevoelige gegevens en u hebt geen aannemelijke ontkenning nodig.\n2) Het apparaat waarde bestandscontainer zich bevindt is al op een veilige manier en volledig gecodeerd.\n\nWeet u zeker dat u snel uitbreiden wilt gebruiken?</entry>
<entry lang="nl" key="EXPANDER_STATUS_TEXT">BELANGRIJK: Beweeg de muis zo willekeurig mogelijk binnen dit venster. Hoe langer u ze beweegt, hoe beter. Dit verhoogt de cryptografische kracht van de encryptiesleutels aanzienlijk. Klik vervolgens op 'Doorgaan' om het volume uit te breiden.</entry>
<entry lang="nl" key="EXPANDER_STATUS_TEXT_LEGACY">Klik op 'Doorgaan' om het volume uit te breiden.</entry>
<entry lang="nl" key="EXPANDER_FINISH_ERROR">Fout: uitbreiden van volume mislukt.</entry>
<entry lang="nl" key="EXPANDER_FINISH_ABORT">Fout: bewerking afgebroken door gebruiker.</entry>
<entry lang="nl" key="EXPANDER_FINISH_OK">Klaar. Volume met succes uitgebreid.</entry>
<entry lang="nl" key="EXPANDER_CANCEL_WARNING">Waarschuwing: het volume wordt uitgebreid!\n\nAls u nu stopt, kan het volume beschadigd raken.\n\nWilt u echt annuleren?</entry>
<entry lang="nl" key="EXPANDER_STARTING_STATUS">Uitbreiden van volume starten...\n</entry>
<entry lang="nl" key="EXPANDER_HIDDEN_VOLUME_ERROR">Een buitenste volume dat een verborgen volume bevat kan niet worden uitgebreid, omdat dit het verborgen volume vernietigt.\n</entry>
<entry lang="nl" key="EXPANDER_SYSTEM_VOLUME_ERROR">Een VeraCrypt-systeemvolume kan niet worden uitgebreid.</entry>
<entry lang="nl" key="EXPANDER_NO_FREE_SPACE">Onvoldoende vrije ruimte om het volume uit te breiden</entry>
<entry lang="nl" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Waarschuwing: het containerbestand is groter dan het VeraCrypt-volumegebied. De gegevens na het VeraCrypt-volumegebied worden overschreven.\n\nWilt u doorgaan?</entry>
<entry lang="nl" key="EXPANDER_WARNING_FAT">Waarschuwing: het VeraCrypt-volume bevat een FAT-bestandssysteem!\n\nAlleen het VeraCrypt-volume zelf wordt uitgebreid, maar niet het bestandssysteem.\n\nWilt u doorgaan?</entry>
<entry lang="nl" key="EXPANDER_WARNING_EXFAT">Waarschuwing: het VeraCrypt-volume bevat een exFAT-bestandssysteem!\n\nAlleen het VeraCrypt-volume zelf wordt uitgebreid, maar niet het bestandssysteem.\n\nWilt u doorgaan?</entry>
<entry lang="nl" key="EXPANDER_WARNING_UNKNOWN_FS">Waarschuwing: het VeraCrypt-volume bevat een onbekend of geen bestandssysteem!\n\nAlleen het VeraCrypt-volume zelf wordt uitgebreid, het bestandssysteem blijft ongewijzigd.\n\nWilt u doorgaan?</entry>
<entry lang="nl" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">Nieuwe volumegrootte te klein. Ze moet minstens %I64u KiB groter zijn dan de huidige grootte.</entry>
<entry lang="nl" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">Nieuwe volumegrootte te groot. Onvoldoende ruimte op hoststation</entry>
<entry lang="nl" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Maximale bestandsgrootte van %I64u MB op hoststation overschreden.</entry>
<entry lang="nl" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Fout: de nodige rechten om 'snel uitbreiden' in te schakelen zijn niet verkregen!\nHaal het vinkje weg bij de optie 'snel uitbreiden' en probeer het opnieuw.</entry>
<entry lang="nl" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Maximale VeraCrypt-volumegrootte van %I64u TB overschreden!\n</entry>
<entry lang="nl" key="FULL_FORMAT">Volledig formatteren</entry>
<entry lang="nl" key="FAST_CREATE">Snel aanmaken</entry>
<entry lang="nl" key="WARN_FAST_CREATE">WAARSCHUWING: gebruik snel aanmaken alleen in de volgende gevallen:\n\n1) Het apparaat bevat geen gevoelige gegevens en u hebt geen aannemelijke ontkenning nodig.\n2) Het apparaat is al op een veilige manier en volledig gecodeerd.\n\nWeet u zeker dat u snel aanmaken wilt gebruiken?</entry>
<entry lang="nl" key="IDC_ENABLE_EMV_SUPPORT">EMV-ondersteuning inschakelen</entry>
<entry lang="nl" key="COMMAND_APDU_INVALID">De naar de kaart gezonden APDU-opdracht is ongeldig.</entry>
<entry lang="nl" key="EXTENDED_APDU_UNSUPPORTED">Uitgebreide APDU-opdrachten kunnen niet worden gebruikt met het huidige token.</entry>
<entry lang="nl" key="SCARD_MODULE_INIT_FAILED">Fout tijdens het laden van de WinSCard/PCSC-bibliotheek.</entry>
<entry lang="nl" key="EMV_UNKNOWN_CARD_TYPE">De kaart in de lezer is geen ondersteunde EMV-kaart.</entry>
<entry lang="nl" key="EMV_SELECT_AID_FAILED">De AID van de kaart in de lezer kon niet worden geselecteerd.</entry>
<entry lang="nl" key="EMV_ICC_CERT_NOTFOUND">Het ICC Public Key Certificate is niet gevonden op de kaart.</entry>
<entry lang="nl" key="EMV_ISSUER_CERT_NOTFOUND">Het Public Key Certificate van de uitgever is niet gevonden op de kaart.</entry>
<entry lang="nl" key="EMV_CPLC_NOTFOUND">CPLC is niet gevonden op de EMV-kaart.</entry>
<entry lang="nl" key="EMV_PAN_NOTFOUND">Geen Primair AccountNummer (PAN) gevonden in de EMV-kaart.</entry>
<entry lang="nl" key="INVALID_EMV_PATH">EMV-pad is ongeldig.</entry>
<entry lang="nl" key="EMV_KEYFILE_DATA_NOTFOUND">Kan geen sleutelbestand maken van de gegevens van de EMV-kaart.\n\nEen van de volgende gegevens ontbreekt:\n- ICC Public Key Certificate.\n- Public Key Certificate van de uitgever.\n- CPLC-gegevens.</entry>
<entry lang="nl" key="SCARD_W_REMOVED_CARD">Geen kaart in de lezer.\n\nControleer of de kaart goed in de lezer zit.</entry>
<entry lang="nl" key="FORMAT_EXTERNAL_FAILED">Windows format.com opdracht kon het volume niet formatteren als NTFS/exFAT/ReFS: Fout 0x%.8X.\n\nTerugvallen op het gebruik van Windows FormatEx API.</entry>
<entry lang="nl" key="FORMATEX_API_FAILED">Windows FormatEx API kon het volume niet formatteren als NTFS/exFAT/ReFS.\n\nFoutstatus = %s.</entry>
<entry lang="nl" key="EXPANDER_WRITING_RANDOM_DATA">Willekeurige gegevens naar nieuwe ruimte schrijven...\n</entry>
<entry lang="nl" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Opnieuw versleutelde backup-header schrijven...\n</entry>
<entry lang="nl" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Opnieuw versleutelde primaire header schrijven...\n</entry>
<entry lang="nl" key="EXPANDER_WIPING_OLD_HEADER">Oude backup-header wissen...\n</entry>
<entry lang="nl" key="EXPANDER_MOUNTING_VOLUME">Volume koppelen...\n</entry>
<entry lang="nl" key="EXPANDER_UNMOUNTING_VOLUME">Volume ontkoppelen...\n</entry>
<entry lang="nl" key="EXPANDER_EXTENDING_FILESYSTEM">Bestandssysteem uitbreiden...\n</entry>
<entry lang="nl" key="PARTIAL_SYSENC_MOUNT_READONLY">Waarschuwing: de systeempartitie die u probeerde te koppelen was niet volledig versleuteld. Als veiligheidsmaatregel om mogelijke beschadiging of ongewenste wijzigingen te voorkomen, is volume '%s' gekoppeld als alleen-lezen.</entry>
<entry lang="nl" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Belangrijke informatie over het gebruik van bestandsextensies van derden</entry>
<entry lang="nl" key="IDC_DISABLE_MEMORY_PROTECTION">Geheugenbeveiliging uitschakelen voor compatibiliteit met toegankelijkheidshulpprogramma's</entry>
<entry lang="nl" key="DISABLE_MEMORY_PROTECTION_WARNING">WAARSCHUWING: het uitschakelen van geheugenbeveiliging vermindert de veiligheid aanzienlijk. Schakel deze optie ALLEEN in als u vertrouwt op toegankelijkheidstools, zoals schermlezers, voor interactie met de gebruikersinterface van VeraCrypt.</entry>
<entry lang="nl" key="LINUX_LANGUAGE">Taal</entry>
<entry lang="nl" key="LINUX_SELECT_SYS_DEFAULT_LANG">Standaardtaal van systeem selecteren</entry>
<entry lang="nl" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">VeraCrypt moet opnieuw worden opgestart om de taalwijziging in werking te laten treden.</entry>
<entry lang="nl" key="ERR_XTS_MASTERKEY_VULNERABLE">WAARSCHUWING: De hoofdsleutel van het volume is kwetsbaar voor een aanval die de gegevensbeveiliging in gevaar brengt.\n\nMaak een nieuw volume aan en zet de gegevens daarnaar over.</entry>
<entry lang="nl" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">WAARSCHUWING: De hoofdsleutel van het versleutelde systeem is kwetsbaar voor een aanval die de gegevensbeveiliging in gevaar brengt.\nOntsleutel de systeempartitie/-schijf en versleutel deze vervolgens opnieuw.</entry>
<entry lang="nl" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">WAARSCHUWING: De hoofdsleutel van het volume heeft een beveiligingslek.</entry>
<entry lang="nl" key="MOUNTPOINT_BLOCKED">FOUT: Het koppelpunt van het volume is geblokkeerd omdat het een beveiligde systeemmap overschrijft.\n\nKies een ander koppelpunt.</entry>
<entry lang="nl" key="MOUNTPOINT_NOTALLOWED">FOUT: het koppelpunt voor het volume is niet toegestaan omdat het een map overschrijft die deel uitmaakt van de omgevingsvariabele PATH.\n\nKies een ander koppelpunt.</entry>
<entry lang="nl" key="INSECURE_MODE">[ONVEILIGE MODUS]</entry>
<entry lang="nl" key="IDC_DISABLE_SCREEN_PROTECTION">Bescherming tegen screenshots en schermopname uitschakelen</entry>
<entry lang="nl" key="DISABLE_SCREEN_PROTECTION_WARNING">WAARSCHUWING: het uitschakelen van schermbeveiliging vermindert de beveiliging aanzienlijk. Schakel deze optie ALLEEN in als u een specifieke behoefte hebt om de interface van VeraCrypt vast te leggen. Dit kan gevoelige gegevens blootstellen aan screenshotprogramma's en schermopnamefuncties zoals Windows 11 Recall.</entry>
<entry lang="nl" key="MEMORY_COST">Geheugengebruik</entry>
<entry lang="nl" key="IDT_KDF_ALGO">KDF-algoritme</entry>
<entry lang="nl" key="IDD_PREFERENCES_TAB_GENERAL">Algemeen</entry>
<entry lang="nl" key="IDD_PREFERENCES_TAB_ACTIONS">Acties</entry>
<entry lang="nl" key="IDD_PREFERENCES_TAB_PASSWORD">Wachtwoord</entry>
<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="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>
<entry lang="nl" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">Het EFI-bootloaderbestand is onverwacht groot en is niet gecontroleerd:</entry>
<entry lang="nl" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">De systeempartitie/schijf is al ontsleuteld en de EFI-bootloaderbestanden zijn hersteld, maar VeraCrypt kon een of meer VeraCrypt-firmware-opstartvermeldingen niet verwijderen. De VeraCrypt-EFI-bestanden zijn op hun plaats gelaten, waardoor eventuele resterende firmware-vermeldingen nog steeds naar een bestaande bootloader verwijzen. Probeer het opnieuw als beheerder of verwijder de VeraCrypt-opstartvermelding uit de firmware-instellingen nadat u hebt gecontroleerd of Windows Boot Manager normaal opstart.</entry>
<entry lang="nl" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">De EFI-bootloader kan niet worden gerepareerd terwijl de systeemversleuteling of -ontsleuteling actief of nog niet voltooid is. Voltooi of hervat het lopende systeemversleutelings- of -ontsleutelingsproces voordat u het opnieuw probeert.</entry>
<entry lang="nl" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">Deze reparatie is alleen beschikbaar op systemen die in UEFI-modus opstarten vanaf een GPT-systeempartitie.</entry>
<entry lang="nl" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">De EFI-bootloader is met succes gerepareerd.</entry>
<entry lang="nl" key="PIM_ARGON2_HELP">PIM (Personal Iterations Multiplier) bepaalt de geheugen- en tijdskosten van de Argon2id header key afleiding als volgt:\n Geheugen = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n Iteraties = 3 + ((PIM - 1) / 3) voor PIM 31 of lager, daarna 13 + (PIM - 31)\n\nWanneer dit veld leeg wordt gelaten of op 0 wordt ingesteld, gebruikt VeraCrypt de standaard Argon2 PIM (12), die 416 MiB geheugen en 6 iteraties gebruikt.\n\nWanneer het wachtwoord minder dan 20 tekens bevat, mag Argon2 PIM niet kleiner zijn dan 12 om een minimaal beveiligingsniveau te behouden.\nWanneer het wachtwoord 20 tekens of meer bevat, kan Argon2 PIM op elke waarde worden ingesteld.\n\nEen Argon2 PIM groter dan 12 verhoogt het geheugengebruik tot 1024 MiB en verhoogt vervolgens het aantal iteraties. Dit leidt tot een tragere koppeling. Een kleine Argon2 PIM (minder dan 12) leidt tot een snellere koppeling, maar kan de beveiliging verminderen als het wachtwoord niet sterk genoeg is.</entry>
<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_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>
<entry lang="nl" key="FORMAT_STAGE_FLUSHING_DATA">Aanmaken van volume voltooien: gegevens worden naar de schijf geschreven. Dit kan enkele minuten duren bij grote volumes of bij trage opslagmedia of USB-opslag.</entry>
<entry lang="nl" key="FORMAT_STAGE_FINISHED">Aanmaken van volume voltooien.</entry>
<entry lang="nl" key="FORMAT_STAGE_ABORTED">Het aanmaken van het volume is afgebroken.</entry>
<entry lang="nl" key="FORMAT_STAGE_ERROR">Het aanmaken van het volume is mislukt.</entry>
<entry lang="nl" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Aanmaken van volume voltooien: tijdelijk volume koppelen.</entry>
<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="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">
+75 -196
View File
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
<font lang="nn" class="fixed" size="12" face="Lucida Console" />
<font lang="nn" class="title" size="21" face="Times New Roman" />
<font lang="nn" class="bold" size="13" face="Arial " />
<font lang="nn" class="fixed" size="12" face="Lucida Console " />
<font lang="nn" class="title" size="21" face="Times New Roman " />
<entry lang="nn" key="IDCANCEL">Avbryt</entry>
<entry lang="en" key="IDC_ALL_USERS">Install &amp;for all users</entry>
<entry lang="en" key="IDC_BROWSE">Bro&amp;wse...</entry>
@@ -135,8 +135,8 @@
<entry lang="en" key="IDC_FAVORITE_REMOVE">&amp;Remove</entry>
<entry lang="en" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Use favorite label as Explorer drive label</entry>
<entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key dismount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key dismount</entry>
<entry lang="nn" key="IDC_HK_MOD_ALT">alt</entry>
<entry lang="en" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="nn" key="IDC_HK_MOD_SHIFT">Skift</entry>
@@ -156,12 +156,12 @@
<entry lang="en" key="IDC_PIM_HELP">(Empty or 0 for default iterations)</entry>
<entry lang="nn" key="IDC_PREF_BKG_TASK_ENABLE">Aktivert</entry>
<entry lang="nn" key="IDC_PREF_CACHE_PASSWORDS">Snøgglagra passord i drivar minne</entry>
<entry lang="nn" key="IDC_PREF_UNMOUNT_INACTIVE">Auto avmonter volum vist det ikkje er skrive/lese data til det på</entry>
<entry lang="nn" key="IDC_PREF_UNMOUNT_LOGOFF">Brukar loggar av</entry>
<entry lang="en" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="nn" key="IDC_PREF_UNMOUNT_POWERSAVING">Går inn i straum sparings modus</entry>
<entry lang="nn" key="IDC_PREF_UNMOUNT_SCREENSAVER">Skjerm sparar er starta</entry>
<entry lang="nn" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Tving auto avmontering sjølv om voluma inneheld opne filer og mapper</entry>
<entry lang="nn" key="IDC_PREF_DISMOUNT_INACTIVE">Auto avmonter volum vist det ikkje er skrive/lese data til det på</entry>
<entry lang="nn" key="IDC_PREF_DISMOUNT_LOGOFF">Brukar loggar av</entry>
<entry lang="en" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="nn" key="IDC_PREF_DISMOUNT_POWERSAVING">Går inn i straum sparings modus</entry>
<entry lang="nn" key="IDC_PREF_DISMOUNT_SCREENSAVER">Skjerm sparar er starta</entry>
<entry lang="nn" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Tving auto avmontering sjølv om voluma inneheld opne filer og mapper</entry>
<entry lang="nn" key="IDC_PREF_LOGON_MOUNT_DEVICES">Monter alle einings-verta VeraCrypt volum</entry>
<entry lang="en" key="IDC_PREF_LOGON_START">Start VeraCrypt Background Task</entry>
<entry lang="nn" key="IDC_PREF_MOUNT_READONLY">Monter volum som skriveverna</entry>
@@ -169,7 +169,7 @@
<entry lang="nn" key="IDC_PREF_OPEN_EXPLORER">Opne Utforskar vindauga for vellykka monterte volum</entry>
<entry lang="en" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">Temporarily cache password during "Mount Favorite Volumes" operations</entry>
<entry lang="en" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Use a different taskbar icon when there are mounted volumes</entry>
<entry lang="nn" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Slett snøgglagra passord ved automatisk avmontering</entry>
<entry lang="nn" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Slett snøgglagra passord ved automatisk avmontering</entry>
<entry lang="nn" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Slett snøgglagra passord ved avslutning</entry>
<entry lang="en" key="IDC_PRESERVE_TIMESTAMPS">Preserve modification timestamp of file containers</entry>
<entry lang="nn" key="IDC_RESET_HOTKEYS">Tilbakestill</entry>
@@ -269,14 +269,14 @@
<entry lang="en" key="IDT_ACCELERATION_OPTIONS">Hardware Acceleration</entry>
<entry lang="nn" key="IDT_ASSIGN_HOTKEY">Snarveg</entry>
<entry lang="nn" key="IDT_AUTORUN">AutoKøyr Konfigurasjon (autorun.inf)</entry>
<entry lang="nn" key="IDT_AUTO_UNMOUNT">Auto-Avmonter</entry>
<entry lang="nn" key="IDT_AUTO_UNMOUNT_ON">Avmonter alle når:</entry>
<entry lang="nn" key="IDT_AUTO_DISMOUNT">Auto-Avmonter</entry>
<entry lang="nn" key="IDT_AUTO_DISMOUNT_ON">Avmonter alle når:</entry>
<entry lang="en" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader Screen Options</entry>
<entry lang="nn" key="IDT_CONFIRM_PASSWORD">Bekreft Passord:</entry>
<entry lang="nn" key="IDT_CURRENT">Gjeldande</entry>
<entry lang="en" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">Display this custom message in the pre-boot authentication screen (24 characters maximum):</entry>
<entry lang="nn" key="IDT_DEFAULT_MOUNT_OPTIONS">Standard Monternigs Alternativ</entry>
<entry lang="nn" key="IDT_UNMOUNT_ACTION">Snøggtast Alternativ</entry>
<entry lang="nn" key="IDT_DISMOUNT_ACTION">Snøggtast Alternativ</entry>
<entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry>
<entry lang="en" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Enable extended disk control codes support</entry>
<entry lang="en" key="IDT_FAVORITE_LABEL">Label of selected favorite volume:</entry>
@@ -291,11 +291,10 @@
<entry lang="nn" key="IDT_NEW_PASSWORD">Passord:</entry>
<entry lang="en" key="IDT_PARALLELIZATION_OPTIONS">Thread-Based Parallelization</entry>
<entry lang="en" key="IDT_PKCS11_LIB_PATH">PKCS #11 Library Path</entry>
<entry lang="nn" key="IDT_KDF">KDF:</entry>
<entry lang="nn" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="nn" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="nn" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="nn" key="IDT_PW_CACHE_OPTIONS">Passord Snøgglager</entry>
<entry lang="en" key="IDT_SECURITY_OPTIONS">Security Options</entry>
<entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry>
<entry lang="nn" key="IDT_TASKBAR_ICON">VeraCrypt Bakgrunns Oppgåve</entry>
<entry lang="en" key="IDT_TRAVELER_MOUNT">VeraCrypt volume to mount (relative to traveler disk root):</entry>
<entry lang="en" key="IDT_TRAVEL_INSERTION">Upon insertion of traveler disk: </entry>
@@ -357,7 +356,7 @@
<entry lang="nn" key="IDT_KEYFILE_WARNING">ÅTVARING: Vist du misser ei nøkkel fil eller vist ein bit av dei fyrste 1024 kilobyta i fila vert endra, vill det ikkje vera mogeleg å montera volum som brukar nøkkelfila!</entry>
<entry lang="nn" key="IDT_KEY_UNIT">bits</entry>
<entry lang="en" key="IDT_NUMBER_KEYFILES">Number of keyfiles:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size (in Bytes):</entry>
<entry lang="en" key="IDT_KEYFILES_BASE_NAME">Keyfiles base name:</entry>
<entry lang="nn" key="IDT_LANGPACK_AUTHORS">Omsett av:</entry>
<entry lang="nn" key="IDT_PLAINTEXT">Klartekst storleik:</entry>
@@ -390,7 +389,6 @@
<entry lang="en" key="ADMINISTRATOR">Administrator</entry>
<entry lang="nn" key="ADMIN_PRIVILEGES_DRIVER">For å kunne lasta VeraCrypt drivaren må du vera logga inn med ein konto som har administrator rettigheiter.</entry>
<entry lang="nn" key="ADMIN_PRIVILEGES_WARN_DEVICES">Obs for å kryptera/formatera ein partisjon/ei eining må du vera logga inn med ein konto som har administrator rettigheiter.\n\nDette gjeld ikkje fil-verta volum.</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="nn" key="ADMIN_PRIVILEGES_WARN_HIDVOL">For å oppretta eit skjult volum må du vera logga inn med ein konto som har administrator rettigheiter.\n\nFortsetja?</entry>
<entry lang="nn" key="ADMIN_PRIVILEGES_WARN_NTFS">Obs for å kunna formatera volumet som NTFS må du vera logga inn med ein konto som har administrator rettigheiter.\n\nUtan administrator rettigheiter, kan du berre formatera volumet som FAT.</entry>
<entry lang="en" key="AES_HELP">FIPS-approved cipher (Rijndael, published in 1998) that may be used by U.S. government departments and agencies to protect classified information up to the Top Secret level. 256-bit key, 128-bit block, 14 rounds (AES-256). Mode of operation is XTS.</entry>
@@ -423,8 +421,8 @@
<entry lang="en" key="DEVICE_FREE_PB">Size of %s is %.2f PB</entry>
<entry lang="nn" key="DEVICE_IN_USE_FORMAT">ADVARSEL: Einheita/partisjonen er i bruk av opperativsystemet eller eit program. Å formatera einheiten/partisjonen kan føra til att data vert korrupte og systemet vert ustabilt.\n\nHaldfram?</entry>
<entry lang="en" key="DEVICE_IN_USE_INPLACE_ENC">Warning: The partition is in use by the operating system or applications. You should close any applications that might be using the partition (including antivirus software).\n\nContinue?</entry>
<entry lang="nn" key="FORMAT_CANT_UNMOUNT_FILESYS">Feil: Einheita/partisjonen inneheld eit filsystem som ikkje kunne demonterast. Filsystemet kan vera i bruk av opperativ systemet. Å formatera einheta/patisjonen vil nesten garantert føra til korupte data og ustabilt system.\n\nFor å løysa dette problemt , anbefallar me att du fyrst slettar partisjonen for så og oppretta den på nytt utan å formatera den. For å gjera dette, fylja desse stega: 1) Right-click the 'Computer' (or 'My Computer') icon in the 'Start Menu' and select 'Manage'. The 'Computer Management' window should appear. 2) In the 'Computer Management' window, select 'Storage' &gt; 'Disk Management'. 3) Right-click the partition you want to encrypt and select either 'Delete Partition', or 'Delete Volume', or 'Delete Logical Drive'. 4) Click 'Yes'. If Windows asks you to restart the computer, do so. Then repeat the steps 1 and 2 and continue from the step 5. 5) Right-click the unallocated/free space area and select either 'New Partition', or 'New Simple Volume', or 'New Logical Drive'. 6) The 'New Partition Wizard' or 'New Simple Volume Wizard' window should appear now; follow its instructions. On the wizard page entitled 'Format Partition', select either 'Do not format this partition' or 'Do not format this volume'. In the same wizard, click 'Next' and then 'Finish'. 7) Note that the device path you have selected in VeraCrypt may be wrong now. Therefore, exit the VeraCrypt Volume Creation Wizard (if it is still running) and then start it again. 8) Try encrypting the device/partition again.\n\nIf VeraCrypt repeatedly fails to encrypt the device/partition, you may want to consider creating a file container instead.</entry>
<entry lang="en" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Error: The filesystem could not be locked and/or unmounted. It may be in use by the operating system or applications (for example, antivirus software). Encrypting the partition might cause data corruption and system instability.\n\nPlease close any applications that might be using the filesystem (including antivirus software) and try again. If it does not help, please follow the below steps.</entry>
<entry lang="nn" key="FORMAT_CANT_DISMOUNT_FILESYS">Feil: Einheita/partisjonen inneheld eit filsystem som ikkje kunne demonterast. Filsystemet kan vera i bruk av opperativ systemet. Å formatera einheta/patisjonen vil nesten garantert føra til korupte data og ustabilt system.\n\nFor å løysa dette problemt , anbefallar me att du fyrst slettar partisjonen for så og oppretta den på nytt utan å formatera den. For å gjera dette, fylja desse stega: 1) Right-click the 'Computer' (or 'My Computer') icon in the 'Start Menu' and select 'Manage'. The 'Computer Management' window should appear. 2) In the 'Computer Management' window, select 'Storage' &gt; 'Disk Management'. 3) Right-click the partition you want to encrypt and select either 'Delete Partition', or 'Delete Volume', or 'Delete Logical Drive'. 4) Click 'Yes'. If Windows asks you to restart the computer, do so. Then repeat the steps 1 and 2 and continue from the step 5. 5) Right-click the unallocated/free space area and select either 'New Partition', or 'New Simple Volume', or 'New Logical Drive'. 6) The 'New Partition Wizard' or 'New Simple Volume Wizard' window should appear now; follow its instructions. On the wizard page entitled 'Format Partition', select either 'Do not format this partition' or 'Do not format this volume'. In the same wizard, click 'Next' and then 'Finish'. 7) Note that the device path you have selected in VeraCrypt may be wrong now. Therefore, exit the VeraCrypt Volume Creation Wizard (if it is still running) and then start it again. 8) Try encrypting the device/partition again.\n\nIf VeraCrypt repeatedly fails to encrypt the device/partition, you may want to consider creating a file container instead.</entry>
<entry lang="en" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Error: The filesystem could not be locked and/or dismounted. It may be in use by the operating system or applications (for example, antivirus software). Encrypting the partition might cause data corruption and system instability.\n\nPlease close any applications that might be using the filesystem (including antivirus software) and try again. If it does not help, please follow the below steps.</entry>
<entry lang="nn" key="DEVICE_IN_USE_INFO">ADVARSEL: Nokre av dei monterte einingane/partisjonane var allereie i bruk!\n\nÅ oversjå dette kan føra til utilsikta resultat inkludert ustabilt system.\n\nMe anbefaler på det sterkaste att du lukkar alle program som kan bruka einingane/partisjonane.</entry>
<entry lang="nn" key="DEVICE_PARTITIONS_ERR">Valgt einheit inneheld partisjonar.\n\nÅ formatera einheiten kan føra til ustabilt system og korrupte data. Vel annten vel ein partisjon på einheiten, eller fjern alle partisjonar på einheiten slik att VeraCrypt kan formatera den trygt.</entry>
<entry lang="en" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">The selected non-system device contains partitions.\n\nEncrypted device-hosted VeraCrypt volumes can be created within devices that do not contain any partitions (including hard disks and solid-state drives). A device that contains partitions can be entirely encrypted in place (using a single master key) only if it is the drive where Windows is installed and from which it boots.\n\nIf you want to encrypt the selected non-system device using a single master key, you will need to remove all partitions on the device first to enable VeraCrypt to format it safely (formatting a device that contains partitions might cause system instability and/or data corruption). Alternatively, you can encrypt each partition on the drive individually (each partition will be encrypted using a different master key).\n\nNote: If you want to remove all partitions from a GPT disk, you may need to convert it to a MBR disk (using e.g. the Computer Management tool) in order to remove hidden partitions.</entry>
@@ -525,8 +523,8 @@
<entry lang="nn" key="HIDVOL_FORMAT_FINISHED_TITLE">Skjult Volum Oppretta</entry>
<entry lang="en" key="HIDVOL_FORMAT_FINISHED_HELP">The hidden VeraCrypt volume has been successfully created and is ready for use. If all the instructions have been followed and if the precautions and requirements listed in the section "Security Requirements and Precautions Pertaining to Hidden Volumes" in the VeraCrypt User's Guide are followed, it should be impossible to prove that the hidden volume exists, even when the outer volume is mounted.\n\nWARNING: IF YOU DO NOT PROTECT THE HIDDEN VOLUME (FOR INFORMATION ON HOW TO DO SO, REFER TO THE SECTION "PROTECTION OF HIDDEN VOLUMES AGAINST DAMAGE" IN THE VERACRYPT USER'S GUIDE), DO NOT WRITE TO THE OUTER VOLUME. OTHERWISE, YOU MAY OVERWRITE AND DAMAGE THE HIDDEN VOLUME!</entry>
<entry lang="en" key="FIRST_HIDDEN_OS_BOOT_INFO">You have started the hidden operating system. As you may have noticed, the hidden operating system appears to be installed on the same partition as the original operating system. However, in reality, it is installed within the partition behind it (in the hidden volume). All read and write operations are being transparently redirected from the original system partition to the hidden volume.\n\nNeither the operating system nor applications will know that data written to and read from the system partition are actually written to and read from the partition behind it (from/to a hidden volume). Any such data is encrypted and decrypted on the fly as usual (with an encryption key different from the one that will be used for the decoy operating system).\n\n\nPlease click Next to continue.</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP_SYSENC">The outer volume has been created and mounted as drive %hc:. To this outer volume you should now copy some sensitive-looking files that you actually do NOT want to hide. They will be there for anyone forcing you to disclose the password for the first partition behind the system partition, where both the outer volume and the hidden volume (containing the hidden operating system) will reside. You will be able to reveal the password for this outer volume, and the existence of the hidden volume (and of the hidden operating system) will remain secret.\n\nIMPORTANT: The files you copy to the outer volume should not occupy more than %s. Otherwise, there may not be enough free space on the outer volume for the hidden volume (and you will not be able to continue). After you finish copying, click Next (do not unmount the volume).</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP">Outer volume has been successfully created and mounted as drive %hc:. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not unmount the volume.\n\nNote: After you click Next, cluster bitmap of the outer volume will be scanned to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. Cluster bitmap scanning ensures that no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP_SYSENC">The outer volume has been created and mounted as drive %hc:. To this outer volume you should now copy some sensitive-looking files that you actually do NOT want to hide. They will be there for anyone forcing you to disclose the password for the first partition behind the system partition, where both the outer volume and the hidden volume (containing the hidden operating system) will reside. You will be able to reveal the password for this outer volume, and the existence of the hidden volume (and of the hidden operating system) will remain secret.\n\nIMPORTANT: The files you copy to the outer volume should not occupy more than %s. Otherwise, there may not be enough free space on the outer volume for the hidden volume (and you will not be able to continue). After you finish copying, click Next (do not dismount the volume).</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP">Outer volume has been successfully created and mounted as drive %hc:. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not dismount the volume.\n\nNote: After you click Next, cluster bitmap of the outer volume will be scanned to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. Cluster bitmap scanning ensures that no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="nn" key="HIDVOL_HOST_FILLING_TITLE">Innhald på Ytre Volum</entry>
<entry lang="nn" key="HIDVOL_HOST_PRE_CIPHER_HELP">\n\nI dei neste stega vel du alternativa for det ytre volumet (som du seinare opprettar det skjulte volumet i).</entry>
<entry lang="en" key="HIDVOL_HOST_PRE_CIPHER_HELP_SYSENC">\n\nIn the next steps, you will create a so-called outer VeraCrypt volume within the first partition behind the system partition (as was explained in one of the previous steps).</entry>
@@ -535,9 +533,9 @@
<entry lang="en" key="HIDDEN_OS_PRE_CIPHER_WARNING">IMPORTANT: Please remember the algorithms that you select in this step. You will have to select the same algorithms for the decoy system. Otherwise, the hidden system will be inaccessible! (The decoy system must be encrypted with the same encryption algorithm as the hidden system.)\n\nNote: The reason is that the decoy system and the hidden system will share a single boot loader, which supports only a single algorithm, selected by the user (for each algorithm, there is a special version of the VeraCrypt Boot Loader).</entry>
<entry lang="nn" key="HIDVOL_PRE_CIPHER_HELP">\n\nVolum sektorgruppe punktkartet har vorte skanna og den maksimale mogelege storleiken på det skjulte volumet har vorte fastsett. I det neste steget vill du setja alternativa, storleiken og passord for det skjulte volumet.</entry>
<entry lang="nn" key="HIDVOL_PRE_CIPHER_TITLE">Skjult Volum</entry>
<entry lang="en" key="HIDVOL_PROT_WARN_AFTER_MOUNT">The hidden volume is now protected against damage until the outer volume is unmounted.\n\nWARNING: If any data is attempted to be saved to the hidden volume area, VeraCrypt will start write-protecting the entire volume (both the outer and the hidden part) until it is unmounted. This may cause filesystem corruption on the outer volume, which (if repeated) might adversely affect plausible deniability of the hidden volume. Therefore, you should make every effort to avoid writing to the hidden volume area. Any data being saved to the hidden volume area will not be saved and will be lost. Windows may report this as a write error ("Delayed Write Failed" or "The parameter is incorrect").</entry>
<entry lang="en" key="HIDVOL_PROT_WARN_AFTER_MOUNT_PLURAL">Each of the hidden volumes within the newly mounted volumes is now protected against damage until unmounted.\n\nWARNING: If any data is attempted to be saved to protected hidden volume area of any of these volumes, VeraCrypt will start write-protecting the entire volume (both the outer and the hidden part) until it is unmounted. This may cause filesystem corruption on the outer volume, which (if repeated) might adversely affect plausible deniability of the hidden volume. Therefore, you should make every effort to avoid writing to the hidden volume area. Any data being saved to protected hidden volume areas will not be saved and will be lost. Windows may report this as a write error ("Delayed Write Failed" or "The parameter is incorrect").</entry>
<entry lang="en" key="DAMAGE_TO_HIDDEN_VOLUME_PREVENTED">WARNING: Data were attempted to be saved to the hidden volume area of the volume mounted as %c:! VeraCrypt prevented these data from being saved in order to protect the hidden volume. This may have caused filesystem corruption on the outer volume and Windows may have reported a write error ("Delayed Write Failed" or "The parameter is incorrect"). The entire volume (both the outer and the hidden part) will be write-protected until it is unmounted. If this is not the first time VeraCrypt has prevented data from being saved to the hidden volume area of this volume, plausible deniability of this hidden volume might be adversely affected (due to possible unusual correlated inconsistencies within the outer volume file system). Therefore, you should consider creating a new VeraCrypt volume (with Quick Format disabled) and moving files from this volume to the new volume; this volume should be securely erased (both the outer and the hidden part). We strongly recommend that you restart the operating system now.</entry>
<entry lang="en" key="HIDVOL_PROT_WARN_AFTER_MOUNT">The hidden volume is now protected against damage until the outer volume is dismounted.\n\nWARNING: If any data is attempted to be saved to the hidden volume area, VeraCrypt will start write-protecting the entire volume (both the outer and the hidden part) until it is dismounted. This may cause filesystem corruption on the outer volume, which (if repeated) might adversely affect plausible deniability of the hidden volume. Therefore, you should make every effort to avoid writing to the hidden volume area. Any data being saved to the hidden volume area will not be saved and will be lost. Windows may report this as a write error ("Delayed Write Failed" or "The parameter is incorrect").</entry>
<entry lang="en" key="HIDVOL_PROT_WARN_AFTER_MOUNT_PLURAL">Each of the hidden volumes within the newly mounted volumes is now protected against damage until dismounted.\n\nWARNING: If any data is attempted to be saved to protected hidden volume area of any of these volumes, VeraCrypt will start write-protecting the entire volume (both the outer and the hidden part) until it is dismounted. This may cause filesystem corruption on the outer volume, which (if repeated) might adversely affect plausible deniability of the hidden volume. Therefore, you should make every effort to avoid writing to the hidden volume area. Any data being saved to protected hidden volume areas will not be saved and will be lost. Windows may report this as a write error ("Delayed Write Failed" or "The parameter is incorrect").</entry>
<entry lang="en" key="DAMAGE_TO_HIDDEN_VOLUME_PREVENTED">WARNING: Data were attempted to be saved to the hidden volume area of the volume mounted as %c:! VeraCrypt prevented these data from being saved in order to protect the hidden volume. This may have caused filesystem corruption on the outer volume and Windows may have reported a write error ("Delayed Write Failed" or "The parameter is incorrect"). The entire volume (both the outer and the hidden part) will be write-protected until it is dismounted. If this is not the first time VeraCrypt has prevented data from being saved to the hidden volume area of this volume, plausible deniability of this hidden volume might be adversely affected (due to possible unusual correlated inconsistencies within the outer volume file system). Therefore, you should consider creating a new VeraCrypt volume (with Quick Format disabled) and moving files from this volume to the new volume; this volume should be securely erased (both the outer and the hidden part). We strongly recommend that you restart the operating system now.</entry>
<entry lang="en" key="CANNOT_SATISFY_OVER_4G_FILE_SIZE_REQ">You have indicated intent to store files larger than 4 GB on the volume. This requires the volume to be formatted as NTFS, which, however, will not be possible.</entry>
<entry lang="en" key="CANNOT_CREATE_NON_HIDDEN_NTFS_VOLUMES_UNDER_HIDDEN_OS">Please note that when a hidden operating system is running, non-hidden VeraCrypt volumes cannot be formatted as NTFS. The reason is that the volume would need to be temporarily mounted without write protection in order to allow the operating system to format it as NTFS (whereas formatting as FAT is performed by VeraCrypt, not by the operating system, and without mounting the volume). For further technical details, see below. You can create a non-hidden NTFS volume from within the decoy operating system.</entry>
<entry lang="en" key="HIDDEN_VOL_CREATION_UNDER_HIDDEN_OS_HOWTO">For security reasons, when a hidden operating system is running, hidden volumes can be created only in the 'direct' mode (because outer volumes must always be mounted as read-only). To create a hidden volume securely, follow these steps:\n\n1) Boot the decoy system.\n\n2) Create a normal VeraCrypt volume and, to this volume, copy some sensitive-looking files that you actually do NOT want to hide (the volume will become the outer volume).\n\n3) Boot the hidden system and start the VeraCrypt Volume Creation Wizard. If the volume is file-hosted, move it to the system partition or to another hidden volume (otherwise, the newly created hidden volume would be mounted as read-only and could not be formatted). Follow the instructions in the wizard so as to select the 'direct' hidden volume creation mode.\n\n4) In the wizard, select the volume you created in step 2 and then follow the instructions to create a hidden volume within it.</entry>
@@ -590,7 +588,7 @@
<entry lang="en" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">Error: The files you copied to the outer volume occupy too much space. Therefore, there is not enough free space on the outer volume for the hidden volume.\n\nNote that the hidden volume must be as large as the system partition (the partition where the currently running operating system is installed). The reason is that the hidden operating system needs to be created by copying the content of the system partition to the hidden volume.\n\n\nThe process of creation of the hidden operating system cannot continue.</entry>
<entry lang="nn" key="OPENFILES_DRIVER">Drivaren klarte ikkje å demontera volumet. Nokre filer som ligg på volumet kan framleis vera opne.</entry>
<entry lang="nn" key="OPENFILES_LOCK">Kunne ikkje lukka volumet. Det er framleis opne filer på volumet. Derfor kan ikkje volumet demonterast.</entry>
<entry lang="en" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt cannot lock the volume because it is in use by the system or applications (there may be open files on the volume).\n\nDo you want to force unmount on the volume?</entry>
<entry lang="en" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt cannot lock the volume because it is in use by the system or applications (there may be open files on the volume).\n\nDo you want to force dismount on the volume?</entry>
<entry lang="nn" key="OPEN_VOL_TITLE">Vel eit VeraCrypt Volum</entry>
<entry lang="nn" key="OPEN_TITLE">Spesifiser Sti og Fil namn</entry>
<entry lang="en" key="SELECT_PKCS11_MODULE">Select PKCS #11 Library</entry>
@@ -613,7 +611,7 @@
<entry lang="en" key="FAVORITE_PIM_CHANGED">This volume is registered as a System Favorite and its PIM was changed.\nDo you want VeraCrypt to automatically update the System Favorite configuration (administrator privileges required)?\n\nPlease note that if you answer no, you'll have to update the System Favorite manually.</entry>
<entry lang="en" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">IMPORTANT: If you did not destroy your VeraCrypt Rescue Disk, your system partition/drive can still be decrypted using the old password (by booting the VeraCrypt Rescue Disk and entering the old password). You should create a new VeraCrypt Rescue Disk and then destroy the old one.\n\nDo you want to create a new VeraCrypt Rescue Disk?</entry>
<entry lang="en" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">Note that your VeraCrypt Rescue Disk still uses the previous algorithm. If you consider the previous algorithm insecure, you should create a new VeraCrypt Rescue Disk and then destroy the old one.\n\nDo you want to create a new VeraCrypt Rescue Disk?</entry>
<entry lang="en" key="KEYFILES_NOTE">Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="en" key="KEYFILES_NOTE">Any kind of file (for example, .mp3, .jpg, .zip, .avi) may be used as a VeraCrypt keyfile. Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="nn" key="KEYFILE_CHANGED">Nøkkelfil(er) lagt til/fjerna.</entry>
<entry lang="en" key="KEYFILE_EXPORTED">Keyfile exported.</entry>
<entry lang="nn" key="PKCS5_PRF_CHANGED">Hovud nøkkel derivasjons algorytme vellykka sett.</entry>
@@ -632,12 +630,12 @@
<entry lang="en" key="PASSWORD_HIDDEN_OS_TITLE">Password for Hidden Operating System</entry>
<entry lang="nn" key="PASSWORD_LENGTH_WARNING">ADVARSEL: Korte passord er enkle å knekka ved bruk av 'brute force' teknikkar!\n\nMe anbefaler å velja eit passord som består av minst 20 teikn.\n\nEr du sikker på att du vil bruka eit kort passord?</entry>
<entry lang="nn" key="PASSWORD_TITLE">Volum Passord</entry>
<entry lang="nn" key="PASSWORD_WRONG">Operasjonen mislykka grunna ein eller fleire av følgjande årsaker:\n - Feil passord.\n - Feil PIM-nummer for volum.\n - Feil PRF (hash).\n - Ikkje eit gyldig volum.\n - Volumet brukar ein gammal algoritme som er fjerna.\n - TrueCrypt-format volum er ikkje lenger støtta.</entry>
<entry lang="nn" key="PASSWORD_OR_KEYFILE_WRONG">Operasjonen mislykka grunna ein eller fleire av følgjande årsaker:\n - Feil nøkkelfil(er).\n - Feil passord.\n - Feil PIM-nummer for volum.\n - Feil PRF (hash).\n - Ikkje eit gyldig volum.\n - Volumet brukar ein gammal algoritme som er fjerna.\n - TrueCrypt-format volum er ikkje lenger støtta.</entry>
<entry lang="nn" key="PASSWORD_OR_MODE_WRONG">Operasjonen mislykka grunna ein eller fleire av følgjande årsaker:\n - Feil monteringsmodus.\n - Feil passord.\n - Feil PIM-nummer for volum.\n - Feil PRF (hash).\n - Ikkje eit gyldig volum.\n - Volumet brukar ein gammal algoritme som er fjerna.\n - TrueCrypt-format volum er ikkje lenger støtta.</entry>
<entry lang="nn" key="PASSWORD_OR_KEYFILE_OR_MODE_WRONG">Operasjonen mislykka grunna ein eller fleire av følgjande årsaker:\n - Feil monteringsmodus.\n - Feil nøkkelfil(er).\n - Feil passord.\n - Feil PIM-nummer for volum.\n - Feil PRF (hash).\n - Ikkje eit gyldig volum.\n - Volumet brukar ein gammal algoritme som er fjerna.\n - TrueCrypt-format volum er ikkje lenger støtta.</entry>
<entry lang="nn" key="PASSWORD_WRONG_AUTOMOUNT">Automatisk montering mislykka grunna ein eller fleire av følgjande årsaker:\n - Feil passord.\n - Feil PIM-nummer for volum.\n - Feil PRF (hash).\n - Fann ikkje eit gyldig volum.\n - Volumet brukar ein gammal algoritme som er fjerna.\n - TrueCrypt-format volum er ikkje lenger støtta.</entry>
<entry lang="nn" key="PASSWORD_OR_KEYFILE_WRONG_AUTOMOUNT">Automatisk montering mislykka grunna ein eller fleire av følgjande årsaker:\n - Feil nøkkelfil(er).\n - Feil passord.\n - Feil PIM-nummer for volum.\n - Feil PRF (hash).\n - Fann ikkje eit gyldig volum.\n - Volumet brukar ein gammal algoritme som er fjerna.\n - TrueCrypt-format volum er ikkje lenger støtta.</entry>
<entry lang="en" key="PASSWORD_WRONG">Operation failed due to one or more of the following:\n - Incorrect password.\n - Incorrect Volume PIM number.\n - Incorrect PRF (hash).\n - Not a valid volume.</entry>
<entry lang="en" key="PASSWORD_OR_KEYFILE_WRONG">Operation failed due to one or more of the following:\n - Incorrect keyfile(s).\n - Incorrect password.\n - Incorrect Volume PIM number.\n - Incorrect PRF (hash).\n - Not a valid volume.</entry>
<entry lang="en" key="PASSWORD_OR_MODE_WRONG">Operation failed due to one or more of the following:\n - Wrong mount mode.\n - Incorrect password.\n - Incorrect Volume PIM number.\n - Incorrect PRF (hash).\n - Not a valid volume.</entry>
<entry lang="en" key="PASSWORD_OR_KEYFILE_OR_MODE_WRONG">Operation failed due to one or more of the following:\n - Wrong mount mode.\n - Incorrect keyfile(s).\n - Incorrect password.\n - Incorrect Volume PIM number.\n - Incorrect PRF (hash).\n - Not a valid volume.</entry>
<entry lang="en" key="PASSWORD_WRONG_AUTOMOUNT">Auto-mount failed due to one or more of the following:\n - Incorrect password.\n - Incorrect Volume PIM number.\n - Incorrect PRF (hash).\n - No valid volume found.</entry>
<entry lang="en" key="PASSWORD_OR_KEYFILE_WRONG_AUTOMOUNT">Auto-mount failed due to one or more of the following:\n - Incorrect keyfile(s).\n - Incorrect password.\n - Incorrect Volume PIM number.\n - Incorrect PRF (hash).\n - No valid volume found.</entry>
<entry lang="nn" key="PASSWORD_WRONG_CAPSLOCK_ON">\n\nAdvarsel: Caps Lock er på. Dette kan føra til att du skriv inn passordet feil.</entry>
<entry lang="en" key="PIM_CHANGE_WARNING">Remember Number to Mount Volume</entry>
<entry lang="en" key="PIM_HIDVOL_HOST_TITLE">Outer Volume PIM</entry>
@@ -729,7 +727,7 @@
<entry lang="en" key="DLL_FILES">Library Modules</entry>
<entry lang="nn" key="FORMAT_NTFS_STOP">NTFS formatering kan ikkje halde fram.</entry>
<entry lang="nn" key="CANT_MOUNT_VOLUME">Kan ikkje montera volum.</entry>
<entry lang="nn" key="CANT_UNMOUNT_VOLUME">Kan ikkje demontera volum.</entry>
<entry lang="nn" key="CANT_DISMOUNT_VOLUME">Kan ikkje demontera volum.</entry>
<entry lang="en" key="FORMAT_NTFS_FAILED">Windows failed to format the volume as NTFS.\n\nPlease select a different type of file system (if possible) and try again. Alternatively, you could leave the volume unformatted (select 'None' as the filesystem), exit this wizard, mount the volume, and then use either a system or a third-party tool to format the mounted volume (the volume will remain encrypted).</entry>
<entry lang="en" key="FORMAT_NTFS_FAILED_ASK_FAT">Windows failed to format the volume as NTFS.\n\nDo you want to format the volume as FAT instead?</entry>
<entry lang="nn" key="DEFAULT">Standard</entry>
@@ -771,7 +769,7 @@
<entry lang="en" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">An error prevented VeraCrypt from encrypting the partition. Please try fixing any previously reported problems and then try again. If the problems persist, it might help to follow the below steps.</entry>
<entry lang="en" key="INPLACE_ENC_GENERIC_ERR_RESUME">An error prevented VeraCrypt from resuming the process of encryption/decryption of the partition/volume.\n\nPlease try fixing any previously reported problems and then try resuming the process again if possible. Note that the volume cannot be mounted until it has been fully encrypted or fully decrypted.</entry>
<entry lang="en" key="INPLACE_DEC_GENERIC_ERR">An error prevented VeraCrypt from decrypting the volume. Please try fixing any previously reported problems and then try again if possible.</entry>
<entry lang="en" key="CANT_UNMOUNT_OUTER_VOL">Error: Cannot unmount the outer volume!\n\nVolume cannot be unmounted if it contains files or folders being used by a program or the system.\n\nPlease close any program that might be using files or directories on the volume and click Retry.</entry>
<entry lang="en" key="CANT_DISMOUNT_OUTER_VOL">Error: Cannot dismount the outer volume!\n\nVolume cannot be dismounted if it contains files or folders being used by a program or the system.\n\nPlease close any program that might be using files or directories on the volume and click Retry.</entry>
<entry lang="en" key="CANT_GET_OUTER_VOL_INFO">Error: Cannot obtain information about the outer volume!\nVolume creation cannot continue.</entry>
<entry lang="nn" key="CANT_ACCESS_OUTER_VOL">Feil: Kan ikkje opna det ytre volumet! Volum oppretting kan ikkje halde fram.</entry>
<entry lang="nn" key="CANT_MOUNT_OUTER_VOL">Feil: Kan ikkje montera det ytre volumet! Volum oppretting kan ikkje halde fram.</entry>
@@ -813,7 +811,7 @@
<entry lang="en" key="SECONDARY_KEY_SIZE_LRW">Tweak Key Size (LRW Mode)</entry>
<entry lang="nn" key="BITS">bits</entry>
<entry lang="nn" key="BLOCK_SIZE">Blokk Størrelse</entry>
<entry lang="nn" key="KDF">KDF</entry>
<entry lang="nn" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="nn" key="PKCS5_ITERATIONS">PKCS-5 gjenntakings tal</entry>
<entry lang="nn" key="VOLUME_CREATE_DATE">Volum Oppretta</entry>
<entry lang="nn" key="VOLUME_HEADER_DATE">Header Sist Endra</entry>
@@ -855,7 +853,7 @@
<entry lang="en" key="TC_INSTALLER_IS_RUNNING">VeraCrypt Installer is currently running on this system and performing or preparing installation or update of VeraCrypt. Before you proceed, please wait for it to finish or close it. If you cannot close it, please restart your computer before proceeding.</entry>
<entry lang="en" key="INSTALL_FAILED">Installation failed.</entry>
<entry lang="en" key="UNINSTALL_FAILED">Uninstallation failed.</entry>
<entry lang="en" key="DIST_PACKAGE_CORRUPTED">This distribution package is damaged. Please try downloading it again (preferably from the official VeraCrypt website at https://veracrypt.jp).</entry>
<entry lang="en" key="DIST_PACKAGE_CORRUPTED">This distribution package is damaged. Please try downloading it again (preferably from the official VeraCrypt website at https://www.veracrypt.fr).</entry>
<entry lang="en" key="CANNOT_WRITE_FILE_X">Cannot write file %s</entry>
<entry lang="en" key="EXTRACTING_VERB">Extracting</entry>
<entry lang="en" key="CANNOT_READ_FROM_PACKAGE">Cannot read data from the package.</entry>
@@ -882,7 +880,7 @@
<entry lang="nn" key="INSTALL_COMPLETED">Installasjonen er fullført.</entry>
<entry lang="nn" key="CANT_CREATE_FOLDER">Mappe '%s' kunne ikkje opprettast</entry>
<entry lang="en" key="CLOSE_TC_FIRST">The VeraCrypt device driver cannot be unloaded.\n\nPlease close all open VeraCrypt windows first. If it does not help, please restart Windows and then try again.</entry>
<entry lang="nn" key="UNMOUNT_ALL_FIRST">Alle VeraCrypt volum må demonterast før du installerar eller avinstallerar VeraCrypt.</entry>
<entry lang="nn" key="DISMOUNT_ALL_FIRST">Alle VeraCrypt volum må demonterast før du installerar eller avinstallerar VeraCrypt.</entry>
<entry lang="en" key="UNINSTALL_OLD_VERSION_FIRST">An obsolete version of VeraCrypt is currently installed on this system. It needs to be uninstalled before you can install this new version of VeraCrypt.\n\nAs soon as you close this message box, the uninstaller of the old version will be launched. Note that no volume will be decrypted when you uninstall VeraCrypt. After you uninstall the old version of VeraCrypt, run the installer of the new version of VeraCrypt again.</entry>
<entry lang="nn" key="REG_INSTALL_FAILED">Installasjonen av register oppføringane har feila</entry>
<entry lang="en" key="DRIVER_INSTALL_FAILED">The installation of the device driver has failed. Please restart Windows and then try installing VeraCrypt again.</entry>
@@ -903,7 +901,7 @@
<entry lang="nn" key="MINUTES">minuttar</entry>
<entry lang="nn" key="SECONDS">s</entry>
<entry lang="nn" key="OPEN">Opne</entry>
<entry lang="nn" key="UNMOUNT">Demonter</entry>
<entry lang="nn" key="DISMOUNT">Demonter</entry>
<entry lang="nn" key="SHOW_TC">Vis VeraCrypt</entry>
<entry lang="nn" key="HIDE_TC">Skjul VeraCrypt</entry>
<entry lang="nn" key="TOTAL_DATA_READ">Data Lest sidan Montering</entry>
@@ -940,7 +938,7 @@
<entry lang="en" key="ENTER_HEADER_BACKUP_PASSWORD">Enter password for the header stored in backup file</entry>
<entry lang="nn" key="KEYFILE_CREATED">Nøkkelfil har vorte laga.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_NUMBER">The number of keyfiles you supplied is invalid.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be at least 64 bytes.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be comprized between 64 and 1048576 bytes.</entry>
<entry lang="en" key="KEYFILE_EMPTY_BASE_NAME">Please enter a name for the keyfile(s) to be generated</entry>
<entry lang="en" key="KEYFILE_INVALID_BASE_NAME">The base name of the keyfile(s) is invalid</entry>
<entry lang="en" key="KEYFILE_ALREADY_EXISTS">The keyfile '%s' already exists.\nDo you want to overwrite it? The generation process will be stopped if you answer No.</entry>
@@ -975,7 +973,7 @@
<entry lang="en" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - System Favorite Volumes</entry>
<entry lang="en" key="SYS_FAVORITES_HELP_LINK">What are system favorite volumes?</entry>
<entry lang="en" key="SYS_FAVORITES_REQUIRE_PBA">The system partition/drive does not appear to be encrypted.\n\nSystem favorite volumes can be mounted using only a pre-boot authentication password. Therefore, to enable use of system favorite volumes, you need to encrypt the system partition/drive first.</entry>
<entry lang="nn" key="UNMOUNT_FIRST">Ver venleg å demonter volum før du held fram.</entry>
<entry lang="nn" key="DISMOUNT_FIRST">Ver venleg å demonter volum før du held fram.</entry>
<entry lang="en" key="CANNOT_SET_TIMER">Error: Cannot set timer.</entry>
<entry lang="nn" key="IDPM_CHECK_FILESYS">Sjekk Filsystem</entry>
<entry lang="nn" key="IDPM_REPAIR_FILESYS">Reparer Filsystem</entry>
@@ -997,7 +995,7 @@
<entry lang="nn" key="UNSUPPORTED_CHARS_IN_PWD">Feil: Passord kan berre innehalde ASCII teikn.\n\nikkje-ASCII teikn i passord kan føra til att det ikkje vert mogeleg å montera volumet når system konfigen din endrar seg.\n\nFølgjande teken er lov:\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="nn" key="UNSUPPORTED_CHARS_IN_PWD_RECOM">Advarsel: Passord inneheld ikkje-ASCII teikn. Dette kan føra til att det ikkje vert mogeleg å montera volumet når system konfigen din endrar seg.\n\nDu bør byta ut alle ikkje-ASCII teken i passordet med ASCII teken. For å gjera det, trykk på 'Volum' -&gt; 'Endre Volum passord'.\n\nFølgjande er ASCII teikn:\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="en" key="EXE_FILE_EXTENSION_CONFIRM">WARNING: We strongly recommend that you avoid file extensions that are used for executable files (such as .exe, .sys, or .dll) and other similarly problematic file extensions. Using such file extensions causes Windows and antivirus software to interfere with the container, which adversely affects the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension or change it (e.g., to '.hc').\n\nAre you sure you want to use the problematic file extension?</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you unmount the volume.</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you dismount the volume.</entry>
<entry lang="nn" key="HOMEPAGE">Heimeside</entry>
<entry lang="nn" key="LARGE_IDE_WARNING_XP">ADVARSEL: Det ser ut til att du ikkje har installert nokon service pakke til din Windows installasjon. Du skal ikkje skriva til IDE diskar større enn 128 GB under Windows XP som ikkje har SP 1 eller høgare! Vist du gjere det kan data som er på disken (uansett om det er eit VeraCrypt Volum eller ikkje) verta korrupte. Dette er ein begrensing i Windows, ikkje ein feil i VeraCrypt.</entry>
<entry lang="nn" key="LARGE_IDE_WARNING_2K">ADVARSEL: Det ser ut til att du ikkje har installert service pack 2 eller seinare til din Windows installasjon. Du skal ikkje skriva til IDE diskar større enn 128 GB under Windows 2000 som ikkje har installert SP 3 eller høgare! Vist du gjere det kan data som er på disken (uansett om det er eit VeraCrypt Volum eller ikkje) verta korrupte. Dette er ein begrensing i Windows, ikkje ein feil i VeraCrypt.\n\nMerk: Det kan og hende du må aktivere støtta for 48-bit LBA i Windows registeret; for meir info, sjå http://support.microsoft.com/kb/305098/EN-US</entry>
@@ -1006,14 +1004,14 @@
<entry lang="en" key="VOLUME_TOO_LARGE_FOR_WINXP">Warning: Windows XP does not support files larger than 2048 GB (it will report that "Not enough storage is available"). Therefore, you cannot create a file-hosted VeraCrypt volume (container) larger than 2048 GB under Windows XP.\n\nNote that it is still possible to encrypt the entire drive or create a partition-hosted VeraCrypt volume larger than 2048 GB under Windows XP.</entry>
<entry lang="en" key="FREE_SPACE_FOR_WRITING_TO_OUTER_VOLUME">WARNING: If you want to be able to add more data/files to the outer volume in future, you should consider choosing a smaller size for the hidden volume.\n\nAre you sure you want to continue with the size you specified?</entry>
<entry lang="nn" key="NO_VOLUME_SELECTED">Ingen volum valgt.\n\nKlikk 'Vel Einheit' eller 'Vel Fil' for å velgja eit VeraCrypt volum.</entry>
<entry lang="en" key="NO_SYSENC_PARTITION_SELECTED">No partition selected.\n\nClick 'Select Device' to select a unmounted partition that normally requires pre-boot authentication (for example, a partition located on the encrypted system drive of another operating system, which is not running, or the encrypted system partition of another operating system).\n\nNote: The selected partition will be mounted as a regular VeraCrypt volume without pre-boot authentication. This is useful e.g. for backup or repair operations.</entry>
<entry lang="en" key="NO_SYSENC_PARTITION_SELECTED">No partition selected.\n\nClick 'Select Device' to select a dismounted partition that normally requires pre-boot authentication (for example, a partition located on the encrypted system drive of another operating system, which is not running, or the encrypted system partition of another operating system).\n\nNote: The selected partition will be mounted as a regular VeraCrypt volume without pre-boot authentication. This is useful e.g. for backup or repair operations.</entry>
<entry lang="en" key="CONFIRM_SAVE_DEFAULT_KEYFILES">WARNING: If default keyfiles are set and enabled, volumes that are not using these keyfiles will be impossible to mount. Therefore, after you enable default keyfiles, keep in mind to uncheck the 'Use keyfiles' checkbox (below a password input field) whenever mounting such volumes.\n\nAre you sure you want to save the selected keyfiles/paths as default?</entry>
<entry lang="nn" key="HK_AUTOMOUNT_DEVICES">Auto monter einheiter</entry>
<entry lang="nn" key="HK_UNMOUNT_ALL">Demonter alle</entry>
<entry lang="nn" key="HK_DISMOUNT_ALL">Demonter alle</entry>
<entry lang="nn" key="HK_WIPE_CACHE">Slett snøgglager</entry>
<entry lang="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All &amp; Wipe Cache</entry>
<entry lang="nn" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Tving demontering av alle &amp; Visk ut snøgglager</entry>
<entry lang="nn" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Tving demontering av alle, Visk ut snøgglager &amp; Avslutt</entry>
<entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All &amp; Wipe Cache</entry>
<entry lang="nn" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Tving demontering av alle &amp; Visk ut snøgglager</entry>
<entry lang="nn" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Tving demontering av alle, Visk ut snøgglager &amp; Avslutt</entry>
<entry lang="nn" key="HK_MOUNT_FAVORITE_VOLUMES">Monter Favoritt Volum</entry>
<entry lang="nn" key="HK_SHOW_HIDE_MAIN_WINDOW">Vis/skjul Hovud VeraCrypt vindauga</entry>
<entry lang="nn" key="PRESS_A_KEY_TO_ASSIGN">(Klikk her og trykk ein tast)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="en" key="PAGING_FILE_CREATION_PREVENTED">Paging file creation has been prevented.\n\nPlease note that, due to Windows issues, paging files cannot be located on non-system VeraCrypt volumes (including system favorite volumes). VeraCrypt supports creation of paging files only on an encrypted system partition/drive.</entry>
<entry lang="en" key="SYS_ENC_HIBERNATION_PREVENTED">An error or incompatibility prevents VeraCrypt from encrypting the hibernation file. Therefore, hibernation has been prevented.\n\nNote: When a computer hibernates (or enters a power-saving mode), the content of its system memory is written to a hibernation storage file residing on the system drive. VeraCrypt would not be able to prevent encryption keys and the contents of sensitive files opened in RAM from being saved unencrypted to the hibernation storage file.</entry>
<entry lang="en" key="HIDDEN_OS_HIBERNATION_PREVENTED">Hibernation has been prevented.\n\nVeraCrypt does not support hibernation on hidden operating systems that use an extra boot partition. Please note that the boot partition is shared by both the decoy and the hidden system. Therefore, in order to prevent data leaks and problems while resuming from hibernation, VeraCrypt has to prevent the hidden system from writing to the shared boot partition and from hibernating.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">VeraCrypt volume mounted as %c: has been unmounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt volumes have been unmounted.</entry>
<entry lang="en" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt volumes have been unmounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_UNMOUNTED">Successfully unmounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="nn" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">Advarsel: Vist denne mogelegheita vert aktivert, vill ikkje volum som inneheld opne filer/mapper vera mogeleg å auto-demontera.\n\nEr du sikker på att du vill deaktivera denne mogelegheita?</entry>
<entry lang="en" key="WARN_PREF_AUTO_UNMOUNT">WARNING: Volumes containing open files/directories will NOT be auto-unmounted.\n\nTo prevent this, enable the following option in this dialog window: 'Force auto-unmount even if volume contains open files or directories'</entry>
<entry lang="en" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-unmount volumes in such cases.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">VeraCrypt volume mounted as %c: has been dismounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt volumes have been dismounted.</entry>
<entry lang="en" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt volumes have been dismounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_DISMOUNTED">Successfully dismounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="nn" key="CONFIRM_NO_FORCED_AUTODISMOUNT">Advarsel: Vist denne mogelegheita vert aktivert, vill ikkje volum som inneheld opne filer/mapper vera mogeleg å auto-demontera.\n\nEr du sikker på att du vill deaktivera denne mogelegheita?</entry>
<entry lang="en" key="WARN_PREF_AUTO_DISMOUNT">WARNING: Volumes containing open files/directories will NOT be auto-dismounted.\n\nTo prevent this, enable the following option in this dialog window: 'Force auto-dismount even if volume contains open files or directories'</entry>
<entry lang="en" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-dismount volumes in such cases.</entry>
<entry lang="en" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">You have scheduled the process of encryption/decryption of a partition/volume. The process has not been completed yet.\n\nDo you want to resume the process now?</entry>
<entry lang="en" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">You have scheduled the process of encryption or decryption of the system partition/drive. The process has not been completed yet.\n\nDo you want to start (resume) the process now?</entry>
<entry lang="en" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">Do you want to be prompted about whether you want to resume the currently scheduled processes of encryption/decryption of non-system partitions/volumes?</entry>
@@ -1040,7 +1038,7 @@
<entry lang="en" key="DO_NOT_PROMPT_ME">No, do not prompt me</entry>
<entry lang="en" key="NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL_NOTE">IMPORTANT: Keep in mind that you can resume the process of encryption/decryption of any non-system partition/volume by selecting 'Volumes' &gt; 'Resume Interrupted Process' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="en" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">You have scheduled the process of encryption or decryption of the system partition/drive. However, pre-boot authentication failed (or was bypassed).\n\nNote: If you decrypted the system partition/drive in the pre-boot environment, you may need to finalize the process by selecting 'System' &gt; 'Permanently Decrypt System Partition/Drive' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="en" key="CONFIRM_EXIT_UNIVERSAL">Exit?</entry>
<entry lang="en" key="CHOOSE_ENCRYPT_OR_DECRYPT">VeraCrypt does not have sufficient information to determine whether to encrypt or decrypt.</entry>
<entry lang="en" key="CHOOSE_ENCRYPT_OR_DECRYPT_FINALIZE_DECRYPT_NOTE">VeraCrypt does not have sufficient information to determine whether to encrypt or decrypt.\n\nNote: If you decrypted the system partition/drive in the pre-boot environment, you may need to finalize the process by clicking Decrypt.</entry>
@@ -1063,7 +1061,7 @@
<entry lang="en" key="SYS_AUTOMOUNT_DISABLED">Your system is not configured to auto-mount new volumes. It may be impossible to mount device-hosted VeraCrypt volumes. Auto-mounting can be enabled by executing the following command and restarting the system.\n\nmountvol.exe /E</entry>
<entry lang="nn" key="SYS_ASSIGN_DRIVE_LETTER">Tildel ein stasjons bokstav til pertisjonen/einheiten før du held fram ('Kontrollpanel' &gt; 'System og Vedlikehold' &gt; 'Administrative Vertøy' - 'Lag og formater harddiskpartisjoner').\n\nMerk att dette er eit krav frå opperativ systemet.</entry>
<entry lang="nn" key="MOUNT_TC_VOLUME">Mounter VeraCrypt volum</entry>
<entry lang="nn" key="UNMOUNT_ALL_TC_VOLUMES">Demonter alle VeraCrypt volum</entry>
<entry lang="nn" key="DISMOUNT_ALL_TC_VOLUMES">Demonter alle VeraCrypt volum</entry>
<entry lang="nn" key="UAC_INIT_ERROR">VeraCrypt kunne ikkje skaffa Administrator rettigheiter.</entry>
<entry lang="en" key="ERR_ACCESS_DENIED">Access was denied by the operating system.\n\nPossible cause: The operating system requires that you have read/write permission (or administrator privileges) for certain folders, files, and devices, in order for you to be allowed to read and write data to/from them. Normally, a user without administrator privileges is allowed to create, read and modify files in his or her Documents folder.</entry>
<entry lang="en" key="SECTOR_SIZE_UNSUPPORTED">Error: The drive uses an unsupported sector size.\n\nIt is currently not possible to create partition/device-hosted volumes on drives that use sectors larger than 4096 bytes. However, note that you can create file-hosted volumes (containers) on such drives.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="en" key="HIDDEN_OS_CREATION_PREINFO_HELP">In the next steps, VeraCrypt will create the hidden operating system by copying the content of the system partition to the hidden volume (data being copied will be encrypted on the fly with an encryption key different from the one that will be used for the decoy operating system).\n\nPlease note that the process will be performed in the pre-boot environment (before Windows starts) and it may take a long time to complete; several hours or even several days (depending on the size of the system partition and on the performance of your computer).\n\nYou will be able to interrupt the process, shut down your computer, start the operating system and then resume the process. However, if you interrupt it, the entire process of copying the system will have to start from the beginning (because the content of the system partition must not change during cloning).</entry>
<entry lang="en" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">Do you want to cancel the entire process of creation of the hidden operating system?\n\nNote: You will NOT be able to resume the process if you cancel it now.</entry>
<entry lang="en" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">Do you want to cancel the system encryption pretest?</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="en" key="SYS_DRIVE_NOT_ENCRYPTED">The system partition/drive does not appear to be encrypted (neither partially nor fully).</entry>
<entry lang="en" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">Your system partition/drive is encrypted (partially or fully).\n\nPlease decrypt your system partition/drive entirely before proceeding. To do so, select 'System' &gt; 'Permanently Decrypt System Partition/Drive' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="en" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">When the system partition/drive is encrypted (partially or fully), you cannot downgrade VeraCrypt (but you can upgrade it or reinstall the same version).</entry>
@@ -1285,17 +1283,17 @@
<entry lang="en" key="TOKEN_DATA_OBJECT_LABEL">File name</entry>
<entry lang="en" key="BOOT_PASSWORD_CACHE_KEYBOARD_WARNING">IMPORTANT: Please note that pre-boot authentication passwords are always typed using the standard US keyboard layout. Therefore, a volume that uses a password typed using any other keyboard layout may be impossible to mount using a pre-boot authentication password (note that this is not a bug in VeraCrypt). To allow such a volume to be mounted using a pre-boot authentication password, follow these steps:\n\n1) Click 'Select File' or 'Select Device' and select the volume.\n2) Select 'Volumes' > 'Change Volume Password'.\n3) Enter the current password for the volume.\n4) Change the keyboard layout to English (US) by clicking the Language bar icon in the Windows taskbar and selecting 'EN English (United States)'.\n5) In VeraCrypt, in the field for the new password, type the pre-boot authentication password.\n6) Confirm the new password by retyping it in the confirmation field and click 'OK'.\nWARNING: Please keep in mind that if you follow these steps, the volume password will always have to be typed using the US keyboard layout (which is automatically ensured only in the pre-boot environment).</entry>
<entry lang="en" key="SYS_FAVORITES_KEYBOARD_WARNING">System favorite volumes will be mounted using the pre-boot authentication password. If any system favorite volume uses a different password, it will not be mounted.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Unmount All', auto-unmount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and unmount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be unmounted. Therefore, if you need e.g. to unmount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Unmount All' function, 'Auto-Unmount' functions, 'Unmount All' hot keys, etc.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Dismount All', auto-dismount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and dismount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be dismounted. Therefore, if you need e.g. to dismount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Dismount All' function, 'Auto-Dismount' functions, 'Dismount All' hot keys, etc.</entry>
<entry lang="en" key="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry>
<entry lang="en" key="COMMAND_LINE_ERROR">Error while parsing command line.</entry>
<entry lang="en" key="RESCUE_DISK">Rescue Disk</entry>
<entry lang="en" key="SELECT_FILE_AND_MOUNT">Select &amp;File and Mount...</entry>
<entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &amp;Device and Mount...</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and dismount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="MOUNT_SYSTEM_FAVORITES_ON_BOOT">Mount system favorite volumes when Windows starts (in the initial phase of the startup procedure)</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly unmounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always unmount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly unmounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly dismounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always dismount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly dismounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="FILESYS_REPAIR_CONFIRM_BACKUP">Warning: Repairing a damaged filesystem using the Microsoft 'chkdsk' tool might cause loss of files in damaged areas. Therefore, it is recommended that you first back up the files stored on the VeraCrypt volume to another, healthy, VeraCrypt volume.\n\nDo you want to repair the filesystem now?</entry>
<entry lang="en" key="MOUNTED_CONTAINER_FORCED_READ_ONLY">Volume '%s' has been mounted as read-only because write access was denied.\n\nPlease make sure the security permissions of the file container allow you to write to it (right-click the container and select Properties > Security).\n\nNote that, due to a Windows issue, you may see this warning even after setting the appropriate security permissions. This is not caused by a bug in VeraCrypt. A possible solution is to move your container to, e.g., your 'Documents' folder.\n\nIf you intend to keep your volume read-only, set the read-only attribute of the container (right-click the container and select Properties > Read-only), which will suppress this warning.</entry>
<entry lang="en" key="MOUNTED_DEVICE_FORCED_READ_ONLY">Volume '%s' had to be mounted as read-only because write access was denied.\n\nPlease make sure no other application (e.g. antivirus software) is accessing the partition/device on which the volume is hosted.</entry>
@@ -1306,8 +1304,8 @@
<entry lang="en" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Note that the number of threads is currently limited, which will affect benchmark results (worse performance).\n\nTo utilize the full potential of the processor(s), select 'Settings' > 'Performance' and disable the corresponding option.</entry>
<entry lang="en" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">Do you want VeraCrypt to attempt to disable write protection of the partition/drive?</entry>
<entry lang="en" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">WARNING: This setting may degrade performance.\n\nAre you sure you want to use this setting?</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-unmounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always unmount the volume in VeraCrypt first.\n\nUnexpected spontaneous unmount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-dismounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always dismount the volume in VeraCrypt first.\n\nUnexpected spontaneous dismount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="UNSUPPORTED_TRUECRYPT_FORMAT">This volume was created with TrueCrypt %x.%x but VeraCrypt supports only TrueCrypt volumes created with TrueCrypt 6.x/7.x series</entry>
<entry lang="en" key="TEST">Test</entry>
<entry lang="nn" key="KEYFILE">Nøkkelfil</entry>
@@ -1453,7 +1451,7 @@
<entry lang="en" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Add All Mounted Volumes to Favorites...</entry>
<entry lang="en" key="TASKICON_PREF_MENU_ITEMS">Task Icon Menu Items</entry>
<entry lang="en" key="TASKICON_PREF_OPEN_VOL">Open Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_DISMOUNT_VOL">Dismount Mounted Volumes</entry>
<entry lang="en" key="DISK_FREE">Free space available: {0}</entry>
<entry lang="en" key="VOLUME_SIZE_HELP">Please specify the size of the container to create. Note that the minimum possible size of a volume is 292 KiB.</entry>
<entry lang="en" key="LINUX_CONFIRM_INNER_VOLUME_CALC">WARNING: You have selected a filesystem other than FAT for the outer volume.\nPlease Note that in this case VeraCrypt can't calculate the exact maximum allowed size for the hidden volume and it will use only an estimation that can be wrong.\nThus, it is your responsibility to use an adequate value for the size of the hidden volume so that it does not overlap the outer volume.\n\nDo you want to continue using the selected filesystem for the outer volume?</entry>
@@ -1483,14 +1481,14 @@
<entry lang="en" key="LINUX_DO_NOT_MOUNT">Do &amp;not mount</entry>
<entry lang="en" key="LINUX_MOUNT_AT_DIR">Mount at directory:</entry>
<entry lang="en" key="LINUX_SELECT">Se&amp;lect...</entry>
<entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount All Volumes When</entry>
<entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry>
<entry lang="en" key="LINUX_ENTERING_POWERSAVING">System is entering power saving mode</entry>
<entry lang="en" key="LINUX_LOGIN_ACTION">Actions to Perform when User Logs On</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Close all Explorer windows of volume being dismounted</entry>
<entry lang="en" key="LINUX_HOTKEYS">Hotkeys</entry>
<entry lang="en" key="LINUX_SYSTEM_HOTKEYS">System-Wide Hotkeys</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/unmount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_UNMOUNT">Display confirmation message box after unmount</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/dismount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_DISMOUNT">Display confirmation message box after dismount</entry>
<entry lang="en" key="LINUX_VC_QUITS">VeraCrypt quits</entry>
<entry lang="en" key="LINUX_OPEN_FINDER">Open Finder window for successfully mounted volume</entry>
<entry lang="en" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Please note that this setting takes effect only if use of the kernel cryptographic services is disabled.</entry>
@@ -1510,11 +1508,11 @@
<entry lang="en" key="LINUX_DYNAMIC_NOTICE">Please note that if your operating system does not allocate files from the beginning of the free space, the maximum possible hidden volume size may be much smaller than the size of the free space on the outer volume. This is not a bug in VeraCrypt but a limitation of the operating system.</entry>
<entry lang="en" key="LINUX_MAX_HIDDEN_SIZE">Maximum possible hidden volume size for this volume is {0}.</entry>
<entry lang="en" key="LINUX_OPEN_OUTER_VOL">Open Outer Volume</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not unmount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not dismount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">Error: You are trying to encrypt a system drive.\n\nVeraCrypt can encrypt a system drive only under Windows.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">Error: You are trying to encrypt a system partition.\n\nVeraCrypt can encrypt system partitions only under Windows.</entry>
<entry lang="en" key="LINUX_WARNING_FORMAT_DESTROY_FS">WARNING: Formatting of the device will destroy all data on filesystem '{0}'.\n\nDo you want to continue?</entry>
<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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please dismount '{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>
@@ -1522,8 +1520,7 @@
<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>
<entry lang="en" key="LINUX_VOL_DISMOUNTED">Volume {0} has been dismounted.</entry>
<entry lang="en" key="LINUX_OOM">Out of memory.</entry>
<entry lang="en" key="LINUX_CANT_GET_ADMIN_PRIV">Failed to obtain administrator privileges</entry>
<entry lang="en" key="LINUX_COMMAND_GET_ERROR">Command {0} returned error {1}.</entry>
@@ -1553,7 +1550,7 @@
<entry lang="en" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Error: The drive uses a sector size other than 512 bytes.\n\nDue to limitations of components available on your platform, partition/device-hosted volumes cannot be created/used on the drive.\n\nPossible solutions:\n- Create a file-hosted volume (container) on the drive.\n- Use a drive with 512-byte sectors.\n- Use VeraCrypt on another platform.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">The host file/device is already in use.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Volume slot unavailable.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires macFUSE 2.5 or above.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires OSXFUSE 2.5 or above.</entry>
<entry lang="en" key="EXCEPTION_OCCURRED">Exception occurred</entry>
<entry lang="en" key="ENTER_PASSWORD">Enter password</entry>
<entry lang="en" key="ENTER_TC_VOL_PASSWORD">Enter VeraCrypt Volume Password</entry>
@@ -1570,124 +1567,6 @@
<entry lang="en" key="VOLUME_HOST_IN_USE">WARNING: The host file/device {0} is already in use!\n\nIgnoring this can cause undesired results including system instability. All applications that might be using the host file/device should be closed before mounting the volume.\n\nContinue mounting?</entry>
<entry lang="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
<entry lang="en" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">VeraCrypt cannot be upgraded because the system partition/drive was encrypted using an algorithm that is not supported anymore.\nPlease decrypt your system before upgrading VeraCrypt and then encrypt it again.</entry>
<entry lang="en" key="LINUX_EX2MSG_TERMINALNOTFOUND">Supported terminal application could not be found, you need either xterm, konsole or gnome-terminal (with dbus-x11).</entry>
<entry lang="en" key="IDM_MOUNT_NO_CACHE">Mount Without Cache</entry>
<entry lang="en" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nExpand a VeraCrypt volume on the fly without reformatting\n\n\nAll kind of volumes (container files, disks and partitions) formatted with NTFS are supported. The only condition is that there must be enough free space on the host drive or host device of the VeraCrypt volume.\n\nDo not use this software to expand an outer volume containing a hidden volume, because this destroys the hidden volume!\n</entry>
<entry lang="en" key="IDC_STEPSEXPAND">1. Select the VeraCrypt volume to be expanded\n2. Click the 'Mount' button</entry>
<entry lang="en" key="IDT_VOL_NAME">Volume: </entry>
<entry lang="en" key="IDT_FILE_SYS">File system: </entry>
<entry lang="en" key="IDT_CURRENT_SIZE">Current size: </entry>
<entry lang="en" key="IDT_NEW_SIZE">New size: </entry>
<entry lang="en" key="IDT_NEW_SIZE_BOX_TITLE">Enter new volume size</entry>
<entry lang="en" key="IDC_INIT_NEWSPACE">Fill new space with random data</entry>
<entry lang="en" key="IDC_QUICKEXPAND">Quick Expand</entry>
<entry lang="en" key="IDT_INIT_SPACE">Fill new space: </entry>
<entry lang="en" key="EXPANDER_FREE_SPACE">%s free space available on host drive</entry>
<entry lang="en" key="EXPANDER_HELP_DEVICE">This is a device-based VeraCrypt volume.\n\nThe new volume size will be choosen automatically as the size of the host device.</entry>
<entry lang="en" key="EXPANDER_HELP_FILE">Please specify the new size of the VeraCrypt volume (must be at least %I64u KB larger than the current size).</entry>
<entry lang="en" key="QUICK_EXPAND_WARNING">WARNING: You should use Quick Expand only in the following cases:\n\n1) The device where the file container is located contains no sensitive data and you do not need plausible deniability.\n2) The device where the file container is located has already been securely and fully encrypted.\n\nAre you sure you want to use Quick Expand?</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT">IMPORTANT: Move your mouse as randomly as possible within this window. The longer you move it, the better. This significantly increases the cryptographic strength of the encryption keys. Then click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT_LEGACY">Click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_FINISH_ERROR">Error: volume expansion failed.</entry>
<entry lang="en" key="EXPANDER_FINISH_ABORT">Error: operation aborted by user.</entry>
<entry lang="en" key="EXPANDER_FINISH_OK">Finished. Volume successfully expanded.</entry>
<entry lang="en" key="EXPANDER_CANCEL_WARNING">Warning: Volume expansion is in progress!\n\nStopping now may result in a damaged volume.\n\nDo you really want to cancel?</entry>
<entry lang="en" key="EXPANDER_STARTING_STATUS">Starting volume expansion ...\n</entry>
<entry lang="en" key="EXPANDER_HIDDEN_VOLUME_ERROR">An outer volume containing a hidden volume can't be expanded, because this destroys the hidden volume.\n</entry>
<entry lang="en" key="EXPANDER_SYSTEM_VOLUME_ERROR">A VeraCrypt system volume can't be expanded.</entry>
<entry lang="en" key="EXPANDER_NO_FREE_SPACE">Not enough free space to expand the volume</entry>
<entry lang="en" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Warning: The container file is larger than the VeraCrypt volume area. The data after the VeraCrypt volume area will be overwritten.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_FAT">Warning: The VeraCrypt volume contains a FAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_EXFAT">Warning: The VeraCrypt volume contains an exFAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_UNKNOWN_FS">Warning: The VeraCrypt volume contains an unknown or no file system!\n\nOnly the VeraCrypt volume itself will be expanded, the file system remains unchanged.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">New volume size too small, must be at least %I64u kB larger than the current size.</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">New volume size too large, not enough space on host drive.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Maximum file size of %I64u MB on host drive exceeded.</entry>
<entry lang="en" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Error: Failed to get necessary privileges to enable Quick Expand!\nPlease uncheck Quick Expand option and try again.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Maximum VeraCrypt volume size of %I64u TB exceeded!\n</entry>
<entry lang="en" key="FULL_FORMAT">Full Format</entry>
<entry lang="en" key="FAST_CREATE">Fast Create</entry>
<entry lang="en" key="WARN_FAST_CREATE">WARNING: You should use Fast Create only in the following cases:\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 Fast Create?</entry>
<entry lang="en" key="IDC_ENABLE_EMV_SUPPORT">Enable EMV Support</entry>
<entry lang="en" key="COMMAND_APDU_INVALID">The APDU command sent to the card is not valid.</entry>
<entry lang="en" key="EXTENDED_APDU_UNSUPPORTED">Extended APDU commands cannot be used with the current token.</entry>
<entry lang="en" key="SCARD_MODULE_INIT_FAILED">Error when loading the WinSCard / PCSC library.</entry>
<entry lang="en" key="EMV_UNKNOWN_CARD_TYPE">The card in the reader is not a supported EMV card.</entry>
<entry lang="en" key="EMV_SELECT_AID_FAILED">The AID of the card in the reader could not be selected.</entry>
<entry lang="en" key="EMV_ICC_CERT_NOTFOUND">ICC Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_ISSUER_CERT_NOTFOUND">Issuer Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_CPLC_NOTFOUND">CPLC was not found in the EMV card.</entry>
<entry lang="en" key="EMV_PAN_NOTFOUND">No Primary Account Number (PAN) found in the EMV card.</entry>
<entry lang="en" key="INVALID_EMV_PATH">EMV path is invalid.</entry>
<entry lang="en" key="EMV_KEYFILE_DATA_NOTFOUND">Unable to build a keyfile from the EMV card's data.\n\nOne of the following is missing:\n- ICC Public Key Certificate.\n- Issuer Public Key Certificate.\n- CPLC data.</entry>
<entry lang="en" key="SCARD_W_REMOVED_CARD">No card in the reader.\n\nPlease make sure the card is correctly slotted.</entry>
<entry lang="en" key="FORMAT_EXTERNAL_FAILED">Windows format.com command failed to format the volume as NTFS/exFAT/ReFS: Error 0x%.8X.\n\nFalling back to using Windows FormatEx API.</entry>
<entry lang="en" key="FORMATEX_API_FAILED">Windows FormatEx API failed to format the volume as NTFS/exFAT/ReFS.\n\nFailure status = %s.</entry>
<entry lang="en" key="EXPANDER_WRITING_RANDOM_DATA">Writing random data to new space ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Writing re-encrypted backup header ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Writing re-encrypted primary header ...\n</entry>
<entry lang="en" key="EXPANDER_WIPING_OLD_HEADER">Wiping old backup header ...\n</entry>
<entry lang="en" key="EXPANDER_MOUNTING_VOLUME">Mounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_UNMOUNTING_VOLUME">Unmounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_EXTENDING_FILESYSTEM">Extending file system ...\n</entry>
<entry lang="en" key="PARTIAL_SYSENC_MOUNT_READONLY">Warning: The system partition you attempted to mount was not fully encrypted. As a safety measure to prevent potential corruption or unwanted modifications, volume '%s' was mounted as read-only.</entry>
<entry lang="en" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Important information on using third-party file extensions</entry>
<entry lang="en" key="IDC_DISABLE_MEMORY_PROTECTION">Disable memory protection for Accessibility tools compatibility</entry>
<entry lang="en" key="DISABLE_MEMORY_PROTECTION_WARNING">WARNING: Disabling memory protection significantly reduces security. Enable this option ONLY if you rely on Accessibility tools, like Screen Readers, to interact with VeraCrypt's UI.</entry>
<entry lang="nn" key="LINUX_LANGUAGE">Språk</entry>
<entry lang="en" key="LINUX_SELECT_SYS_DEFAULT_LANG">Select system's default language</entry>
<entry lang="en" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">For the language change to come into effect, VeraCrypt needs to be restarted.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE">WARNING: The volume's master key is vulnerable to an attack that compromises data security.\n\nPlease create a new volume and transfer the data to it.</entry>
<entry lang="en" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">WARNING: The encrypted system's master key is vulnerable to an attack that compromises data security.\nPlease decrypt the system partition/drive and then re-encrypt it.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">WARNING: The volume's master key has a security vulnerability.</entry>
<entry lang="en" key="MOUNTPOINT_BLOCKED">ERROR: The volume mount point is blocked because it overrides a protected system directory.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="MOUNTPOINT_NOTALLOWED">ERROR: The volume mount point is not allowed because it overrides a directory that is part of the PATH environment variable.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="INSECURE_MODE">[INSECURE MODE]</entry>
<entry lang="en" key="IDC_DISABLE_SCREEN_PROTECTION">Disable protection against screenshots and screen recording</entry>
<entry lang="en" key="DISABLE_SCREEN_PROTECTION_WARNING">WARNING: Disabling screen protection significantly reduces security. Enable this option ONLY if you have a specific need to capture VeraCrypt's interface. This may expose sensitive data to screenshot tools and screen recording features such as Windows 11 Recall.</entry>
<entry lang="en" key="MEMORY_COST">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="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>
<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>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+67 -188
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
@@ -96,7 +96,7 @@
<entry lang="pl" key="IDT_SINGLE_BOOT">Wybierz tę opcję, jeśli na tym komputerze jest zainstalowany tylko jeden system operacyjny (nawet jeśli ma wielu użytkowników).</entry>
<entry lang="pl" key="IDT_SPEED">Szybkość</entry>
<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_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 wypadku 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_VOLUME_LABEL">Etykieta wolumenu w Windows:</entry>
@@ -135,8 +135,8 @@
<entry lang="pl" key="IDC_FAVORITE_REMOVE">Usu&amp;ń</entry>
<entry lang="pl" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Użyj etykiety ulubionego jako etykiety napędu Eksploratora</entry>
<entry lang="pl" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Ustawienia ogólne</entry>
<entry lang="pl" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Wyświetl podpowiedź w dymku po udanym odłączeniu klawisza skrótu</entry>
<entry lang="pl" key="IDC_HK_UNMOUNT_PLAY_SOUND">Odtwórz systemowy dźwięk powiadomienia po pomyślnym odłączeniu klawisza skrótu</entry>
<entry lang="pl" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Wyświetl podpowiedź w dymku po udanym odłączeniu klawisza skrótu</entry>
<entry lang="pl" key="IDC_HK_DISMOUNT_PLAY_SOUND">Odtwórz systemowy dźwięk powiadomienia po pomyślnym odłączeniu klawisza skrótu</entry>
<entry lang="pl" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="pl" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="pl" key="IDC_HK_MOD_SHIFT">Shift</entry>
@@ -156,12 +156,12 @@
<entry lang="pl" key="IDC_PIM_HELP">(Puste albo 0 dla domyślnych iteracji)</entry>
<entry lang="pl" key="IDC_PREF_BKG_TASK_ENABLE">Aktywne</entry>
<entry lang="pl" key="IDC_PREF_CACHE_PASSWORDS">Przechowuj hasła w pamięci sterownika</entry>
<entry lang="pl" key="IDC_PREF_UNMOUNT_INACTIVE">Automatycznie odłącz wolumen, jeśli nie był używany przez</entry>
<entry lang="pl" key="IDC_PREF_UNMOUNT_LOGOFF">Użytkownik się wylogował</entry>
<entry lang="pl" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">Zablokowano sesję użytkownika</entry>
<entry lang="pl" key="IDC_PREF_UNMOUNT_POWERSAVING">W trybie oszczędzania energii</entry>
<entry lang="pl" key="IDC_PREF_UNMOUNT_SCREENSAVER">Zadziałał wygaszacz ekranu</entry>
<entry lang="pl" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Wymuś odłączanie, nawet gdy są otwarte pliki lub katalogi</entry>
<entry lang="pl" key="IDC_PREF_DISMOUNT_INACTIVE">Automatycznie odłącz wolumen, jeśli nie był używany przez</entry>
<entry lang="pl" key="IDC_PREF_DISMOUNT_LOGOFF">Użytkownik się wylogował</entry>
<entry lang="pl" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">Zablokowano sesję użytkownika</entry>
<entry lang="pl" key="IDC_PREF_DISMOUNT_POWERSAVING">W trybie oszczędzania energii</entry>
<entry lang="pl" key="IDC_PREF_DISMOUNT_SCREENSAVER">Zadziałał wygaszacz ekranu</entry>
<entry lang="pl" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Wymuś odłączanie, nawet gdy są otwarte pliki lub katalogi</entry>
<entry lang="pl" key="IDC_PREF_LOGON_MOUNT_DEVICES">Podłącz wszystkie wolumeny VC w urządzeniach</entry>
<entry lang="pl" key="IDC_PREF_LOGON_START">Uruchom VC jako zadanie w tle</entry>
<entry lang="pl" key="IDC_PREF_MOUNT_READONLY">Podłącz wolumeny tylko do odczytu</entry>
@@ -169,7 +169,7 @@
<entry lang="pl" key="IDC_PREF_OPEN_EXPLORER">Otwórz okno Eksploratora po pomyślnym podłączeniu wolumenu</entry>
<entry lang="pl" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">Czasowo przechowuj hasło podczas operacji "Podłączanie ulubionych wolumenów"</entry>
<entry lang="pl" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Użyj innej ikony na pasku zadań, gdy są podłączone wolumeny</entry>
<entry lang="pl" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Wyczyść pamięć haseł po automatycznym odłączeniu</entry>
<entry lang="pl" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Wyczyść pamięć haseł po automatycznym odłączeniu</entry>
<entry lang="pl" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Wyczyść pamięć haseł przy wyjściu</entry>
<entry lang="pl" key="IDC_PRESERVE_TIMESTAMPS">Zachowaj stempel czasowy kontenerów plików</entry>
<entry lang="pl" key="IDC_RESET_HOTKEYS">Zresetuj</entry>
@@ -217,11 +217,11 @@
<entry lang="pl" key="IDM_DECRYPT_NONSYS_VOL">Trwale odszyfruj...</entry>
<entry lang="pl" key="IDM_DEFAULT_KEYFILES">Domyślne pliki-klucze...</entry>
<entry lang="pl" key="IDM_DEFAULT_MOUNT_PARAMETERS">Domyślne parametry podłączania...</entry>
<entry lang="pl" key="IDM_DONATE">Wspomóż darowizną teraz...</entry>
<entry lang="pl" key="IDM_DONATE">Dotuj teraz...</entry>
<entry lang="pl" key="IDM_ENCRYPT_SYSTEM_DEVICE">Szyfruj partycję lub dysk systemowy...</entry>
<entry lang="pl" key="IDM_FAQ">Często zadawane pytania (FAQ)</entry>
<entry lang="pl" key="IDM_HELP">Podręcznik użytkownika</entry>
<entry lang="pl" key="IDM_HOMEPAGE">St&amp;rona WWW</entry>
<entry lang="pl" key="IDM_HOMEPAGE">St&amp;rona WWW </entry>
<entry lang="pl" key="IDM_HOTKEY_SETTINGS">Skróty klawiaturowe...</entry>
<entry lang="pl" key="IDM_KEYFILE_GENERATOR">Generator plików-kluczy</entry>
<entry lang="pl" key="IDM_LANGUAGE">Język...</entry>
@@ -269,14 +269,14 @@
<entry lang="pl" key="IDT_ACCELERATION_OPTIONS">Akceleracja sprzętowa</entry>
<entry lang="pl" key="IDT_ASSIGN_HOTKEY">Skrót</entry>
<entry lang="pl" key="IDT_AUTORUN">Konfiguracja automatycznego uruchamiania (autorun.inf)</entry>
<entry lang="pl" key="IDT_AUTO_UNMOUNT">Automatyczne odłączanie</entry>
<entry lang="pl" key="IDT_AUTO_UNMOUNT_ON">Odłącz wszystko, gdy:</entry>
<entry lang="pl" key="IDT_AUTO_DISMOUNT">Automatyczne odłączanie</entry>
<entry lang="pl" key="IDT_AUTO_DISMOUNT_ON">Odłącz wszystko, gdy:</entry>
<entry lang="pl" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Opcje obrazu 'Programu startowego'</entry>
<entry lang="pl" key="IDT_CONFIRM_PASSWORD">Potwierdź hasło:</entry>
<entry lang="pl" key="IDT_CURRENT">Bieżące</entry>
<entry lang="pl" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">Wyświetlenie twojej wiadomości podczas autoryzowania i startowania (maksimum 24 znaki):</entry>
<entry lang="pl" key="IDT_DEFAULT_MOUNT_OPTIONS">Domyślne opcje podłączania</entry>
<entry lang="pl" key="IDT_UNMOUNT_ACTION">Opcje klawiatury</entry>
<entry lang="pl" key="IDT_DISMOUNT_ACTION">Opcje klawiatury</entry>
<entry lang="pl" key="IDT_DRIVER_OPTIONS">Konfiguracja sterownika</entry>
<entry lang="pl" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Włącz obsługę rozszerzonych kodów sterujących dysku</entry>
<entry lang="pl" key="IDT_FAVORITE_LABEL">Etykieta wybranego ulubionego wolumenu:</entry>
@@ -291,11 +291,10 @@
<entry lang="pl" key="IDT_NEW_PASSWORD">Hasło:</entry>
<entry lang="pl" key="IDT_PARALLELIZATION_OPTIONS">Zrównoleglanie wątków</entry>
<entry lang="pl" key="IDT_PKCS11_LIB_PATH">Ścieżka biblioteki PKCS #11</entry>
<entry lang="pl" key="IDT_KDF">KDF:</entry>
<entry lang="pl" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="pl" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="pl" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="pl" key="IDT_PW_CACHE_OPTIONS">Pamięć haseł</entry>
<entry lang="pl" key="IDT_SECURITY_OPTIONS">Opcje bezpieczeństwa</entry>
<entry lang="pl" key="IDT_EMV_OPTIONS">Opcje EMV</entry>
<entry lang="pl" key="IDT_TASKBAR_ICON">Zadanie VeraCrypt w tle</entry>
<entry lang="pl" key="IDT_TRAVELER_MOUNT">Podłączany wolumen VeraCrypt (względem gł. katalogu dysku podróżnego):</entry>
<entry lang="pl" key="IDT_TRAVEL_INSERTION">Przy włożeniu dysku podróżnego: </entry>
@@ -357,7 +356,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 plków-kluczy (w bajtach):</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>
@@ -383,14 +382,13 @@
<entry lang="pl" key="MENU_TOOLS">Nar&amp;zędzia</entry>
<entry lang="pl" key="MENU_SETTINGS">Usta&amp;wienia</entry>
<entry lang="pl" key="MENU_HELP">Pomo&amp;c</entry>
<entry lang="pl" key="MENU_WEBSITE">St&amp;rona WWW</entry>
<entry lang="pl" key="MENU_WEBSITE"> St&amp;rona WWW </entry>
<entry lang="pl" key="ABOUTBOX">I&amp;nformacje...</entry>
<entry lang="pl" key="ACCESSMODEFAIL">Atrybut tylko do odczytu na starym wolumenie nie może być zmieniony. Sprawdź prawa dostępu do pliku.</entry>
<entry lang="pl" key="ACCESS_DENIED">Błąd: Brak dostępu.\n\nPartycja, do której chcesz uzyskać dostęp, nie zawiera sektorów lub służy do uruchomienia systemu.</entry>
<entry lang="pl" key="ADMINISTRATOR">Administrator</entry>
<entry lang="pl" key="ADMIN_PRIVILEGES_DRIVER">Do załadowania sterowników VeraCrypt wymagane jest użycie konta z uprawnieniami administratora.</entry>
<entry lang="pl" key="ADMIN_PRIVILEGES_WARN_DEVICES">Aby zaszyfrować/sformatować partycję lub urządzenie, należy użyć konta z uprawnieniami administratora.\n\nPowyższe ograniczenie nie dotyczy wolumenów tworzonych w plikach.</entry>
<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>
@@ -423,8 +421,8 @@
<entry lang="pl" key="DEVICE_FREE_PB">Wielkość %s wynosi %.2f PB</entry>
<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="FORMAT_CANT_DISMOUNT_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_DISMOUNT_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="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>
@@ -452,7 +450,7 @@
<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_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_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="ASK_KEEP_DETECTING_SYSTEM_CRASH">Czy VeraCrypt ma dalej wykrywać awarie systemu?</entry>
@@ -590,10 +588,10 @@
<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_DISMOUNT">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="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>
<entry lang="pl" key="SELECT_PKCS11_MODULE">Wybierz PKCS #11 bibliotekę</entry>
<entry lang="pl" key="OUTOFMEMORY">Brak pamięci</entry>
<entry lang="pl" key="FORMAT_DEVICE_FOR_ADVANCED_ONLY">WAŻNE: Mocno zalecamy niedoświadczonym użytkownikom tworzenie kontenerów VeraCrypt w plikach na wybranych urządzeniach/partycjach, zamiast szyfrować całe urządzenie/partycję.\n\nKiedy tworzysz kontener VeraCrypt plik (jako alternatywę zaszyfrowania urządzenia lub partycji) nie ma ryzyka np. uszkodzenia dużej ilości plików. Pamiętaj, że kontener - plik VeraCrypt (każdy wirtualny zaszyfrowany dysk) jest tak jak każdy normalny plik. Po więcej informacji, zajrzyj do instrukcji Beginner's Tutorial w dokumentacji VeraCrypt.\n\nCzy jesteś pewien że chcesz zaszyfrować całe urządzenie/partycję?</entry>
<entry lang="pl" key="OVERWRITEPROMPT">OSTRZEŻENIE: Plik '%s' już istnieje!\n\nWAŻNE: PROGRAM VERACRYPT NIE ZASZYFRUJE TEGO PLIKU, ALE GO USUNIE! Czy na pewno usunąć ten plik i zastąpić go nowym kontenerem VeraCrypt?</entry>
@@ -613,7 +611,7 @@
<entry lang="pl" key="FAVORITE_PIM_CHANGED">Ten wolumen jest zarejestrowany jako ulubiony systemu. \nCzy chcesz, aby VeraCrypt automatycznie uaktualnił konfigurację ulubionych systemu (wymagane uprawnienia administratora)?\n\nProszę zauważyć, że jeśli wybierzesz "nie", będziesz musiał uaktualnić ręcznie ulubione systemu.</entry>
<entry lang="pl" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">WAŻNE: Jeżeli nie zniszczyłeś płyty ratunkowej VeraCrypt, twój system partycja/dysk może być ciągle odszyfrowany używając starego hasła (poprzez uruchomienie płyty ratunkowej VeraCrypt i wprowadzeniu starego hasła). Powinieneś stworzyć nową płytę ratunkową VeraCrypt i później skasować starą.\n\nCzy chcesz stworzyć nową płytę ratunkową VeraCrypt?</entry>
<entry lang="pl" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">Płyta ratunkowa programu VeraCrypt nadal używa poprzedniego algorytmu. Jeśli poprzedni algorytm uważany jest za niebezpieczny, należy utworzyć nową płytę ratunkową i zniszczyć poprzednią.\n\nCzy chcesz utworzyć nową płytę ratunkową?</entry>
<entry lang="pl" key="KEYFILES_NOTE">Zauważ, że VC nigdy nie zmienia zawartości pliku-klucza. Możesz wybrać więcej niż jeden plik-klucza (porządek nie ma znaczenia). Jeśli dodasz folder, wszystkie nieukryte pliki z niego zostaną użyte jako pliki-klucze. Kliknij 'Dodaj token...', by wskazać pliki-kluczy przechowywane na tokenach bezpieczeństwa lub kartach pamięci (albo zaimportować pliki-klucze na tokeny bezpieczeństwa lub karty pamięci).</entry>
<entry lang="pl" key="KEYFILES_NOTE">Plik dowolnego typu (np. .mp3, .jpg, .zip, .avi) może zostać użyty jako plik-klucza VC. Zauważ, że VC nigdy nie zmienia zawartości pliku-klucza. Możesz wybrać więcej niż jeden plik-klucza (porządek nie ma znaczenia). Jeśli dodasz folder, wszystkie nieukryte pliki z niego zostaną użyte jako pliki-klucze. Kliknij 'Dodaj token...', by wskazać pliki-kluczy przechowywane na tokenach bezpieczeństwa lub kartach pamięci (albo zaimportować pliki-klucze na tokeny bezpieczeństwa lub karty pamięci).</entry>
<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>
@@ -629,7 +627,7 @@
<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>
<entry lang="pl" key="PASSWORD_HIDDEN_OS_TITLE">Hasło ukrytego systemu operacyjnego</entry>
<entry lang="pl" key="PASSWORD_HIDDEN_OS_TITLE">Hasło ukrytego Systemu Operacyjnego</entry>
<entry lang="pl" key="PASSWORD_LENGTH_WARNING">OSTRZEŻENIE: Krótkie hasła są łatwe do złamania przez zastosowanie techniki brutalnego ataku!\n\nZaleca się używanie haseł składających się przynajmniej z 20 znaków. Czy na pewno użyć krótkiego hasła?</entry>
<entry lang="pl" key="PASSWORD_TITLE">Hasło wolumenu</entry>
<entry lang="pl" key="PASSWORD_WRONG">Niepoprawne hasło albo to nie jest wolumen VeraCrypt.</entry>
@@ -646,8 +644,8 @@
<entry lang="pl" key="PIM_HELP">PIM (Personal Iterations Multiplier), czyli mnożnik osobistych iteracji, to wartość, która następująco kontroluje liczbę iteracji używanych przez derywację klucza nagłówka:\n Iteracje = 15000 + (PIM x 1000).\n\nGdy pozostawione puste lub ustawione na 0, VeraCrypt użyje wartości domyślnej (485), która zapewnia wysokie bezpieczeństwo.\nGdy hasło jest krótsze niż 20 znaków, PIM nie może być mniejszy niż 485, aby zapewnić minimalny poziom bezpieczeństwa.\nGdy hasło ma 20 znaków lub więcej, PIM może mieć dowolną wartość.\nWartość PIM większa niż 485 spowoduje wolniejsze podłączanie, mała wartość PIM (mniejsza niż 485) spowoduje szybsze podłączanie, ale może zmniejszyć poziom bezpieczeństwa, gdy hasło nie jest wystarczająco silne.</entry>
<entry lang="pl" key="PIM_SYSENC_HELP">PIM (Personal Iterations Multiplier), czyli mnożnik osobistych iteracji, to wartość, która następująco kontroluje liczbę iteracji używanych przez derywację klucza nagłówka:\n Iteracje = PIM x 2048.\n\nGdy pozostawione puste lub ustawione na 0, VeraCrypt użyje wartości domyślnej, która zapewnia wysokie bezpieczeństwo.\nGdy hasło jest krótsze niż 20 znaków, PIM nie może być mniejszy niż 98, aby zapewnić minimalny poziom bezpieczeństwa.\nGdy hasło ma 20 znaków lub więcej, PIM może mieć dowolną wartość.\nWartość PIM większa niż 98 spowoduje wolniejsze podłączanie, mała wartość PIM (mniejsza niż 98) spowoduje szybsze podłączanie, ale może zmniejszyć poziom bezpieczeństwa, gdy hasło nie jest wystarczająco silne.</entry>
<entry lang="pl" key="PIM_SYSENC_CHANGE_WARNING">Zapamiętaj liczbę do uruchomienia systemu</entry>
<entry lang="pl" key="PIM_LARGE_WARNING">Wybrano wartość PIM większą niż domyślna wartość VeraCrypt.\nNależy pamiętać, że może to doprowadzić do znacznie wolniejszego podłączania lub uruchamiania.</entry>
<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_LARGE_WARNING">Wybrałeś wartość PIM, która jest większa niż standardowa wartość VeraCrypt.\nProszę zauważyć, że doprowadzi to do znacznie wolniejszego podłączania lub uruchamiania.</entry>
<entry lang="pl" key="PIM_SMALL_WARNING">Wybrałeś PIM, który jest mniejszy niż podstawowa wartość VeraCrypt. Proszę zauważyć, że jeżeli twoje hasło nie jest wystarczająco mocne, moze to doprowadzić do osłabienia bezpieczeństwa.\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>
@@ -729,7 +727,7 @@
<entry lang="pl" key="DLL_FILES">Moduły bibliotek</entry>
<entry lang="pl" key="FORMAT_NTFS_STOP">Kontynuowanie formatowania NTFS/exFAT/ReFS nie jest możliwe.</entry>
<entry lang="pl" key="CANT_MOUNT_VOLUME">Nie można podłączyć wolumenu.</entry>
<entry lang="pl" key="CANT_UNMOUNT_VOLUME">Nie można odłączyć wolumenu.</entry>
<entry lang="pl" key="CANT_DISMOUNT_VOLUME">Nie można odłączyć wolumenu.</entry>
<entry lang="pl" key="FORMAT_NTFS_FAILED">System Windows nie może sformatować tego wolumenu jako NTFS/exFAT/ReFS.\n\nWybierz inny typ systemu plików (jeśli to możliwe) i ponów próbę. Alternatywnie pozostaw ten wolumen jako niesformatowany (wybierz system plików 'Żaden'), wyjdź z kreatora, podłącz wolumen i sformatuj go innym programem narzędziowym (systemowym lub pochodzącym od innego dostawcy). Wolumen pozostanie zaszyfrowany.</entry>
<entry lang="pl" key="FORMAT_NTFS_FAILED_ASK_FAT">System Windows nie mógł sformatować tego wolumenu jako NTFS/exFAT/ReFS.\n\nCzy sformatować go jako FAT?</entry>
<entry lang="pl" key="DEFAULT">Domyślny</entry>
@@ -771,7 +769,7 @@
<entry lang="pl" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">Błąd uniemożliwił VeraCrypt do zaszyfrowania partycji. Proszę najpierw rozwiązać problem i spróbować ponownie. Jeżeli problem będzie się powtarzał, mogą pomóc następujące kroki.</entry>
<entry lang="pl" key="INPLACE_ENC_GENERIC_ERR_RESUME">Błąd uniemożliwił VeraCrypt wznowienie procesu szyfrowania partycji.\n\nProszę najpierw rozwiązać problem i spróbować ponownie wznowić proces. Uwaga, wolumen nie może być podłączony dopóki nie zostanie w pełni zaszyfrowany.</entry>
<entry lang="pl" key="INPLACE_DEC_GENERIC_ERR">Błąd uniemożliwił VeraCrypt deszyfrowanie wolumenu. Proszę spróbować naprawić wcześniej zgłoszone problemy i spróbować ponownie, jeżeli to możliwe.</entry>
<entry lang="pl" key="CANT_UNMOUNT_OUTER_VOL">Błąd: Nie można odłączyć wolumenu zewnętrznego!\n\nWolumen nie może być odłączony, jeśli zawiera pliki lub foldery używane przez dowolny program lub system.\n\nZamknij wszystkie programy, które mogą używać plików lub katalogów na tym wolumenie, następnie kliknij przycisk Powtórz.</entry>
<entry lang="pl" key="CANT_DISMOUNT_OUTER_VOL">Błąd: Nie można odłączyć wolumenu zewnętrznego!\n\nWolumen nie może być odłączony, jeśli zawiera pliki lub foldery używane przez dowolny program lub system.\n\nZamknij wszystkie programy, które mogą używać plików lub katalogów na tym wolumenie, następnie kliknij przycisk Powtórz.</entry>
<entry lang="pl" key="CANT_GET_OUTER_VOL_INFO">Błąd: Nie można uzyskać informacji o wolumenie zewnętrznym! Tworzenie wolumenu nie może być kontynuowane.</entry>
<entry lang="pl" key="CANT_ACCESS_OUTER_VOL">Błąd: Brak dostępu do wolumenu zewnętrznego! Nie można kontynuować tworzenia wolumenu.</entry>
<entry lang="pl" key="CANT_MOUNT_OUTER_VOL">Błąd: Nie można podłączyć wolumenu zewnętrznego! Nie można kontynuować tworzenia wolumenu.</entry>
@@ -813,7 +811,7 @@
<entry lang="pl" key="SECONDARY_KEY_SIZE_LRW">Dopasowanie wielkości klucza (tryb LRW)</entry>
<entry lang="pl" key="BITS">bity</entry>
<entry lang="pl" key="BLOCK_SIZE">Wielkość bloku</entry>
<entry lang="pl" key="KDF">KDF</entry>
<entry lang="pl" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="pl" key="PKCS5_ITERATIONS">Licznik Iteracji PKCS-5</entry>
<entry lang="pl" key="VOLUME_CREATE_DATE">Utworzono wolumen</entry>
<entry lang="pl" key="VOLUME_HEADER_DATE">Data ostatniej modyfikacji nagłówka</entry>
@@ -855,7 +853,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 po adresem https://www.veracrypt.fr).</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>
@@ -882,7 +880,7 @@
<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>
<entry lang="pl" key="CLOSE_TC_FIRST">Sterownik urządzenia VeraCrypt nie może zostać wyładowany.\n\nZamknij wszystkie otwarte okna programu VeraCrypt. Jeśli to nie pomoże, zrestartuj system Windows i ponów próbę.</entry>
<entry lang="pl" key="UNMOUNT_ALL_FIRST">Wszystkie wolumeny programu VeraCrypt muszą zostać odłączone przed instalacją lub odinstalowaniem programu VeraCrypt.</entry>
<entry lang="pl" key="DISMOUNT_ALL_FIRST">Wszystkie wolumeny programu VeraCrypt muszą zostać odłączone przed instalacją lub odinstalowaniem programu VeraCrypt.</entry>
<entry lang="pl" key="UNINSTALL_OLD_VERSION_FIRST">W tym systemie jest zainstalowana przestarzała wersja programu VeraCrypt. Musi być ona zostać odinstalowana zanim będzie można zainstalować tę wersję programu VeraCrypt.\n\nNatychmiast po zamknięciu tego komunikatu zostanie uruchomiony dezinstalator starej wersji. Należy pamiętać, że żaden z wolumenów nie zostanie odszyfrowany. Po odinstalowaniu starej wersji programu VeraCrypt ponownie uruchom instalator nowej wersji.</entry>
<entry lang="pl" key="REG_INSTALL_FAILED">Nie powiodła się instalacja wpisów rejestru</entry>
<entry lang="pl" key="DRIVER_INSTALL_FAILED">Instalacja sterownika urządzenia nie powiodła się. Zrestartuj system Windows i ponów próbę zainstalowania programu VeraCrypt.</entry>
@@ -903,14 +901,14 @@
<entry lang="pl" key="MINUTES">minuty</entry>
<entry lang="pl" key="SECONDS">s</entry>
<entry lang="pl" key="OPEN">Otwórz</entry>
<entry lang="pl" key="UNMOUNT">Odłącz</entry>
<entry lang="pl" key="DISMOUNT">Odłącz</entry>
<entry lang="pl" key="SHOW_TC">Pokaż VeraCrypt</entry>
<entry lang="pl" key="HIDE_TC">Ukryj VeraCrypt</entry>
<entry lang="pl" key="TOTAL_DATA_READ">Dane odczytane od podłączenia</entry>
<entry lang="pl" key="TOTAL_DATA_WRITTEN">Dane zapisane od podłączenia</entry>
<entry lang="pl" key="ENCRYPTED_PORTION">Część zaszyfrowana</entry>
<entry lang="pl" key="ENCRYPTED_PORTION_FULLY_ENCRYPTED">100% (całkowicie zaszyfrowane)</entry>
<entry lang="pl" key="ENCRYPTED_PORTION_NOT_ENCRYPTED">0% (niezaszyfrowane)</entry>
<entry lang="pl" key="ENCRYPTED_PORTION_NOT_ENCRYPTED">0% (nie zaszyfrowane)</entry>
<entry lang="pl" key="PROCESSED_PORTION_X_PERCENT">%.3f%%</entry>
<entry lang="pl" key="PROCESSED_PORTION_100_PERCENT">100%</entry>
<entry lang="pl" key="PROGRESS_STATUS_WAITING">Oczekiwanie</entry>
@@ -940,7 +938,7 @@
<entry lang="pl" key="ENTER_HEADER_BACKUP_PASSWORD">Wprowadź hasło do zapisania do pliku kopii bezpieczeństwa nagłówka</entry>
<entry lang="pl" key="KEYFILE_CREATED">Plik-klucz został pomyślnie utworzony.</entry>
<entry lang="pl" key="KEYFILE_INCORRECT_NUMBER">Liczba plików-kluczy, którą podałeś jest nieprawidłowa.</entry>
<entry lang="pl" key="KEYFILE_INCORRECT_SIZE">Rozmiar pliku-klucza musi wynosić co najmniej 64 bajty.</entry>
<entry lang="pl" key="KEYFILE_INCORRECT_SIZE">Rozmiar pliku-klucza musi być zawarty pomiędzy 64 a 1048576 bajtów.</entry>
<entry lang="pl" key="KEYFILE_EMPTY_BASE_NAME">Proszę podać nazwę pliku/ów-klucza/y do wygenerowania</entry>
<entry lang="pl" key="KEYFILE_INVALID_BASE_NAME">Nazwa bazowa pliku/ów-klucza/ów jest nieprawidłowa.</entry>
<entry lang="pl" key="KEYFILE_ALREADY_EXISTS">Plik-klucz'%s' już istnieje.\nCzy chcesz go nadpisać? Proces generowania zostanie zakończony, jeżeli odpowiesz Nie.</entry>
@@ -975,7 +973,7 @@
<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>
<entry lang="pl" key="SYS_FAVORITES_REQUIRE_PBA">Systemowa partycja/dysk nie wydaje się być zaszyfrowana.\n\nUlubione wolumeny systemowe mogą być podłączane używając tylko autoryzacji hasłem rozruchu wstępnego. Dlatego, aby włączyć używanie ulubionych wolumenów systemowych, musisz najpierw zaszyfrować systemową partycję lub dysk.</entry>
<entry lang="pl" key="UNMOUNT_FIRST">Odłącz wolumen przed przejściem dalej.</entry>
<entry lang="pl" key="DISMOUNT_FIRST">Odłącz wolumen przed przejściem dalej.</entry>
<entry lang="pl" key="CANNOT_SET_TIMER">Błąd: Nie można ustawić stopera.</entry>
<entry lang="pl" key="IDPM_CHECK_FILESYS">Sprawdź system plików</entry>
<entry lang="pl" key="IDPM_REPAIR_FILESYS">Napraw system plików</entry>
@@ -1009,11 +1007,11 @@
<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_UNMOUNT_ALL">Odłącz wszystko</entry>
<entry lang="pl" key="HK_DISMOUNT_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>
<entry lang="pl" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Wymuszaj odłączanie wszystkiego i wyczyść pamięć podręczną</entry>
<entry lang="pl" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Wymuszaj odłączanie wszystkiego, wyczyść pamięć podręczną i zakończ pracę</entry>
<entry lang="pl" key="HK_DISMOUNT_ALL_AND_WIPE">Odmontuj wszystko i wyczyść pamięć podręczną</entry>
<entry lang="pl" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Wymuszaj odłączanie wszystkiego i wyczyść pamięć podręczną</entry>
<entry lang="pl" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Wymuszaj odłączanie wszystkiego, wyczyść pamięć podręczną i zakończ pracę</entry>
<entry lang="pl" key="HK_MOUNT_FAVORITE_VOLUMES">Podłącz wolumeny ulubione</entry>
<entry lang="pl" key="HK_SHOW_HIDE_MAIN_WINDOW">Pokaż lub ukryj główne okno programu VeraCrypt</entry>
<entry lang="pl" key="PRESS_A_KEY_TO_ASSIGN">(Kliknij tu i naciśnij wybrany klawisz)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="pl" key="PAGING_FILE_CREATION_PREVENTED">Tworzenie pliku stronicowania zostało zabronione.\n\nZauważ, że w poszczególnych wersjach Windows, pliki stronicowania nie mogą leżeć na bezsystemowych wolumenach VeraCrypt (włączając ulubione wolumeny systemowe). VeraCrypt wspiera tworzenie plików stronicowania tylko na szyfrowanych systemowych dyskach/partycjach.</entry>
<entry lang="pl" key="SYS_ENC_HIBERNATION_PREVENTED">Błąd lub niezgodność uniemożliwia VeraCrypt szyfrowanie pliku hibernacji. Dlatego, hibernacja nie jest możliwa.\n\nInformacja: Kiedy komputer jest hibernowany (lub wchodzi w stan oszczędzania energii), zawartość pamięci systemowej RAM jest zapisywana do pliku hibernacji składowanego na dysku. VeraCrypt nie mógł uniemożliwić kluczom szyfrującym na zapisanie danych w pamięci RAM jako niezaszyfrowanych w pliku hibernacji na dysku.</entry>
<entry lang="pl" key="HIDDEN_OS_HIBERNATION_PREVENTED">Hibernacja została wstrzymana.\n\nVeraCrypt nie wspiera hibernacji w ukrytym systemie operacyjnym, który używa ekstra boot partycji. Proszę pamiętać, że boot partycja jest współdzielona przez oba systemy (pierwszy i ukryty). Dlatego, aby zapobiec wyciekom danych i problemom podczas wznowienia systemu, VeraCrypt wstrzymuje w ukrytym systemie operacyjnym zapis do współdzielonej boot partycji.</entry>
<entry lang="pl" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">Wolumen VeraCrypt podłączony jako %c: został odłączony.</entry>
<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="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">Wolumen VeraCrypt podłączony jako %c: został odłączony.</entry>
<entry lang="pl" key="MOUNTED_VOLUMES_DISMOUNTED">Wolumeny VeraCrypt zostały odłączone.</entry>
<entry lang="pl" key="VOLUMES_DISMOUNTED_CACHE_WIPED">Wolumeny VeraCrypt zostały odłączone a bufor haseł wyczyszczony.</entry>
<entry lang="pl" key="SUCCESSFULLY_DISMOUNTED">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_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="CONFIRM_NO_FORCED_AUTODISMOUNT">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_DISMOUNT">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_DISMOUNT_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>
@@ -1063,7 +1061,7 @@
<entry lang="pl" key="SYS_AUTOMOUNT_DISABLED">System nie jest skonfigurowany do automatycznego podłączania nowych wolumenów. Może być niemożliwe podłączenie wolumenów VeraCrypt wykorzystujących urządzenia. Automatyczne podłączanie może być włączone przez wydanie następującej komendy i ponowne uruchomienie systemu.\n\nmountvol.exe /E</entry>
<entry lang="pl" key="SYS_ASSIGN_DRIVE_LETTER">Przypisz literę dysku do partycji/urządzenia przed uruchomieniem ('Panel sterowania' &gt; 'Wydajność i konserwacja' &gt; 'Narzędzia administracyjne' &gt; 'Zarządzanie komputerem' &gt; 'Zarządzanie dyskami').\n\nJest to wymaganie systemu operacyjnego.</entry>
<entry lang="pl" key="MOUNT_TC_VOLUME">Podłącz wolumen VeraCrypt</entry>
<entry lang="pl" key="UNMOUNT_ALL_TC_VOLUMES">Odłącz wszystkie wolumeny VeraCrypt</entry>
<entry lang="pl" key="DISMOUNT_ALL_TC_VOLUMES">Odłącz wszystkie wolumeny VeraCrypt</entry>
<entry lang="pl" key="UAC_INIT_ERROR">Program VeraCrypt nie mógł uzyskać uprawnień administratora.</entry>
<entry lang="pl" key="ERR_ACCESS_DENIED">System operacyjny odmówił dostępu.\n\nMożliwa przyczyna: system wymaga posiadania praw odczytu/zapisu (lub praw administratora) dla niektórych folderów, plików i urządzeń. Zwykle użytkownik bez praw administratora może tworzyć, odczytywać i modyfikować pliki w swoim folderze z dokumentami.</entry>
<entry lang="pl" key="SECTOR_SIZE_UNSUPPORTED">Błąd: Dysk używa niewspierany rozmiar sektora.\n\nNie jest możliwe utworzenie wolumenów opartych na dysku/partycji, używających sektorów dłuższych niż 4096 bajtów. Jednakże wciąż można stworzyć wolumeny oparte na plikach znajdujących się na takich dyskach.</entry>
@@ -1103,7 +1101,7 @@
<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>
<entry lang="pl" key="PIM_NOT_SUPPORTED_FOR_TRUECRYPT_MODE">PIM nie obsługuje trybu TrueCrypt.</entry>
<entry lang="pl" key="PIM_REQUIRE_LONG_PASSWORD">Hasło musi zawierać przynajmniej 20 albo więcej znaków do używania określonego PIM.\nKrótszych haseł można używać tylko wtedy, gdy PIM ma wartość 485 albo większą.</entry>
<entry lang="pl" key="PIM_REQUIRE_LONG_PASSWORD">Hasło musi zawierać przynajmniej 20 albo więcej znaków, aby móc używać określonego PIM.\nKrótsze hasła mogą być używane tylko wtedy, gdy PIM wynosi 485 albo więcej.</entry>
<entry lang="pl" key="BOOT_PIM_REQUIRE_LONG_PASSWORD">Hasło uwierzytelniania przed uruchomieniem musi zawierać 20 albo więcej znaków, aby móc używać określonego PIM.\nKrótsze hasła mogą być używane tylko wtedy, gdy PIM wynosi 98 albo więcej.</entry>
<entry lang="pl" key="KEYFILES_NOT_SUPPORTED_FOR_SYS_ENCRYPTION">Pliki-klucze nie są obecnie obsługiwane/wspierane do szyfrowania systemu.</entry>
<entry lang="pl" key="CANNOT_RESTORE_KEYBOARD_LAYOUT">Ostrzeżenie: Program VeraCrypt nie mógł odtworzyć oryginalnych ustawień klawiatury. To może spowodować błędne wprowadzenie hasła.</entry>
@@ -1154,13 +1152,13 @@
<entry lang="pl" key="SYSENC_MULTI_BOOT_OUTCOME_TITLE">Wiele systemów</entry>
<entry lang="pl" key="CUSTOM_BOOT_MANAGERS_IN_MBR_UNSUPPORTED">Program VeraCrypt obecnie nie obsługuje konfiguracji wielosystemowej, w której w głównym rekordzie startowym (MBR) jest zainstalowany program startowy z systemu innego niż Windows.\n\nMożliwe rozwiązania:\n\n- Jeśli używasz menedżera uruchamiania do uruchamiania systemów Windows i Linux, przenieś menedżera uruchamiania (np. GRUB lub LILO) z MBR do partycji. Następnie uruchom ponownie kreator i zaszyfruj partycję lub dysk systemowy. Program startowy VeraCrypt stanie się podstawowym menedżerem uruchamiania i będzie pozwalał na uruchamianie oryginalnego menedżera uruchamiania (np. GRUB lub LILO) jako drugiego menedżera uruchamiania (przez naciśnięcie klawisza Esc na ekranie programu startowego VeraCrypt), co umożliwi uruchamianie systemu Linux.</entry>
<entry lang="pl" key="WINDOWS_BOOT_LOADER_HINTS">Jeżeli obecnie uruchomiony system operacyjny jest zainstalowany na boot partycji, wówczas po zaszyfrowaniu jej, będziesz musiał wprowadzić poprawne hasło za każdym razem kiedy będziesz uruchamiał system (nawet ten niezaszyfrowany).\n\nNatomiast, jeżeli obecnie uruchomiony system operacyjny nie jest zainstalowany na boot partycji (lub jeżeli program startowy Windows nie jest używany przez inny system), wówczas, po zaszyfrowaniu systemu nie będziesz musiał wprowadzać hasła do uruchomienia innych systemów (również tych niezaszyfrowanych) -- będziesz musiał wcisnąć tylko klawisz Esc, aby uruchomić niezaszyfrowany system (jeżeli jest wiele niezaszyfrowanych systemów będziesz musiał wybrać, który system chcesz uruchomić).\n\nUwaga: Typowo, Windows jest zainstalowany na boot partycji.</entry>
<entry lang="pl" key="SYSENC_PRE_DRIVE_ANALYSIS_TITLE">Szyfrowanie obszaru HPA (Host Protected Area)</entry>
<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_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_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_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>
@@ -1213,23 +1211,23 @@
<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_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_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_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_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_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_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="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>
<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://www.veracrypt.fr/en/Troubleshooting.html (w języku angielskim).</entry>
<entry lang="pl" key="SYS_DRIVE_NOT_ENCRYPTED">Partycja/dysk systemowy nie jest zaszyfrowany (ani częściowo, ani w pełni).</entry>
<entry lang="pl" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">Partycja/dysk systemowy jest zaszyfrowany (częściowo lub całkowicie).\n\nOdszyfruj partycję lub dysk systemowy przed kontynuowaniem. W tym celu wybierz opcję 'System' &gt; 'Trwale odszyfruj partycję lub dysk systemowy' w menu głównym programu VeraCrypt.</entry>
<entry lang="pl" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">Kiedy systemowa partycja/dysk jest zaszyfrowany (częściowo lub całkowicie), nie możesz wykonać instalacji wcześniejszej wersji VeraCrypt (ale możesz zrobić aktualizacji lub reinstalację tej samej wersji).</entry>
@@ -1306,8 +1304,8 @@
<entry lang="pl" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Zauważ, że liczba wątków jest obecnie ograniczona, co wpływa na wyniki testów (gorsza wydajność).\n\nAby wykorzystać pełny potencjał procesora(ów), wybierz 'Ustawienia' &gt; 'Wydajność' i odznacz odpowiednią opcję.</entry>
<entry lang="pl" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">Czy chcesz, aby VeraCrypt wyłączył ochronę zapisu na partycji/dysku?</entry>
<entry lang="pl" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">UWAGA: Takie ustawienie może zmniejszyć wydajność.\n\nNa pewno wprowadzić to ustawienie?</entry>
<entry lang="pl" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Ostrzeżenie: Wolumen VeraCrypt automatycznie odłączony</entry>
<entry lang="pl" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Zanim fizycznie usuniesz lub wyłączysz nośnik zawierający podłączony wolumen, musisz najpierw zawsze odłączyć wolumen VeraCrypt.\n\nNieoczekiwane spontaniczne odłączenie jest często spowodowane sporadycznie rozłączający się przewód, napęd (obudowa) itp.</entry>
<entry lang="pl" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Ostrzeżenie: Wolumen VeraCrypt automatycznie odłączony</entry>
<entry lang="pl" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Zanim fizycznie usuniesz lub wyłączysz nośnik zawierający podłączony wolumen, musisz najpierw zawsze odłączyć wolumen VeraCrypt.\n\nNieoczekiwane spontaniczne odłączenie jest często spowodowane sporadycznie rozłączający się przewód, napęd (obudowa) itp.</entry>
<entry lang="pl" key="UNSUPPORTED_TRUECRYPT_FORMAT">Ten wolumen został stworzony w TrueCrypt %x.%x, ale VeraCrypt obsługuje jedynie wolumeny TrueCrypt stworzone w serii TrueCrypt 6.x/7.x</entry>
<entry lang="pl" key="TEST">Test</entry>
<entry lang="pl" key="KEYFILE">Plik-klucz</entry>
@@ -1315,7 +1313,7 @@
<entry lang="pl" key="VKEY_09">Tab</entry>
<entry lang="pl" key="VKEY_0C">Czyść</entry>
<entry lang="pl" key="VKEY_0D">Enter</entry>
<entry lang="pl" key="VKEY_13">Pause</entry>
<entry lang="pl" key="VKEY_13">Pauza</entry>
<entry lang="pl" key="VKEY_14">Caps Lock</entry>
<entry lang="pl" key="VKEY_20">Spacja</entry>
<entry lang="pl" key="VKEY_21">Page Up</entry>
@@ -1453,7 +1451,7 @@
<entry lang="pl" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Dodaj wszystkie podłączone wolumeny do ulubionych...</entry>
<entry lang="pl" key="TASKICON_PREF_MENU_ITEMS">Elementy menu ikony zadań</entry>
<entry lang="pl" key="TASKICON_PREF_OPEN_VOL">Otwórz podłączone wolumeny</entry>
<entry lang="pl" key="TASKICON_PREF_UNMOUNT_VOL">Odłącz podłączone wolumeny</entry>
<entry lang="pl" key="TASKICON_PREF_DISMOUNT_VOL">Odłącz podłączone wolumeny</entry>
<entry lang="pl" key="DISK_FREE">Dostępna wolna przestrzeń: {0}</entry>
<entry lang="pl" key="VOLUME_SIZE_HELP">Określ rozmiar kontenera do utworzenia. Zauważ, że minimalny możliwy rozmiar wolumenu to 292 KB.</entry>
<entry lang="pl" key="LINUX_CONFIRM_INNER_VOLUME_CALC">OSTRZEŻENIE: Wybrano system plików inny niż FAT dla zewnętrznego wolumenu.\nNależy pamiętać, że w tym przypadku VeraCrypt nie może obliczyć dokładnego maksymalnego dozwolonego rozmiaru ukrytego wolumenu i użyje tylko oszacowania, które może być błędne.\nDlatego Twoim obowiązkiem jest użycie odpowiedniej wartości rozmiaru ukrytego wolumenu, tak aby nie zachodziła na zewnętrzną objętość.\n\nCzy chcesz nadal używać wybranego systemu plików dla zewnętrznego wolumenu?</entry>
@@ -1483,14 +1481,14 @@
<entry lang="pl" key="LINUX_DO_NOT_MOUNT">Nie &amp;podłączaj</entry>
<entry lang="pl" key="LINUX_MOUNT_AT_DIR">Podłącz w katalogu:</entry>
<entry lang="pl" key="LINUX_SELECT">Wyb&amp;ierz...</entry>
<entry lang="pl" key="LINUX_UNMOUNT_ALL_WHEN">Odłącz wszystkie wolumeny, gdy</entry>
<entry lang="pl" key="LINUX_DISMOUNT_ALL_WHEN">Odłącz wszystkie wolumeny, gdy</entry>
<entry lang="pl" key="LINUX_ENTERING_POWERSAVING">System przechodzi w tryb oszczędzania energii</entry>
<entry lang="pl" key="LINUX_LOGIN_ACTION">Działania do wykonania, gdy użytkownik loguje się</entry>
<entry lang="pl" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Zamknij wszystkie okna Eksploratora odłączanego wolumenu</entry>
<entry lang="pl" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Zamknij wszystkie okna Eksploratora odłączanego wolumenu</entry>
<entry lang="pl" key="LINUX_HOTKEYS">Skróty klawiszowe</entry>
<entry lang="pl" key="LINUX_SYSTEM_HOTKEYS">Skróty klawiszowe całego systemu</entry>
<entry lang="pl" key="LINUX_SOUND_NOTIFICATION">Odtwórz dźwięk powiadomienia systemowego po podłączeniu/odłączeniu</entry>
<entry lang="pl" key="LINUX_CONFIRM_AFTER_UNMOUNT">Wyświetl okno komunikatu potwierdzenia po odłączeniu</entry>
<entry lang="pl" key="LINUX_CONFIRM_AFTER_DISMOUNT">Wyświetl okno komunikatu potwierdzenia po odłączeniu</entry>
<entry lang="pl" key="LINUX_VC_QUITS">VeraCrypt kończy pracę</entry>
<entry lang="pl" key="LINUX_OPEN_FINDER">Otwórz okno Findera dla pomyślnie podłączonego wolumenu</entry>
<entry lang="pl" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Należy pamiętać, że to ustawienie działa tylko wtedy, gdy korzystanie z usług kryptograficznych jądra jest wyłączone.</entry>
@@ -1522,8 +1520,7 @@
<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>
<entry lang="pl" key="LINUX_VOL_DISMOUNTED">Wolumen {0} został odłączony.</entry>
<entry lang="pl" key="LINUX_OOM">Brak pamięci.</entry>
<entry lang="pl" key="LINUX_CANT_GET_ADMIN_PRIV">Nie udało się uzyskać uprawnień administratora</entry>
<entry lang="pl" key="LINUX_COMMAND_GET_ERROR">Polecenie {0} zwróciło błąd {1}.</entry>
@@ -1553,7 +1550,7 @@
<entry lang="pl" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Błąd: Dysk używa rozmiaru sektora innego niż 512 bajty.\n\nZe względu na ograniczenia komponentów dostępnych na Twojej platformie wolumeny oparte na partycjach/urządzeniu nie mogą być tworzone/używane na dysku.\n\nMożliwe rozwiązania:\n- Utwórz na dysku wolumen (kontener) oparty na pliku.\n- Użyj dysku z sektorami 512-bajtowymi.\n- Użyj VeraCrypt na innej platformie.</entry>
<entry lang="pl" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">Plik/urządzenie hosta jest już używane.</entry>
<entry lang="pl" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Miejsce na wolumen jest niedostępne.</entry>
<entry lang="pl" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt wymaga macFUSE w wersji 2.5 lub nowszej.</entry>
<entry lang="pl" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt wymaga OSXFUSE w wersji 2.5 lub nowszego.</entry>
<entry lang="pl" key="EXCEPTION_OCCURRED">Wystąpił wyjątek.</entry>
<entry lang="pl" key="ENTER_PASSWORD">Wprowadź hasło</entry>
<entry lang="pl" key="ENTER_TC_VOL_PASSWORD">Wprowadź hasło wolumenu VeraCrypt</entry>
@@ -1570,124 +1567,6 @@
<entry lang="pl" key="VOLUME_HOST_IN_USE">OSTRZEŻENIE: Plik/urządzenie {0} jest już używane!\n\nZignorowanie tego może spowodować niepożądane skutki, w tym niestabilność systemu. Wszystkie aplikacje, które mogą korzystać z pliku/urządzenia, powinny zostać zamknięte przed podłączeniem wolumenu.\n\nKontynuować podłączanie?</entry>
<entry lang="pl" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt zainstalowano wcześniej przy użyciu pakietu MSI, więc nie można dokonać aktualizacji za pomocą standardowego instalatora.\n\nUżyj pakietu MSI, aby zaktualizować swoją instalację VeraCrypt.</entry>
<entry lang="pl" key="IDC_USE_ALL_FREE_SPACE">Wykorzystaj całą dostępną wolną przestrzeń</entry>
<entry lang="pl" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">Nie można zaktualizować VeraCrypt, ponieważ partycję/dysk systemowy zaszyfrowano przy użyciu algorytmu, który nie jest już obsługiwany.\nProszę odszyfrować system przed aktualizacją VeraCrypt, a następnie zaszyfrować go ponownie.</entry>
<entry lang="pl" key="LINUX_EX2MSG_TERMINALNOTFOUND">Nie można znaleźć obsługiwanej aplikacji terminala, potrzebujesz xterm, konsole lub gnome-terminal (z dbus-x11).</entry>
<entry lang="pl" key="IDM_MOUNT_NO_CACHE">Podłącz bez pamięci podręcznej</entry>
<entry lang="pl" key="EXPANDER_INFO">:: Rozszerzacz VeraCrypt ::\n\nRozszerz wolumen VeraCrypt w locie bez ponownego formatowania\n\n\nObsługiwane są wszelkiego rodzaju wolumeny (pliki kontenerów, dyski i partycje) sformatowane w systemie plików NTFS. Jedynym warunkiem jest wystarczająca ilość wolnego miejsca na dysku hosta lub urządzeniu hosta wolumenu VeraCrypt.\n\nNie używaj tego oprogramowania do rozszerzania wolumenu zewnętrznego zawierającego wolumen ukryty, ponieważ spowoduje to zniszczenie wolumenu ukrytego!\n</entry>
<entry lang="pl" key="IDC_STEPSEXPAND">1. Wybierz wolumen VeraCrypt do rozszerzenia\n2. Kliknij przycisk 'Podłącz'</entry>
<entry lang="pl" key="IDT_VOL_NAME">Głośność: </entry>
<entry lang="pl" key="IDT_FILE_SYS">System plików: </entry>
<entry lang="pl" key="IDT_CURRENT_SIZE">Obecny rozmiar: </entry>
<entry lang="pl" key="IDT_NEW_SIZE">Nowy rozmiar: </entry>
<entry lang="pl" key="IDT_NEW_SIZE_BOX_TITLE">Wprowadź nowy rozmiar wolumenu</entry>
<entry lang="pl" key="IDC_INIT_NEWSPACE">Wypełnij nowe miejsce losowymi danymi</entry>
<entry lang="pl" key="IDC_QUICKEXPAND">Szybkie rozszerzanie</entry>
<entry lang="pl" key="IDT_INIT_SPACE">Wypełnij nowe miejsce: </entry>
<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="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>
<entry lang="pl" key="EXPANDER_FINISH_OK">Zakończono. Wolumen pomyślnie rozszerzony.</entry>
<entry lang="pl" key="EXPANDER_CANCEL_WARNING">Ostrzeżenie: Trwa rozszerzanie wolumenu!\n\nZatrzymanie teraz może spowodować uszkodzenie wolumenu.\n\nCzy na pewno chcesz anulować?</entry>
<entry lang="pl" key="EXPANDER_STARTING_STATUS">Rozpoczęcie rozszerzania wolumenu...\n</entry>
<entry lang="pl" key="EXPANDER_HIDDEN_VOLUME_ERROR">Wolumen zewnętrzny zawierający wolumen ukryty nie może zostać rozszerzony, ponieważ spowoduje to zniszczenie wolumenu ukrytego.\n</entry>
<entry lang="pl" key="EXPANDER_SYSTEM_VOLUME_ERROR">Wolumen systemowy VeraCrypt nie może zostać rozszerzony.</entry>
<entry lang="pl" key="EXPANDER_NO_FREE_SPACE">Za mało wolnego miejsca, aby rozszerzyć wolumen</entry>
<entry lang="pl" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Ostrzeżenie: Plik kontenera jest większy niż obszar wolumenu VeraCrypt. Dane za obszarem wolumenu VeraCrypt zostaną nadpisane.\n\nCzy chcesz kontynuować?</entry>
<entry lang="pl" key="EXPANDER_WARNING_FAT">Ostrzeżenie: Wolumen VeraCrypt zawiera system plików FAT!\n\nTylko sam wolumen VeraCrypt zostanie rozszerzony, ale nie system plików.\n\nCzy chcesz kontynuować?</entry>
<entry lang="pl" key="EXPANDER_WARNING_EXFAT">Ostrzeżenie: Wolumen VeraCrypt zawiera system plików exFAT!\n\nTylko sam wolumen VeraCrypt zostanie rozszerzony, ale nie system plików.\n\nCzy chcesz kontynuować?</entry>
<entry lang="pl" key="EXPANDER_WARNING_UNKNOWN_FS">Ostrzeżenie: Wolumen VeraCrypt zawiera nieznany system plików lub nie zawiera go wcale!\n\nTylko sam wolumen VeraCrypt zostanie rozszerzony, system plików pozostanie niezmieniony.\n\nCzy chcesz kontynuować?</entry>
<entry lang="pl" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">Nowy rozmiar wolumenu jest za mały, musi być co najmniej o %I64u kB większy niż bieżący rozmiar.</entry>
<entry lang="pl" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">Nowy rozmiar wolumenu jest za duży, za mało miejsca na dysku hosta.</entry>
<entry lang="pl" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Przekroczono maksymalny rozmiar pliku %I64u MB na dysku hosta.</entry>
<entry lang="pl" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Błąd: Nie udało się uzyskać wymaganych uprawnień, aby włączyć Szybkie rozszerzanie!\nOdznacz opcję Szybkie rozszerzanie i spróbuj ponownie.</entry>
<entry lang="pl" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Przekroczono maksymalny rozmiar wolumenu VeraCrypt %I64u TB!\n</entry>
<entry lang="pl" key="FULL_FORMAT">Pełne formatowanie</entry>
<entry lang="pl" key="FAST_CREATE">Szybkie tworzenie</entry>
<entry lang="pl" key="WARN_FAST_CREATE">OSTRZEŻENIE: Szybkiego tworzenia należy używać tylko w następujących przypadkach:\n\n1) Urządzenie nie zawiera poufnych danych i nie jest wymagane wiarygodne zaprzeczenie.\n2) Urządzenie zostało już bezpiecznie i w pełni zaszyfrowane.\n\nCzy na pewno chcesz użyć szybkiego tworzenia?</entry>
<entry lang="pl" key="IDC_ENABLE_EMV_SUPPORT">Włącz obsługę EMV</entry>
<entry lang="pl" key="COMMAND_APDU_INVALID">Polecenie APDU wysłane do karty jest nieprawidłowe.</entry>
<entry lang="pl" key="EXTENDED_APDU_UNSUPPORTED">Rozszerzone polecenia APDU nie mogą być używane z bieżącym tokenem.</entry>
<entry lang="pl" key="SCARD_MODULE_INIT_FAILED">Błąd podczas ładowania biblioteki WinSCard / PCSC.</entry>
<entry lang="pl" key="EMV_UNKNOWN_CARD_TYPE">Karta w czytniku nie jest obsługiwaną kartą EMV.</entry>
<entry lang="pl" key="EMV_SELECT_AID_FAILED">AID karty w czytniku nie mógł zostać wybrany.</entry>
<entry lang="pl" key="EMV_ICC_CERT_NOTFOUND">Certyfikat klucza publicznego ICC nie został znaleziony na karcie.</entry>
<entry lang="pl" key="EMV_ISSUER_CERT_NOTFOUND">Nie znaleziono certyfikatu klucza publicznego ICC na karcie.</entry>
<entry lang="pl" key="EMV_CPLC_NOTFOUND">Nie znaleziono CPLC na karcie EMV.</entry>
<entry lang="pl" key="EMV_PAN_NOTFOUND">Nie znaleziono podstawowego numeru konta (PAN) na karcie EMV.</entry>
<entry lang="pl" key="INVALID_EMV_PATH">Ścieżka EMV jest nieprawidłowa.</entry>
<entry lang="pl" key="EMV_KEYFILE_DATA_NOTFOUND">Nie można utworzyć pliku klucza z danych karty EMV.\n\nBrak jednego z następujących elementów:\n- Certyfikatu klucza publicznego ICC.\n- Certyfikatu klucza publicznego wydawcy.\n- Danych CPLC.</entry>
<entry lang="pl" key="SCARD_W_REMOVED_CARD">Brak karty w czytniku.\n\nUpewnij się, że karta jest prawidłowo włożona.</entry>
<entry lang="pl" key="FORMAT_EXTERNAL_FAILED">Polecenie Windows format.com nie mogło sformatować wolumenu jako NTFS/exFAT/ReFS: Błąd 0x%.8X.\n\nPowrót do używania API Windows FormatEx.</entry>
<entry lang="pl" key="FORMATEX_API_FAILED">API Windows FormatEx nie sformatowało wolumenu jako NTFS/exFAT/ReFS.\n\nStan błędu = %s.</entry>
<entry lang="pl" key="EXPANDER_WRITING_RANDOM_DATA">Zapisywanie losowych danych w nowej przestrzeni...\n</entry>
<entry lang="pl" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Zapisywanie ponownie zaszyfrowanego nagłówka kopii zapasowej...\n</entry>
<entry lang="pl" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Zapisywanie ponownie zaszyfrowanego nagłówka głównego...\n</entry>
<entry lang="pl" key="EXPANDER_WIPING_OLD_HEADER">Wymazywanie starego nagłówka kopii zapasowej...\n</entry>
<entry lang="pl" key="EXPANDER_MOUNTING_VOLUME">Podłączanie wolumenu...\n</entry>
<entry lang="pl" key="EXPANDER_UNMOUNTING_VOLUME">Odłączanie wolumenu...\n</entry>
<entry lang="pl" key="EXPANDER_EXTENDING_FILESYSTEM">Rozszerzanie systemu plików...\n</entry>
<entry lang="pl" key="PARTIAL_SYSENC_MOUNT_READONLY">Ostrzeżenie: Partycja systemowa, którą próbowano podłączyć, nie została w pełni zaszyfrowana. Ze względów bezpieczeństwa, aby zapobiec potencjalnemu uszkodzeniu lub niepożądanym modyfikacjom, wolumen '%s' został podłączony jako tylko do odczytu.</entry>
<entry lang="pl" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Ważne informacje na temat korzystania z rozszerzeń plików innych dostawców</entry>
<entry lang="pl" key="IDC_DISABLE_MEMORY_PROTECTION">Wyłącz ochronę pamięci w celu zapewnienia zgodności z narzędziami ułatwień dostępu</entry>
<entry lang="pl" key="DISABLE_MEMORY_PROTECTION_WARNING">OSTRZEŻENIE: Wyłączenie ochrony pamięci znacznie zmniejsza bezpieczeństwo. Włącz tę opcję TYLKO wtedy, gdy korzystasz z narzędzi ułatwień dostępu, takich jak czytniki ekranu, do interakcji z interfejsem użytkownika VeraCrypt.</entry>
<entry lang="pl" key="LINUX_LANGUAGE">Język</entry>
<entry lang="pl" key="LINUX_SELECT_SYS_DEFAULT_LANG">Wybierz domyślny język systemu</entry>
<entry lang="pl" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">Aby zmiana języka odniosła skutek, należy ponownie uruchomić VeraCrypt.</entry>
<entry lang="pl" key="ERR_XTS_MASTERKEY_VULNERABLE">OSTRZEŻENIE: Klucz główny wolumenu jest podatny na atak, który zagraża bezpieczeństwu danych.\n\nUtwórz nowy wolumen i przenieś do niego dane.</entry>
<entry lang="pl" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">OSTRZEŻENIE: Klucz główny zaszyfrowanego systemu jest podatny na atak, który zagraża bezpieczeństwu danych.\nOdszyfruj partycję/napęd systemowy, a następnie ponownie go zaszyfruj.</entry>
<entry lang="pl" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">OSTRZEŻENIE: Klucz główny wolumenu ma lukę w zabezpieczeniach.</entry>
<entry lang="pl" key="MOUNTPOINT_BLOCKED">BŁĄD: Punkt podłączania wolumenu jest zablokowany, ponieważ nadpisuje chroniony katalog systemowy.\n\nWybierz inny punkt podłączania.</entry>
<entry lang="pl" key="MOUNTPOINT_NOTALLOWED">BŁĄD: Punkt podłączania wolumenu nie jest dozwolony, ponieważ nadpisuje katalog, który jest częścią zmiennej środowiskowej PATH.\n\nWybierz inny punkt podłączania.</entry>
<entry lang="pl" key="INSECURE_MODE">[TRYB NIEBEZPIECZNY]</entry>
<entry lang="pl" key="IDC_DISABLE_SCREEN_PROTECTION">Wyłącz ochronę przed zrzutami ekranu i nagrywaniem ekranu</entry>
<entry lang="pl" key="DISABLE_SCREEN_PROTECTION_WARNING">OSTRZEŻENIE: Wyłączenie ochrony ekranu znacząco obniża poziom bezpieczeństwa. Włącz tę opcję TYLKO wtedy, gdy musisz przechwycić interfejs VeraCrypt. Może to narazić wrażliwe dane na dostęp narzędzi do zrzutów ekranu i funkcji nagrywania ekranu, takich jak Windows 11 Recall.</entry>
<entry lang="pl" key="MEMORY_COST">Koszt pamięci</entry>
<entry lang="pl" key="IDT_KDF_ALGO">Algorytm KDF</entry>
<entry lang="pl" key="IDD_PREFERENCES_TAB_GENERAL">Ogólne</entry>
<entry lang="pl" key="IDD_PREFERENCES_TAB_ACTIONS">Działania</entry>
<entry lang="pl" key="IDD_PREFERENCES_TAB_PASSWORD">Hasło</entry>
<entry lang="pl" key="IDC_SECURE_DESKTOP_ENABLE_IME">Włącz edytor metody wprowadzania (IME) na bezpiecznym pulpicie</entry>
<entry lang="pl" key="ENABLE_IME_IN_SECURE_DESKTOP_WARNING">OSTRZEŻENIE: Włącz tę opcję tylko wtedy, gdy napotykasz problemy przy wybieraniu plików-kluczy/tokenów na bezpiecznym pulpicie.</entry>
<entry lang="pl" key="ERR_KEY_DERIVATION_FAILED">Nie powiodła się derywacja klucza. Przyczyną może być niewystarczająca ilość pamięci lub przerwanie operacji.</entry>
<entry lang="pl" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">Partycję/dysk systemowy już odszyfrowano, ale ścieżka programu rozruchowego EFI Microsoftu nie została przywrócona do menedżera rozruchu systemu Windows. Naprawy wymagają tylko pliki rozruchowe EFI. Użyj opcji naprawy za pomocą płyty odzyskiwania VeraCrypt lub uruchom nośnik odzyskiwania systemu Windows i wykonaj polecenie „bcdboot W:\\Windows /s S: /f UEFI” po zastąpieniu W: literą dysku wolumenu Windows, a S: literą dysku partycji systemowej EFI. Ścieżka:</entry>
<entry lang="pl" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">Partycję/dysk systemowy już odszyfrowano, ale ścieżka awaryjnego programu rozruchowego EFI nadal zawiera program rozruchowy VeraCrypt. Naprawy wymagają tylko pliki rozruchowe EFI. Użyj opcji naprawy za pomocą płyty odzyskiwania VeraCrypt lub uruchom nośnik odzyskiwania systemu Windows i wykonaj polecenie „bcdboot W:\\Windows /s S: /f UEFI” po zastąpieniu W: literą dysku wolumenu Windows, a S: literą dysku partycji systemowej EFI. Ścieżka:</entry>
<entry lang="pl" key="IDM_REPAIR_EFI_BOOT_LOADER">Napraw program rozruchowy EFI...</entry>
<entry lang="pl" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt przywróci ścieżki programu rozruchowego EFI Windows i usunie wpisy rozruchowe oraz pliki EFI VeraCrypt.\n\nUżyj tego tylko po całkowitym odszyfrowaniu partycji/dysku systemowego, gdy system Windows będzie mógł się uruchomić bez szyfrowania systemu.\n\nCzy chcesz kontynuować?</entry>
<entry lang="pl" key="EFI_BOOT_LOADER_FILE_READ_FAILED">Nie udało się w pełni odczytać pliku programu rozruchowego EFI:</entry>
<entry lang="pl" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">Plik programu rozruchowego EFI jest nieoczekiwanie duży i nie został sprawdzony:</entry>
<entry lang="pl" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">Partycję/dysk systemowy już odszyfrowano, a pliki programu rozruchowego EFI zostały przywrócone, ale VeraCrypt nie mógł usunąć jednego lub więcej wpisów rozruchowych oprogramowania układowego VeraCrypt. Pliki EFI VeraCrypt zostały pozostawione, więc wszelkie pozostałe wpisy oprogramowania układowego nadal wskazują na istniejący program rozruchowy. Spróbuj ponownie jako administrator lub usuń wpis rozruchowy VeraCrypt z konfiguracji oprogramowania układowego po potwierdzeniu, że menedżer rozruchu systemu Windows uruchamia się prawidłowo.</entry>
<entry lang="pl" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">Nie można naprawić programu rozruchowego EFI, gdy szyfrowanie lub deszyfrowanie systemu jest aktywne lub nieukończone. Przed ponowną próbą zakończ lub wznów oczekujący proces szyfrowania/deszyfrowania systemu.</entry>
<entry lang="pl" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">Ta czynność naprawcza jest dostępna tylko w systemach uruchamianych w trybie UEFI z partycji systemowej GPT.</entry>
<entry lang="pl" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">Program rozruchowy EFI został pomyślnie naprawiony.</entry>
<entry lang="pl" key="PIM_ARGON2_HELP">PIM (Personal Iterations Multiplier), czyli mnożnik osobistych iteracji, kontroluje koszty pamięci i czasu używane przez derywację klucza nagłówka Argon2id w następujący sposób:\n Pamięć = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n Iteracje = 3 + ((PIM - 1) / 3) dla PIM 31 lub niższego, następnie 13 + (PIM - 31)\n\nJeśli pozostanie pusty lub ustawiony na 0, VeraCrypt użyje domyślnego PIM Argon2 (12), który używa 416 MiB pamięci i 6 iteracji.\n\nJeśli hasło ma mniej niż 20 znaków, PIM Argon2 nie może być mniejszy niż 12, aby utrzymać minimalny poziom bezpieczeństwa.\nJeśli hasło ma 20 znaków lub więcej, PIM Argon2 można ustawić na dowolną wartość.\n\nPIM Argon2 większy niż 12 zwiększa użycie pamięci do 1024 MiB, a następnie zwiększa liczbę iteracji. Doprowadzi to do wolniejszego podłączania. Niski PIM Argon2 (mniej niż 12) zapewni szybsze podłączanie, ale może obniżyć bezpieczeństwo, jeśli hasło nie będzie wystarczająco silne.</entry>
<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_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>
<entry lang="pl" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Finalizowanie tworzenia wolumenu: zapisywanie nagłówka kopii zapasowej.</entry>
<entry lang="pl" key="FORMAT_STAGE_FLUSHING_DATA">Finalizowanie tworzenia wolumenu: zrzucanie danych na dysk. Może to potrwać kilka minut w przypadku dużych wolumenów lub wolnych nośników danych/pamięci USB.</entry>
<entry lang="pl" key="FORMAT_STAGE_FINISHED">Finalizowanie tworzenia wolumenu.</entry>
<entry lang="pl" key="FORMAT_STAGE_ABORTED">Tworzenie wolumenu zostało przerwane.</entry>
<entry lang="pl" key="FORMAT_STAGE_ERROR">Nie udało się utworzyć wolumenu.</entry>
<entry lang="pl" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Finalizowanie tworzenia wolumenu: podłączanie tymczasowego wolumenu.</entry>
<entry lang="pl" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Finalizowanie tworzenia wolumenu: przygotowywanie tymczasowego urządzenia.</entry>
<entry lang="pl" key="FORMAT_STAGE_CREATING_FILESYSTEM">Finalizowanie tworzenia wolumenu: tworzenie systemu plików za pomocą {0}.</entry>
<entry lang="pl" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Finalizowanie tworzenia wolumenu: odłączanie wolumenu tymczasowego.</entry>
<entry lang="pl" key="MACOSX_APFS_SYNTHESIZED_DEVICE">Wybrane urządzenie „{0}” jest kontenerem lub wolumenem syntezowanym APFS i nie można go używać jako hosta surowego wolumenu VeraCrypt.\n\nZamiast tego wybierz fizyczną partycję magazynu APFS{1}.</entry>
<entry lang="pl" key="MACOSX_DEVICE_SYSTEM_PARTITION">Wybrane urządzenie „{0}” jest partycją systemową/obsługową systemu macOS i nie może być używane jako host wolumenu VeraCrypt.</entry>
<entry lang="pl" key="MACOSX_APFS_SYSTEM_STORE">Wybrany fizyczny magazyn APFS „{0}” zawiera aktualnie zamontowany wolumen systemu macOS i nie może być używany jako host wolumenu VeraCrypt.</entry>
<entry lang="pl" key="MACOSX_DEVICE_NOT_WRITABLE">System macOS zgłasza wybrane urządzenie „{0}” jako tylko do odczytu. Wybierz zapisywalną partycję fizyczną lub dysk.</entry>
<entry lang="pl" key="MACOSX_APFS_EROFS_HINT">System macOS zgłosił wybrane urządzenie jako tylko do odczytu. Jeśli jest to dysk APFS, upewnij się, że wybrano fizyczną partycję magazynu APFS, a nie wolumen syntezowany przez APFS. Użyj narzędzia dyskowego lub polecenia „diskutil list”, aby zidentyfikować partycję fizyczną, a następnie spróbuj ponownie.</entry>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+65 -186
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
@@ -135,8 +135,8 @@
<entry lang="en" key="IDC_FAVORITE_REMOVE">&amp;Remove</entry>
<entry lang="en" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Use favorite label as Explorer drive label</entry>
<entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key dismount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key dismount</entry>
<entry lang="sk" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="en" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="sk" key="IDC_HK_MOD_SHIFT">Shift</entry>
@@ -156,12 +156,12 @@
<entry lang="en" key="IDC_PIM_HELP">(Empty or 0 for default iterations)</entry>
<entry lang="sk" key="IDC_PREF_BKG_TASK_ENABLE">Povolené</entry>
<entry lang="sk" key="IDC_PREF_CACHE_PASSWORDS">Ukladať hesla do pamäti ovládača</entry>
<entry lang="sk" key="IDC_PREF_UNMOUNT_INACTIVE">Autom. odpojiť zväzok pokiaľ z/do neho nebolo čítané/zapisované</entry>
<entry lang="sk" key="IDC_PREF_UNMOUNT_LOGOFF">Užívateľ sa odhlasuje</entry>
<entry lang="en" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="sk" key="IDC_PREF_UNMOUNT_POWERSAVING">Prechádzam do úsporného režimu</entry>
<entry lang="sk" key="IDC_PREF_UNMOUNT_SCREENSAVER">Je spustený šetrič obrazovky</entry>
<entry lang="sk" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Vynútiť automatické odpojenie aj keď zväzok obsahuje otvorené súbory alebo adresáre</entry>
<entry lang="sk" key="IDC_PREF_DISMOUNT_INACTIVE">Autom. odpojiť zväzok pokiaľ z/do neho nebolo čítané/zapisované</entry>
<entry lang="sk" key="IDC_PREF_DISMOUNT_LOGOFF">Užívateľ sa odhlasuje</entry>
<entry lang="en" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="sk" key="IDC_PREF_DISMOUNT_POWERSAVING">Prechádzam do úsporného režimu</entry>
<entry lang="sk" key="IDC_PREF_DISMOUNT_SCREENSAVER">Je spustený šetrič obrazovky</entry>
<entry lang="sk" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Vynútiť automatické odpojenie aj keď zväzok obsahuje otvorené súbory alebo adresáre</entry>
<entry lang="sk" key="IDC_PREF_LOGON_MOUNT_DEVICES">Príp. všetky zväzky umiestnené na zariadeniach</entry>
<entry lang="en" key="IDC_PREF_LOGON_START">Start VeraCrypt Background Task</entry>
<entry lang="sk" key="IDC_PREF_MOUNT_READONLY">Pripojiť zväzky len na čítanie</entry>
@@ -169,7 +169,7 @@
<entry lang="sk" key="IDC_PREF_OPEN_EXPLORER">Otvoriť okno Prieskumníka pre úspešne pripojený zväzok</entry>
<entry lang="en" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">Temporarily cache password during "Mount Favorite Volumes" operations</entry>
<entry lang="en" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Use a different taskbar icon when there are mounted volumes</entry>
<entry lang="sk" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Odstrániť hesla z medzipamäte a automaticky odpojiť</entry>
<entry lang="sk" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Odstrániť hesla z medzipamäte a automaticky odpojiť</entry>
<entry lang="sk" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Odstrániť hesla z medzipamäte pri skončenie</entry>
<entry lang="en" key="IDC_PRESERVE_TIMESTAMPS">Preserve modification timestamp of file containers</entry>
<entry lang="sk" key="IDC_RESET_HOTKEYS">Vymazať</entry>
@@ -269,14 +269,14 @@
<entry lang="en" key="IDT_ACCELERATION_OPTIONS">Hardware Acceleration</entry>
<entry lang="sk" key="IDT_ASSIGN_HOTKEY">Klávesová skratka</entry>
<entry lang="sk" key="IDT_AUTORUN">Konfigurácia automatického spúšťania (autorun.inf)</entry>
<entry lang="sk" key="IDT_AUTO_UNMOUNT">Automatické odpojenie</entry>
<entry lang="sk" key="IDT_AUTO_UNMOUNT_ON">Odpojiť vše keď:</entry>
<entry lang="sk" key="IDT_AUTO_DISMOUNT">Automatické odpojenie</entry>
<entry lang="sk" key="IDT_AUTO_DISMOUNT_ON">Odpojiť vše keď:</entry>
<entry lang="en" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader Screen Options</entry>
<entry lang="sk" key="IDT_CONFIRM_PASSWORD">Potvrdiť heslo:</entry>
<entry lang="sk" key="IDT_CURRENT">Aktuálny</entry>
<entry lang="en" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">Display this custom message in the pre-boot authentication screen (24 characters maximum):</entry>
<entry lang="sk" key="IDT_DEFAULT_MOUNT_OPTIONS">Pôvodné (default) predvoľby pripojenia</entry>
<entry lang="sk" key="IDT_UNMOUNT_ACTION">Predvoľby klávesových skratiek</entry>
<entry lang="sk" key="IDT_DISMOUNT_ACTION">Predvoľby klávesových skratiek</entry>
<entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry>
<entry lang="en" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Enable extended disk control codes support</entry>
<entry lang="en" key="IDT_FAVORITE_LABEL">Label of selected favorite volume:</entry>
@@ -291,11 +291,10 @@
<entry lang="sk" key="IDT_NEW_PASSWORD">Heslo:</entry>
<entry lang="en" key="IDT_PARALLELIZATION_OPTIONS">Thread-Based Parallelization</entry>
<entry lang="en" key="IDT_PKCS11_LIB_PATH">PKCS #11 Library Path</entry>
<entry lang="sk" key="IDT_KDF">KDF:</entry>
<entry lang="en" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="sk" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="en" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="sk" key="IDT_PW_CACHE_OPTIONS">Medzipamäť pre hesla</entry>
<entry lang="en" key="IDT_SECURITY_OPTIONS">Security Options</entry>
<entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry>
<entry lang="sk" key="IDT_TASKBAR_ICON">VeraCrypt úloha na pozadí</entry>
<entry lang="en" key="IDT_TRAVELER_MOUNT">VeraCrypt volume to mount (relative to traveler disk root):</entry>
<entry lang="en" key="IDT_TRAVEL_INSERTION">Upon insertion of traveler disk: </entry>
@@ -357,7 +356,7 @@
<entry lang="sk" key="IDT_KEYFILE_WARNING">VÝSTRAHA: Ak stratíte súborový kľúč alebo sa zmení jediný bit z prvých 1024 kilobytov, nebude viac možné pripojiť zväzok používajúci súbor. kľúč!</entry>
<entry lang="sk" key="IDT_KEY_UNIT">bitov</entry>
<entry lang="en" key="IDT_NUMBER_KEYFILES">Number of keyfiles:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size (in Bytes):</entry>
<entry lang="en" key="IDT_KEYFILES_BASE_NAME">Keyfiles base name:</entry>
<entry lang="sk" key="IDT_LANGPACK_AUTHORS">Preložil:</entry>
<entry lang="sk" key="IDT_PLAINTEXT">Veľkosť obyč. textu:</entry>
@@ -390,7 +389,6 @@
<entry lang="en" key="ADMINISTRATOR">Administrator</entry>
<entry lang="sk" key="ADMIN_PRIVILEGES_DRIVER">Pre nahratie ovládača VeraCrypt musíte byť prihlásený ako administrátor.</entry>
<entry lang="sk" key="ADMIN_PRIVILEGES_WARN_DEVICES">Pre šifrovanie/Dešifrovanie/formátovanie oddielu/zariadenia musíte byť prihlásený s administrátorskými právami.\n\nToto sa netýka zväzkov, ktoré sú vytvorené zo súborov.</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="sk" key="ADMIN_PRIVILEGES_WARN_HIDVOL">Pre vytvorenie skrytého zväzku musíte byť prihlásený s administrátorskými právami.\n\nPokračovať?</entry>
<entry lang="sk" key="ADMIN_PRIVILEGES_WARN_NTFS">Pre sformátovanie zväzku systémom NTFS musíte byť prihlásený s administrátorskými právami.\n\nBez administrátorských práv môžete zväzok sformátovať systémom súborov FAT.</entry>
<entry lang="en" key="AES_HELP">FIPS-approved cipher (Rijndael, published in 1998) that may be used by U.S. government departments and agencies to protect classified information up to the Top Secret level. 256-bit key, 128-bit block, 14 rounds (AES-256). Mode of operation is XTS.</entry>
@@ -423,8 +421,8 @@
<entry lang="en" key="DEVICE_FREE_PB">Size of %s is %.2f PB</entry>
<entry lang="sk" key="DEVICE_IN_USE_FORMAT">VÝSTRAHA: zariadenie/oddiel sa používa operačným systémom alebo aplikáciami. Formátovanie zariadenia/oddielu môže spôsobiť poškodenie dát alebo systémovou nestabilitu.\n\nPokračovať?</entry>
<entry lang="en" key="DEVICE_IN_USE_INPLACE_ENC">Warning: The partition is in use by the operating system or applications. You should close any applications that might be using the partition (including antivirus software).\n\nContinue?</entry>
<entry lang="sk" key="FORMAT_CANT_UNMOUNT_FILESYS">Chyba: zariadenie/oddiel obsahuje systém súborov, ktorý nie je možné pripojiť. Systém súborov môže byť používaný operačným systémom. Formátovanie zariadenia/oddielu by pravdepodobne spôsobilo poškodenie dát a systémovou nestabilitu.\n\nPre vyriešenie tohto problému doporučujeme najskôr zmazať oddiel a potom ho znova vytvoriť bez formátovania. Postupujte nasledovne: 1) Pravý-klik myšou na ikonu 'Tento počítač' alebo v menu 'Štart' vyberte 'Spravovať'. Zobrazí sa okno 'Správa počítača'. 2) V okne 'Správa počítača' vyberte 'ukladací priestor' &gt; 'Správa diskov'. 3) Pravý-klik myšou na oddiel, ktorý chcete zašifrovať a vyberte buď 'zmazať oddiel' alebo 'zmazať zväzok' alebo 'zmazať logický disk'. 4) kliknite 'Áno'. pokiaľ sa Windows opýta na reštart počítača, vykonajte tak. Potom zopakujte kroky 1 a 2 a pokračujte od kroku 5. 5) Pravý-klik na nealokované/Voľné miesto a vyberte buď 'Nový oddiel' alebo 'Nový obyčajný zväzok' alebo 'Nový logický disk'. 6) Zobrazí sa okno 'Sprievodca vytvorením nového oddielu' alebo 'Sprievodca nového jednoduchého zväzku'; nasledujte ich inštrukcie. Na stránke Sprievodca nazvanej 'sformátovať oddiel' vyberte buď 'Naformátovať tento oddiel' alebo 'Naformátovať tento zväzok'. V rovnakom sprievodcovi kliknite 'Ďalší' a potom 'Dokončiť'. 7) Cesta k zariadeniu, ktorú ste vybrali v programe VeraCrypt môže byť teraz nesprávne. Ukončite preto Sprievodcu vytvorením oddielu VeraCrypt (Pokiaľ stále beží) a spustite ho znova. 8) skúste zašifrovať zariadenie/oddiel znova.\n\nPokiaľ VeraCrypt opakovane zlyháva pri šifrovaní zariadenia/oddielu, skúste miesto toho vytvorenie súborového zväzku.</entry>
<entry lang="en" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Error: The filesystem could not be locked and/or unmounted. It may be in use by the operating system or applications (for example, antivirus software). Encrypting the partition might cause data corruption and system instability.\n\nPlease close any applications that might be using the filesystem (including antivirus software) and try again. If it does not help, please follow the below steps.</entry>
<entry lang="sk" key="FORMAT_CANT_DISMOUNT_FILESYS">Chyba: zariadenie/oddiel obsahuje systém súborov, ktorý nie je možné pripojiť. Systém súborov môže byť používaný operačným systémom. Formátovanie zariadenia/oddielu by pravdepodobne spôsobilo poškodenie dát a systémovou nestabilitu.\n\nPre vyriešenie tohto problému doporučujeme najskôr zmazať oddiel a potom ho znova vytvoriť bez formátovania. Postupujte nasledovne: 1) Pravý-klik myšou na ikonu 'Tento počítač' alebo v menu 'Štart' vyberte 'Spravovať'. Zobrazí sa okno 'Správa počítača'. 2) V okne 'Správa počítača' vyberte 'ukladací priestor' &gt; 'Správa diskov'. 3) Pravý-klik myšou na oddiel, ktorý chcete zašifrovať a vyberte buď 'zmazať oddiel' alebo 'zmazať zväzok' alebo 'zmazať logický disk'. 4) kliknite 'Áno'. pokiaľ sa Windows opýta na reštart počítača, vykonajte tak. Potom zopakujte kroky 1 a 2 a pokračujte od kroku 5. 5) Pravý-klik na nealokované/Voľné miesto a vyberte buď 'Nový oddiel' alebo 'Nový obyčajný zväzok' alebo 'Nový logický disk'. 6) Zobrazí sa okno 'Sprievodca vytvorením nového oddielu' alebo 'Sprievodca nového jednoduchého zväzku'; nasledujte ich inštrukcie. Na stránke Sprievodca nazvanej 'sformátovať oddiel' vyberte buď 'Naformátovať tento oddiel' alebo 'Naformátovať tento zväzok'. V rovnakom sprievodcovi kliknite 'Ďalší' a potom 'Dokončiť'. 7) Cesta k zariadeniu, ktorú ste vybrali v programe VeraCrypt môže byť teraz nesprávne. Ukončite preto Sprievodcu vytvorením oddielu VeraCrypt (Pokiaľ stále beží) a spustite ho znova. 8) skúste zašifrovať zariadenie/oddiel znova.\n\nPokiaľ VeraCrypt opakovane zlyháva pri šifrovaní zariadenia/oddielu, skúste miesto toho vytvorenie súborového zväzku.</entry>
<entry lang="en" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Error: The filesystem could not be locked and/or dismounted. It may be in use by the operating system or applications (for example, antivirus software). Encrypting the partition might cause data corruption and system instability.\n\nPlease close any applications that might be using the filesystem (including antivirus software) and try again. If it does not help, please follow the below steps.</entry>
<entry lang="sk" key="DEVICE_IN_USE_INFO">UPOZORNENIE: Niektoré z pripojených zariadení/oddielov boli už používané!\n\nIgnorovanie môže spôsobiť nežiaduce následky vrátane nestability systému.\n\nDôrazne doporučujeme zatvoriť všetky aplikácie, ktoré by mohli zariadenie/oddiely používať.</entry>
<entry lang="sk" key="DEVICE_PARTITIONS_ERR">Vybrané zariadenie obsahuje oddiely.\n\nSformátovanie zariadenia by mohlo spôsobiť systémovou nestabilitu a/alebo poškodenie údajov. Vyberte prosím oddiel na zariadenie alebo odstráňte všetky oddiely na zariadení, aby ho mohol VeraCrypt bezpečne sformátovať.</entry>
<entry lang="en" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">The selected non-system device contains partitions.\n\nEncrypted device-hosted VeraCrypt volumes can be created within devices that do not contain any partitions (including hard disks and solid-state drives). A device that contains partitions can be entirely encrypted in place (using a single master key) only if it is the drive where Windows is installed and from which it boots.\n\nIf you want to encrypt the selected non-system device using a single master key, you will need to remove all partitions on the device first to enable VeraCrypt to format it safely (formatting a device that contains partitions might cause system instability and/or data corruption). Alternatively, you can encrypt each partition on the drive individually (each partition will be encrypted using a different master key).\n\nNote: If you want to remove all partitions from a GPT disk, you may need to convert it to a MBR disk (using e.g. the Computer Management tool) in order to remove hidden partitions.</entry>
@@ -525,7 +523,7 @@
<entry lang="sk" key="HIDVOL_FORMAT_FINISHED_TITLE">Skrytý zväzok bol vytvorený</entry>
<entry lang="en" key="HIDVOL_FORMAT_FINISHED_HELP">The hidden VeraCrypt volume has been successfully created and is ready for use. If all the instructions have been followed and if the precautions and requirements listed in the section "Security Requirements and Precautions Pertaining to Hidden Volumes" in the VeraCrypt User's Guide are followed, it should be impossible to prove that the hidden volume exists, even when the outer volume is mounted.\n\nWARNING: IF YOU DO NOT PROTECT THE HIDDEN VOLUME (FOR INFORMATION ON HOW TO DO SO, REFER TO THE SECTION "PROTECTION OF HIDDEN VOLUMES AGAINST DAMAGE" IN THE VERACRYPT USER'S GUIDE), DO NOT WRITE TO THE OUTER VOLUME. OTHERWISE, YOU MAY OVERWRITE AND DAMAGE THE HIDDEN VOLUME!</entry>
<entry lang="en" key="FIRST_HIDDEN_OS_BOOT_INFO">You have started the hidden operating system. As you may have noticed, the hidden operating system appears to be installed on the same partition as the original operating system. However, in reality, it is installed within the partition behind it (in the hidden volume). All read and write operations are being transparently redirected from the original system partition to the hidden volume.\n\nNeither the operating system nor applications will know that data written to and read from the system partition are actually written to and read from the partition behind it (from/to a hidden volume). Any such data is encrypted and decrypted on the fly as usual (with an encryption key different from the one that will be used for the decoy operating system).\n\n\nPlease click Next to continue.</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP_SYSENC">The outer volume has been created and mounted as drive %hc:. To this outer volume you should now copy some sensitive-looking files that you actually do NOT want to hide. They will be there for anyone forcing you to disclose the password for the first partition behind the system partition, where both the outer volume and the hidden volume (containing the hidden operating system) will reside. You will be able to reveal the password for this outer volume, and the existence of the hidden volume (and of the hidden operating system) will remain secret.\n\nIMPORTANT: The files you copy to the outer volume should not occupy more than %s. Otherwise, there may not be enough free space on the outer volume for the hidden volume (and you will not be able to continue). After you finish copying, click Next (do not unmount the volume).</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP_SYSENC">The outer volume has been created and mounted as drive %hc:. To this outer volume you should now copy some sensitive-looking files that you actually do NOT want to hide. They will be there for anyone forcing you to disclose the password for the first partition behind the system partition, where both the outer volume and the hidden volume (containing the hidden operating system) will reside. You will be able to reveal the password for this outer volume, and the existence of the hidden volume (and of the hidden operating system) will remain secret.\n\nIMPORTANT: The files you copy to the outer volume should not occupy more than %s. Otherwise, there may not be enough free space on the outer volume for the hidden volume (and you will not be able to continue). After you finish copying, click Next (do not dismount the volume).</entry>
<entry lang="sk" key="HIDVOL_HOST_FILLING_HELP">Externý zväzok bol úspešne vytvorený a pripojený ako jednotka %hc:. Do tohto zväzku by ste teraz mali nakopírovať nejaké citlivo vyzerajúce súbory, ktoré v skutočnosti NECHCETE skryť. Súbory tam budú uložené pre kohokoľvek, kto by Vás nútil odhaliť heslo. Odhalíte len heslo pre tento externý zväzok, nie pre skrytý. Súbory, na ktorých Vám v skutočnosti záleží, budú uložené v skrytom zväzku, ktorý sa vytvorí neskôr. Po nakopírovaní údajov kliknite Ďalší. Zväzok neodpájajte.\n\nPozn.: Keď kliknete Ďalší, clusterová bitmapa externého zväzku bude naskenovaná pre určenie veľkosti neprerušenej oblasti voľného miesta, ktorého Koniec sa nachádza na konci zväzku. Táto oblasť bude obsahovať skrytý zväzok, takže tým obmedzí svoju maximálnu možnú veľkosť. Skenovanie clusterovej bitmapy zaistí, že žiadne údaje na externom zväzku nebudú prepísané externým zväzkom.</entry>
<entry lang="sk" key="HIDVOL_HOST_FILLING_TITLE">Obsah externého zväzku</entry>
<entry lang="sk" key="HIDVOL_HOST_PRE_CIPHER_HELP">\n\nV ďalšom kroku zadáte možnosti pre externý zväzok (vo vnútri ktorého bude neskôr vytvorený skrytý zväzok).</entry>
@@ -535,9 +533,9 @@
<entry lang="en" key="HIDDEN_OS_PRE_CIPHER_WARNING">IMPORTANT: Please remember the algorithms that you select in this step. You will have to select the same algorithms for the decoy system. Otherwise, the hidden system will be inaccessible! (The decoy system must be encrypted with the same encryption algorithm as the hidden system.)\n\nNote: The reason is that the decoy system and the hidden system will share a single boot loader, which supports only a single algorithm, selected by the user (for each algorithm, there is a special version of the VeraCrypt Boot Loader).</entry>
<entry lang="sk" key="HIDVOL_PRE_CIPHER_HELP">\n\nBitmapový cluster zväzku bol naskenovaný a maximálna možná veľkosť skrytého zväzku bola určená. V ďalšom kroku zadáte voľby, veľkosť a heslo pre skrytý zväzok.</entry>
<entry lang="sk" key="HIDVOL_PRE_CIPHER_TITLE">Skrytý zväzok</entry>
<entry lang="en" key="HIDVOL_PROT_WARN_AFTER_MOUNT">The hidden volume is now protected against damage until the outer volume is unmounted.\n\nWARNING: If any data is attempted to be saved to the hidden volume area, VeraCrypt will start write-protecting the entire volume (both the outer and the hidden part) until it is unmounted. This may cause filesystem corruption on the outer volume, which (if repeated) might adversely affect plausible deniability of the hidden volume. Therefore, you should make every effort to avoid writing to the hidden volume area. Any data being saved to the hidden volume area will not be saved and will be lost. Windows may report this as a write error ("Delayed Write Failed" or "The parameter is incorrect").</entry>
<entry lang="en" key="HIDVOL_PROT_WARN_AFTER_MOUNT_PLURAL">Each of the hidden volumes within the newly mounted volumes is now protected against damage until unmounted.\n\nWARNING: If any data is attempted to be saved to protected hidden volume area of any of these volumes, VeraCrypt will start write-protecting the entire volume (both the outer and the hidden part) until it is unmounted. This may cause filesystem corruption on the outer volume, which (if repeated) might adversely affect plausible deniability of the hidden volume. Therefore, you should make every effort to avoid writing to the hidden volume area. Any data being saved to protected hidden volume areas will not be saved and will be lost. Windows may report this as a write error ("Delayed Write Failed" or "The parameter is incorrect").</entry>
<entry lang="en" key="DAMAGE_TO_HIDDEN_VOLUME_PREVENTED">WARNING: Data were attempted to be saved to the hidden volume area of the volume mounted as %c:! VeraCrypt prevented these data from being saved in order to protect the hidden volume. This may have caused filesystem corruption on the outer volume and Windows may have reported a write error ("Delayed Write Failed" or "The parameter is incorrect"). The entire volume (both the outer and the hidden part) will be write-protected until it is unmounted. If this is not the first time VeraCrypt has prevented data from being saved to the hidden volume area of this volume, plausible deniability of this hidden volume might be adversely affected (due to possible unusual correlated inconsistencies within the outer volume file system). Therefore, you should consider creating a new VeraCrypt volume (with Quick Format disabled) and moving files from this volume to the new volume; this volume should be securely erased (both the outer and the hidden part). We strongly recommend that you restart the operating system now.</entry>
<entry lang="en" key="HIDVOL_PROT_WARN_AFTER_MOUNT">The hidden volume is now protected against damage until the outer volume is dismounted.\n\nWARNING: If any data is attempted to be saved to the hidden volume area, VeraCrypt will start write-protecting the entire volume (both the outer and the hidden part) until it is dismounted. This may cause filesystem corruption on the outer volume, which (if repeated) might adversely affect plausible deniability of the hidden volume. Therefore, you should make every effort to avoid writing to the hidden volume area. Any data being saved to the hidden volume area will not be saved and will be lost. Windows may report this as a write error ("Delayed Write Failed" or "The parameter is incorrect").</entry>
<entry lang="en" key="HIDVOL_PROT_WARN_AFTER_MOUNT_PLURAL">Each of the hidden volumes within the newly mounted volumes is now protected against damage until dismounted.\n\nWARNING: If any data is attempted to be saved to protected hidden volume area of any of these volumes, VeraCrypt will start write-protecting the entire volume (both the outer and the hidden part) until it is dismounted. This may cause filesystem corruption on the outer volume, which (if repeated) might adversely affect plausible deniability of the hidden volume. Therefore, you should make every effort to avoid writing to the hidden volume area. Any data being saved to protected hidden volume areas will not be saved and will be lost. Windows may report this as a write error ("Delayed Write Failed" or "The parameter is incorrect").</entry>
<entry lang="en" key="DAMAGE_TO_HIDDEN_VOLUME_PREVENTED">WARNING: Data were attempted to be saved to the hidden volume area of the volume mounted as %c:! VeraCrypt prevented these data from being saved in order to protect the hidden volume. This may have caused filesystem corruption on the outer volume and Windows may have reported a write error ("Delayed Write Failed" or "The parameter is incorrect"). The entire volume (both the outer and the hidden part) will be write-protected until it is dismounted. If this is not the first time VeraCrypt has prevented data from being saved to the hidden volume area of this volume, plausible deniability of this hidden volume might be adversely affected (due to possible unusual correlated inconsistencies within the outer volume file system). Therefore, you should consider creating a new VeraCrypt volume (with Quick Format disabled) and moving files from this volume to the new volume; this volume should be securely erased (both the outer and the hidden part). We strongly recommend that you restart the operating system now.</entry>
<entry lang="en" key="CANNOT_SATISFY_OVER_4G_FILE_SIZE_REQ">You have indicated intent to store files larger than 4 GB on the volume. This requires the volume to be formatted as NTFS, which, however, will not be possible.</entry>
<entry lang="en" key="CANNOT_CREATE_NON_HIDDEN_NTFS_VOLUMES_UNDER_HIDDEN_OS">Please note that when a hidden operating system is running, non-hidden VeraCrypt volumes cannot be formatted as NTFS. The reason is that the volume would need to be temporarily mounted without write protection in order to allow the operating system to format it as NTFS (whereas formatting as FAT is performed by VeraCrypt, not by the operating system, and without mounting the volume). For further technical details, see below. You can create a non-hidden NTFS volume from within the decoy operating system.</entry>
<entry lang="en" key="HIDDEN_VOL_CREATION_UNDER_HIDDEN_OS_HOWTO">For security reasons, when a hidden operating system is running, hidden volumes can be created only in the 'direct' mode (because outer volumes must always be mounted as read-only). To create a hidden volume securely, follow these steps:\n\n1) Boot the decoy system.\n\n2) Create a normal VeraCrypt volume and, to this volume, copy some sensitive-looking files that you actually do NOT want to hide (the volume will become the outer volume).\n\n3) Boot the hidden system and start the VeraCrypt Volume Creation Wizard. If the volume is file-hosted, move it to the system partition or to another hidden volume (otherwise, the newly created hidden volume would be mounted as read-only and could not be formatted). Follow the instructions in the wizard so as to select the 'direct' hidden volume creation mode.\n\n4) In the wizard, select the volume you created in step 2 and then follow the instructions to create a hidden volume within it.</entry>
@@ -590,7 +588,7 @@
<entry lang="en" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">Error: The files you copied to the outer volume occupy too much space. Therefore, there is not enough free space on the outer volume for the hidden volume.\n\nNote that the hidden volume must be as large as the system partition (the partition where the currently running operating system is installed). The reason is that the hidden operating system needs to be created by copying the content of the system partition to the hidden volume.\n\n\nThe process of creation of the hidden operating system cannot continue.</entry>
<entry lang="sk" key="OPENFILES_DRIVER">Ovládač nemôže odpojiť zväzok. Niektoré súbory umiestnené na zväzku sú pravdepodobne ešte otvorené.</entry>
<entry lang="sk" key="OPENFILES_LOCK">Zväzok nemohol byť uzamknutý. Na zväzku sú stále otvorené súbory. Preto nemôže byť odpojený.</entry>
<entry lang="en" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt cannot lock the volume because it is in use by the system or applications (there may be open files on the volume).\n\nDo you want to force unmount on the volume?</entry>
<entry lang="en" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt cannot lock the volume because it is in use by the system or applications (there may be open files on the volume).\n\nDo you want to force dismount on the volume?</entry>
<entry lang="sk" key="OPEN_VOL_TITLE">Vyberte zväzok VeraCrypt</entry>
<entry lang="sk" key="OPEN_TITLE">Zadajte cestu a meno súboru</entry>
<entry lang="en" key="SELECT_PKCS11_MODULE">Select PKCS #11 Library</entry>
@@ -613,7 +611,7 @@
<entry lang="en" key="FAVORITE_PIM_CHANGED">This volume is registered as a System Favorite and its PIM was changed.\nDo you want VeraCrypt to automatically update the System Favorite configuration (administrator privileges required)?\n\nPlease note that if you answer no, you'll have to update the System Favorite manually.</entry>
<entry lang="en" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">IMPORTANT: If you did not destroy your VeraCrypt Rescue Disk, your system partition/drive can still be decrypted using the old password (by booting the VeraCrypt Rescue Disk and entering the old password). You should create a new VeraCrypt Rescue Disk and then destroy the old one.\n\nDo you want to create a new VeraCrypt Rescue Disk?</entry>
<entry lang="en" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">Note that your VeraCrypt Rescue Disk still uses the previous algorithm. If you consider the previous algorithm insecure, you should create a new VeraCrypt Rescue Disk and then destroy the old one.\n\nDo you want to create a new VeraCrypt Rescue Disk?</entry>
<entry lang="en" key="KEYFILES_NOTE">Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="en" key="KEYFILES_NOTE">Any kind of file (for example, .mp3, .jpg, .zip, .avi) may be used as a VeraCrypt keyfile. Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="sk" key="KEYFILE_CHANGED">Súborový kľúč(e) bol úspešne pridaný/odstránený.</entry>
<entry lang="en" key="KEYFILE_EXPORTED">Keyfile exported.</entry>
<entry lang="sk" key="PKCS5_PRF_CHANGED">Kľúč hlavičky derivačného algoritmu bol úspešne zadaný.</entry>
@@ -729,7 +727,7 @@
<entry lang="en" key="DLL_FILES">Library Modules</entry>
<entry lang="sk" key="FORMAT_NTFS_STOP">NTFS formátovanie nemôže pokračovať.</entry>
<entry lang="sk" key="CANT_MOUNT_VOLUME">Zväzok nie je možné pripojiť.</entry>
<entry lang="sk" key="CANT_UNMOUNT_VOLUME">Zväzok nie je možné odpojiť.</entry>
<entry lang="sk" key="CANT_DISMOUNT_VOLUME">Zväzok nie je možné odpojiť.</entry>
<entry lang="sk" key="FORMAT_NTFS_FAILED">Windows nemohol sformátovať zväzok ako NTFS.\n\nVyberte prosím iný systému súborov (ak je to možné) a skúste to znova. Poprípade môžete nechať zväzok nenaformátovaný (vyberte 'Žiaden' systém súborov), Ukončite tohto sprievodcu, pripojte zväzok a potom použite buď systémový nástroj alebo nástroj tretej strany k sformátovaniu pripojeného zväzku (zväzok zostane zašifrovaný).</entry>
<entry lang="en" key="FORMAT_NTFS_FAILED_ASK_FAT">Windows failed to format the volume as NTFS.\n\nDo you want to format the volume as FAT instead?</entry>
<entry lang="sk" key="DEFAULT">Predvolený</entry>
@@ -771,7 +769,7 @@
<entry lang="en" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">An error prevented VeraCrypt from encrypting the partition. Please try fixing any previously reported problems and then try again. If the problems persist, it might help to follow the below steps.</entry>
<entry lang="en" key="INPLACE_ENC_GENERIC_ERR_RESUME">An error prevented VeraCrypt from resuming the process of encryption of the partition.\n\nPlease try fixing any previously reported problems and then try resuming the process again. Note that the volume cannot be mounted until it has been fully encrypted.</entry>
<entry lang="en" key="INPLACE_DEC_GENERIC_ERR">An error prevented VeraCrypt from decrypting the volume. Please try fixing any previously reported problems and then try again if possible.</entry>
<entry lang="sk" key="CANT_UNMOUNT_OUTER_VOL">Chyba: externý zväzok nie je možné odpojiť!\n\nZväzok nemôže byť odpojený pokiaľ obsahuje súbory alebo zložky používané programom alebo systémom.\n\nZatvorte prosím akýkoľvek program, ktorý by mohol súbory alebo adresáre na zväzku používať a kliknite znova.</entry>
<entry lang="sk" key="CANT_DISMOUNT_OUTER_VOL">Chyba: externý zväzok nie je možné odpojiť!\n\nZväzok nemôže byť odpojený pokiaľ obsahuje súbory alebo zložky používané programom alebo systémom.\n\nZatvorte prosím akýkoľvek program, ktorý by mohol súbory alebo adresáre na zväzku používať a kliknite znova.</entry>
<entry lang="en" key="CANT_GET_OUTER_VOL_INFO">Error: Cannot obtain information about the outer volume!\nVolume creation cannot continue.</entry>
<entry lang="sk" key="CANT_ACCESS_OUTER_VOL">Chyba: nie je možné pristúpiť na externý zväzok! Vytvorenie zväzku nie je možné dokončiť.</entry>
<entry lang="sk" key="CANT_MOUNT_OUTER_VOL">Chyba: Nemôžem pripojiť externý zväzok! Vytvorenie zväzku nie je možné dokončiť.</entry>
@@ -813,7 +811,7 @@
<entry lang="en" key="SECONDARY_KEY_SIZE_LRW">Tweak Key Size (LRW Mode)</entry>
<entry lang="sk" key="BITS">bitov</entry>
<entry lang="sk" key="BLOCK_SIZE">Veľkosť bloku</entry>
<entry lang="sk" key="KDF">KDF</entry>
<entry lang="sk" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="sk" key="PKCS5_ITERATIONS">PKCS-5 počet iterácií</entry>
<entry lang="sk" key="VOLUME_CREATE_DATE">Oddiel bol vytvorený</entry>
<entry lang="sk" key="VOLUME_HEADER_DATE">Hlavička bola naposledy zmenená</entry>
@@ -855,7 +853,7 @@
<entry lang="en" key="TC_INSTALLER_IS_RUNNING">VeraCrypt Installer is currently running on this system and performing or preparing installation or update of VeraCrypt. Before you proceed, please wait for it to finish or close it. If you cannot close it, please restart your computer before proceeding.</entry>
<entry lang="en" key="INSTALL_FAILED">Installation failed.</entry>
<entry lang="en" key="UNINSTALL_FAILED">Uninstallation failed.</entry>
<entry lang="en" key="DIST_PACKAGE_CORRUPTED">This distribution package is damaged. Please try downloading it again (preferably from the official VeraCrypt website at https://veracrypt.jp).</entry>
<entry lang="en" key="DIST_PACKAGE_CORRUPTED">This distribution package is damaged. Please try downloading it again (preferably from the official VeraCrypt website at https://www.veracrypt.fr).</entry>
<entry lang="en" key="CANNOT_WRITE_FILE_X">Cannot write file %s</entry>
<entry lang="en" key="EXTRACTING_VERB">Extracting</entry>
<entry lang="en" key="CANNOT_READ_FROM_PACKAGE">Cannot read data from the package.</entry>
@@ -882,7 +880,7 @@
<entry lang="sk" key="INSTALL_COMPLETED">Inštalácia dokončená.</entry>
<entry lang="sk" key="CANT_CREATE_FOLDER">Zložka '%s' nemohla byť vytvorená</entry>
<entry lang="sk" key="CLOSE_TC_FIRST">Ovládač zariadenia VeraCrypt nemôže byť odstránený.\n\nZatvorte prosím najskôr všetky okná VeraCrypt. Pokiaľ to nepomôže, reštartujte prosím Windows a skúste to znova.</entry>
<entry lang="sk" key="UNMOUNT_ALL_FIRST">Všetky zväzky VeraCrypt musí byť odpojené pred inštaláciou alebo odinštaláciou programu VeraCrypt.</entry>
<entry lang="sk" key="DISMOUNT_ALL_FIRST">Všetky zväzky VeraCrypt musí byť odpojené pred inštaláciou alebo odinštaláciou programu VeraCrypt.</entry>
<entry lang="en" key="UNINSTALL_OLD_VERSION_FIRST">An obsolete version of VeraCrypt is currently installed on this system. It needs to be uninstalled before you can install this new version of VeraCrypt.\n\nAs soon as you close this message box, the uninstaller of the old version will be launched. Note that no volume will be decrypted when you uninstall VeraCrypt. After you uninstall the old version of VeraCrypt, run the installer of the new version of VeraCrypt again.</entry>
<entry lang="sk" key="REG_INSTALL_FAILED">Inštalácia záznamov do registrov zlyhala</entry>
<entry lang="sk" key="DRIVER_INSTALL_FAILED">Inštalácie ovládača zariadenia zlyhala. Reštartujte prosím Windows a skúste potom nainštalovať VeraCrypt znova.</entry>
@@ -903,7 +901,7 @@
<entry lang="sk" key="MINUTES">minút</entry>
<entry lang="sk" key="SECONDS">s</entry>
<entry lang="sk" key="OPEN">Otvoriť</entry>
<entry lang="sk" key="UNMOUNT">Odpojiť</entry>
<entry lang="sk" key="DISMOUNT">Odpojiť</entry>
<entry lang="sk" key="SHOW_TC">Zobraziť VeraCrypt</entry>
<entry lang="sk" key="HIDE_TC">Skryť VeraCrypt</entry>
<entry lang="sk" key="TOTAL_DATA_READ">Prečítané dáta od pripojenia</entry>
@@ -940,7 +938,7 @@
<entry lang="en" key="ENTER_HEADER_BACKUP_PASSWORD">Enter password for the header stored in backup file</entry>
<entry lang="sk" key="KEYFILE_CREATED">Súborový kľúč bol úspešne vytvorený.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_NUMBER">The number of keyfiles you supplied is invalid.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be at least 64 bytes.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be comprized between 64 and 1048576 bytes.</entry>
<entry lang="en" key="KEYFILE_EMPTY_BASE_NAME">Please enter a name for the keyfile(s) to be generated</entry>
<entry lang="en" key="KEYFILE_INVALID_BASE_NAME">The base name of the keyfile(s) is invalid</entry>
<entry lang="en" key="KEYFILE_ALREADY_EXISTS">The keyfile '%s' already exists.\nDo you want to overwrite it? The generation process will be stopped if you answer No.</entry>
@@ -975,7 +973,7 @@
<entry lang="en" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - System Favorite Volumes</entry>
<entry lang="en" key="SYS_FAVORITES_HELP_LINK">What are system favorite volumes?</entry>
<entry lang="en" key="SYS_FAVORITES_REQUIRE_PBA">The system partition/drive does not appear to be encrypted.\n\nSystem favorite volumes can be mounted using only a pre-boot authentication password. Therefore, to enable use of system favorite volumes, you need to encrypt the system partition/drive first.</entry>
<entry lang="sk" key="UNMOUNT_FIRST">Pred pokračovaním odpojte prosím zväzok.</entry>
<entry lang="sk" key="DISMOUNT_FIRST">Pred pokračovaním odpojte prosím zväzok.</entry>
<entry lang="en" key="CANNOT_SET_TIMER">Error: Cannot set timer.</entry>
<entry lang="sk" key="IDPM_CHECK_FILESYS">Skontrolovať systém súborov</entry>
<entry lang="sk" key="IDPM_REPAIR_FILESYS">Opraviť systém súborov</entry>
@@ -997,7 +995,7 @@
<entry lang="sk" key="UNSUPPORTED_CHARS_IN_PWD">Chyba: Heslo musí obsahovať len ASCII znaky.\n\nNe-ASCII znaky v hesle môžu spôsobiť nemožnosť pripojenia zväzku pri zmene Vašej systémovej konfigurácie.\n\nPovolené sú nasledujúce znaky:\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="sk" key="UNSUPPORTED_CHARS_IN_PWD_RECOM">Upozornenie: Heslo obsahuje ne-ASCII znaky. Toto môže spôsobiť nemožnosť pripojenia zväzku pri zmene Vašej systémovej konfigurácie.\n\nMali by ste zameniť všetky ne-ASCII znaky v hesle za ASCII znaky. To do so, click 'Volumes' -&gt; 'Change Volume Password'.\n\nToto sú ASCII znaky:\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="en" key="EXE_FILE_EXTENSION_CONFIRM">WARNING: We strongly recommend that you avoid file extensions that are used for executable files (such as .exe, .sys, or .dll) and other similarly problematic file extensions. Using such file extensions causes Windows and antivirus software to interfere with the container, which adversely affects the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension or change it (e.g., to '.hc').\n\nAre you sure you want to use the problematic file extension?</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you unmount the volume.</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you dismount the volume.</entry>
<entry lang="sk" key="HOMEPAGE">Domovská stránka</entry>
<entry lang="sk" key="LARGE_IDE_WARNING_XP">UPOZORNENIE: Zdá sa, že ste nenainštalovali žiaden Service Pack vo Vašej používa Windows. Nemali by ste zapisovať na IDE disky väčšie ako 128 GB v systéme Windows XP, v ktorom ste nenainštalovali Service Pack 1 alebo novší! Pokiaľ tak učiníte, údaje na disku (bez ohľadu na to, či ide o zväzok VeraCrypt alebo ne) sa môžu poškodiť. Toto je obmedzenie Windows, nie chyba programu VeraCrypt.</entry>
<entry lang="sk" key="LARGE_IDE_WARNING_2K">UPOZORNENIE: Zdá sa, že ste nenainštalovali Service Pack 3 alebo novší vo Vašej inštalácii Windows. Nemali by ste zapisovať na disky väčšie ako 128 GB v systéme Windows 2000, v ktorom ste nenainštalovali Service Pack 3 alebo novší! Pokiaľ tak učiníte, údaje na disku (bez ohľadu na to, či ide o zväzok VeraCrypt alebo nie) sa môžu poškodiť. Toto je obmedzenie Windows, nie chyba programu VeraCrypt.\n\nPozn.: Možno tiež bude potrebné zapnúť podporu 48-bit LBA v registroch; pre viac informácií viď http://support.microsoft.com/kb/305098/EN-US</entry>
@@ -1006,14 +1004,14 @@
<entry lang="en" key="VOLUME_TOO_LARGE_FOR_WINXP">Warning: Windows XP does not support files larger than 2048 GB (it will report that "Not enough storage is available"). Therefore, you cannot create a file-hosted VeraCrypt volume (container) larger than 2048 GB under Windows XP.\n\nNote that it is still possible to encrypt the entire drive or create a partition-hosted VeraCrypt volume larger than 2048 GB under Windows XP.</entry>
<entry lang="sk" key="FREE_SPACE_FOR_WRITING_TO_OUTER_VOLUME">UPOZORNENIE: pokiaľ budete chcieť v budúcností prídávať viac dát/súborov/files na externý zväzok, mali by ste zvážiť či nevybrať menšiu veľkosť skrytého zväzku.\n\nSte si istí, že chcete pokračovať so zadanou veľkosťou?</entry>
<entry lang="sk" key="NO_VOLUME_SELECTED">Nie je vybratý žiaden zväzok.\n\nKliknite 'Vybrať zariadenie' alebo 'Vybrať súbor' pre výber zväzku VeraCrypt.</entry>
<entry lang="en" key="NO_SYSENC_PARTITION_SELECTED">No partition selected.\n\nClick 'Select Device' to select a unmounted partition that normally requires pre-boot authentication (for example, a partition located on the encrypted system drive of another operating system, which is not running, or the encrypted system partition of another operating system).\n\nNote: The selected partition will be mounted as a regular VeraCrypt volume without pre-boot authentication. This is useful e.g. for backup or repair operations.</entry>
<entry lang="en" key="NO_SYSENC_PARTITION_SELECTED">No partition selected.\n\nClick 'Select Device' to select a dismounted partition that normally requires pre-boot authentication (for example, a partition located on the encrypted system drive of another operating system, which is not running, or the encrypted system partition of another operating system).\n\nNote: The selected partition will be mounted as a regular VeraCrypt volume without pre-boot authentication. This is useful e.g. for backup or repair operations.</entry>
<entry lang="en" key="CONFIRM_SAVE_DEFAULT_KEYFILES">WARNING: If default keyfiles are set and enabled, volumes that are not using these keyfiles will be impossible to mount. Therefore, after you enable default keyfiles, keep in mind to uncheck the 'Use keyfiles' checkbox (below a password input field) whenever mounting such volumes.\n\nAre you sure you want to save the selected keyfiles/paths as default?</entry>
<entry lang="sk" key="HK_AUTOMOUNT_DEVICES">Autom. pripojiť zariadenie</entry>
<entry lang="sk" key="HK_UNMOUNT_ALL">Odpojiť všetko</entry>
<entry lang="sk" key="HK_DISMOUNT_ALL">Odpojiť všetko</entry>
<entry lang="sk" key="HK_WIPE_CACHE">Vyčistiť Cache</entry>
<entry lang="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All &amp; Wipe Cache</entry>
<entry lang="sk" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Vynútiť odpojenie všetkých &amp; Vyčistiť medzipamäť</entry>
<entry lang="sk" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Vynútiť odpojenie všetkých, Vyčistiť medzipamäť &amp; Koniec</entry>
<entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All &amp; Wipe Cache</entry>
<entry lang="sk" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Vynútiť odpojenie všetkých &amp; Vyčistiť medzipamäť</entry>
<entry lang="sk" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Vynútiť odpojenie všetkých, Vyčistiť medzipamäť &amp; Koniec</entry>
<entry lang="sk" key="HK_MOUNT_FAVORITE_VOLUMES">Pripojiť obľúbené oddiely</entry>
<entry lang="sk" key="HK_SHOW_HIDE_MAIN_WINDOW">Zobraziť/skryť Hlavné okno programe VeraCrypt</entry>
<entry lang="sk" key="PRESS_A_KEY_TO_ASSIGN">(Kliknite sem a stlačte klávesu)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="en" key="PAGING_FILE_CREATION_PREVENTED">Paging file creation has been prevented.\n\nPlease note that, due to Windows issues, paging files cannot be located on non-system VeraCrypt volumes (including system favorite volumes). VeraCrypt supports creation of paging files only on an encrypted system partition/drive.</entry>
<entry lang="en" key="SYS_ENC_HIBERNATION_PREVENTED">An error or incompatibility prevents VeraCrypt from encrypting the hibernation file. Therefore, hibernation has been prevented.\n\nNote: When a computer hibernates (or enters a power-saving mode), the content of its system memory is written to a hibernation storage file residing on the system drive. VeraCrypt would not be able to prevent encryption keys and the contents of sensitive files opened in RAM from being saved unencrypted to the hibernation storage file.</entry>
<entry lang="en" key="HIDDEN_OS_HIBERNATION_PREVENTED">Hibernation has been prevented.\n\nVeraCrypt does not support hibernation on hidden operating systems that use an extra boot partition. Please note that the boot partition is shared by both the decoy and the hidden system. Therefore, in order to prevent data leaks and problems while resuming from hibernation, VeraCrypt has to prevent the hidden system from writing to the shared boot partition and from hibernating.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">VeraCrypt volume mounted as %c: has been unmounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt volumes have been unmounted.</entry>
<entry lang="en" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt volumes have been unmounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_UNMOUNTED">Successfully unmounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="sk" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">UPOZORNENIE: pokiaľ je táto voľba vypnutá, zväzky obsahujúce otvorené súbory/adresáre nebude možné automaticky odpojiť.\n\nSte si istí, že chcete túto voľbu vypnúť?</entry>
<entry lang="sk" key="WARN_PREF_AUTO_UNMOUNT">UPOZORNENIE: zväzky obsahujúce otvorené súbory/adresáre nebudú automaticky odpojené.\n\nAby ste tomu zabránili, povoľte nasledujúcu voľbu v tomto dialógovom okne: 'Vynútiť automatické odpojenie, aj keď zväzok obsahuje otvorené súbory alebo adresáre'</entry>
<entry lang="en" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-unmount volumes in such cases.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">VeraCrypt volume mounted as %c: has been dismounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt volumes have been dismounted.</entry>
<entry lang="en" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt volumes have been dismounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_DISMOUNTED">Successfully dismounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="sk" key="CONFIRM_NO_FORCED_AUTODISMOUNT">UPOZORNENIE: pokiaľ je táto voľba vypnutá, zväzky obsahujúce otvorené súbory/adresáre nebude možné automaticky odpojiť.\n\nSte si istí, že chcete túto voľbu vypnúť?</entry>
<entry lang="sk" key="WARN_PREF_AUTO_DISMOUNT">UPOZORNENIE: zväzky obsahujúce otvorené súbory/adresáre nebudú automaticky odpojené.\n\nAby ste tomu zabránili, povoľte nasledujúcu voľbu v tomto dialógovom okne: 'Vynútiť automatické odpojenie, aj keď zväzok obsahuje otvorené súbory alebo adresáre'</entry>
<entry lang="en" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-dismount volumes in such cases.</entry>
<entry lang="en" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">You have scheduled the process of encryption of a partition/volume. The process has not been completed yet.\n\nDo you want to resume the process now?</entry>
<entry lang="en" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">You have scheduled the process of encryption or decryption of the system partition/drive. The process has not been completed yet.\n\nDo you want to start (resume) the process now?</entry>
<entry lang="en" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">Do you want to be prompted about whether you want to resume the currently scheduled processes of encryption of non-system partitions/volumes?</entry>
@@ -1040,7 +1038,7 @@
<entry lang="en" key="DO_NOT_PROMPT_ME">No, do not prompt me</entry>
<entry lang="en" key="NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL_NOTE">IMPORTANT: Keep in mind that you can resume the process of encryption of any non-system partition/volume by selecting 'Volumes' &gt; 'Resume Interrupted Process' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="en" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">You have scheduled the process of encryption or decryption of the system partition/drive. However, pre-boot authentication failed (or was bypassed).\n\nNote: If you decrypted the system partition/drive in the pre-boot environment, you may need to finalize the process by selecting 'System' &gt; 'Permanently Decrypt System Partition/Drive' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="en" key="CONFIRM_EXIT_UNIVERSAL">Exit?</entry>
<entry lang="en" key="CHOOSE_ENCRYPT_OR_DECRYPT">VeraCrypt does not have sufficient information to determine whether to encrypt or decrypt.</entry>
<entry lang="en" key="CHOOSE_ENCRYPT_OR_DECRYPT_FINALIZE_DECRYPT_NOTE">VeraCrypt does not have sufficient information to determine whether to encrypt or decrypt.\n\nNote: If you decrypted the system partition/drive in the pre-boot environment, you may need to finalize the process by clicking Decrypt.</entry>
@@ -1063,7 +1061,7 @@
<entry lang="sk" key="SYS_AUTOMOUNT_DISABLED">Váš systém nie je nakonfigurovaný k autom. pripojeniu nových zväzkov. Môže sa stať, že zväzky VeraCrypt umiestnené na zariadeniach nebude možné pripojiť. Autom. pripojenia môže byť povolené spustením nasledujúceho príkazu a reštartovaním systému.\n\nmountvol.exe /E</entry>
<entry lang="sk" key="SYS_ASSIGN_DRIVE_LETTER">Priraďte prosím písmeno jednotke oddielu/zariadeniu, ako budete pokračovať ('Ovládacie panely' &gt; 'Systém a údržba' &gt; 'Administr. nástroje' - 'Vytvoriť a formátovať oddiely pevného disku').\n\nToto je požiadavka operačného systému.</entry>
<entry lang="sk" key="MOUNT_TC_VOLUME">Pripojiť zväzok VeraCrypt</entry>
<entry lang="sk" key="UNMOUNT_ALL_TC_VOLUMES">Odpojiť všetky zväzky VeraCrypt</entry>
<entry lang="sk" key="DISMOUNT_ALL_TC_VOLUMES">Odpojiť všetky zväzky VeraCrypt</entry>
<entry lang="sk" key="UAC_INIT_ERROR">VeraCrypt nemohol získať Administrátorské práva.</entry>
<entry lang="sk" key="ERR_ACCESS_DENIED">Prístup bol odoprený operačným systémom.\n\nMožná príčina: operačný systém vyžaduje, aby ste mali práva na čítanie/zápis (alebo administrátorské oprávnenia) pre určité zložky, súbory a zariadenia, aby ste mohli čítať a zapisovať údaje do/z nich. Užívateľ bez administrátorských práv môže normálne vytvárať, čítať a meniť súbory vo svojej zložke s dokumentmi.</entry>
<entry lang="en" key="SECTOR_SIZE_UNSUPPORTED">Error: The drive uses an unsupported sector size.\n\nIt is currently not possible to create partition/device-hosted volumes on drives that use sectors larger than 4096 bytes. However, note that you can create file-hosted volumes (containers) on such drives.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="en" key="HIDDEN_OS_CREATION_PREINFO_HELP">In the next steps, VeraCrypt will create the hidden operating system by copying the content of the system partition to the hidden volume (data being copied will be encrypted on the fly with an encryption key different from the one that will be used for the decoy operating system).\n\nPlease note that the process will be performed in the pre-boot environment (before Windows starts) and it may take a long time to complete; several hours or even several days (depending on the size of the system partition and on the performance of your computer).\n\nYou will be able to interrupt the process, shut down your computer, start the operating system and then resume the process. However, if you interrupt it, the entire process of copying the system will have to start from the beginning (because the content of the system partition must not change during cloning).</entry>
<entry lang="en" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">Do you want to cancel the entire process of creation of the hidden operating system?\n\nNote: You will NOT be able to resume the process if you cancel it now.</entry>
<entry lang="en" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">Do you want to cancel the system encryption pretest?</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="en" key="SYS_DRIVE_NOT_ENCRYPTED">The system partition/drive does not appear to be encrypted (neither partially nor fully).</entry>
<entry lang="en" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">Your system partition/drive is encrypted (partially or fully).\n\nPlease decrypt your system partition/drive entirely before proceeding. To do so, select 'System' &gt; 'Permanently Decrypt System Partition/Drive' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="en" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">When the system partition/drive is encrypted (partially or fully), you cannot downgrade VeraCrypt (but you can upgrade it or reinstall the same version).</entry>
@@ -1285,17 +1283,17 @@
<entry lang="en" key="TOKEN_DATA_OBJECT_LABEL">File name</entry>
<entry lang="en" key="BOOT_PASSWORD_CACHE_KEYBOARD_WARNING">IMPORTANT: Please note that pre-boot authentication passwords are always typed using the standard US keyboard layout. Therefore, a volume that uses a password typed using any other keyboard layout may be impossible to mount using a pre-boot authentication password (note that this is not a bug in VeraCrypt). To allow such a volume to be mounted using a pre-boot authentication password, follow these steps:\n\n1) Click 'Select File' or 'Select Device' and select the volume.\n2) Select 'Volumes' &gt; 'Change Volume Password'.\n3) Enter the current password for the volume.\n4) Change the keyboard layout to English (US) by clicking the Language bar icon in the Windows taskbar and selecting 'EN English (United States)'.\n5) In VeraCrypt, in the field for the new password, type the pre-boot authentication password.\n6) Confirm the new password by retyping it in the confirmation field and click 'OK'.\nWARNING: Please keep in mind that if you follow these steps, the volume password will always have to be typed using the US keyboard layout (which is automatically ensured only in the pre-boot environment).</entry>
<entry lang="en" key="SYS_FAVORITES_KEYBOARD_WARNING">System favorite volumes will be mounted using the pre-boot authentication password. If any system favorite volume uses a different password, it will not be mounted.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Unmount All', auto-unmount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and unmount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be unmounted. Therefore, if you need e.g. to unmount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Unmount All' function, 'Auto-Unmount' functions, 'Unmount All' hot keys, etc.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Dismount All', auto-dismount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and dismount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be dismounted. Therefore, if you need e.g. to dismount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Dismount All' function, 'Auto-Dismount' functions, 'Dismount All' hot keys, etc.</entry>
<entry lang="en" key="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry>
<entry lang="en" key="COMMAND_LINE_ERROR">Error while parsing command line.</entry>
<entry lang="en" key="RESCUE_DISK">Rescue Disk</entry>
<entry lang="en" key="SELECT_FILE_AND_MOUNT">Select &amp;File and Mount...</entry>
<entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &amp;Device and Mount...</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and dismount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="MOUNT_SYSTEM_FAVORITES_ON_BOOT">Mount system favorite volumes when Windows starts (in the initial phase of the startup procedure)</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly unmounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always unmount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly unmounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly dismounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always dismount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly dismounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="FILESYS_REPAIR_CONFIRM_BACKUP">Warning: Repairing a damaged filesystem using the Microsoft 'chkdsk' tool might cause loss of files in damaged areas. Therefore, it is recommended that you first back up the files stored on the VeraCrypt volume to another, healthy, VeraCrypt volume.\n\nDo you want to repair the filesystem now?</entry>
<entry lang="en" key="MOUNTED_CONTAINER_FORCED_READ_ONLY">Volume '%s' has been mounted as read-only because write access was denied.\n\nPlease make sure the security permissions of the file container allow you to write to it (right-click the container and select Properties &gt; Security).\n\nNote that, due to a Windows issue, you may see this warning even after setting the appropriate security permissions. This is not caused by a bug in VeraCrypt. A possible solution is to move your container to, e.g., your 'Documents' folder.\n\nIf you intend to keep your volume read-only, set the read-only attribute of the container (right-click the container and select Properties &gt; Read-only), which will suppress this warning.</entry>
<entry lang="en" key="MOUNTED_DEVICE_FORCED_READ_ONLY">Volume '%s' had to be mounted as read-only because write access was denied.\n\nPlease make sure no other application (e.g. antivirus software) is accessing the partition/device on which the volume is hosted.</entry>
@@ -1306,8 +1304,8 @@
<entry lang="en" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Note that the number of threads is currently limited, which will affect benchmark results (worse performance).\n\nTo utilize the full potential of the processor(s), select 'Settings' > 'Performance' and disable the corresponding option.</entry>
<entry lang="en" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">Do you want VeraCrypt to attempt to disable write protection of the partition/drive?</entry>
<entry lang="en" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">WARNING: This setting may degrade performance.\n\nAre you sure you want to use this setting?</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-unmounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always unmount the volume in VeraCrypt first.\n\nUnexpected spontaneous unmount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-dismounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always dismount the volume in VeraCrypt first.\n\nUnexpected spontaneous dismount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="UNSUPPORTED_TRUECRYPT_FORMAT">This volume was created with TrueCrypt %x.%x but VeraCrypt supports only TrueCrypt volumes created with TrueCrypt 6.x/7.x series</entry>
<entry lang="en" key="TEST">Test</entry>
<entry lang="sk" key="KEYFILE">Súborový kľúč</entry>
@@ -1453,7 +1451,7 @@
<entry lang="en" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Add All Mounted Volumes to Favorites...</entry>
<entry lang="en" key="TASKICON_PREF_MENU_ITEMS">Task Icon Menu Items</entry>
<entry lang="en" key="TASKICON_PREF_OPEN_VOL">Open Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_DISMOUNT_VOL">Dismount Mounted Volumes</entry>
<entry lang="en" key="DISK_FREE">Free space available: {0}</entry>
<entry lang="en" key="VOLUME_SIZE_HELP">Please specify the size of the container to create. Note that the minimum possible size of a volume is 292 KiB.</entry>
<entry lang="en" key="LINUX_CONFIRM_INNER_VOLUME_CALC">WARNING: You have selected a filesystem other than FAT for the outer volume.\nPlease Note that in this case VeraCrypt can't calculate the exact maximum allowed size for the hidden volume and it will use only an estimation that can be wrong.\nThus, it is your responsibility to use an adequate value for the size of the hidden volume so that it does not overlap the outer volume.\n\nDo you want to continue using the selected filesystem for the outer volume?</entry>
@@ -1483,14 +1481,14 @@
<entry lang="en" key="LINUX_DO_NOT_MOUNT">Do &amp;not mount</entry>
<entry lang="en" key="LINUX_MOUNT_AT_DIR">Mount at directory:</entry>
<entry lang="en" key="LINUX_SELECT">Se&amp;lect...</entry>
<entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount All Volumes When</entry>
<entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry>
<entry lang="en" key="LINUX_ENTERING_POWERSAVING">System is entering power saving mode</entry>
<entry lang="en" key="LINUX_LOGIN_ACTION">Actions to Perform when User Logs On</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Close all Explorer windows of volume being dismounted</entry>
<entry lang="en" key="LINUX_HOTKEYS">Hotkeys</entry>
<entry lang="en" key="LINUX_SYSTEM_HOTKEYS">System-Wide Hotkeys</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/unmount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_UNMOUNT">Display confirmation message box after unmount</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/dismount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_DISMOUNT">Display confirmation message box after dismount</entry>
<entry lang="en" key="LINUX_VC_QUITS">VeraCrypt quits</entry>
<entry lang="en" key="LINUX_OPEN_FINDER">Open Finder window for successfully mounted volume</entry>
<entry lang="en" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Please note that this setting takes effect only if use of the kernel cryptographic services is disabled.</entry>
@@ -1510,11 +1508,11 @@
<entry lang="en" key="LINUX_DYNAMIC_NOTICE">Please note that if your operating system does not allocate files from the beginning of the free space, the maximum possible hidden volume size may be much smaller than the size of the free space on the outer volume. This is not a bug in VeraCrypt but a limitation of the operating system.</entry>
<entry lang="en" key="LINUX_MAX_HIDDEN_SIZE">Maximum possible hidden volume size for this volume is {0}.</entry>
<entry lang="en" key="LINUX_OPEN_OUTER_VOL">Open Outer Volume</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not unmount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not dismount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">Error: You are trying to encrypt a system drive.\n\nVeraCrypt can encrypt a system drive only under Windows.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">Error: You are trying to encrypt a system partition.\n\nVeraCrypt can encrypt system partitions only under Windows.</entry>
<entry lang="en" key="LINUX_WARNING_FORMAT_DESTROY_FS">WARNING: Formatting of the device will destroy all data on filesystem '{0}'.\n\nDo you want to continue?</entry>
<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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please dismount '{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>
@@ -1522,8 +1520,7 @@
<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>
<entry lang="en" key="LINUX_VOL_DISMOUNTED">Volume {0} has been dismounted.</entry>
<entry lang="en" key="LINUX_OOM">Out of memory.</entry>
<entry lang="en" key="LINUX_CANT_GET_ADMIN_PRIV">Failed to obtain administrator privileges</entry>
<entry lang="en" key="LINUX_COMMAND_GET_ERROR">Command {0} returned error {1}.</entry>
@@ -1553,7 +1550,7 @@
<entry lang="en" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Error: The drive uses a sector size other than 512 bytes.\n\nDue to limitations of components available on your platform, partition/device-hosted volumes cannot be created/used on the drive.\n\nPossible solutions:\n- Create a file-hosted volume (container) on the drive.\n- Use a drive with 512-byte sectors.\n- Use VeraCrypt on another platform.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">The host file/device is already in use.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Volume slot unavailable.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires macFUSE 2.5 or above.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires OSXFUSE 2.5 or above.</entry>
<entry lang="en" key="EXCEPTION_OCCURRED">Exception occurred</entry>
<entry lang="en" key="ENTER_PASSWORD">Enter password</entry>
<entry lang="en" key="ENTER_TC_VOL_PASSWORD">Enter VeraCrypt Volume Password</entry>
@@ -1570,124 +1567,6 @@
<entry lang="en" key="VOLUME_HOST_IN_USE">WARNING: The host file/device {0} is already in use!\n\nIgnoring this can cause undesired results including system instability. All applications that might be using the host file/device should be closed before mounting the volume.\n\nContinue mounting?</entry>
<entry lang="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
<entry lang="en" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">VeraCrypt cannot be upgraded because the system partition/drive was encrypted using an algorithm that is not supported anymore.\nPlease decrypt your system before upgrading VeraCrypt and then encrypt it again.</entry>
<entry lang="en" key="LINUX_EX2MSG_TERMINALNOTFOUND">Supported terminal application could not be found, you need either xterm, konsole or gnome-terminal (with dbus-x11).</entry>
<entry lang="en" key="IDM_MOUNT_NO_CACHE">Mount Without Cache</entry>
<entry lang="en" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nExpand a VeraCrypt volume on the fly without reformatting\n\n\nAll kind of volumes (container files, disks and partitions) formatted with NTFS are supported. The only condition is that there must be enough free space on the host drive or host device of the VeraCrypt volume.\n\nDo not use this software to expand an outer volume containing a hidden volume, because this destroys the hidden volume!\n</entry>
<entry lang="en" key="IDC_STEPSEXPAND">1. Select the VeraCrypt volume to be expanded\n2. Click the 'Mount' button</entry>
<entry lang="en" key="IDT_VOL_NAME">Volume: </entry>
<entry lang="en" key="IDT_FILE_SYS">File system: </entry>
<entry lang="en" key="IDT_CURRENT_SIZE">Current size: </entry>
<entry lang="en" key="IDT_NEW_SIZE">New size: </entry>
<entry lang="en" key="IDT_NEW_SIZE_BOX_TITLE">Enter new volume size</entry>
<entry lang="en" key="IDC_INIT_NEWSPACE">Fill new space with random data</entry>
<entry lang="en" key="IDC_QUICKEXPAND">Quick Expand</entry>
<entry lang="en" key="IDT_INIT_SPACE">Fill new space: </entry>
<entry lang="en" key="EXPANDER_FREE_SPACE">%s free space available on host drive</entry>
<entry lang="en" key="EXPANDER_HELP_DEVICE">This is a device-based VeraCrypt volume.\n\nThe new volume size will be choosen automatically as the size of the host device.</entry>
<entry lang="en" key="EXPANDER_HELP_FILE">Please specify the new size of the VeraCrypt volume (must be at least %I64u KB larger than the current size).</entry>
<entry lang="en" key="QUICK_EXPAND_WARNING">WARNING: You should use Quick Expand only in the following cases:\n\n1) The device where the file container is located contains no sensitive data and you do not need plausible deniability.\n2) The device where the file container is located has already been securely and fully encrypted.\n\nAre you sure you want to use Quick Expand?</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT">IMPORTANT: Move your mouse as randomly as possible within this window. The longer you move it, the better. This significantly increases the cryptographic strength of the encryption keys. Then click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT_LEGACY">Click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_FINISH_ERROR">Error: volume expansion failed.</entry>
<entry lang="en" key="EXPANDER_FINISH_ABORT">Error: operation aborted by user.</entry>
<entry lang="en" key="EXPANDER_FINISH_OK">Finished. Volume successfully expanded.</entry>
<entry lang="en" key="EXPANDER_CANCEL_WARNING">Warning: Volume expansion is in progress!\n\nStopping now may result in a damaged volume.\n\nDo you really want to cancel?</entry>
<entry lang="en" key="EXPANDER_STARTING_STATUS">Starting volume expansion ...\n</entry>
<entry lang="en" key="EXPANDER_HIDDEN_VOLUME_ERROR">An outer volume containing a hidden volume can't be expanded, because this destroys the hidden volume.\n</entry>
<entry lang="en" key="EXPANDER_SYSTEM_VOLUME_ERROR">A VeraCrypt system volume can't be expanded.</entry>
<entry lang="en" key="EXPANDER_NO_FREE_SPACE">Not enough free space to expand the volume</entry>
<entry lang="en" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Warning: The container file is larger than the VeraCrypt volume area. The data after the VeraCrypt volume area will be overwritten.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_FAT">Warning: The VeraCrypt volume contains a FAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_EXFAT">Warning: The VeraCrypt volume contains an exFAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_UNKNOWN_FS">Warning: The VeraCrypt volume contains an unknown or no file system!\n\nOnly the VeraCrypt volume itself will be expanded, the file system remains unchanged.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">New volume size too small, must be at least %I64u kB larger than the current size.</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">New volume size too large, not enough space on host drive.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Maximum file size of %I64u MB on host drive exceeded.</entry>
<entry lang="en" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Error: Failed to get necessary privileges to enable Quick Expand!\nPlease uncheck Quick Expand option and try again.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Maximum VeraCrypt volume size of %I64u TB exceeded!\n</entry>
<entry lang="en" key="FULL_FORMAT">Full Format</entry>
<entry lang="en" key="FAST_CREATE">Fast Create</entry>
<entry lang="en" key="WARN_FAST_CREATE">WARNING: You should use Fast Create only in the following cases:\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 Fast Create?</entry>
<entry lang="en" key="IDC_ENABLE_EMV_SUPPORT">Enable EMV Support</entry>
<entry lang="en" key="COMMAND_APDU_INVALID">The APDU command sent to the card is not valid.</entry>
<entry lang="en" key="EXTENDED_APDU_UNSUPPORTED">Extended APDU commands cannot be used with the current token.</entry>
<entry lang="en" key="SCARD_MODULE_INIT_FAILED">Error when loading the WinSCard / PCSC library.</entry>
<entry lang="en" key="EMV_UNKNOWN_CARD_TYPE">The card in the reader is not a supported EMV card.</entry>
<entry lang="en" key="EMV_SELECT_AID_FAILED">The AID of the card in the reader could not be selected.</entry>
<entry lang="en" key="EMV_ICC_CERT_NOTFOUND">ICC Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_ISSUER_CERT_NOTFOUND">Issuer Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_CPLC_NOTFOUND">CPLC was not found in the EMV card.</entry>
<entry lang="en" key="EMV_PAN_NOTFOUND">No Primary Account Number (PAN) found in the EMV card.</entry>
<entry lang="en" key="INVALID_EMV_PATH">EMV path is invalid.</entry>
<entry lang="en" key="EMV_KEYFILE_DATA_NOTFOUND">Unable to build a keyfile from the EMV card's data.\n\nOne of the following is missing:\n- ICC Public Key Certificate.\n- Issuer Public Key Certificate.\n- CPLC data.</entry>
<entry lang="en" key="SCARD_W_REMOVED_CARD">No card in the reader.\n\nPlease make sure the card is correctly slotted.</entry>
<entry lang="en" key="FORMAT_EXTERNAL_FAILED">Windows format.com command failed to format the volume as NTFS/exFAT/ReFS: Error 0x%.8X.\n\nFalling back to using Windows FormatEx API.</entry>
<entry lang="en" key="FORMATEX_API_FAILED">Windows FormatEx API failed to format the volume as NTFS/exFAT/ReFS.\n\nFailure status = %s.</entry>
<entry lang="en" key="EXPANDER_WRITING_RANDOM_DATA">Writing random data to new space ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Writing re-encrypted backup header ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Writing re-encrypted primary header ...\n</entry>
<entry lang="en" key="EXPANDER_WIPING_OLD_HEADER">Wiping old backup header ...\n</entry>
<entry lang="en" key="EXPANDER_MOUNTING_VOLUME">Mounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_UNMOUNTING_VOLUME">Unmounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_EXTENDING_FILESYSTEM">Extending file system ...\n</entry>
<entry lang="en" key="PARTIAL_SYSENC_MOUNT_READONLY">Warning: The system partition you attempted to mount was not fully encrypted. As a safety measure to prevent potential corruption or unwanted modifications, volume '%s' was mounted as read-only.</entry>
<entry lang="en" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Important information on using third-party file extensions</entry>
<entry lang="en" key="IDC_DISABLE_MEMORY_PROTECTION">Disable memory protection for Accessibility tools compatibility</entry>
<entry lang="en" key="DISABLE_MEMORY_PROTECTION_WARNING">WARNING: Disabling memory protection significantly reduces security. Enable this option ONLY if you rely on Accessibility tools, like Screen Readers, to interact with VeraCrypt's UI.</entry>
<entry lang="sk" key="LINUX_LANGUAGE">Jazyk</entry>
<entry lang="en" key="LINUX_SELECT_SYS_DEFAULT_LANG">Select system's default language</entry>
<entry lang="en" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">For the language change to come into effect, VeraCrypt needs to be restarted.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE">WARNING: The volume's master key is vulnerable to an attack that compromises data security.\n\nPlease create a new volume and transfer the data to it.</entry>
<entry lang="en" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">WARNING: The encrypted system's master key is vulnerable to an attack that compromises data security.\nPlease decrypt the system partition/drive and then re-encrypt it.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">WARNING: The volume's master key has a security vulnerability.</entry>
<entry lang="en" key="MOUNTPOINT_BLOCKED">ERROR: The volume mount point is blocked because it overrides a protected system directory.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="MOUNTPOINT_NOTALLOWED">ERROR: The volume mount point is not allowed because it overrides a directory that is part of the PATH environment variable.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="INSECURE_MODE">[INSECURE MODE]</entry>
<entry lang="en" key="IDC_DISABLE_SCREEN_PROTECTION">Disable protection against screenshots and screen recording</entry>
<entry lang="en" key="DISABLE_SCREEN_PROTECTION_WARNING">WARNING: Disabling screen protection significantly reduces security. Enable this option ONLY if you have a specific need to capture VeraCrypt's interface. This may expose sensitive data to screenshot tools and screen recording features such as Windows 11 Recall.</entry>
<entry lang="en" key="MEMORY_COST">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="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>
<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>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+1278 -1399
View File
File diff suppressed because it is too large Load Diff
+1232 -1353
View File
File diff suppressed because it is too large Load Diff
+1563 -1683
View File
File diff suppressed because it is too large Load Diff
+1372 -1493
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+59 -180
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
@@ -135,8 +135,8 @@
<entry lang="en" key="IDC_FAVORITE_REMOVE">&amp;Remove</entry>
<entry lang="en" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Use favorite label as Explorer drive label</entry>
<entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key dismount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key dismount</entry>
<entry lang="uz" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="en" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="uz" key="IDC_HK_MOD_SHIFT">Shift</entry>
@@ -156,12 +156,12 @@
<entry lang="en" key="IDC_PIM_HELP">(Empty or 0 for default iterations)</entry>
<entry lang="uz" key="IDC_PREF_BKG_TASK_ENABLE">Включено</entry>
<entry lang="uz" key="IDC_PREF_CACHE_PASSWORDS">Кэшировать пароли в памяти</entry>
<entry lang="uz" key="IDC_PREF_UNMOUNT_INACTIVE">Авторазмонтировать тома при неактивности в течение</entry>
<entry lang="uz" key="IDC_PREF_UNMOUNT_LOGOFF">завершении сеансов</entry>
<entry lang="en" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="uz" key="IDC_PREF_UNMOUNT_POWERSAVING">входе в энергосбережение</entry>
<entry lang="uz" key="IDC_PREF_UNMOUNT_SCREENSAVER">старте экранной заставки</entry>
<entry lang="uz" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Авторазмонтировать тома даже при открытых файлах/папках</entry>
<entry lang="uz" key="IDC_PREF_DISMOUNT_INACTIVE">Авторазмонтировать тома при неактивности в течение</entry>
<entry lang="uz" key="IDC_PREF_DISMOUNT_LOGOFF">завершении сеансов</entry>
<entry lang="en" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="uz" key="IDC_PREF_DISMOUNT_POWERSAVING">входе в энергосбережение</entry>
<entry lang="uz" key="IDC_PREF_DISMOUNT_SCREENSAVER">старте экранной заставки</entry>
<entry lang="uz" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Авторазмонтировать тома даже при открытых файлах/папках</entry>
<entry lang="uz" key="IDC_PREF_LOGON_MOUNT_DEVICES">Монтировать все тома на устройствах</entry>
<entry lang="uz" key="IDC_PREF_LOGON_START">Запуск VeraCrypt в фоне</entry>
<entry lang="uz" key="IDC_PREF_MOUNT_READONLY">Монтировать как тома только для чтения</entry>
@@ -169,7 +169,7 @@
<entry lang="uz" key="IDC_PREF_OPEN_EXPLORER">Открывать окно Проводника для успешно смонтированного тома</entry>
<entry lang="en" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">Temporarily cache password during "Mount Favorite Volumes" operations</entry>
<entry lang="en" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Use a different taskbar icon when there are mounted volumes</entry>
<entry lang="uz" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Очищать кэш паролей при авторазмонтировании</entry>
<entry lang="uz" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Очищать кэш паролей при авторазмонтировании</entry>
<entry lang="uz" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Очищать кэш паролей при выходе</entry>
<entry lang="en" key="IDC_PRESERVE_TIMESTAMPS">Preserve modification timestamp of file containers</entry>
<entry lang="uz" key="IDC_RESET_HOTKEYS">Сброс</entry>
@@ -269,14 +269,14 @@
<entry lang="en" key="IDT_ACCELERATION_OPTIONS">Hardware Acceleration</entry>
<entry lang="uz" key="IDT_ASSIGN_HOTKEY">Клавиша быстрого вызова</entry>
<entry lang="uz" key="IDT_AUTORUN">Настройка автозапуска (файл autorun.inf)</entry>
<entry lang="uz" key="IDT_AUTO_UNMOUNT">Автоматическое размонтирование</entry>
<entry lang="uz" key="IDT_AUTO_UNMOUNT_ON">Размонтировать все тома при:</entry>
<entry lang="uz" key="IDT_AUTO_DISMOUNT">Автоматическое размонтирование</entry>
<entry lang="uz" key="IDT_AUTO_DISMOUNT_ON">Размонтировать все тома при:</entry>
<entry lang="uz" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Параметры экрана загрузчика</entry>
<entry lang="uz" key="IDT_CONFIRM_PASSWORD">Подтвердите:</entry>
<entry lang="uz" key="IDT_CURRENT">Текущий</entry>
<entry lang="uz" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">Показывать этот текст на экране предзагрузочной авторизации (не более 24 символов):</entry>
<entry lang="uz" key="IDT_DEFAULT_MOUNT_OPTIONS">Параметры монтирования томов по умолчанию</entry>
<entry lang="uz" key="IDT_UNMOUNT_ACTION">Дополнительные параметры</entry>
<entry lang="uz" key="IDT_DISMOUNT_ACTION">Дополнительные параметры</entry>
<entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry>
<entry lang="en" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Enable extended disk control codes support</entry>
<entry lang="en" key="IDT_FAVORITE_LABEL">Label of selected favorite volume:</entry>
@@ -291,11 +291,10 @@
<entry lang="uz" key="IDT_NEW_PASSWORD">Пароль:</entry>
<entry lang="en" key="IDT_PARALLELIZATION_OPTIONS">Thread-Based Parallelization</entry>
<entry lang="uz" key="IDT_PKCS11_LIB_PATH">Путь к библиотеке PKCS #11</entry>
<entry lang="uz" key="IDT_KDF">KDF:</entry>
<entry lang="en" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="uz" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="en" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="uz" key="IDT_PW_CACHE_OPTIONS">Кэширование (запоминание) паролей</entry>
<entry lang="uz" key="IDT_SECURITY_OPTIONS">Параметры безопасности</entry>
<entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry>
<entry lang="uz" key="IDT_TASKBAR_ICON">Работа VeraCrypt в фоновом режиме</entry>
<entry lang="uz" key="IDT_TRAVELER_MOUNT">Том для монтирования (относительно корня переносного диска):</entry>
<entry lang="uz" key="IDT_TRAVEL_INSERTION">При вставке переносного диска: </entry>
@@ -357,7 +356,7 @@
<entry lang="uz" key="IDT_KEYFILE_WARNING">!!! При утере ключевого файла или повреждении его первых 1024 килобайт монтирование использующих этот файл томов невозможно!</entry>
<entry lang="uz" key="IDT_KEY_UNIT">бит</entry>
<entry lang="en" key="IDT_NUMBER_KEYFILES">Number of keyfiles:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size (in Bytes):</entry>
<entry lang="en" key="IDT_KEYFILES_BASE_NAME">Keyfiles base name:</entry>
<entry lang="uz" key="IDT_LANGPACK_AUTHORS">Автор перевода:</entry>
<entry lang="uz" key="IDT_PLAINTEXT">Размер:</entry>
@@ -390,7 +389,6 @@
<entry lang="en" key="ADMINISTRATOR">Administrator</entry>
<entry lang="uz" key="ADMIN_PRIVILEGES_DRIVER">Чтобы можно было загрузить драйвер VeraCrypt, вы должны войти в систему с правами Администратора.</entry>
<entry lang="uz" key="ADMIN_PRIVILEGES_WARN_DEVICES">Чтобы можно было шифровать/Дешифрация/форматировать раздел/устройство, вы должны войти в систему с правами Администратора.\n\nК томам на основе файлов это не относится.</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="uz" key="ADMIN_PRIVILEGES_WARN_HIDVOL">Чтобы можно было создать скрытый том, вы должны войти в систему с правами Администратора.\n\nПродолжить?</entry>
<entry lang="uz" key="ADMIN_PRIVILEGES_WARN_NTFS">Чтобы можно было форматировать тома как NTFS, вы должны войти в систему с правами Администратора.\n\nБез привилегий Администратора можно форматировать тома только как FAT.</entry>
<entry lang="uz" key="AES_HELP">Утверждённый FIPS (США) Шифрлаш алгоритми (Rijndael, опубликован в 1998 г.), разрешён к применению в федеральных структурах США для защиты важнейшей информации. 256-бит ключ, 128-бит блок, 14 циклов (AES-256). Режим работы -- XTS.</entry>
@@ -423,8 +421,8 @@
<entry lang="uz" key="DEVICE_FREE_PB">Хажми %s - %.2f Пб</entry>
<entry lang="uz" key="DEVICE_IN_USE_FORMAT">ВНИМАНИЕ: Устройство/раздел используется операционной системой или приложениями. Форматирование устройства/раздела может привести к потере данных или нестабильности системы.\n\nПродолжить?</entry>
<entry lang="uz" key="DEVICE_IN_USE_INPLACE_ENC">ВНИМАНИЕ: Устройство/раздел используется операционной системой или приложениями. Следует закрыть все программы, которые могут использовать раздел (включая антивирусное ПО).\n\nПродолжить?</entry>
<entry lang="uz" key="FORMAT_CANT_UNMOUNT_FILESYS">ОШИБКА: Устройство/раздел содержит файловую систему, которая не может быть размонтирована. Эта файловая система может использоваться операционной системой. Форматирование устройства/раздела вероятнее всего приведёт к повреждению данных и нестабильности системы.\n\nДля решения этой проблемы мы рекомендуем сначала удалить этот раздел, после чего вновь создать его без форматирования. Вот как это сделать: 1) Щёлкните правой кнопкой мыши по значку 'Компьютер' (или 'Мой компьютер') в меню 'Пуск' и выберите пункт 'Управление'. Должно появиться окно 'Управление компьютером'. 2) В окне 'Управление компьютером' выберите 'Запоминающие устройства' &gt; 'Управление дисками'. 3) Щёлкните правой кнопкой мыши по разделу, который вы хотите зашифровать, и выберите либо 'Удалить раздел', либо 'Удалить том', либо 'Удалить логический диск'. 4) Нажмите 'Да'. Если Windows попросит перезагрузить компьютер, сделайте это. Затем повторите шаги 1 и 2 и перейдите к шагу 5. 5) Щёлкните правой кнопкой на участке с пустым местом (оно должно содержать надпись 'Не распределено') и выберите 'Основной раздел', 'Дополнительный раздел' или 'Логический диск'. 6) Должно появиться окно мастера создания разделов или томов; следуйте его инструкциям. В окне мастера на странице 'Форматирование раздела' выберите либо 'Не форматировать этот раздел', либо 'Не форматировать этот том'. В том же окне мастера нажмите кнопку 'Далее' и затем 'Готово'. 7) Учтите, что выбранный вами в VeraCrypt путь к устройству может быть теперь неверным. Поэтому завершите работу мастера создания томов VeraCrypt (если он всё ещё выполняется) и запустите его снова. 8) Попробуйте снова зашифровать устройство/раздел в VeraCrypt.\n\nЕсли VeraCrypt по-прежнему откажется шифровать устройство/раздел, скорректируйте свои планы и создайте вместо этого файловый контейнер.</entry>
<entry lang="uz" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">ОШИБКА: Не удалось заблокировать и/или размонтировать файловую систему. Вероятно, она используется ОС или приложениями (например, антивирусным ПО). Шифрование этого раздела может повлечь повреждение данных и нестабильность системы.\n\nЗакройте все приложения, которые могут обращаться к файловой системе (включая антивирусное ПО) и повторите попытку. Если это не поможет, следуйте указанным ниже инструкциям.</entry>
<entry lang="uz" key="FORMAT_CANT_DISMOUNT_FILESYS">ОШИБКА: Устройство/раздел содержит файловую систему, которая не может быть размонтирована. Эта файловая система может использоваться операционной системой. Форматирование устройства/раздела вероятнее всего приведёт к повреждению данных и нестабильности системы.\n\nДля решения этой проблемы мы рекомендуем сначала удалить этот раздел, после чего вновь создать его без форматирования. Вот как это сделать: 1) Щёлкните правой кнопкой мыши по значку 'Компьютер' (или 'Мой компьютер') в меню 'Пуск' и выберите пункт 'Управление'. Должно появиться окно 'Управление компьютером'. 2) В окне 'Управление компьютером' выберите 'Запоминающие устройства' &gt; 'Управление дисками'. 3) Щёлкните правой кнопкой мыши по разделу, который вы хотите зашифровать, и выберите либо 'Удалить раздел', либо 'Удалить том', либо 'Удалить логический диск'. 4) Нажмите 'Да'. Если Windows попросит перезагрузить компьютер, сделайте это. Затем повторите шаги 1 и 2 и перейдите к шагу 5. 5) Щёлкните правой кнопкой на участке с пустым местом (оно должно содержать надпись 'Не распределено') и выберите 'Основной раздел', 'Дополнительный раздел' или 'Логический диск'. 6) Должно появиться окно мастера создания разделов или томов; следуйте его инструкциям. В окне мастера на странице 'Форматирование раздела' выберите либо 'Не форматировать этот раздел', либо 'Не форматировать этот том'. В том же окне мастера нажмите кнопку 'Далее' и затем 'Готово'. 7) Учтите, что выбранный вами в VeraCrypt путь к устройству может быть теперь неверным. Поэтому завершите работу мастера создания томов VeraCrypt (если он всё ещё выполняется) и запустите его снова. 8) Попробуйте снова зашифровать устройство/раздел в VeraCrypt.\n\nЕсли VeraCrypt по-прежнему откажется шифровать устройство/раздел, скорректируйте свои планы и создайте вместо этого файловый контейнер.</entry>
<entry lang="uz" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">ОШИБКА: Не удалось заблокировать и/или размонтировать файловую систему. Вероятно, она используется ОС или приложениями (например, антивирусным ПО). Шифрование этого раздела может повлечь повреждение данных и нестабильность системы.\n\nЗакройте все приложения, которые могут обращаться к файловой системе (включая антивирусное ПО) и повторите попытку. Если это не поможет, следуйте указанным ниже инструкциям.</entry>
<entry lang="uz" key="DEVICE_IN_USE_INFO">ВНИМАНИЕ: Некоторые смонтированные устройства/разделы уже используются.\n\nИгнорирование этого может привести к нежелательным последствиям, включая нестабильность системы.\n\nНастоятельно рекомендуется закрыть все программы, использующие эти устройства/разделы.</entry>
<entry lang="uz" key="DEVICE_PARTITIONS_ERR">Выбранное устройство содержит разделы.\n\nФорматирование этого устройства может привести к нестабильности системы и/или повреждению данных. Либо выберите раздел на этом устройстве, либо удалите все разделы на нём, чтобы дать возможность VeraCrypt безопасно его отформатировать.</entry>
<entry lang="uz" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">Выбранное несистемное устройство содержит разделы.\n\nЗашифрованные тома VeraCrypt на основе устройств можно создавать только на дисках, не содержащих разделов (включая жёсткие и твердотельные диски). Устройство с разделами можно зашифровать целиком на месте (с помощью одного мастер-ключа), только если это диск, где установлена Windows и с которого она загружается.\n\nЕсли вы хотите зашифровать выбранное несисемное устройство с помощью одного мастер-ключа, сначала потребуется удалить все разделы на этом устройстве, чтобы VeraCrypt смог его безопасно отформатировать (форматирование устройства с разделами может повлечь нестабильность системы и/или повреждение данных). Другой вариант -- зашифровать отдельно каждый раздел на диске (используя индивидуальные мастер-ключи).\n\nПримечание: чтобы удалить все разделы с диска GPT, его нужно преобразовать в диск MBR (например, с помощью инструмента Computer Management) для удаления скрытых разделов.</entry>
@@ -590,7 +588,7 @@
<entry lang="uz" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">ОШИБКА: Скопированные во внешний том файлы занимают слишком много места. Из-за этого во внешнем томе недостаточно свободного места под скрытый том.\n\nОбратите внимание, что скрытый том должен быть не меньше системного раздела (т.е. раздела, где установлена работающая сейчас операционная система). Причина в том, что при создании скрытой ОС выполняется копирование в скрытый том содержимого системного раздела.\n\n\nПродолжение создания скрытой операционной системы невозможно.</entry>
<entry lang="uz" key="OPENFILES_DRIVER">Драйвер не может размонтировать том. Вероятно, на этом томе имеются открытые файлы.</entry>
<entry lang="uz" key="OPENFILES_LOCK">Невозможно заблокировать том. На этом томе имеются открытые файлы, поэтому его нельзя размонтировать.</entry>
<entry lang="uz" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt не может заблокировать том, так как он используется системой или приложениями (возможно, открыты находящиеся на этом томе файлы).\n\nВы настаиваете на принудительном размонтировании этого тома?</entry>
<entry lang="uz" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt не может заблокировать том, так как он используется системой или приложениями (возможно, открыты находящиеся на этом томе файлы).\n\nВы настаиваете на принудительном размонтировании этого тома?</entry>
<entry lang="uz" key="OPEN_VOL_TITLE">Выберите том VeraCrypt</entry>
<entry lang="uz" key="OPEN_TITLE">Укажите путь и имя файла</entry>
<entry lang="uz" key="SELECT_PKCS11_MODULE">Выберите библиотеку PKCS #11</entry>
@@ -613,7 +611,7 @@
<entry lang="en" key="FAVORITE_PIM_CHANGED">This volume is registered as a System Favorite and its PIM was changed.\nDo you want VeraCrypt to automatically update the System Favorite configuration (administrator privileges required)?\n\nPlease note that if you answer no, you'll have to update the System Favorite manually.</entry>
<entry lang="uz" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">ВАЖНО: Если вы не уничтожили свой диск восстановления VeraCrypt (Rescue Disk), ваш системный раздел/диск по-прежнему можно расшифровать с помощью старого пароля (загрузившись с диска восстановления VeraCrypt и введя старый пароль). Вам следует создать новый диск восстановления VeraCrypt, после чего уничтожить старый.\n\nХотите создать новый диск восстановления VeraCrypt?</entry>
<entry lang="uz" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">Обратите внимание, что ваш диск восстановления VeraCrypt (Rescue Disk) всё ещё использует прежний алгоритм. Если вы считаете этот алгоритм недостаточно надёжным, создайте новый диск восстановления VeraCrypt, после чего уничтожьте старый.\n\nХотите создать новый диск восстановления VeraCrypt?</entry>
<entry lang="en" key="KEYFILES_NOTE">Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="en" key="KEYFILES_NOTE">Any kind of file (for example, .mp3, .jpg, .zip, .avi) may be used as a VeraCrypt keyfile. Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="uz" key="KEYFILE_CHANGED">Ключевые файлы успешно добавлены/удалены.</entry>
<entry lang="uz" key="KEYFILE_EXPORTED">Ключевой файл экспортирован.</entry>
<entry lang="uz" key="PKCS5_PRF_CHANGED">Алгоритм деривации ключа заголовка успешно установлен.</entry>
@@ -729,7 +727,7 @@
<entry lang="uz" key="DLL_FILES">Библиотечные модули</entry>
<entry lang="uz" key="FORMAT_NTFS_STOP">Продолжение NTFS-форматирования невозможно.</entry>
<entry lang="uz" key="CANT_MOUNT_VOLUME">Невозможно смонтировать том.</entry>
<entry lang="uz" key="CANT_UNMOUNT_VOLUME">Невозможно размонтировать том.</entry>
<entry lang="uz" key="CANT_DISMOUNT_VOLUME">Невозможно размонтировать том.</entry>
<entry lang="uz" key="FORMAT_NTFS_FAILED">Windows не может отформатировать этот том как NTFS.\n\nВыберите другой тип файловой системы (если возможно) и повторите попытку. Либо вы можете оставить этот том неформатированным (в поле выбора файловой системы укажите 'Нет'), закрыть окно мастера, смонтировать том, а затем с помощью системной или сторонней утилиты отформатировать смонтированный том (том при этом останется зашифрованным).</entry>
<entry lang="uz" key="FORMAT_NTFS_FAILED_ASK_FAT">Windows не может отформатировать этот том как NTFS.\n\nХотите вместо этого отформатировать том как FAT?</entry>
<entry lang="uz" key="DEFAULT">По умолчанию</entry>
@@ -771,7 +769,7 @@
<entry lang="uz" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">Зашифровать раздел не удалось из-за ошибки. Попробуйте устранить все ранее указанные проблемы и повторить попытку. Если проблемы не решаются, попробуйте предпринять шаги, указанные ниже.</entry>
<entry lang="uz" key="INPLACE_ENC_GENERIC_ERR_RESUME">Продолжить процесс шифровния раздела не удалось из-за ошибки.\n\nПопробуйте устранить все ранее указанные проблемы и снова возобновить процесс шифрования. Учтите, что том нельзя смонтировать до тех пор, пока он не будет полностью зашифрован.</entry>
<entry lang="en" key="INPLACE_DEC_GENERIC_ERR">An error prevented VeraCrypt from decrypting the volume. Please try fixing any previously reported problems and then try again if possible.</entry>
<entry lang="uz" key="CANT_UNMOUNT_OUTER_VOL">Ошибка! Невозможно размонтировать внешний том.\n\nТом нельзя размонтировать, если он содержит файлы или папки, используемые какой-либо программой или системой.\n\nЗакройте все программы, которые могут использовать файлы и папки на этом томе, и нажмите 'Повтор'.</entry>
<entry lang="uz" key="CANT_DISMOUNT_OUTER_VOL">Ошибка! Невозможно размонтировать внешний том.\n\nТом нельзя размонтировать, если он содержит файлы или папки, используемые какой-либо программой или системой.\n\nЗакройте все программы, которые могут использовать файлы и папки на этом томе, и нажмите 'Повтор'.</entry>
<entry lang="uz" key="CANT_GET_OUTER_VOL_INFO">Ошибка! Невозможно получить информацию о внешнем томе. Создание тома прекращено.</entry>
<entry lang="uz" key="CANT_ACCESS_OUTER_VOL">Ошибка! Нет доступа к внешнему тому. Продолжение создания тома невозможно.</entry>
<entry lang="uz" key="CANT_MOUNT_OUTER_VOL">Ошибка! Невозможно смонтировать внешний том. Создание тома не может быть продолжено.</entry>
@@ -813,7 +811,7 @@
<entry lang="uz" key="SECONDARY_KEY_SIZE_LRW">Длина Tweak-ключа (LRW-режим)</entry>
<entry lang="uz" key="BITS">бит</entry>
<entry lang="uz" key="BLOCK_SIZE">Размер блока</entry>
<entry lang="uz" key="KDF">KDF</entry>
<entry lang="uz" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="uz" key="PKCS5_ITERATIONS">Число итераций PKCS-5</entry>
<entry lang="uz" key="VOLUME_CREATE_DATE">Том создан</entry>
<entry lang="uz" key="VOLUME_HEADER_DATE">Последнее изменение заголовка</entry>
@@ -855,7 +853,7 @@
<entry lang="uz" key="TC_INSTALLER_IS_RUNNING">В этой системе сейчас запущен инсталлятор VeraCrypt. Он выполняет/готовит установку или обновление VeraCrypt. Дождитесь завершения его работы или закройте его. Если закрыть инсталлятор не получается, перезагрузите компьютер и лишь потом продолжите.</entry>
<entry lang="uz" key="INSTALL_FAILED">Установка не выполнена.</entry>
<entry lang="uz" key="UNINSTALL_FAILED">Удаление не выполнено.</entry>
<entry lang="uz" key="DIST_PACKAGE_CORRUPTED">Этот дистрибутивный пакет повреждён. Загрузите его снова (желательно с официального сайта VeraCrypt - https://veracrypt.jp).</entry>
<entry lang="uz" key="DIST_PACKAGE_CORRUPTED">Этот дистрибутивный пакет повреждён. Загрузите его снова (желательно с официального сайта VeraCrypt - https://www.veracrypt.fr).</entry>
<entry lang="uz" key="CANNOT_WRITE_FILE_X">Невозможно записать файл %s</entry>
<entry lang="uz" key="EXTRACTING_VERB">Извлечение</entry>
<entry lang="uz" key="CANNOT_READ_FROM_PACKAGE">Невозможно прочитать данные из дистрибутива.</entry>
@@ -882,7 +880,7 @@
<entry lang="uz" key="INSTALL_COMPLETED">Установка завершена.</entry>
<entry lang="uz" key="CANT_CREATE_FOLDER">Не удалось создать папку '%s'</entry>
<entry lang="uz" key="CLOSE_TC_FIRST">Невозможно выгрузить драйвер VeraCrypt.\n\nСначала закройте все открытые окна VeraCrypt. Если это не поможет, перезагрузите Windows и попробуйте ещё раз.</entry>
<entry lang="uz" key="UNMOUNT_ALL_FIRST">Прежде чем продолжить установку или удаление VeraCrypt, нужно размонтировать все VeraCrypt-тома.</entry>
<entry lang="uz" key="DISMOUNT_ALL_FIRST">Прежде чем продолжить установку или удаление VeraCrypt, нужно размонтировать все VeraCrypt-тома.</entry>
<entry lang="en" key="UNINSTALL_OLD_VERSION_FIRST">An obsolete version of VeraCrypt is currently installed on this system. It needs to be uninstalled before you can install this new version of VeraCrypt.\n\nAs soon as you close this message box, the uninstaller of the old version will be launched. Note that no volume will be decrypted when you uninstall VeraCrypt. After you uninstall the old version of VeraCrypt, run the installer of the new version of VeraCrypt again.</entry>
<entry lang="uz" key="REG_INSTALL_FAILED">Ошибка установки элементов в реестре</entry>
<entry lang="uz" key="DRIVER_INSTALL_FAILED">Ошибка установки драйвера устройства. Перезагрузите Windows и попробуйте установить VeraCrypt ещё раз.</entry>
@@ -903,7 +901,7 @@
<entry lang="uz" key="MINUTES">мин</entry>
<entry lang="uz" key="SECONDS">c</entry>
<entry lang="uz" key="OPEN">Открыть</entry>
<entry lang="uz" key="UNMOUNT">Размонтировать</entry>
<entry lang="uz" key="DISMOUNT">Размонтировать</entry>
<entry lang="uz" key="SHOW_TC">Показать VeraCrypt</entry>
<entry lang="uz" key="HIDE_TC">Скрыть VeraCrypt</entry>
<entry lang="uz" key="TOTAL_DATA_READ">Считано данных после монтирования</entry>
@@ -940,7 +938,7 @@
<entry lang="uz" key="ENTER_HEADER_BACKUP_PASSWORD">Введите пароль для заголовка в файле резервной копии</entry>
<entry lang="uz" key="KEYFILE_CREATED">Ключевой файл успешно создан.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_NUMBER">The number of keyfiles you supplied is invalid.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be at least 64 bytes.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be comprized between 64 and 1048576 bytes.</entry>
<entry lang="en" key="KEYFILE_EMPTY_BASE_NAME">Please enter a name for the keyfile(s) to be generated</entry>
<entry lang="en" key="KEYFILE_INVALID_BASE_NAME">The base name of the keyfile(s) is invalid</entry>
<entry lang="en" key="KEYFILE_ALREADY_EXISTS">The keyfile '%s' already exists.\nDo you want to overwrite it? The generation process will be stopped if you answer No.</entry>
@@ -975,7 +973,7 @@
<entry lang="en" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - System Favorite Volumes</entry>
<entry lang="en" key="SYS_FAVORITES_HELP_LINK">What are system favorite volumes?</entry>
<entry lang="en" key="SYS_FAVORITES_REQUIRE_PBA">The system partition/drive does not appear to be encrypted.\n\nSystem favorite volumes can be mounted using only a pre-boot authentication password. Therefore, to enable use of system favorite volumes, you need to encrypt the system partition/drive first.</entry>
<entry lang="uz" key="UNMOUNT_FIRST">Прежде чем продолжить, размонтируйте том.</entry>
<entry lang="uz" key="DISMOUNT_FIRST">Прежде чем продолжить, размонтируйте том.</entry>
<entry lang="uz" key="CANNOT_SET_TIMER">ОШИБКА: Невозможно установить таймер.</entry>
<entry lang="uz" key="IDPM_CHECK_FILESYS">Проверка файловой системы</entry>
<entry lang="uz" key="IDPM_REPAIR_FILESYS">Ремонт файловой системы</entry>
@@ -997,7 +995,7 @@
<entry lang="uz" 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="uz" key="UNSUPPORTED_CHARS_IN_PWD_RECOM">Внимание! Пароль содержит не-ASCII символы. Это может привести к невозможности монтирования тома при смене конфигурации системы.\n\nВам следует заменить все не-ASCII символы в пароле на символы ASCII. Для этого щёлкните на меню 'Тома' -&gt; 'Изменить пароль тома'.\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="en" key="EXE_FILE_EXTENSION_CONFIRM">WARNING: We strongly recommend that you avoid file extensions that are used for executable files (such as .exe, .sys, or .dll) and other similarly problematic file extensions. Using such file extensions causes Windows and antivirus software to interfere with the container, which adversely affects the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension or change it (e.g., to '.hc').\n\nAre you sure you want to use the problematic file extension?</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you unmount the volume.</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you dismount the volume.</entry>
<entry lang="uz" key="HOMEPAGE">Домашняя страница</entry>
<entry lang="uz" key="LARGE_IDE_WARNING_XP">ВНИМАНИЕ: В системе не установлено ни одного пакета обновлений (Service Pack) Windows. Если в Windows XP не установлен Service Pack 1 (или новее), не следует выполнять запись на диски IDE объёмом более 128 Гб, иначе возможно повреждение данных (неважно, относятся они к тому VeraCrypt или нет). Это ограничение Windows, а не ошибка в VeraCrypt.</entry>
<entry lang="uz" key="LARGE_IDE_WARNING_2K">ВНИМАНИЕ: В системе не установлен пакет обновлений Windows Service Pack 3 (или новее). Если в Windows 2000 не установлен Service Pack 3 (или новее), не следует выполнять запись на диски IDE объёмом более 128 Гб, иначе возможно повреждение данных (неважно, относятся они к тому VeraCrypt или нет). Это ограничение Windows, а не ошибка в VeraCrypt. Кроме того, может потребоваться включить в реестре поддержку 48-бит адресации LBA; подробности см. на http://support.microsoft.com/kb/305098/EN-US</entry>
@@ -1009,11 +1007,11 @@
<entry lang="uz" key="NO_SYSENC_PARTITION_SELECTED">Не выбран раздел.\n\nНажмите кнопку 'Устройство' и выберите не смонтированный раздел, который требует предзагрузочную авторизацию (например, раздел на зашифрованном системном диске с другой, не выполняемой сейчас ОС, или зашифрованный системный раздел другой ОС).\n\nПримечание: выбранный раздел будет смонтирован как обычный том VeraCrypt без предзагрузочной авторизации. Это может пригодиться, например, для операций резервного копирования или починки.</entry>
<entry lang="uz" key="CONFIRM_SAVE_DEFAULT_KEYFILES">ВНИМАНИЕ: Если установлены и активированы ключевые файлы по умолчанию, монтировать НЕ использующие их тома будет невозможно. При монтировании таких томов не забывайте выключать опцию 'Ключевые файлы' (ниже поля ввода пароля).\n\nВы действительно хотите сохранить выбранные ключевые файлы/пути как используемые по умолчанию?</entry>
<entry lang="uz" key="HK_AUTOMOUNT_DEVICES">Автомонтирование устройств</entry>
<entry lang="uz" key="HK_UNMOUNT_ALL">Размонтировать все</entry>
<entry lang="uz" key="HK_DISMOUNT_ALL">Размонтировать все</entry>
<entry lang="uz" key="HK_WIPE_CACHE">Очистка кэша</entry>
<entry lang="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All &amp; Wipe Cache</entry>
<entry lang="uz" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Размонтировать все и очистить кэш</entry>
<entry lang="uz" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Размонтировать все, очистить кэш и выйти</entry>
<entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All &amp; Wipe Cache</entry>
<entry lang="uz" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Размонтировать все и очистить кэш</entry>
<entry lang="uz" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Размонтировать все, очистить кэш и выйти</entry>
<entry lang="uz" key="HK_MOUNT_FAVORITE_VOLUMES">Смонтировать избранные тома</entry>
<entry lang="uz" key="HK_SHOW_HIDE_MAIN_WINDOW">Показать/скрыть главное окно VeraCrypt</entry>
<entry lang="uz" key="PRESS_A_KEY_TO_ASSIGN">(щёлкните здесь и нажмите клавишу)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="en" key="PAGING_FILE_CREATION_PREVENTED">Paging file creation has been prevented.\n\nPlease note that, due to Windows issues, paging files cannot be located on non-system VeraCrypt volumes (including system favorite volumes). VeraCrypt supports creation of paging files only on an encrypted system partition/drive.</entry>
<entry lang="uz" key="SYS_ENC_HIBERNATION_PREVENTED">Из-за ошибки или несовместимости VeraCrypt не может зашифровать файл спящего режима (hibernation). Поэтому спящий режим отключён.\n\nПримечание: когда компьютер переходит в режим сна (или в энергосберегающий ждущий режим), содержимое его системной памяти записывается на жёсткий диск в файл с данными спящего режима. VeraCrypt не может предотвратить сохранение открытых в ОЗУ ключей шифрования и содержимого важных файлов в незашифрованном виде в файле с данными спящего режима.</entry>
<entry lang="en" key="HIDDEN_OS_HIBERNATION_PREVENTED">Hibernation has been prevented.\n\nVeraCrypt does not support hibernation on hidden operating systems that use an extra boot partition. Please note that the boot partition is shared by both the decoy and the hidden system. Therefore, in order to prevent data leaks and problems while resuming from hibernation, VeraCrypt has to prevent the hidden system from writing to the shared boot partition and from hibernating.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">VeraCrypt volume mounted as %c: has been unmounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt volumes have been unmounted.</entry>
<entry lang="en" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt volumes have been unmounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_UNMOUNTED">Successfully unmounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="uz" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">ВНИМАНИЕ: Если выключить этот параметр, станет невозможно автоматически размонтировать тома, содержащие открытые файлы/папки.\n\nВы действительно хотите выключить этот параметр?</entry>
<entry lang="uz" key="WARN_PREF_AUTO_UNMOUNT">ВНИМАНИЕ: Тома с открытыми файлами/папками НЕ будут автоматически размонтироваться.\n\nЧтобы избежать такого эффекта, включите в этом окне следующий параметр: 'Авторазмонтировать тома даже при открытых файлах/папках'</entry>
<entry lang="en" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-unmount volumes in such cases.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">VeraCrypt volume mounted as %c: has been dismounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt volumes have been dismounted.</entry>
<entry lang="en" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt volumes have been dismounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_DISMOUNTED">Successfully dismounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="uz" key="CONFIRM_NO_FORCED_AUTODISMOUNT">ВНИМАНИЕ: Если выключить этот параметр, станет невозможно автоматически размонтировать тома, содержащие открытые файлы/папки.\n\nВы действительно хотите выключить этот параметр?</entry>
<entry lang="uz" key="WARN_PREF_AUTO_DISMOUNT">ВНИМАНИЕ: Тома с открытыми файлами/папками НЕ будут автоматически размонтироваться.\n\nЧтобы избежать такого эффекта, включите в этом окне следующий параметр: 'Авторазмонтировать тома даже при открытых файлах/папках'</entry>
<entry lang="en" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-dismount volumes in such cases.</entry>
<entry lang="uz" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Вы запланировали шифрование раздела/тома. Этот процесс пока ещё не завершён.\n\nХотите возобновить процесс сейчас?</entry>
<entry lang="uz" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">Вы запланировали шифрование или дешифрование системного раздела/диска. Этот процесс пока ещё не завершён.\n\nХотите начать (продолжить) процесс сейчас?</entry>
<entry lang="en" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">Do you want to be prompted about whether you want to resume the currently scheduled processes of encryption of non-system partitions/volumes?</entry>
@@ -1040,7 +1038,7 @@
<entry lang="en" key="DO_NOT_PROMPT_ME">No, do not prompt me</entry>
<entry lang="en" key="NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL_NOTE">IMPORTANT: Keep in mind that you can resume the process of encryption of any non-system partition/volume by selecting 'Volumes' &gt; 'Resume Interrupted Process' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="uz" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">Вы запланировали шифрование или дешифрование системного раздела/диска. Однако не пройдена (или была пропущена) предзагрузочная авторизация.\n\nПримечание: при дешифровании системного раздела/диска в предзагрузочном окружении может потребоваться финализация процесса путём выбора команды 'Система' &gt; 'Перманентно расшифровать системный раздел/диск' в меню главного окна VeraCrypt.</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="uz" key="CONFIRM_EXIT_UNIVERSAL">Выход?</entry>
<entry lang="uz" key="CHOOSE_ENCRYPT_OR_DECRYPT">VeraCrypt не обладает достаточной информацией, чтобы определить, шифрование выполнять или дешифрование.</entry>
<entry lang="uz" key="CHOOSE_ENCRYPT_OR_DECRYPT_FINALIZE_DECRYPT_NOTE">VeraCrypt не обладает достаточной информацией, чтобы определить, шифрование выполнять или дешифрование.\n\nПримечание: при дешифровании системного раздела/диска в предзагрузочном окружении может потребоваться финализировать процесс, нажав Decrypt.</entry>
@@ -1063,7 +1061,7 @@
<entry lang="uz" key="SYS_AUTOMOUNT_DISABLED">Ваша система не настроена на автомонтирование новых томов. Монтирование томов VeraCrypt на основе устройств может оказаться невозможным. Чтобы включить автомонтирование, выполните следующую команду и перезагрузите систему:\n\nmountvol.exe /E</entry>
<entry lang="uz" key="SYS_ASSIGN_DRIVE_LETTER">Прежде чем продолжить, присвойте разделу/устройству букву диска ('Панель управления' &gt; 'Администрирование' &gt; 'Управление компьютером' - 'Управление дисками').\n\nПримечание: это требование операционной системы.</entry>
<entry lang="uz" key="MOUNT_TC_VOLUME">Смонтировать том VeraCrypt</entry>
<entry lang="uz" key="UNMOUNT_ALL_TC_VOLUMES">Размонтировать все тома VeraCrypt</entry>
<entry lang="uz" key="DISMOUNT_ALL_TC_VOLUMES">Размонтировать все тома VeraCrypt</entry>
<entry lang="uz" key="UAC_INIT_ERROR">VeraCrypt не может получить права администратора.</entry>
<entry lang="uz" key="ERR_ACCESS_DENIED">Доступ запрещён операционной системой.\n\nВозможная причина: для чтения/записи данных в некоторых папках, файлах и устройствах операционная система требует у вас наличия прав чтения/записи system (привилегий администратора). По умолчанию пользователю без прав администратора разрешается создавать читать и изменять файлы лишь в папке с его документами ('Мои документы').</entry>
<entry lang="en" key="SECTOR_SIZE_UNSUPPORTED">Error: The drive uses an unsupported sector size.\n\nIt is currently not possible to create partition/device-hosted volumes on drives that use sectors larger than 4096 bytes. However, note that you can create file-hosted volumes (containers) on such drives.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="uz" key="HIDDEN_OS_CREATION_PREINFO_HELP">Yf следующих этапах VeraCrypt создаст скрытую ОС, скопировав содержимое системного раздела в скрытый том (копируемые данные шифруются 'на лету' с ключом, отличным от используемого для обманной ОС).\n\nУчтите, что процесс выполняется на предзагрузочной стадии (до запуска Windows) и может занять много времени (несколько часов или даже дней, в зависимости от размера системного раздела и быстродействия ПК).\n\nВы сможете прервать этот процесс, выключить ПК, запустить ОС и затем возобновить его. Однако в случае прерывания, копирование системы придётся начать сначала (так как при клонировании содержимое системного раздела не должно изменяться).</entry>
<entry lang="uz" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">Вы хотите отменить весь процесс создания скрытой операционной системы?\n\nПримечание: в случае отмены вы НЕ сможете возобновить процесс.</entry>
<entry lang="uz" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">Вы хотите отменить пре-тест шифрования системы?</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="uz" key="SYS_DRIVE_NOT_ENCRYPTED">Судя по всему, системный раздел/диск не зашифрован (ни частично, ни полностью).</entry>
<entry lang="uz" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">Системный раздел/диск зашифрован (частично или полностью).\n\nПрежде чем продолжить, полностью дешифруйте системный раздел/диск. Чтобы это сделать, выберите в главном окне VeraCrypt меню 'Система' &gt; 'Permanently Decrypt System Partition/Drive'.</entry>
<entry lang="en" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">When the system partition/drive is encrypted (partially or fully), you cannot downgrade VeraCrypt (but you can upgrade it or reinstall the same version).</entry>
@@ -1285,17 +1283,17 @@
<entry lang="uz" key="TOKEN_DATA_OBJECT_LABEL">Имя файла</entry>
<entry lang="en" key="BOOT_PASSWORD_CACHE_KEYBOARD_WARNING">IMPORTANT: Please note that pre-boot authentication passwords are always typed using the standard US keyboard layout. Therefore, a volume that uses a password typed using any other keyboard layout may be impossible to mount using a pre-boot authentication password (note that this is not a bug in VeraCrypt). To allow such a volume to be mounted using a pre-boot authentication password, follow these steps:\n\n1) Click 'Select File' or 'Select Device' and select the volume.\n2) Select 'Volumes' &gt; 'Change Volume Password'.\n3) Enter the current password for the volume.\n4) Change the keyboard layout to English (US) by clicking the Language bar icon in the Windows taskbar and selecting 'EN English (United States)'.\n5) In VeraCrypt, in the field for the new password, type the pre-boot authentication password.\n6) Confirm the new password by retyping it in the confirmation field and click 'OK'.\nWARNING: Please keep in mind that if you follow these steps, the volume password will always have to be typed using the US keyboard layout (which is automatically ensured only in the pre-boot environment).</entry>
<entry lang="en" key="SYS_FAVORITES_KEYBOARD_WARNING">System favorite volumes will be mounted using the pre-boot authentication password. If any system favorite volume uses a different password, it will not be mounted.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Unmount All', auto-unmount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and unmount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be unmounted. Therefore, if you need e.g. to unmount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Unmount All' function, 'Auto-Unmount' functions, 'Unmount All' hot keys, etc.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Dismount All', auto-dismount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and dismount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be dismounted. Therefore, if you need e.g. to dismount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Dismount All' function, 'Auto-Dismount' functions, 'Dismount All' hot keys, etc.</entry>
<entry lang="en" key="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry>
<entry lang="uz" key="COMMAND_LINE_ERROR">Ошибка обработки командной строки.</entry>
<entry lang="uz" key="RESCUE_DISK">Диск восстановления</entry>
<entry lang="uz" key="SELECT_FILE_AND_MOUNT">Выбрать &amp;файл и смонтировать...</entry>
<entry lang="uz" key="SELECT_DEVICE_AND_MOUNT">Выбрать &amp;устройство и смонтировать...</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and dismount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="MOUNT_SYSTEM_FAVORITES_ON_BOOT">Mount system favorite volumes when Windows starts (in the initial phase of the startup procedure)</entry>
<entry lang="uz" key="MOUNTED_VOLUME_DIRTY">ВНИМАНИЕ: Файловая система тома, смонтированного как '%s', не была аккуратно размонтирована, и потому может содержать ошибки. Использование повреждённой файловой системы может привести к потере или порче данных.\n\nПримечание: прежде чем физически удалять или выключать устройство (например, флэш-накопитель USB или внешний жёсткий диск), на котором находится смонтированный том VeraCrypt, сначала всегда следует размонтировать этот том.\n\n\nХотите, чтобы Windows попыталась найти и исправить ошибки (если они есть) файловой системы?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly unmounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly dismounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="FILESYS_REPAIR_CONFIRM_BACKUP">Warning: Repairing a damaged filesystem using the Microsoft 'chkdsk' tool might cause loss of files in damaged areas. Therefore, it is recommended that you first back up the files stored on the VeraCrypt volume to another, healthy, VeraCrypt volume.\n\nDo you want to repair the filesystem now?</entry>
<entry lang="en" key="MOUNTED_CONTAINER_FORCED_READ_ONLY">Volume '%s' has been mounted as read-only because write access was denied.\n\nPlease make sure the security permissions of the file container allow you to write to it (right-click the container and select Properties &gt; Security).\n\nNote that, due to a Windows issue, you may see this warning even after setting the appropriate security permissions. This is not caused by a bug in VeraCrypt. A possible solution is to move your container to, e.g., your 'Documents' folder.\n\nIf you intend to keep your volume read-only, set the read-only attribute of the container (right-click the container and select Properties &gt; Read-only), which will suppress this warning.</entry>
<entry lang="uz" key="MOUNTED_DEVICE_FORCED_READ_ONLY">Том '%s' смонтирован как 'только для чтения', так как была отвергнута попытка записи.\n\nПроверьте, не обращаются ли к разделу/устройству, на котором расположен том, другие приложения (например, антивирусное ПО).</entry>
@@ -1306,8 +1304,8 @@
<entry lang="en" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Note that the number of threads is currently limited, which will affect benchmark results (worse performance).\n\nTo utilize the full potential of the processor(s), select 'Settings' > 'Performance' and disable the corresponding option.</entry>
<entry lang="en" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">Do you want VeraCrypt to attempt to disable write protection of the partition/drive?</entry>
<entry lang="en" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">WARNING: This setting may degrade performance.\n\nAre you sure you want to use this setting?</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-unmounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always unmount the volume in VeraCrypt first.\n\nUnexpected spontaneous unmount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-dismounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always dismount the volume in VeraCrypt first.\n\nUnexpected spontaneous dismount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="UNSUPPORTED_TRUECRYPT_FORMAT">This volume was created with TrueCrypt %x.%x but VeraCrypt supports only TrueCrypt volumes created with TrueCrypt 6.x/7.x series</entry>
<entry lang="uz" key="TEST">Тест</entry>
<entry lang="uz" key="KEYFILE">Ключевой файл</entry>
@@ -1453,7 +1451,7 @@
<entry lang="en" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Add All Mounted Volumes to Favorites...</entry>
<entry lang="en" key="TASKICON_PREF_MENU_ITEMS">Task Icon Menu Items</entry>
<entry lang="en" key="TASKICON_PREF_OPEN_VOL">Open Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_DISMOUNT_VOL">Dismount Mounted Volumes</entry>
<entry lang="en" key="DISK_FREE">Free space available: {0}</entry>
<entry lang="en" key="VOLUME_SIZE_HELP">Please specify the size of the container to create. Note that the minimum possible size of a volume is 292 KiB.</entry>
<entry lang="en" key="LINUX_CONFIRM_INNER_VOLUME_CALC">WARNING: You have selected a filesystem other than FAT for the outer volume.\nPlease Note that in this case VeraCrypt can't calculate the exact maximum allowed size for the hidden volume and it will use only an estimation that can be wrong.\nThus, it is your responsibility to use an adequate value for the size of the hidden volume so that it does not overlap the outer volume.\n\nDo you want to continue using the selected filesystem for the outer volume?</entry>
@@ -1483,14 +1481,14 @@
<entry lang="en" key="LINUX_DO_NOT_MOUNT">Do &amp;not mount</entry>
<entry lang="en" key="LINUX_MOUNT_AT_DIR">Mount at directory:</entry>
<entry lang="en" key="LINUX_SELECT">Se&amp;lect...</entry>
<entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount All Volumes When</entry>
<entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry>
<entry lang="en" key="LINUX_ENTERING_POWERSAVING">System is entering power saving mode</entry>
<entry lang="en" key="LINUX_LOGIN_ACTION">Actions to Perform when User Logs On</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Close all Explorer windows of volume being dismounted</entry>
<entry lang="en" key="LINUX_HOTKEYS">Hotkeys</entry>
<entry lang="en" key="LINUX_SYSTEM_HOTKEYS">System-Wide Hotkeys</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/unmount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_UNMOUNT">Display confirmation message box after unmount</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/dismount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_DISMOUNT">Display confirmation message box after dismount</entry>
<entry lang="en" key="LINUX_VC_QUITS">VeraCrypt quits</entry>
<entry lang="en" key="LINUX_OPEN_FINDER">Open Finder window for successfully mounted volume</entry>
<entry lang="en" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Please note that this setting takes effect only if use of the kernel cryptographic services is disabled.</entry>
@@ -1510,11 +1508,11 @@
<entry lang="en" key="LINUX_DYNAMIC_NOTICE">Please note that if your operating system does not allocate files from the beginning of the free space, the maximum possible hidden volume size may be much smaller than the size of the free space on the outer volume. This is not a bug in VeraCrypt but a limitation of the operating system.</entry>
<entry lang="en" key="LINUX_MAX_HIDDEN_SIZE">Maximum possible hidden volume size for this volume is {0}.</entry>
<entry lang="en" key="LINUX_OPEN_OUTER_VOL">Open Outer Volume</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not unmount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not dismount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">Error: You are trying to encrypt a system drive.\n\nVeraCrypt can encrypt a system drive only under Windows.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">Error: You are trying to encrypt a system partition.\n\nVeraCrypt can encrypt system partitions only under Windows.</entry>
<entry lang="en" key="LINUX_WARNING_FORMAT_DESTROY_FS">WARNING: Formatting of the device will destroy all data on filesystem '{0}'.\n\nDo you want to continue?</entry>
<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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please dismount '{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>
@@ -1522,8 +1520,7 @@
<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>
<entry lang="en" key="LINUX_VOL_DISMOUNTED">Volume {0} has been dismounted.</entry>
<entry lang="en" key="LINUX_OOM">Out of memory.</entry>
<entry lang="en" key="LINUX_CANT_GET_ADMIN_PRIV">Failed to obtain administrator privileges</entry>
<entry lang="en" key="LINUX_COMMAND_GET_ERROR">Command {0} returned error {1}.</entry>
@@ -1553,7 +1550,7 @@
<entry lang="en" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Error: The drive uses a sector size other than 512 bytes.\n\nDue to limitations of components available on your platform, partition/device-hosted volumes cannot be created/used on the drive.\n\nPossible solutions:\n- Create a file-hosted volume (container) on the drive.\n- Use a drive with 512-byte sectors.\n- Use VeraCrypt on another platform.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">The host file/device is already in use.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Volume slot unavailable.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires macFUSE 2.5 or above.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires OSXFUSE 2.5 or above.</entry>
<entry lang="en" key="EXCEPTION_OCCURRED">Exception occurred</entry>
<entry lang="en" key="ENTER_PASSWORD">Enter password</entry>
<entry lang="en" key="ENTER_TC_VOL_PASSWORD">Enter VeraCrypt Volume Password</entry>
@@ -1570,124 +1567,6 @@
<entry lang="en" key="VOLUME_HOST_IN_USE">WARNING: The host file/device {0} is already in use!\n\nIgnoring this can cause undesired results including system instability. All applications that might be using the host file/device should be closed before mounting the volume.\n\nContinue mounting?</entry>
<entry lang="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
<entry lang="en" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">VeraCrypt cannot be upgraded because the system partition/drive was encrypted using an algorithm that is not supported anymore.\nPlease decrypt your system before upgrading VeraCrypt and then encrypt it again.</entry>
<entry lang="en" key="LINUX_EX2MSG_TERMINALNOTFOUND">Supported terminal application could not be found, you need either xterm, konsole or gnome-terminal (with dbus-x11).</entry>
<entry lang="en" key="IDM_MOUNT_NO_CACHE">Mount Without Cache</entry>
<entry lang="en" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nExpand a VeraCrypt volume on the fly without reformatting\n\n\nAll kind of volumes (container files, disks and partitions) formatted with NTFS are supported. The only condition is that there must be enough free space on the host drive or host device of the VeraCrypt volume.\n\nDo not use this software to expand an outer volume containing a hidden volume, because this destroys the hidden volume!\n</entry>
<entry lang="en" key="IDC_STEPSEXPAND">1. Select the VeraCrypt volume to be expanded\n2. Click the 'Mount' button</entry>
<entry lang="en" key="IDT_VOL_NAME">Volume: </entry>
<entry lang="en" key="IDT_FILE_SYS">File system: </entry>
<entry lang="en" key="IDT_CURRENT_SIZE">Current size: </entry>
<entry lang="en" key="IDT_NEW_SIZE">New size: </entry>
<entry lang="en" key="IDT_NEW_SIZE_BOX_TITLE">Enter new volume size</entry>
<entry lang="en" key="IDC_INIT_NEWSPACE">Fill new space with random data</entry>
<entry lang="en" key="IDC_QUICKEXPAND">Quick Expand</entry>
<entry lang="en" key="IDT_INIT_SPACE">Fill new space: </entry>
<entry lang="en" key="EXPANDER_FREE_SPACE">%s free space available on host drive</entry>
<entry lang="en" key="EXPANDER_HELP_DEVICE">This is a device-based VeraCrypt volume.\n\nThe new volume size will be choosen automatically as the size of the host device.</entry>
<entry lang="en" key="EXPANDER_HELP_FILE">Please specify the new size of the VeraCrypt volume (must be at least %I64u KB larger than the current size).</entry>
<entry lang="en" key="QUICK_EXPAND_WARNING">WARNING: You should use Quick Expand only in the following cases:\n\n1) The device where the file container is located contains no sensitive data and you do not need plausible deniability.\n2) The device where the file container is located has already been securely and fully encrypted.\n\nAre you sure you want to use Quick Expand?</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT">IMPORTANT: Move your mouse as randomly as possible within this window. The longer you move it, the better. This significantly increases the cryptographic strength of the encryption keys. Then click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT_LEGACY">Click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_FINISH_ERROR">Error: volume expansion failed.</entry>
<entry lang="en" key="EXPANDER_FINISH_ABORT">Error: operation aborted by user.</entry>
<entry lang="en" key="EXPANDER_FINISH_OK">Finished. Volume successfully expanded.</entry>
<entry lang="en" key="EXPANDER_CANCEL_WARNING">Warning: Volume expansion is in progress!\n\nStopping now may result in a damaged volume.\n\nDo you really want to cancel?</entry>
<entry lang="en" key="EXPANDER_STARTING_STATUS">Starting volume expansion ...\n</entry>
<entry lang="en" key="EXPANDER_HIDDEN_VOLUME_ERROR">An outer volume containing a hidden volume can't be expanded, because this destroys the hidden volume.\n</entry>
<entry lang="en" key="EXPANDER_SYSTEM_VOLUME_ERROR">A VeraCrypt system volume can't be expanded.</entry>
<entry lang="en" key="EXPANDER_NO_FREE_SPACE">Not enough free space to expand the volume</entry>
<entry lang="en" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Warning: The container file is larger than the VeraCrypt volume area. The data after the VeraCrypt volume area will be overwritten.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_FAT">Warning: The VeraCrypt volume contains a FAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_EXFAT">Warning: The VeraCrypt volume contains an exFAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_UNKNOWN_FS">Warning: The VeraCrypt volume contains an unknown or no file system!\n\nOnly the VeraCrypt volume itself will be expanded, the file system remains unchanged.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">New volume size too small, must be at least %I64u kB larger than the current size.</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">New volume size too large, not enough space on host drive.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Maximum file size of %I64u MB on host drive exceeded.</entry>
<entry lang="en" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Error: Failed to get necessary privileges to enable Quick Expand!\nPlease uncheck Quick Expand option and try again.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Maximum VeraCrypt volume size of %I64u TB exceeded!\n</entry>
<entry lang="en" key="FULL_FORMAT">Full Format</entry>
<entry lang="en" key="FAST_CREATE">Fast Create</entry>
<entry lang="en" key="WARN_FAST_CREATE">WARNING: You should use Fast Create only in the following cases:\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 Fast Create?</entry>
<entry lang="en" key="IDC_ENABLE_EMV_SUPPORT">Enable EMV Support</entry>
<entry lang="en" key="COMMAND_APDU_INVALID">The APDU command sent to the card is not valid.</entry>
<entry lang="en" key="EXTENDED_APDU_UNSUPPORTED">Extended APDU commands cannot be used with the current token.</entry>
<entry lang="en" key="SCARD_MODULE_INIT_FAILED">Error when loading the WinSCard / PCSC library.</entry>
<entry lang="en" key="EMV_UNKNOWN_CARD_TYPE">The card in the reader is not a supported EMV card.</entry>
<entry lang="en" key="EMV_SELECT_AID_FAILED">The AID of the card in the reader could not be selected.</entry>
<entry lang="en" key="EMV_ICC_CERT_NOTFOUND">ICC Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_ISSUER_CERT_NOTFOUND">Issuer Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_CPLC_NOTFOUND">CPLC was not found in the EMV card.</entry>
<entry lang="en" key="EMV_PAN_NOTFOUND">No Primary Account Number (PAN) found in the EMV card.</entry>
<entry lang="en" key="INVALID_EMV_PATH">EMV path is invalid.</entry>
<entry lang="en" key="EMV_KEYFILE_DATA_NOTFOUND">Unable to build a keyfile from the EMV card's data.\n\nOne of the following is missing:\n- ICC Public Key Certificate.\n- Issuer Public Key Certificate.\n- CPLC data.</entry>
<entry lang="en" key="SCARD_W_REMOVED_CARD">No card in the reader.\n\nPlease make sure the card is correctly slotted.</entry>
<entry lang="en" key="FORMAT_EXTERNAL_FAILED">Windows format.com command failed to format the volume as NTFS/exFAT/ReFS: Error 0x%.8X.\n\nFalling back to using Windows FormatEx API.</entry>
<entry lang="en" key="FORMATEX_API_FAILED">Windows FormatEx API failed to format the volume as NTFS/exFAT/ReFS.\n\nFailure status = %s.</entry>
<entry lang="en" key="EXPANDER_WRITING_RANDOM_DATA">Writing random data to new space ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Writing re-encrypted backup header ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Writing re-encrypted primary header ...\n</entry>
<entry lang="en" key="EXPANDER_WIPING_OLD_HEADER">Wiping old backup header ...\n</entry>
<entry lang="en" key="EXPANDER_MOUNTING_VOLUME">Mounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_UNMOUNTING_VOLUME">Unmounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_EXTENDING_FILESYSTEM">Extending file system ...\n</entry>
<entry lang="en" key="PARTIAL_SYSENC_MOUNT_READONLY">Warning: The system partition you attempted to mount was not fully encrypted. As a safety measure to prevent potential corruption or unwanted modifications, volume '%s' was mounted as read-only.</entry>
<entry lang="en" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Important information on using third-party file extensions</entry>
<entry lang="en" key="IDC_DISABLE_MEMORY_PROTECTION">Disable memory protection for Accessibility tools compatibility</entry>
<entry lang="en" key="DISABLE_MEMORY_PROTECTION_WARNING">WARNING: Disabling memory protection significantly reduces security. Enable this option ONLY if you rely on Accessibility tools, like Screen Readers, to interact with VeraCrypt's UI.</entry>
<entry lang="uz" key="LINUX_LANGUAGE">Язык</entry>
<entry lang="en" key="LINUX_SELECT_SYS_DEFAULT_LANG">Select system's default language</entry>
<entry lang="en" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">For the language change to come into effect, VeraCrypt needs to be restarted.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE">WARNING: The volume's master key is vulnerable to an attack that compromises data security.\n\nPlease create a new volume and transfer the data to it.</entry>
<entry lang="en" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">WARNING: The encrypted system's master key is vulnerable to an attack that compromises data security.\nPlease decrypt the system partition/drive and then re-encrypt it.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">WARNING: The volume's master key has a security vulnerability.</entry>
<entry lang="en" key="MOUNTPOINT_BLOCKED">ERROR: The volume mount point is blocked because it overrides a protected system directory.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="MOUNTPOINT_NOTALLOWED">ERROR: The volume mount point is not allowed because it overrides a directory that is part of the PATH environment variable.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="INSECURE_MODE">[INSECURE MODE]</entry>
<entry lang="en" key="IDC_DISABLE_SCREEN_PROTECTION">Disable protection against screenshots and screen recording</entry>
<entry lang="en" key="DISABLE_SCREEN_PROTECTION_WARNING">WARNING: Disabling screen protection significantly reduces security. Enable this option ONLY if you have a specific need to capture VeraCrypt's interface. This may expose sensitive data to screenshot tools and screen recording features such as Windows 11 Recall.</entry>
<entry lang="en" key="MEMORY_COST">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="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>
<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>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+56 -177
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
@@ -135,8 +135,8 @@
<entry lang="vi" key="IDC_FAVORITE_REMOVE">Gỡ bỏ</entry>
<entry lang="en" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Use favorite label as Explorer drive label</entry>
<entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key unmount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key dismount</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_PLAY_SOUND">Play system notification sound after successful hot-key dismount</entry>
<entry lang="vi" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="en" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="vi" key="IDC_HK_MOD_SHIFT">Shift</entry>
@@ -156,12 +156,12 @@
<entry lang="en" key="IDC_PIM_HELP">(Empty or 0 for default iterations)</entry>
<entry lang="vi" key="IDC_PREF_BKG_TASK_ENABLE">Được bật lên</entry>
<entry lang="vi" key="IDC_PREF_CACHE_PASSWORDS">Tạm trữ mật mã trong bộ nhớ của trình điều khiển</entry>
<entry lang="vi" key="IDC_PREF_UNMOUNT_INACTIVE">Tự-tháo tập đĩa xuống sau khi không có dữ liệu nào được đọc/viết vào nó trong</entry>
<entry lang="vi" key="IDC_PREF_UNMOUNT_LOGOFF">Người dùng đăng xuất</entry>
<entry lang="en" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="vi" key="IDC_PREF_UNMOUNT_POWERSAVING">Đang vào phương thức tiết kiệm năng lượng</entry>
<entry lang="vi" key="IDC_PREF_UNMOUNT_SCREENSAVER">Bảo vệ màn hình được khởi chạy</entry>
<entry lang="vi" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Bắt buộc tự-tháo xuống ngay cả nếu tập đĩa có chứa tập tin hay thư mục còn mở</entry>
<entry lang="vi" key="IDC_PREF_DISMOUNT_INACTIVE">Tự-tháo tập đĩa xuống sau khi không có dữ liệu nào được đọc/viết vào nó trong</entry>
<entry lang="vi" key="IDC_PREF_DISMOUNT_LOGOFF">Người dùng đăng xuất</entry>
<entry lang="en" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="vi" key="IDC_PREF_DISMOUNT_POWERSAVING">Đang vào phương thức tiết kiệm năng lượng</entry>
<entry lang="vi" key="IDC_PREF_DISMOUNT_SCREENSAVER">Bảo vệ màn hình được khởi chạy</entry>
<entry lang="vi" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Bắt buộc tự-tháo xuống ngay cả nếu tập đĩa có chứa tập tin hay thư mục còn mở</entry>
<entry lang="vi" key="IDC_PREF_LOGON_MOUNT_DEVICES">Nạp tất cả các tập đĩa VeraCrypt có thiết bị làm chủ lên</entry>
<entry lang="vi" key="IDC_PREF_LOGON_START">Bắt đầu Tác vụ Phụ của VeraCrypt</entry>
<entry lang="vi" key="IDC_PREF_MOUNT_READONLY">Nạp các tập đĩa kiểu chỉ-đọc lên</entry>
@@ -169,7 +169,7 @@
<entry lang="vi" key="IDC_PREF_OPEN_EXPLORER">Mở cửa sổ Explorer của tập đĩa được nạp lên thành công</entry>
<entry lang="en" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">Temporarily cache password during "Mount Favorite Volumes" operations</entry>
<entry lang="en" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Use a different taskbar icon when there are mounted volumes</entry>
<entry lang="vi" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Xóa mật mã được tạm trữ khi tự-tháo xuống</entry>
<entry lang="vi" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Xóa mật mã được tạm trữ khi tự-tháo xuống</entry>
<entry lang="vi" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Xóa mật mã được tạm trữ khi ra khỏi</entry>
<entry lang="vi" key="IDC_PRESERVE_TIMESTAMPS">Duy trì dấu giờ của các bộ chứa tập tin</entry>
<entry lang="vi" key="IDC_RESET_HOTKEYS">Đặt lại</entry>
@@ -269,14 +269,14 @@
<entry lang="en" key="IDT_ACCELERATION_OPTIONS">Hardware Acceleration</entry>
<entry lang="vi" key="IDT_ASSIGN_HOTKEY">Phím tắt</entry>
<entry lang="vi" key="IDT_AUTORUN">Cấu hình Tự chạy (autorun.inf)</entry>
<entry lang="vi" key="IDT_AUTO_UNMOUNT">Tự-Tháo xuống</entry>
<entry lang="vi" key="IDT_AUTO_UNMOUNT_ON">Tháo tất cả xuống khi:</entry>
<entry lang="vi" key="IDT_AUTO_DISMOUNT">Tự-Tháo xuống</entry>
<entry lang="vi" key="IDT_AUTO_DISMOUNT_ON">Tháo tất cả xuống khi:</entry>
<entry lang="vi" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Các Tùy chọn của Màn hình Bộ tải Khởi nạp</entry>
<entry lang="vi" key="IDT_CONFIRM_PASSWORD">Xác nhận mật mã:</entry>
<entry lang="vi" key="IDT_CURRENT">Hiện tại</entry>
<entry lang="vi" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">Hiển thị thông điệp riêng này trong màn hình chứng thực tiền khởi động (tối đa 24 ký tự):</entry>
<entry lang="vi" key="IDT_DEFAULT_MOUNT_OPTIONS">Tùy chọn của Nạp mặc định</entry>
<entry lang="vi" key="IDT_UNMOUNT_ACTION">Tùy chọn phím nóng</entry>
<entry lang="vi" key="IDT_DISMOUNT_ACTION">Tùy chọn phím nóng</entry>
<entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry>
<entry lang="en" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Enable extended disk control codes support</entry>
<entry lang="en" key="IDT_FAVORITE_LABEL">Label of selected favorite volume:</entry>
@@ -291,11 +291,10 @@
<entry lang="vi" key="IDT_NEW_PASSWORD">Mật mã:</entry>
<entry lang="en" key="IDT_PARALLELIZATION_OPTIONS">Thread-Based Parallelization</entry>
<entry lang="vi" key="IDT_PKCS11_LIB_PATH">Đường dẫn Thư viện của PKCS #11</entry>
<entry lang="vi" key="IDT_KDF">KDF:</entry>
<entry lang="en" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="vi" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="en" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry>
<entry lang="vi" key="IDT_PW_CACHE_OPTIONS">Tạm trữ Mật mã</entry>
<entry lang="vi" key="IDT_SECURITY_OPTIONS">Tùy chọn bảo mật</entry>
<entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry>
<entry lang="vi" key="IDT_TASKBAR_ICON">Tác vụ Phụ của VeraCrypt</entry>
<entry lang="vi" key="IDT_TRAVELER_MOUNT">Tập đĩa VeraCrypt để nạp lên (tương quan với gốc của đĩa di chuyển):</entry>
<entry lang="vi" key="IDT_TRAVEL_INSERTION">Khi chèn đĩa di chuyển vào:</entry>
@@ -357,7 +356,7 @@
<entry lang="vi" key="IDT_KEYFILE_WARNING">CẢNH BÁO: Nếu bạn mất một tập tin khóa hoặc nếu bất cứ phần nào trong 1024 kilobytes đầu của nó thay đổi thì sẽ không thể nào nạp lên các tập đĩa nào dùng tập tin khóa được!</entry>
<entry lang="vi" key="IDT_KEY_UNIT">bits</entry>
<entry lang="vi" key="IDT_NUMBER_KEYFILES">Số tập tin khóa:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size:</entry>
<entry lang="en" key="IDT_KEYFILES_SIZE">Keyfiles size (in Bytes):</entry>
<entry lang="en" key="IDT_KEYFILES_BASE_NAME">Keyfiles base name:</entry>
<entry lang="vi" key="IDT_LANGPACK_AUTHORS">Dịch bởi:</entry>
<entry lang="vi" key="IDT_PLAINTEXT">Kích cỡ chữ thường:</entry>
@@ -390,7 +389,6 @@
<entry lang="vi" key="ADMINISTRATOR">Quản lý</entry>
<entry lang="vi" key="ADMIN_PRIVILEGES_DRIVER">Để nạp trình điều khiển của VeraCrypt lên, bạn cần đăng nhập vào một trương mục có quyền quản lý.</entry>
<entry lang="vi" key="ADMIN_PRIVILEGES_WARN_DEVICES">Xin lưu ý là để mã hóa/Giải/định dạng một phân vùng/thiết bị thì bạn cần đăng nhập vào một trương mục có quyền quản lý.\n\nChuyện này không áp dụng với các tập đĩa có tập tin làm chủ.</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="vi" key="ADMIN_PRIVILEGES_WARN_HIDVOL">Để cấu tạo một tập đĩa ẩn bạn cần đăng nhập vào một trương mục có quyền quản lý.\n\nTiếp tục không?</entry>
<entry lang="vi" key="ADMIN_PRIVILEGES_WARN_NTFS">Xin lưu ý là để định dạng tập đĩa theo dạng NTFS bạn cần đăng nhập vào một trương mục có quyền quản lý.\n\nKhông thôi có quyền quản lý, bạn có thể định dạng tập đĩa theo dạng FAT.</entry>
<entry lang="vi" key="AES_HELP">Mã hóa được chấp thuận bởi FIPS (Rijndael, phát hành năm 1998) có thể được sử dụng bởi các bộ và cơ quan Hoa Kỳ để bảo vệ những tin tức mật cho đến mức tối mật. 256-bit key, 128-bit block, 14 rounds (AES-256). Phương thức của thao tác là XTS.</entry>
@@ -423,8 +421,8 @@
<entry lang="vi" key="DEVICE_FREE_PB">Kích cỡ của %s là %.2f PB</entry>
<entry lang="vi" key="DEVICE_IN_USE_FORMAT">CẢNH BÁO: Thiết bị/phân vùng đang được dùng bởi hệ điều hành hoặc các ứng dụng. Định dạng thiết bị/phân vùng có thể làm cho dữ liệu bị hỏng và hệ thống không ổn định.\n\nTiếp tục không?</entry>
<entry lang="vi" key="DEVICE_IN_USE_INPLACE_ENC">Cảnh báo: Phân vùng đang được dùng bởi hệ điều hành hoặc các ứng dụng. Bạn nên đóng bất cứ ứng dụng nào có thể đang sử dụng phân vùng này (kể luôn nhu liệu chống vi-rút).\n\nTiếp tục không?</entry>
<entry lang="vi" key="FORMAT_CANT_UNMOUNT_FILESYS">Lỗi: Thiết bị/phân vùng có chứa một hệ thống tập tin mà không thể tháo xuống được. Hệ thống tập tin có thể đang được dùng bởi hệ điều hành. Định dạng thiết bị/phân vùng sẽ rất có thể làm cho dữ liệu bị hỏng và hệ thống bị bất ổn.\n\nĐể giải quyết vấn đề này, chúng tôi đề nghị trước tiên bạn xóa bỏ phân vùng và sau đó cấu tạo nó lại mà không có định dạng. Để làm thế, theo những bước sau đây:\n1) Nhấn phải vào biểu tượng 'Computer' (hoặc 'My Computer') trong 'Trình đơn Start' và chọn 'Quản lý'. Cửa sổ 'Computer Management' sẽ hiện ra.\n2) Trong cửa sổ 'Computer Management', chọn 'Lưu trữ' &gt; 'Disk Management'.\n3) Nhấn phải vào phân vùng mà bạn muốn mã hóa và chọn 'Xóa Phân vùng', hay 'Xóa Tập đĩa', hay 'Xóa Ổ đĩa theo Lôgic'.\n4) Nhấn 'Có'. Nếu Windows yêu cầu bạn bắt đầu máy lại thì làm vậy. Sau đó, lập lại các bước 1 và 2 và tiếp tục từ bước 5.\n5) Nhấn phải vào khu vực chỗ chưa được phân phối/trống và chọn 'Phân vùng Mới', hay 'Tập đĩa Đơn giản Mới', hay 'Ổ đĩa Lôgic Mới'.\n6) Cửa sổ 'Trợ lý Phân vùng Mới' hay 'Trợ lý Tập đĩa Đơn giản Mới' sẽ hiện ra bây giờ; theo những chỉ dẫn của nó. Trên trang trợ lý mang tựa đề 'Định dạng Phân vùng', chọn 'Đừng định dạng phân vùng này' hay 'Đừng định dạng tập đĩa này'. Trên cùng trợ lý, nhấn 'Kế tiếp' và sau đó 'Kết thúc'.\n7) Lưu ý là đường dẫn thiết bị mà bạn đã chọn trong VeraCrypt bây giờ có thể sai. Vì vậy, ra khỏi Trợ lý Cấu tạo Tập đĩa VeraCrypt (nếu nó vẫn còn chạy) và sau đó bắt đầu lại.\n8) Thử mã hóa thiết bị/phân vùng lại.\n\nNếu VeraCrypt nhiều lần không mã hóa thiết bị/phân vùng được thì thay vào đó, bạn có thể tính đến chuyện cấu tạo một bộ chứa tập tin.</entry>
<entry lang="vi" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Lỗi: Hệ thống tập tin không thể được khóa và/hay tháo xuống. Nó có thể đang được dùng bởi hệ thống hoặc các ứng dụng (ví dụ như nhu liệu chống vi rút). Mã hóa phân vùng có thể làm cho dữ liệu bị hỏng và hệ thống không ổn định.\n\nXin đóng bất cứ ứng dụng nào có thể đang dùng hệ thống tập tin (kể luôn nhu liệu chống vi rút) và thử lại. Nếu nó không giúp được thì xin theo những bước bên dưới.</entry>
<entry lang="vi" key="FORMAT_CANT_DISMOUNT_FILESYS">Lỗi: Thiết bị/phân vùng có chứa một hệ thống tập tin mà không thể tháo xuống được. Hệ thống tập tin có thể đang được dùng bởi hệ điều hành. Định dạng thiết bị/phân vùng sẽ rất có thể làm cho dữ liệu bị hỏng và hệ thống bị bất ổn.\n\nĐể giải quyết vấn đề này, chúng tôi đề nghị trước tiên bạn xóa bỏ phân vùng và sau đó cấu tạo nó lại mà không có định dạng. Để làm thế, theo những bước sau đây:\n1) Nhấn phải vào biểu tượng 'Computer' (hoặc 'My Computer') trong 'Trình đơn Start' và chọn 'Quản lý'. Cửa sổ 'Computer Management' sẽ hiện ra.\n2) Trong cửa sổ 'Computer Management', chọn 'Lưu trữ' &gt; 'Disk Management'.\n3) Nhấn phải vào phân vùng mà bạn muốn mã hóa và chọn 'Xóa Phân vùng', hay 'Xóa Tập đĩa', hay 'Xóa Ổ đĩa theo Lôgic'.\n4) Nhấn 'Có'. Nếu Windows yêu cầu bạn bắt đầu máy lại thì làm vậy. Sau đó, lập lại các bước 1 và 2 và tiếp tục từ bước 5.\n5) Nhấn phải vào khu vực chỗ chưa được phân phối/trống và chọn 'Phân vùng Mới', hay 'Tập đĩa Đơn giản Mới', hay 'Ổ đĩa Lôgic Mới'.\n6) Cửa sổ 'Trợ lý Phân vùng Mới' hay 'Trợ lý Tập đĩa Đơn giản Mới' sẽ hiện ra bây giờ; theo những chỉ dẫn của nó. Trên trang trợ lý mang tựa đề 'Định dạng Phân vùng', chọn 'Đừng định dạng phân vùng này' hay 'Đừng định dạng tập đĩa này'. Trên cùng trợ lý, nhấn 'Kế tiếp' và sau đó 'Kết thúc'.\n7) Lưu ý là đường dẫn thiết bị mà bạn đã chọn trong VeraCrypt bây giờ có thể sai. Vì vậy, ra khỏi Trợ lý Cấu tạo Tập đĩa VeraCrypt (nếu nó vẫn còn chạy) và sau đó bắt đầu lại.\n8) Thử mã hóa thiết bị/phân vùng lại.\n\nNếu VeraCrypt nhiều lần không mã hóa thiết bị/phân vùng được thì thay vào đó, bạn có thể tính đến chuyện cấu tạo một bộ chứa tập tin.</entry>
<entry lang="vi" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Lỗi: Hệ thống tập tin không thể được khóa và/hay tháo xuống. Nó có thể đang được dùng bởi hệ thống hoặc các ứng dụng (ví dụ như nhu liệu chống vi rút). Mã hóa phân vùng có thể làm cho dữ liệu bị hỏng và hệ thống không ổn định.\n\nXin đóng bất cứ ứng dụng nào có thể đang dùng hệ thống tập tin (kể luôn nhu liệu chống vi rút) và thử lại. Nếu nó không giúp được thì xin theo những bước bên dưới.</entry>
<entry lang="vi" key="DEVICE_IN_USE_INFO">CẢNH BÁO: Một vài thiết bị/phân vùng được nạp lên đã được đang sử dụng!\n\nBỏ mặc chuyện này có thể gây ra những kết quả không mong muốn luôn cả hệ thống không ổn định.\n\nChúng tôi cực lực khuyên bạn nên đóng bất cứ ứng dụng nào có thể dùng những thiết bị/phân vùng này.</entry>
<entry lang="vi" key="DEVICE_PARTITIONS_ERR">Thiết bi được chọn có chứa các phân vùng.\n\nĐịnh dạng thiết bị có thể làm cho hệ thống bất ổn và/hay dữ liệu bị hỏng. Xin chọn một phân vùng trong thiết bị hoặc bỏ hết các phân vùng trong thiết bị để VeraCrypt có thể định dạng nó một cách an toàn.</entry>
<entry lang="vi" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">Thiết bị vô hệ được chọn có chứa các phân vùng.\n\nCác tập đĩa VeraCrypt được mã hóa có thiết bị làm chủ có thể được cấu tạo bên trong các thiết bị không có chứa bất cứ phân vùng nào (kể luôn các đĩa cứng và ổ đĩa thể rắn). Một thiết bị có chứa các phân vùng chỉ có thể được mã hóa toàn bộ tại chỗ (dùng một khóa chính đơn độc) nếu nó là ổ đĩa nơi mà Windows được cài đặt và nơi mà nó khởi động.\n\nNếu bạn muốn mã hóa thiết bị vô hệ được chọn bằng cách dùng một khóa chính đơn độc thì bạn sẽ cần phải gỡ bỏ tất cả các phân vùng trong thiết bị trước để cho VeraCrypt định dạng nó một cách an toàn (định dạng một thiết bị có chứa các phân vùng có thể làm cho hệ thống bất ổn và/hay dữ liệu bị hỏng). Một cách khác, bạn có thể mã hóa mỗi phân vùng trong ổ đĩa riêng biệt nhau (mỗi phân vùng sẽ được mã hóa bằng cách dùng một khóa chính khác nhau).\n\nLưu ý: Nếu bạn muốn gỡ bỏ tất cả các phân vùng khỏi một đĩa GPT, bạn có thể cần phải hoán chuyển nó thành một đĩa MBR (ví dụ như dùng công cụ trong Computer Management) để gỡ bỏ các phân vùng ẩn.</entry>
@@ -590,7 +588,7 @@
<entry lang="vi" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">Lỗi: Những tập tin bạn đã chép vào tập đĩa bên ngoài chiếm quá nhiều chỗ. Vì vậy, không còn đủ chỗ trống trong tập đĩa bên ngoài cho tập đĩa ẩn.\n\nLưu ý là tập đĩa ẩn phải lớn bằng phân vùng hệ thống (phân vùng nơi mà hệ điều hành hiện đang chạy được cài đặt). Lý do là hệ điều hành ẩn cần được cấu tạo bằng cách chép nội dung của phân vùng hệ thống phân vùng vào tập đĩa ẩn.\n\n\nQuá trình cấu tạo hệ điều hành ẩn không thể tiếp tục.</entry>
<entry lang="vi" key="OPENFILES_DRIVER">Trình điều khiển không thể tháo tập đĩa xuống được. Một vài tập tin nằm trong tập tin có thể vẫn còn đang được mở.</entry>
<entry lang="vi" key="OPENFILES_LOCK">Không thể khóa tập đĩa được. Vẫn còn có các tập tin đang được mở trong tập đĩa. Vì thế nó không thể được tháo xuống.</entry>
<entry lang="vi" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt không thể khóa tập đĩa được vì nó đang được sử dụng bởi hệ thống hoặc các ứng dụng (có thể có các tập tin đang được mở trong tập đĩa).\n\nBạn có muốn buộc tháo tập đĩa xuống không?</entry>
<entry lang="vi" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt không thể khóa tập đĩa được vì nó đang được sử dụng bởi hệ thống hoặc các ứng dụng (có thể có các tập tin đang được mở trong tập đĩa).\n\nBạn có muốn buộc tháo tập đĩa xuống không?</entry>
<entry lang="vi" key="OPEN_VOL_TITLE">Chọn một Tập đĩa VeraCrypt</entry>
<entry lang="vi" key="OPEN_TITLE">Xác định Đường dẫn và Tên Tập tin</entry>
<entry lang="vi" key="SELECT_PKCS11_MODULE">Chọn Thư viện PKCS #11</entry>
@@ -613,7 +611,7 @@
<entry lang="en" key="FAVORITE_PIM_CHANGED">This volume is registered as a System Favorite and its PIM was changed.\nDo you want VeraCrypt to automatically update the System Favorite configuration (administrator privileges required)?\n\nPlease note that if you answer no, you'll have to update the System Favorite manually.</entry>
<entry lang="vi" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">QUAN TRỌNG: Nếu bạn đã không hủy bỏ Đĩa Cứu hộ VeraCrypt của bạn, hệ thống phân vùng/ổ đĩa của bạn vẫn có thể được giải mã khi dùng mật mã cũ (bằng cách khởi động Đĩa Cứu hộ VeraCrypt và nhập vào mật mã cũ). Bạn nên cấu tạo một Đĩa Cứu hộ VeraCrypt mới và sau đó hủy bỏ cái cũ.\n\nBạn có muốn cấu tạo một Đĩa Cứu hộ VeraCrypt mới không?</entry>
<entry lang="vi" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">Lưu ý là Đĩa Cứu hộ VeraCrypt của bạn vẫn còn dùng thuật toán trước đó. Nếu bạn cho là thuật toán trước đó không an toàn thì bạn nên cấu tạo một Đĩa Cứu hộ VeraCrypt mới và sau đó hủy bỏ cái cũ.\n\nBạn có muốn cấu tạo một Đĩa Cứu hộ VeraCrypt mới không?</entry>
<entry lang="en" key="KEYFILES_NOTE">Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="en" key="KEYFILES_NOTE">Any kind of file (for example, .mp3, .jpg, .zip, .avi) may be used as a VeraCrypt keyfile. Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="vi" key="KEYFILE_CHANGED">(Các) tập tin khóa được thêm vào/bỏ ra thành công.</entry>
<entry lang="vi" key="KEYFILE_EXPORTED">Tập tin khóa được xuất.</entry>
<entry lang="vi" key="PKCS5_PRF_CHANGED">Khóa đầu của thuật toán chuyển hóa được đặt thành công.</entry>
@@ -729,7 +727,7 @@
<entry lang="vi" key="DLL_FILES">Những Mô-đun Thư viện</entry>
<entry lang="vi" key="FORMAT_NTFS_STOP">Định dạng theo NTFS không thể tiếp tục được.</entry>
<entry lang="vi" key="CANT_MOUNT_VOLUME">Không thể nạp tập đĩa lên được.</entry>
<entry lang="vi" key="CANT_UNMOUNT_VOLUME">Không thể tháo tập đĩa xuống được.</entry>
<entry lang="vi" key="CANT_DISMOUNT_VOLUME">Không thể tháo tập đĩa xuống được.</entry>
<entry lang="vi" key="FORMAT_NTFS_FAILED">Windows không định dạng tập đĩa theo kiểu NTFS được.\n\nXin chọn một loại hệ thống tập tin khác (nếu có thể) và thử lại. Một cách khác, bạn có thể để tập đĩa không được định dạng (chọn 'None' làm hệ thống tập tin), ra khỏi trợ lý này, nạp tập đĩa lên, và sau đó dùng một hệ thống hay một công cụ của hãng khác để định dạng tập đĩa được nạp (tập đĩa vẫn sẽ được mã hóa).</entry>
<entry lang="vi" key="FORMAT_NTFS_FAILED_ASK_FAT">Windows không định dạng tập đĩa theo kiểu NTFS được.\n\nThay vì vậy, bạn có muốn định dạng tập đĩa theo dạng FAT không?</entry>
<entry lang="vi" key="DEFAULT">Mặc định</entry>
@@ -771,7 +769,7 @@
<entry lang="vi" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">Một lỗi đã ngăn cản VeraCrypt mã hóa phân vùng. Xin giải quyết bất cứ vấn đề nào đã được báo trước và sau đó thử lại. Nếu vấn đề vẫn còn, theo những bước bên dưới có thể giúp được.</entry>
<entry lang="vi" key="INPLACE_ENC_GENERIC_ERR_RESUME">Một lỗi đã ngăn cản VeraCrypt bắt đầu lại quá trình mã hóa phân vùng.\n\nXin giải quyết bất cứ vấn đề nào đã được báo trước và sau đó thử bắt đầu quá trình lại lần nữa. Lưu ý là tập đĩa không thể được nạp cho đến khi nó mã hóa hoàn toàn.</entry>
<entry lang="en" key="INPLACE_DEC_GENERIC_ERR">An error prevented VeraCrypt from decrypting the volume. Please try fixing any previously reported problems and then try again if possible.</entry>
<entry lang="vi" key="CANT_UNMOUNT_OUTER_VOL">Lỗi: Không thể tháo tập đĩa bên ngoài xuống được!\n\nTập đĩa không thể được tháo xuống nếu nó có chứa những tập tin hoặc thư mục đang được dùng bởi một chương trình hay hệ thống.\n\nXin chọn bất cứ chương trình nào có thể đang dùng những tập tin hoặc thư mục trong tập đĩa và nhấn Thử lại.</entry>
<entry lang="vi" key="CANT_DISMOUNT_OUTER_VOL">Lỗi: Không thể tháo tập đĩa bên ngoài xuống được!\n\nTập đĩa không thể được tháo xuống nếu nó có chứa những tập tin hoặc thư mục đang được dùng bởi một chương trình hay hệ thống.\n\nXin chọn bất cứ chương trình nào có thể đang dùng những tập tin hoặc thư mục trong tập đĩa và nhấn Thử lại.</entry>
<entry lang="vi" key="CANT_GET_OUTER_VOL_INFO">Lỗi: Không thể thu thập tin tức về tập đĩa bên ngoài được!\nCấu tạo tập đĩa không thể tiếp tục.</entry>
<entry lang="vi" key="CANT_ACCESS_OUTER_VOL">Lỗi: Không thể truy cập tập đĩa bên ngoài được! Cấu tạo tập đĩa không thể tiếp tục.</entry>
<entry lang="vi" key="CANT_MOUNT_OUTER_VOL">Lỗi: Không thể nạp tập đĩa bên ngoài được! Cấu tạo tập đĩa không thể tiếp tục.</entry>
@@ -813,7 +811,7 @@
<entry lang="vi" key="SECONDARY_KEY_SIZE_LRW">Kích cỡ Khóa Vặn (Phương thức LRW)</entry>
<entry lang="vi" key="BITS">bits</entry>
<entry lang="vi" key="BLOCK_SIZE">Kích cỡ Khối</entry>
<entry lang="vi" key="KDF">KDF</entry>
<entry lang="vi" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="vi" key="PKCS5_ITERATIONS">Đếm Lần lặp lại của PKCS-5</entry>
<entry lang="vi" key="VOLUME_CREATE_DATE">Tập đĩa đã được Cấu tạo</entry>
<entry lang="vi" key="VOLUME_HEADER_DATE">Phần đầu được Sửa đổi lần Cuối</entry>
@@ -855,7 +853,7 @@
<entry lang="vi" key="TC_INSTALLER_IS_RUNNING">Bộ cài đặt của VeraCrypt hiện đang chạy trong hệ thống này và đang thi hành hay chuẩn bị việc cài đặt hay cập nhật VeraCrypt. Trước khi bạn tiến hành, xin chờ cho nó chấm dứt hoặc đóng nó lại. Nếu bạn không đóng nó được thì xin bắt đầu máy điện toán của bạn lại trước khi tiến hành.</entry>
<entry lang="vi" key="INSTALL_FAILED">Không cài đặt được.</entry>
<entry lang="vi" key="UNINSTALL_FAILED">Không hủy cài đặt được.</entry>
<entry lang="vi" key="DIST_PACKAGE_CORRUPTED">Kiện đồ phân phối này bị tổn hại. Xin tải nó xuống lại (tốt hơn là từ trang web chính thức của VeraCrypt tại https://veracrypt.jp).</entry>
<entry lang="vi" key="DIST_PACKAGE_CORRUPTED">Kiện đồ phân phối này bị tổn hại. Xin tải nó xuống lại (tốt hơn là từ trang web chính thức của VeraCrypt tại https://www.veracrypt.fr).</entry>
<entry lang="vi" key="CANNOT_WRITE_FILE_X">Không thể viết vào tập tin %s</entry>
<entry lang="vi" key="EXTRACTING_VERB">Đang rút ra</entry>
<entry lang="vi" key="CANNOT_READ_FROM_PACKAGE">Không thể đọc dữ liệu từ kiện đồ được.</entry>
@@ -882,7 +880,7 @@
<entry lang="vi" key="INSTALL_COMPLETED">Việc cài đặt được hoàn thành.</entry>
<entry lang="vi" key="CANT_CREATE_FOLDER">Thư mục '%s' không thể được cấu tạo</entry>
<entry lang="vi" key="CLOSE_TC_FIRST">Trình điều khiển thiết bị của VeraCrypt không thể được hủy nạp.\n\nXin đóng tất cả cửa sổ đang mở của VeraCrypt trước. Nếu nó không giúp được, xin vui long bắt đầu Windows lại và sau đó thử lần nữa.</entry>
<entry lang="vi" key="UNMOUNT_ALL_FIRST">Tất cả các tập đĩa của VeraCrypt phải được tháo xuống trước khi cài đặt hay gỡ bỏ VeraCrypt.</entry>
<entry lang="vi" key="DISMOUNT_ALL_FIRST">Tất cả các tập đĩa của VeraCrypt phải được tháo xuống trước khi cài đặt hay gỡ bỏ VeraCrypt.</entry>
<entry lang="en" key="UNINSTALL_OLD_VERSION_FIRST">An obsolete version of VeraCrypt is currently installed on this system. It needs to be uninstalled before you can install this new version of VeraCrypt.\n\nAs soon as you close this message box, the uninstaller of the old version will be launched. Note that no volume will be decrypted when you uninstall VeraCrypt. After you uninstall the old version of VeraCrypt, run the installer of the new version of VeraCrypt again.</entry>
<entry lang="vi" key="REG_INSTALL_FAILED">Việc cài đặt các mục nhập ghi thanh đã thất bại</entry>
<entry lang="vi" key="DRIVER_INSTALL_FAILED">Việc cài đặt trình điều khiển thiết bị đã thất bại. Xin vui long bắt đầu Windows lại và sau đó thử cài VeraCrypt lại lần nữa.</entry>
@@ -903,7 +901,7 @@
<entry lang="vi" key="MINUTES">phút</entry>
<entry lang="vi" key="SECONDS">s</entry>
<entry lang="vi" key="OPEN">Mở</entry>
<entry lang="vi" key="UNMOUNT">Tháo xuống</entry>
<entry lang="vi" key="DISMOUNT">Tháo xuống</entry>
<entry lang="vi" key="SHOW_TC">Cho thấy VeraCrypt</entry>
<entry lang="vi" key="HIDE_TC">Giấu VeraCrypt</entry>
<entry lang="vi" key="TOTAL_DATA_READ">Dữ liệu được Đọc từ khi Nạp lên</entry>
@@ -940,7 +938,7 @@
<entry lang="vi" key="ENTER_HEADER_BACKUP_PASSWORD">Nhập khẩu cho phần đầu giữ trong tập tin sao lưu</entry>
<entry lang="vi" key="KEYFILE_CREATED">Keytập tin has been successfully cấu tạod.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_NUMBER">The number of keyfiles you supplied is invalid.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be at least 64 bytes.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be comprized between 64 and 1048576 bytes.</entry>
<entry lang="en" key="KEYFILE_EMPTY_BASE_NAME">Please enter a name for the keyfile(s) to be generated</entry>
<entry lang="en" key="KEYFILE_INVALID_BASE_NAME">The base name of the keyfile(s) is invalid</entry>
<entry lang="en" key="KEYFILE_ALREADY_EXISTS">The keyfile '%s' already exists.\nDo you want to overwrite it? The generation process will be stopped if you answer No.</entry>
@@ -975,7 +973,7 @@
<entry lang="en" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - System Favorite Volumes</entry>
<entry lang="en" key="SYS_FAVORITES_HELP_LINK">What are system favorite volumes?</entry>
<entry lang="vi" key="SYS_FAVORITES_REQUIRE_PBA">Phân vùng/ổ đĩa hệ thống dường như không được mã hóa.\n\nCác tập đĩa hệ thống được chuộng có thể được nạp bằng cách chỉ dùng một mật mã chứng thực tiền khởi động. Vì vậy, để có thể dùng các tập đĩa hệ thống được chuộng, bạn cần mã hóa phân vùng/ổ đĩa hệ thống trước.</entry>
<entry lang="vi" key="UNMOUNT_FIRST">Xin tháo tập đĩa xuống trước khi tiến hành.</entry>
<entry lang="vi" key="DISMOUNT_FIRST">Xin tháo tập đĩa xuống trước khi tiến hành.</entry>
<entry lang="vi" key="CANNOT_SET_TIMER">Lỗi: Không thể thiết lập bộ đếm thời gian.</entry>
<entry lang="vi" key="IDPM_CHECK_FILESYS">Kiểm soát Hệ thống tập tin</entry>
<entry lang="vi" key="IDPM_REPAIR_FILESYS">Sửa chữa Hệ thống Tập tin</entry>
@@ -1009,11 +1007,11 @@
<entry lang="vi" key="NO_SYSENC_PARTITION_SELECTED">Không phân vùng nào được chọn.\n\nNhấn 'Chọn Thiết bị' để chọn một phân vùng được tháo xuống mà thông thường cần chứng thực tiền khởi động (ví dụ như một phân vùng nằm trong ổ đĩa hệ thống được mã hóa của một hệ điều hành khác, mà không có đang chạy, hoặc phân vùng hệ thống được mã hóa của một hệ điều hành khác).\n\nLưu ý: Phân vùng được chọn sẽ được nạp lên như một tập đĩa VeraCrypt thông thường không có chứng thực tiền khởi động. Việc này hữu dụng vi dú như cho những thao tác sao chép hoặc sửa chữa.</entry>
<entry lang="vi" key="CONFIRM_SAVE_DEFAULT_KEYFILES">CẢNH BÁO: Nếu những tập tin khóa mặc định được thiết lập và bật lên thì các tập đĩa mà không dùng những tập tin khóa này sẽ không thể nào nạp lên được. Vì vậy, sau khi bạn bật những tập tin khóa mặc định lên thì nhớ bỏ đánh dấu hộp chọn 'Sử dụng tập tin khóa' (bên dưới một trường nhập mật mã) bất cứ khi nào nạp các tập đĩa như thế.\n\nBạn có chắc là bạn muốn bảo lưu những tập tin khóa/đưòng dẫn được chọn thành mặc định không?</entry>
<entry lang="vi" key="HK_AUTOMOUNT_DEVICES">Những Thiết bị Tự-Nạp</entry>
<entry lang="vi" key="HK_UNMOUNT_ALL">Tháo xuống Tất cả</entry>
<entry lang="vi" key="HK_DISMOUNT_ALL">Tháo xuống Tất cả</entry>
<entry lang="vi" key="HK_WIPE_CACHE">Tẩy Bộ tạm trữ</entry>
<entry lang="vi" key="HK_UNMOUNT_ALL_AND_WIPE">Tháo xuống Tất cả &amp; Tẩy Bộ tạm trữ</entry>
<entry lang="vi" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Buộc Tháo xuống Tất cả &amp; Tẩy Bộ tạm trữ</entry>
<entry lang="vi" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Buộc Tháo xuống Tất cả, Tẩy Bộ tạm trữ &amp; Thoát ra</entry>
<entry lang="vi" key="HK_DISMOUNT_ALL_AND_WIPE">Tháo xuống Tất cả &amp; Tẩy Bộ tạm trữ</entry>
<entry lang="vi" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Buộc Tháo xuống Tất cả &amp; Tẩy Bộ tạm trữ</entry>
<entry lang="vi" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Buộc Tháo xuống Tất cả, Tẩy Bộ tạm trữ &amp; Thoát ra</entry>
<entry lang="vi" key="HK_MOUNT_FAVORITE_VOLUMES">Nạp các Tập đĩa được Chuộng lên</entry>
<entry lang="vi" key="HK_SHOW_HIDE_MAIN_WINDOW">Cho thấy/Dấu Cửa sổ Chính của VeraCrypt</entry>
<entry lang="vi" key="PRESS_A_KEY_TO_ASSIGN">(Nhấn vào đây và bấm một phím)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="en" key="PAGING_FILE_CREATION_PREVENTED">Paging file creation has been prevented.\n\nPlease note that, due to Windows issues, paging files cannot be located on non-system VeraCrypt volumes (including system favorite volumes). VeraCrypt supports creation of paging files only on an encrypted system partition/drive.</entry>
<entry lang="vi" key="SYS_ENC_HIBERNATION_PREVENTED">Một lỗi hoặc một sự không tương thích ngăn cản VeraCrypt mã hóa tập tin vô động. Vì vậy, sự vô động đã bị ngăn cản.\n\nLưu ý: Khi một máy điện toán vào trạng thái vô động (hoặc bước vào một phương thức tiết kiệm điện năng), nội dung của bộ nhớ hệ thống của nó được viết vào một tập tin lưu trữ vô động nằm trong ỗ đĩa hệ thống. VeraCrypt sẽ không thể ngăn cản những khóa mã hóa và nội dung của những tập tin nhạy cảm được mở trong RAM được bảo lưu mà không có mã hóa vào tập tin lưu trữ vô động.</entry>
<entry lang="vi" key="HIDDEN_OS_HIBERNATION_PREVENTED">Sự vô động đã bị ngăn cản.\n\nVeraCrypt không hỗ trợ sự vô động trong các hệ điều hành ẩn mà sử dụng thêm một phân vùng khởi động. Xin lưu ý là phân vùng khởi động được xài chung bởi cả hệ nghi trang lẫn hệ ẩn. Vì vậy, để ngăn cản những thất thoát và vấn đề của dữ liệu trong lúc bắt đầu lại từ sự vô động, VeraCrypt phải ngăn cản hệ ẩn viết vào phân vùng khởi động xài chung và vào trạng thái vô động.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">VeraCrypt volume mounted as %c: has been unmounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt volumes have been unmounted.</entry>
<entry lang="en" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt volumes have been unmounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_UNMOUNTED">Successfully unmounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="vi" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">CẢNH BÁO: Nếu tùy chọn này bị tắt thì các tập đĩa có chứa các tập tin/thư mục đang mở sẽ không thể tự-tháo xuống được.\n\nBạn có chắc là bạn muốn tắt tùy chọn này không?</entry>
<entry lang="vi" key="WARN_PREF_AUTO_UNMOUNT">CẢNH BÁO: Những tập đĩa có chứa các tập tin/thư mục đang mở sẽ KHÔNG được tự-tháo xuống.\n\nĐể tránh chuyện này, bật tùy chọn sau đây lên trong cửa sổ hộp thoại này: 'Buộc tự-tháo xuống ngay cả nếu tập đĩa có chứa các tập tin hay thư mục đang mở'</entry>
<entry lang="vi" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">CẢNH BÁO: Khi điện năng pin của máy notebook xuống thấp, Windows có thể bỏ sót chuyện gửi những thông điệp thích đáng đến những ứng dụng đang chạy khi máy điện toán đang vào phương thức tiết kiệm điện năng. Vì vậy, VeraCrypt có thể không tự-tháo các tập đĩa xuống trong những trường hợp như thế.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">VeraCrypt volume mounted as %c: has been dismounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt volumes have been dismounted.</entry>
<entry lang="en" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt volumes have been dismounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_DISMOUNTED">Successfully dismounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="vi" key="CONFIRM_NO_FORCED_AUTODISMOUNT">CẢNH BÁO: Nếu tùy chọn này bị tắt thì các tập đĩa có chứa các tập tin/thư mục đang mở sẽ không thể tự-tháo xuống được.\n\nBạn có chắc là bạn muốn tắt tùy chọn này không?</entry>
<entry lang="vi" key="WARN_PREF_AUTO_DISMOUNT">CẢNH BÁO: Những tập đĩa có chứa các tập tin/thư mục đang mở sẽ KHÔNG được tự-tháo xuống.\n\nĐể tránh chuyện này, bật tùy chọn sau đây lên trong cửa sổ hộp thoại này: 'Buộc tự-tháo xuống ngay cả nếu tập đĩa có chứa các tập tin hay thư mục đang mở'</entry>
<entry lang="vi" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">CẢNH BÁO: Khi điện năng pin của máy notebook xuống thấp, Windows có thể bỏ sót chuyện gửi những thông điệp thích đáng đến những ứng dụng đang chạy khi máy điện toán đang vào phương thức tiết kiệm điện năng. Vì vậy, VeraCrypt có thể không tự-tháo các tập đĩa xuống trong những trường hợp như thế.</entry>
<entry lang="vi" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Bạn đã sắp đặt quá trình mã hóa của một phân vùng/tập đĩa. Quá trình chưa được chấm dứt.\n\nBạn có muốn tiếp tục lại quá trình bây giờ không?</entry>
<entry lang="vi" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">Bạn đã sắp đặt quá trình mã hóa hoặc giải mã của phân vùng/ổ đĩa hệ thống. Quá trình chưa được chấm dứt.\n\nBạn có muốn bắt đầu (tiếp tục lại) quá trình bây giờ không?</entry>
<entry lang="vi" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">Bạn có muốn được nhắc chuyện bạn có muốn tiếp tục lại những quá trình mã hóa đang được sắp đặt của những phân vùng/tập đĩa vô hệ?</entry>
@@ -1040,7 +1038,7 @@
<entry lang="vi" key="DO_NOT_PROMPT_ME">Không, đừng nhắc tôi</entry>
<entry lang="vi" key="NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL_NOTE">QUAN TRỌNG: Nhớ là bạn có thể tiếp tục lại quá trình mã hóa của bất cứ phân vùng/tập đĩa vô hệ nào bằng cách chọn 'Tập đĩa' &gt; 'Tiếp tục lại Quá trình bị Gián đoạn' từ thanh trình đơn của cửa sổ chính của VeraCrypt.</entry>
<entry lang="vi" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">Bạn đã sắp đặt quá trình mã hóa hoặc giải mã của phân vùng/ổ đĩa hệ thống. Tuy nhiên, chứng thực tiền-khởi động bị thất bại (hoặc bị bỏ qua).\n\nLưu ý: Nếu bạn giải mã phân vùng/ổ đĩa hệ thống trong môi trường tiền-khởi động thì bạn có thể cần phải kết thúc quá trình bằng cách chọn 'Hệ thống' &gt; 'Vĩnh viễn Giải mã Phân vùng/Ổ đĩa Hệ thống' từ thanh trình đơn của cửa sổ chính của VeraCrypt.</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="vi" key="CONFIRM_EXIT_UNIVERSAL">Thoát ra không?</entry>
<entry lang="vi" key="CHOOSE_ENCRYPT_OR_DECRYPT">VeraCrypt không có đủ tin tức để xác định là nên mã hóa hay giải mã.</entry>
<entry lang="vi" key="CHOOSE_ENCRYPT_OR_DECRYPT_FINALIZE_DECRYPT_NOTE">VeraCrypt không có đủ tin tức để xác định là nên mã hóa hay giải mã.\n\nLưu ý: Nếu bạn giải mã phân vùng/ổ đĩa hệ thống trong môi trường tiền-khởi động thì bạn có thể cần phải kết thúc quá trình bằng cách nhấn Giải mã.</entry>
@@ -1063,7 +1061,7 @@
<entry lang="vi" key="SYS_AUTOMOUNT_DISABLED">Hệ thống của bạn không được cấu hình để tự-nạp các tập đĩa mới. Có thể nạp các tập đĩa VeraCrypt có thiết bị làm chủ được. Tự-nạp có thể được bật lên bằng cách thực thi lệnh sau đây và bắt đầu hệ thống lại.\n\nmountvol.exe /E</entry>
<entry lang="vi" key="SYS_ASSIGN_DRIVE_LETTER">Xin gán một chữ hiệu ổ đĩa cho phân vùng/thiết bị trước khi tiến hành ('Control Panel' &gt; 'System and Maintenance' &gt; 'Administrative Tools' - 'Cấu tạo và định dạng phân vùng đĩa cứng').\n\nLưu ý rằng đây là một yêu cầu của hệ điều hành.</entry>
<entry lang="vi" key="MOUNT_TC_VOLUME">Nạp tập đĩa VeraCrypt lên</entry>
<entry lang="vi" key="UNMOUNT_ALL_TC_VOLUMES">Tháo tất cả các tập đĩa VeraCrypt xuống</entry>
<entry lang="vi" key="DISMOUNT_ALL_TC_VOLUMES">Tháo tất cả các tập đĩa VeraCrypt xuống</entry>
<entry lang="vi" key="UAC_INIT_ERROR">VeraCrypt không lấy được những quyền Quản lý.</entry>
<entry lang="vi" key="ERR_ACCESS_DENIED">Quyền truy cập bị từ chối bởi hệ điều hành.\n\nNguyên nhân khả dĩ: Hệ điều hành yêu cầu bạn có quyền đọc/viết (hoặc quyền quản lý) cho một số thư mục, tập tin, và thiết bị, để bạn được quyền đọc và viết dữ liệu vào/từ chúng. Thông thường, một người dùng không có những quyền quản lý chỉ được được quyền cấu tạo, đọc và thay đổi những tập tin trong thư mục Documents của họ.</entry>
<entry lang="en" key="SECTOR_SIZE_UNSUPPORTED">Error: The drive uses an unsupported sector size.\n\nIt is currently not possible to create partition/device-hosted volumes on drives that use sectors larger than 4096 bytes. However, note that you can create file-hosted volumes (containers) on such drives.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="vi" key="HIDDEN_OS_CREATION_PREINFO_HELP">Trong các bước kế tiếp, VeraCrypt sẽ cấu tạo hệ điều hành ẩn bằng cách sao chép nội dung của phân vùng hệ thống thành tập đĩa ẩn (dữ liệu đã được sao chép sẽ được mã hóa ở bộ phận fly với một khoá mật mã khác với hệ sẽ được sử dụng cho các hệ thống hoạt động nghi trang).\n\nXin lưu ý là quá trình này sẽ được thực hiện trong môi trường tiền khởi động (trước khi bắt đầu Windows) và nó có thể mất một thời gian dài để hoàn thành; vài giờ hoặc thậm chí vài ngày (tùy thuộc vào kích cỡ của hệ thống phân vùng và về hiệu suất của máy điện toán của bạn).\n\n Bạn sẽ có thể làm gián đoạn quá trình,. tắt máy, khởi động hệ điều hành và sau đó tiếp tục lại quá trình. Tuy nhiên, nếu bạn làm gián đoạn nó, toàn bộ quá trình sao chép hệ thống sẽ phải bắt đầu từ đầu (vì nội dung của phân vùng hệ thống không phải thay đổi trong quá trình sao y).</entry>
<entry lang="vi" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">Bạn có muốn hủy bỏ toàn bộ quá trình sáng tạo của hệ điều hành ẩn?\n\nLưu ý: Bạn sẽ không thể tiếp tục lại quá trình nếu bạn hủy bỏ nó ngay bây giờ.</entry>
<entry lang="vi" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">Bạn có muốn hủy bỏ hệ thống mã hóa thử trước?</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="vi" key="SYS_DRIVE_NOT_ENCRYPTED">Các phân vùng/ổ đĩa hệ thống dường như không được mã hóa (một phần hoặc hoàn toàn).</entry>
<entry lang="vi" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">Phân vùng/ổ đĩa hệ thống của bạn được mã hóa (một phần hoặc hoàn toàn). \n\nXin giải mã phân vùng/ổ đĩa hệ thống của bạn hoàn toàn trước khi tiến hành. Để làm như vậy, hãy chọn 'Hệ thống'&gt; 'Vĩnh viễn Giải mã Phân vùng/Ổ đĩa Hệ thống' từ thanh trình đơn của cửa sổ VeraCrypt chính.</entry>
<entry lang="vi" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">Khi phân vùng/ổ đĩa hệ thống được mã hóa (một phần hoặc hoàn toàn), bạn không thể hạ cấp VeraCrypt xuống (nhưng bạn có thể nâng cấp hoặc cài đặt một phiên bản giống vậy lại).</entry>
@@ -1285,14 +1283,14 @@
<entry lang="vi" key="TOKEN_DATA_OBJECT_LABEL">Tên tập tin</entry>
<entry lang="vi" key="BOOT_PASSWORD_CACHE_KEYBOARD_WARNING">QUAN TRỌNG: Xin lưu ý là những mật mã chứng thực tiền khởi động luôn luôn được gõ bằng bố trí bàn phím tiêu chuẩn Hoa Kỳ. Vì vậy, một tập đĩa sử dụng một mật mã gõ bằng bất cứ bố trí bàn phím nào khác có thể không thể nào được nạp lên bằng một mật mã chứng thực tiền khởi động (lưu ý là đây không phải là lỗi trong VeraCrypt). Để cho phép một tập đĩa được nạp lên bằng một mật mã chứng thực tiền khởi động, làm theo các bước sau:\n\n1) Nhấn 'Chọn Tập tin' hoặc 'Chọn Thiết bị' và chọn tập đĩa.\n2) Chọn 'Các tập đĩa' &gt; 'Thay đổi Mật mã của Tập đĩa'.\n3) Nhập vào mật mã hiện tại của tập đĩa.\n 4) Thay đổi bố trí bàn phím thành Anh văn (Hoa Kỳ) bằng cách nhấn vào biểu tượng của thanh Ngôn ngữ trong thanh tác vụ của Windows và chọn 'EN Anh văn (Hoa Kỳ).\n5) Trong VeraCrypt, trong trường cho mật mã mới, gõ mật mã chứng thực tiền khởi động.\n6) Xác nhận mật mã mới bằng cách gõ nó lại trong trường xác nhận và nhấn 'OK'.\nCẢNH BÁO: Hãy ghi nhớ rằng nếu bạn làm theo các bước này, mật mã của tập đĩa sẽ luôn luôn phải được gõ bằng bố trí bàn phím Hoa Kỳ (chỉ được tự động đảm bảo trong môi trường tiền khởi động).</entry>
<entry lang="vi" key="SYS_FAVORITES_KEYBOARD_WARNING">Tập đĩa hệ thống được chuộng sẽ được nạp lên bằng cách dùng mật mã chứng thực tiền khởi động. Nếu bất cứ tập đĩa hệ thống được chuộng sử dụng một mật mã khác, nó sẽ không được nạp lên.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Unmount All', auto-unmount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and unmount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Dismount All', auto-dismount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and dismount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="vi" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">QUAN TRỌNG: Hãy ghi nhớ rằng nếu tùy chọn này được bật lên và VeraCrypt không có quyền quản lý, tập đĩa hệ thống được chuộng đã nạp lên KHÔNG được hiển thị trong cửa sổ ứng dụng VeraCrypt và chúng không thể được tháo xuống. Vì vậy, ví dụ nếu bạn cần tháo một tập đĩa hệ thống được chuộng xuống, xin nhấn phải vào biểu tượng VeraCrypt (trong trình đơn Start) và chọn 'Chạy kiểu Quản lý' trước. Giới hạn giống vậy cũng áp dụng cho chức năng 'Tháo xuống Tất cả', những chức năng 'Tự động-Tháo xuống', các khóa kích hoạt 'Tháo xuống Tất cả', v.v.</entry>
<entry lang="en" key="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry>
<entry lang="vi" key="COMMAND_LINE_ERROR">Có lỗi trong khi phân tích cú pháp dòng lệnh.</entry>
<entry lang="vi" key="RESCUE_DISK">Đĩa Cứu hộ</entry>
<entry lang="vi" key="SELECT_FILE_AND_MOUNT">Lựa chọn &amp;Tập tin và Nạp lên...</entry>
<entry lang="vi" key="SELECT_DEVICE_AND_MOUNT">Lựa chọn &amp;Thiết bị và Nạp lên...</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and dismount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="MOUNT_SYSTEM_FAVORITES_ON_BOOT">Mount system favorite volumes when Windows starts (in the initial phase of the startup procedure)</entry>
<entry lang="vi" key="MOUNTED_VOLUME_DIRTY">Cảnh báo: hệ thống tập tin trên tập đĩa đã nạp lên thành '%s' đã không được tháo xuống sạch sẽ và do đó có thể có lỗi. Sử dụng một hệ thống tập tin bị hỏng có thể làm mất hoặc làm hỏng dữ liệu.\n\nLưu ý: Trước khi bạn có thể gỡ bỏ hoặc tắt đi một thiết bị (như một ổ đĩa USB flash hay một ổ đĩa cứng bên ngoài) nơi một tập đĩa VeraCrypt được nạp lên đang nằm, bạn nên luôn luôn tháo tập đĩa VeraCrypt trong VeraCrypt xuống trước.\n\n\nBạn có muốn Windows thử phát hiện và sửa các lỗi (nếu có) trên hệ thống tập tin không?</entry>
<entry lang="vi" key="SYS_FAVORITE_VOLUME_DIRTY">Cảnh báo: Một hoặc nhiều tập đĩa hệ thống được chuộng không được tháo xuống sạch sẽ và do đó có thể có lỗi của hệ thống tập tin. Xin xem các ghi bản sự kiện hệ thống để biết thêm chi tiết.\n\nSử dụng một hệ thống tập tin bị hỏng có thể làm mất hoặc làm hỏng dữ liệu. Bạn nên kiểm tra những tập đĩa hệ thống được chuộng bị ảnh hưởng xem có lỗi không (nhấn phải vào từng lỗi trong VeraCrypt và chọn 'Sửa chữa Hệ thống tập tin').</entry>
@@ -1306,8 +1304,8 @@
<entry lang="en" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Note that the number of threads is currently limited, which will affect benchmark results (worse performance).\n\nTo utilize the full potential of the processor(s), select 'Settings' > 'Performance' and disable the corresponding option.</entry>
<entry lang="vi" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">Bạn có muốn VeraCrypt thử tắt bảo vệ chống ghi của phân vùng/ổ đĩa không?</entry>
<entry lang="en" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">WARNING: This setting may degrade performance.\n\nAre you sure you want to use this setting?</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-unmounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always unmount the volume in VeraCrypt first.\n\nUnexpected spontaneous unmount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-dismounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always dismount the volume in VeraCrypt first.\n\nUnexpected spontaneous dismount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="UNSUPPORTED_TRUECRYPT_FORMAT">This volume was created with TrueCrypt %x.%x but VeraCrypt supports only TrueCrypt volumes created with TrueCrypt 6.x/7.x series</entry>
<entry lang="vi" key="TEST">Thử nghiệm</entry>
<entry lang="vi" key="KEYFILE">Tập tin Khóa</entry>
@@ -1453,7 +1451,7 @@
<entry lang="en" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Add All Mounted Volumes to Favorites...</entry>
<entry lang="en" key="TASKICON_PREF_MENU_ITEMS">Task Icon Menu Items</entry>
<entry lang="en" key="TASKICON_PREF_OPEN_VOL">Open Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_DISMOUNT_VOL">Dismount Mounted Volumes</entry>
<entry lang="en" key="DISK_FREE">Free space available: {0}</entry>
<entry lang="en" key="VOLUME_SIZE_HELP">Please specify the size of the container to create. Note that the minimum possible size of a volume is 292 KiB.</entry>
<entry lang="en" key="LINUX_CONFIRM_INNER_VOLUME_CALC">WARNING: You have selected a filesystem other than FAT for the outer volume.\nPlease Note that in this case VeraCrypt can't calculate the exact maximum allowed size for the hidden volume and it will use only an estimation that can be wrong.\nThus, it is your responsibility to use an adequate value for the size of the hidden volume so that it does not overlap the outer volume.\n\nDo you want to continue using the selected filesystem for the outer volume?</entry>
@@ -1483,14 +1481,14 @@
<entry lang="en" key="LINUX_DO_NOT_MOUNT">Do &amp;not mount</entry>
<entry lang="en" key="LINUX_MOUNT_AT_DIR">Mount at directory:</entry>
<entry lang="en" key="LINUX_SELECT">Se&amp;lect...</entry>
<entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount All Volumes When</entry>
<entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry>
<entry lang="en" key="LINUX_ENTERING_POWERSAVING">System is entering power saving mode</entry>
<entry lang="en" key="LINUX_LOGIN_ACTION">Actions to Perform when User Logs On</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Close all Explorer windows of volume being dismounted</entry>
<entry lang="en" key="LINUX_HOTKEYS">Hotkeys</entry>
<entry lang="en" key="LINUX_SYSTEM_HOTKEYS">System-Wide Hotkeys</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/unmount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_UNMOUNT">Display confirmation message box after unmount</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/dismount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_DISMOUNT">Display confirmation message box after dismount</entry>
<entry lang="en" key="LINUX_VC_QUITS">VeraCrypt quits</entry>
<entry lang="en" key="LINUX_OPEN_FINDER">Open Finder window for successfully mounted volume</entry>
<entry lang="en" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Please note that this setting takes effect only if use of the kernel cryptographic services is disabled.</entry>
@@ -1510,11 +1508,11 @@
<entry lang="en" key="LINUX_DYNAMIC_NOTICE">Please note that if your operating system does not allocate files from the beginning of the free space, the maximum possible hidden volume size may be much smaller than the size of the free space on the outer volume. This is not a bug in VeraCrypt but a limitation of the operating system.</entry>
<entry lang="en" key="LINUX_MAX_HIDDEN_SIZE">Maximum possible hidden volume size for this volume is {0}.</entry>
<entry lang="vi" key="LINUX_OPEN_OUTER_VOL">Mở tập đĩa bên ngoài</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not unmount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not dismount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">Error: You are trying to encrypt a system drive.\n\nVeraCrypt can encrypt a system drive only under Windows.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">Error: You are trying to encrypt a system partition.\n\nVeraCrypt can encrypt system partitions only under Windows.</entry>
<entry lang="en" key="LINUX_WARNING_FORMAT_DESTROY_FS">WARNING: Formatting of the device will destroy all data on filesystem '{0}'.\n\nDo you want to continue?</entry>
<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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please dismount '{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>
@@ -1522,8 +1520,7 @@
<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>
<entry lang="en" key="LINUX_VOL_DISMOUNTED">Volume {0} has been dismounted.</entry>
<entry lang="en" key="LINUX_OOM">Out of memory.</entry>
<entry lang="en" key="LINUX_CANT_GET_ADMIN_PRIV">Failed to obtain administrator privileges</entry>
<entry lang="en" key="LINUX_COMMAND_GET_ERROR">Command {0} returned error {1}.</entry>
@@ -1553,7 +1550,7 @@
<entry lang="en" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Error: The drive uses a sector size other than 512 bytes.\n\nDue to limitations of components available on your platform, partition/device-hosted volumes cannot be created/used on the drive.\n\nPossible solutions:\n- Create a file-hosted volume (container) on the drive.\n- Use a drive with 512-byte sectors.\n- Use VeraCrypt on another platform.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">The host file/device is already in use.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Volume slot unavailable.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires macFUSE 2.5 or above.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires OSXFUSE 2.5 or above.</entry>
<entry lang="en" key="EXCEPTION_OCCURRED">Exception occurred</entry>
<entry lang="vi" key="ENTER_PASSWORD">Điền mật khẩu</entry>
<entry lang="vi" key="ENTER_TC_VOL_PASSWORD">Nhập vào Mật mã của Tập đĩa VeraCrypt</entry>
@@ -1570,124 +1567,6 @@
<entry lang="en" key="VOLUME_HOST_IN_USE">WARNING: The host file/device {0} is already in use!\n\nIgnoring this can cause undesired results including system instability. All applications that might be using the host file/device should be closed before mounting the volume.\n\nContinue mounting?</entry>
<entry lang="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
<entry lang="en" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">VeraCrypt cannot be upgraded because the system partition/drive was encrypted using an algorithm that is not supported anymore.\nPlease decrypt your system before upgrading VeraCrypt and then encrypt it again.</entry>
<entry lang="en" key="LINUX_EX2MSG_TERMINALNOTFOUND">Supported terminal application could not be found, you need either xterm, konsole or gnome-terminal (with dbus-x11).</entry>
<entry lang="en" key="IDM_MOUNT_NO_CACHE">Mount Without Cache</entry>
<entry lang="en" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nExpand a VeraCrypt volume on the fly without reformatting\n\n\nAll kind of volumes (container files, disks and partitions) formatted with NTFS are supported. The only condition is that there must be enough free space on the host drive or host device of the VeraCrypt volume.\n\nDo not use this software to expand an outer volume containing a hidden volume, because this destroys the hidden volume!\n</entry>
<entry lang="en" key="IDC_STEPSEXPAND">1. Select the VeraCrypt volume to be expanded\n2. Click the 'Mount' button</entry>
<entry lang="en" key="IDT_VOL_NAME">Volume: </entry>
<entry lang="en" key="IDT_FILE_SYS">File system: </entry>
<entry lang="en" key="IDT_CURRENT_SIZE">Current size: </entry>
<entry lang="en" key="IDT_NEW_SIZE">New size: </entry>
<entry lang="en" key="IDT_NEW_SIZE_BOX_TITLE">Enter new volume size</entry>
<entry lang="en" key="IDC_INIT_NEWSPACE">Fill new space with random data</entry>
<entry lang="en" key="IDC_QUICKEXPAND">Quick Expand</entry>
<entry lang="en" key="IDT_INIT_SPACE">Fill new space: </entry>
<entry lang="en" key="EXPANDER_FREE_SPACE">%s free space available on host drive</entry>
<entry lang="en" key="EXPANDER_HELP_DEVICE">This is a device-based VeraCrypt volume.\n\nThe new volume size will be choosen automatically as the size of the host device.</entry>
<entry lang="en" key="EXPANDER_HELP_FILE">Please specify the new size of the VeraCrypt volume (must be at least %I64u KB larger than the current size).</entry>
<entry lang="en" key="QUICK_EXPAND_WARNING">WARNING: You should use Quick Expand only in the following cases:\n\n1) The device where the file container is located contains no sensitive data and you do not need plausible deniability.\n2) The device where the file container is located has already been securely and fully encrypted.\n\nAre you sure you want to use Quick Expand?</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT">IMPORTANT: Move your mouse as randomly as possible within this window. The longer you move it, the better. This significantly increases the cryptographic strength of the encryption keys. Then click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT_LEGACY">Click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_FINISH_ERROR">Error: volume expansion failed.</entry>
<entry lang="en" key="EXPANDER_FINISH_ABORT">Error: operation aborted by user.</entry>
<entry lang="en" key="EXPANDER_FINISH_OK">Finished. Volume successfully expanded.</entry>
<entry lang="en" key="EXPANDER_CANCEL_WARNING">Warning: Volume expansion is in progress!\n\nStopping now may result in a damaged volume.\n\nDo you really want to cancel?</entry>
<entry lang="en" key="EXPANDER_STARTING_STATUS">Starting volume expansion ...\n</entry>
<entry lang="en" key="EXPANDER_HIDDEN_VOLUME_ERROR">An outer volume containing a hidden volume can't be expanded, because this destroys the hidden volume.\n</entry>
<entry lang="en" key="EXPANDER_SYSTEM_VOLUME_ERROR">A VeraCrypt system volume can't be expanded.</entry>
<entry lang="en" key="EXPANDER_NO_FREE_SPACE">Not enough free space to expand the volume</entry>
<entry lang="en" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Warning: The container file is larger than the VeraCrypt volume area. The data after the VeraCrypt volume area will be overwritten.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_FAT">Warning: The VeraCrypt volume contains a FAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_EXFAT">Warning: The VeraCrypt volume contains an exFAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_UNKNOWN_FS">Warning: The VeraCrypt volume contains an unknown or no file system!\n\nOnly the VeraCrypt volume itself will be expanded, the file system remains unchanged.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">New volume size too small, must be at least %I64u kB larger than the current size.</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">New volume size too large, not enough space on host drive.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Maximum file size of %I64u MB on host drive exceeded.</entry>
<entry lang="en" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Error: Failed to get necessary privileges to enable Quick Expand!\nPlease uncheck Quick Expand option and try again.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Maximum VeraCrypt volume size of %I64u TB exceeded!\n</entry>
<entry lang="en" key="FULL_FORMAT">Full Format</entry>
<entry lang="en" key="FAST_CREATE">Fast Create</entry>
<entry lang="en" key="WARN_FAST_CREATE">WARNING: You should use Fast Create only in the following cases:\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 Fast Create?</entry>
<entry lang="en" key="IDC_ENABLE_EMV_SUPPORT">Enable EMV Support</entry>
<entry lang="en" key="COMMAND_APDU_INVALID">The APDU command sent to the card is not valid.</entry>
<entry lang="en" key="EXTENDED_APDU_UNSUPPORTED">Extended APDU commands cannot be used with the current token.</entry>
<entry lang="en" key="SCARD_MODULE_INIT_FAILED">Error when loading the WinSCard / PCSC library.</entry>
<entry lang="en" key="EMV_UNKNOWN_CARD_TYPE">The card in the reader is not a supported EMV card.</entry>
<entry lang="en" key="EMV_SELECT_AID_FAILED">The AID of the card in the reader could not be selected.</entry>
<entry lang="en" key="EMV_ICC_CERT_NOTFOUND">ICC Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_ISSUER_CERT_NOTFOUND">Issuer Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_CPLC_NOTFOUND">CPLC was not found in the EMV card.</entry>
<entry lang="en" key="EMV_PAN_NOTFOUND">No Primary Account Number (PAN) found in the EMV card.</entry>
<entry lang="en" key="INVALID_EMV_PATH">EMV path is invalid.</entry>
<entry lang="en" key="EMV_KEYFILE_DATA_NOTFOUND">Unable to build a keyfile from the EMV card's data.\n\nOne of the following is missing:\n- ICC Public Key Certificate.\n- Issuer Public Key Certificate.\n- CPLC data.</entry>
<entry lang="en" key="SCARD_W_REMOVED_CARD">No card in the reader.\n\nPlease make sure the card is correctly slotted.</entry>
<entry lang="en" key="FORMAT_EXTERNAL_FAILED">Windows format.com command failed to format the volume as NTFS/exFAT/ReFS: Error 0x%.8X.\n\nFalling back to using Windows FormatEx API.</entry>
<entry lang="en" key="FORMATEX_API_FAILED">Windows FormatEx API failed to format the volume as NTFS/exFAT/ReFS.\n\nFailure status = %s.</entry>
<entry lang="en" key="EXPANDER_WRITING_RANDOM_DATA">Writing random data to new space ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Writing re-encrypted backup header ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Writing re-encrypted primary header ...\n</entry>
<entry lang="en" key="EXPANDER_WIPING_OLD_HEADER">Wiping old backup header ...\n</entry>
<entry lang="en" key="EXPANDER_MOUNTING_VOLUME">Mounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_UNMOUNTING_VOLUME">Unmounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_EXTENDING_FILESYSTEM">Extending file system ...\n</entry>
<entry lang="en" key="PARTIAL_SYSENC_MOUNT_READONLY">Warning: The system partition you attempted to mount was not fully encrypted. As a safety measure to prevent potential corruption or unwanted modifications, volume '%s' was mounted as read-only.</entry>
<entry lang="en" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Important information on using third-party file extensions</entry>
<entry lang="en" key="IDC_DISABLE_MEMORY_PROTECTION">Disable memory protection for Accessibility tools compatibility</entry>
<entry lang="en" key="DISABLE_MEMORY_PROTECTION_WARNING">WARNING: Disabling memory protection significantly reduces security. Enable this option ONLY if you rely on Accessibility tools, like Screen Readers, to interact with VeraCrypt's UI.</entry>
<entry lang="vi" key="LINUX_LANGUAGE">Ngôn ngữ</entry>
<entry lang="en" key="LINUX_SELECT_SYS_DEFAULT_LANG">Select system's default language</entry>
<entry lang="en" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">For the language change to come into effect, VeraCrypt needs to be restarted.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE">WARNING: The volume's master key is vulnerable to an attack that compromises data security.\n\nPlease create a new volume and transfer the data to it.</entry>
<entry lang="en" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">WARNING: The encrypted system's master key is vulnerable to an attack that compromises data security.\nPlease decrypt the system partition/drive and then re-encrypt it.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">WARNING: The volume's master key has a security vulnerability.</entry>
<entry lang="en" key="MOUNTPOINT_BLOCKED">ERROR: The volume mount point is blocked because it overrides a protected system directory.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="MOUNTPOINT_NOTALLOWED">ERROR: The volume mount point is not allowed because it overrides a directory that is part of the PATH environment variable.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="INSECURE_MODE">[INSECURE MODE]</entry>
<entry lang="en" key="IDC_DISABLE_SCREEN_PROTECTION">Disable protection against screenshots and screen recording</entry>
<entry lang="en" key="DISABLE_SCREEN_PROTECTION_WARNING">WARNING: Disabling screen protection significantly reduces security. Enable this option ONLY if you have a specific need to capture VeraCrypt's interface. This may expose sensitive data to screenshot tools and screen recording features such as Windows 11 Recall.</entry>
<entry lang="en" key="MEMORY_COST">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="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>
<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>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+61 -182
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version= "1.25.9">
<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" />
@@ -135,8 +135,8 @@
<entry lang="zh-tw" key="IDC_FAVORITE_REMOVE">移除(&amp;R)</entry>
<entry lang="en" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Use favorite label as Explorer drive label</entry>
<entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</entry>
<entry lang="en" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key unmount</entry>
<entry lang="zh-tw" key="IDC_HK_UNMOUNT_PLAY_SOUND">使用熱鍵卸載成功時,撥放系統通知音效。</entry>
<entry lang="en" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Display balloon tooltip after successful hot-key dismount</entry>
<entry lang="zh-tw" key="IDC_HK_DISMOUNT_PLAY_SOUND">使用熱鍵卸載成功時,撥放系統通知音效。</entry>
<entry lang="zh-tw" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="en" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="zh-tw" key="IDC_HK_MOD_SHIFT">Shift</entry>
@@ -156,12 +156,12 @@
<entry lang="zh-tw" key="IDC_PIM_HELP">(空或0表示預設選代)</entry>
<entry lang="zh-tw" key="IDC_PREF_BKG_TASK_ENABLE">啟用</entry>
<entry lang="zh-tw" key="IDC_PREF_CACHE_PASSWORDS">在驅動記憶體中快取密碼</entry>
<entry lang="zh-tw" key="IDC_PREF_UNMOUNT_INACTIVE">自動卸載加密區,在無資料讀寫活動以下時間後</entry>
<entry lang="zh-tw" key="IDC_PREF_UNMOUNT_LOGOFF">用戶登出時</entry>
<entry lang="en" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="zh-tw" key="IDC_PREF_UNMOUNT_POWERSAVING">進入省電模式時</entry>
<entry lang="zh-tw" key="IDC_PREF_UNMOUNT_SCREENSAVER">螢幕保護裝置啟動時</entry>
<entry lang="zh-tw" key="IDC_PREF_FORCE_AUTO_UNMOUNT">強制自動卸載,無論加密區是否有使用中的檔案或目錄</entry>
<entry lang="zh-tw" key="IDC_PREF_DISMOUNT_INACTIVE">自動卸載加密區,在無資料讀寫活動以下時間後</entry>
<entry lang="zh-tw" key="IDC_PREF_DISMOUNT_LOGOFF">用戶登出時</entry>
<entry lang="en" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">User session locked</entry>
<entry lang="zh-tw" key="IDC_PREF_DISMOUNT_POWERSAVING">進入省電模式時</entry>
<entry lang="zh-tw" key="IDC_PREF_DISMOUNT_SCREENSAVER">螢幕保護裝置啟動時</entry>
<entry lang="zh-tw" key="IDC_PREF_FORCE_AUTO_DISMOUNT">強制自動卸載,無論加密區是否有使用中的檔案或目錄</entry>
<entry lang="zh-tw" key="IDC_PREF_LOGON_MOUNT_DEVICES">掛載所有磁碟機類型 VeraCrypt 加密區</entry>
<entry lang="zh-tw" key="IDC_PREF_LOGON_START">啟動VeraCrypt後台任務</entry>
<entry lang="zh-tw" key="IDC_PREF_MOUNT_READONLY">以唯讀模式掛載加密區</entry>
@@ -169,7 +169,7 @@
<entry lang="zh-tw" key="IDC_PREF_OPEN_EXPLORER">為成功掛載的加密區打開瀏覽器視窗</entry>
<entry lang="en" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">Temporarily cache password during "Mount Favorite Volumes" operations</entry>
<entry lang="zh-tw" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">掛載卷時使用不同的任務欄圖標</entry>
<entry lang="zh-tw" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">自動卸載時清除快取的密碼</entry>
<entry lang="zh-tw" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">自動卸載時清除快取的密碼</entry>
<entry lang="zh-tw" key="IDC_PREF_WIPE_CACHE_ON_EXIT">結束時清除快取的密碼</entry>
<entry lang="zh-tw" key="IDC_PRESERVE_TIMESTAMPS">保留檔案容器的修改時間戳記</entry>
<entry lang="zh-tw" key="IDC_RESET_HOTKEYS">重設</entry>
@@ -269,14 +269,14 @@
<entry lang="zh-tw" key="IDT_ACCELERATION_OPTIONS">硬體加速</entry>
<entry lang="zh-tw" key="IDT_ASSIGN_HOTKEY">捷徑</entry>
<entry lang="zh-tw" key="IDT_AUTORUN">自動執行組態(autorun.inf)</entry>
<entry lang="zh-tw" key="IDT_AUTO_UNMOUNT">自動卸載</entry>
<entry lang="zh-tw" key="IDT_AUTO_UNMOUNT_ON">全部卸載,當:</entry>
<entry lang="zh-tw" key="IDT_AUTO_DISMOUNT">自動卸載</entry>
<entry lang="zh-tw" key="IDT_AUTO_DISMOUNT_ON">全部卸載,當:</entry>
<entry lang="en" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader Screen Options</entry>
<entry lang="zh-tw" key="IDT_CONFIRM_PASSWORD">確定密碼:</entry>
<entry lang="zh-tw" key="IDT_CURRENT">目前密碼</entry>
<entry lang="en" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">Display this custom message in the pre-boot authentication screen (24 characters maximum):</entry>
<entry lang="zh-tw" key="IDT_DEFAULT_MOUNT_OPTIONS">預設掛載選項</entry>
<entry lang="zh-tw" key="IDT_UNMOUNT_ACTION">快速鍵設定</entry>
<entry lang="zh-tw" key="IDT_DISMOUNT_ACTION">快速鍵設定</entry>
<entry lang="zh-tw" key="IDT_DRIVER_OPTIONS">驅動配置</entry>
<entry lang="en" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Enable extended disk control codes support</entry>
<entry lang="en" key="IDT_FAVORITE_LABEL">Label of selected favorite volume:</entry>
@@ -291,11 +291,10 @@
<entry lang="zh-tw" key="IDT_NEW_PASSWORD">密碼:</entry>
<entry lang="zh-tw" key="IDT_PARALLELIZATION_OPTIONS">基於執行緒的並行化</entry>
<entry lang="en" key="IDT_PKCS11_LIB_PATH">PKCS #11 Library Path</entry>
<entry lang="zh-tw" key="IDT_KDF">KDF</entry>
<entry lang="zh-tw" key="IDT_NEW_KDF">KDF</entry>
<entry lang="zh-tw" key="IDT_PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="zh-tw" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="zh-tw" key="IDT_PW_CACHE_OPTIONS">密碼快取</entry>
<entry lang="zh-tw" key="IDT_SECURITY_OPTIONS">安全選項</entry>
<entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry>
<entry lang="zh-tw" key="IDT_TASKBAR_ICON">VeraCrypt 背景工作</entry>
<entry lang="zh-tw" key="IDT_TRAVELER_MOUNT">要掛載的 VeraCrypt 加密區(相對於可攜式磁碟的根目錄):</entry>
<entry lang="zh-tw" key="IDT_TRAVEL_INSERTION">在插入可攜式磁碟時: </entry>
@@ -357,7 +356,7 @@
<entry lang="zh-tw" key="IDT_KEYFILE_WARNING">警告:如果您遺失了金鑰檔或者金鑰檔的前 1024 KB 位元組已改變,將不可能再掛載使用該金鑰的加密區!</entry>
<entry lang="zh-tw" key="IDT_KEY_UNIT">位元</entry>
<entry lang="zh-tw" key="IDT_NUMBER_KEYFILES">密鑰檔案數量:</entry>
<entry lang="zh-tw" key="IDT_KEYFILES_SIZE">密鑰檔案大小:</entry>
<entry lang="zh-tw" key="IDT_KEYFILES_SIZE">密鑰檔案大小(位元組)</entry>
<entry lang="en" key="IDT_KEYFILES_BASE_NAME">Keyfiles base name:</entry>
<entry lang="zh-tw" key="IDT_LANGPACK_AUTHORS">翻譯人員:</entry>
<entry lang="zh-tw" key="IDT_PLAINTEXT">純文字密碼長度:</entry>
@@ -390,7 +389,6 @@
<entry lang="en" key="ADMINISTRATOR">Administrator</entry>
<entry lang="zh-tw" key="ADMIN_PRIVILEGES_DRIVER">要掛載 VeraCrypt 磁碟機,您必需以一個具有管理員權限的帳戶登錄。</entry>
<entry lang="zh-tw" key="ADMIN_PRIVILEGES_WARN_DEVICES">請注意您必需以一個具有管理員權限的帳戶登錄如果要加密或格式化某磁碟分割區和磁碟機。\n\n檔案類型加密區不受這個限制。</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="zh-tw" key="ADMIN_PRIVILEGES_WARN_HIDVOL">如果要建立隱藏的加密區,您必須以一個具有管理員權限的帳戶登錄。\n\n要繼續嗎?</entry>
<entry lang="zh-tw" key="ADMIN_PRIVILEGES_WARN_NTFS">請注意您必需以一個具有管理員權限的帳戶登錄如果要把加密區格式化為 NTFS 檔案系統。\n\n如果沒有管理員權限,您可以格式化加密區為 FAT 檔案系統。</entry>
<entry lang="zh-tw" key="AES_HELP">FIPS 認可的加密演算法(Rijndael,發表於 1998)可能被美國聯邦部門和機構用來對特定資訊進行極機密等級保護。256 位元金鑰,128 位元區塊,14 次離散迴圈(AES-256)。操作模式為 XTS。</entry>
@@ -423,8 +421,8 @@
<entry lang="zh-tw" key="DEVICE_FREE_PB">%s 的大小為 %.2f PB</entry>
<entry lang="zh-tw" key="DEVICE_IN_USE_FORMAT">警告:磁碟機/磁碟分割區正被系統或應用程式使用。格式化該磁碟機/磁碟分割區可能導致資料遺失或系統不穩定。\n\n繼續進行格式化嗎?</entry>
<entry lang="zh-tw" key="DEVICE_IN_USE_INPLACE_ENC">警告:作業系統或應用程序正在使用該分區。 您應該關閉可能正在使用該分區的任何應用程序(包括防病毒軟件)。\n\n繼續?</entry>
<entry lang="zh-tw" key="FORMAT_CANT_UNMOUNT_FILESYS">錯誤:該磁碟機/磁碟分割區包含不能被卸載的檔案系統。此檔案系統可能被作業系統所使用。格式化此磁碟機/磁碟分割區很可能會導致資料損壞或者是系統不穩定。\n\n要解決此問題,我們建議您先刪除該磁碟分割區之後在不格式化的情況下重新建立這個磁碟分割區。要達成此目的,請遵照下面步驟: 1) 在 "我的電腦" 的圖示上按右鍵,然後選擇 "管理",顯示 "電腦管理" 視窗。 2) 在 "電腦管理" 視窗,選擇 "磁碟管理"。 3) 右鍵單點要加密的磁碟分割區,您可以選擇 "刪除磁碟分割""刪除磁區" 或者是 "刪除邏輯磁碟"。 4) 如果 Windows 提示要重新啟動,點 "是" 重新啟動。然後在第 5 個步驟中重複第 1 和第 2 步。 5) 右鍵單點未分配/可用空間並選擇 "新建磁碟分割""新建磁區" 或者 "新建邏輯磁碟"。 6) 在 "新建磁碟分割精靈" 或者 "新建磁區精靈" 視窗中,在 "格式化磁碟分割區" 標題的對話方塊中,選擇 "不格式化此磁碟分割區" 或者是 "不格式化此磁區"。在此精靈裡面,點 "下一步" 然後點 "完成"。 7) 要注意您現在在 VeraCrypt 中選擇的磁碟機路徑可能是錯誤的,因此,退出並重新啟動 VeraCrypt 加密區建立精靈(如果正在執行)。 8) 嘗試重新加密該設備/磁碟分割區。\n\n如果 VeraCrypt 仍然顯示加密失敗,您可以考慮建立檔案類型的容器。</entry>
<entry lang="zh-tw" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">錯誤:無法鎖定和/或卸載檔案系統。 它可能被操作系統或應用程序(例如,防病毒軟體)使用。 加密分區可能會導致資料損壞和系統不穩定。\n\n請關閉可能正在使用檔案系統的任何應用程序(包括防病毒軟體),然後重試。 如果沒有幫助,請按照以下步驟進行操作。</entry>
<entry lang="zh-tw" key="FORMAT_CANT_DISMOUNT_FILESYS">錯誤:該磁碟機/磁碟分割區包含不能被卸載的檔案系統。此檔案系統可能被作業系統所使用。格式化此磁碟機/磁碟分割區很可能會導致資料損壞或者是系統不穩定。\n\n要解決此問題,我們建議您先刪除該磁碟分割區之後在不格式化的情況下重新建立這個磁碟分割區。要達成此目的,請遵照下面步驟: 1) 在 "我的電腦" 的圖示上按右鍵,然後選擇 "管理",顯示 "電腦管理" 視窗。 2) 在 "電腦管理" 視窗,選擇 "磁碟管理"。 3) 右鍵單點要加密的磁碟分割區,您可以選擇 "刪除磁碟分割""刪除磁區" 或者是 "刪除邏輯磁碟"。 4) 如果 Windows 提示要重新啟動,點 "是" 重新啟動。然後在第 5 個步驟中重複第 1 和第 2 步。 5) 右鍵單點未分配/可用空間並選擇 "新建磁碟分割""新建磁區" 或者 "新建邏輯磁碟"。 6) 在 "新建磁碟分割精靈" 或者 "新建磁區精靈" 視窗中,在 "格式化磁碟分割區" 標題的對話方塊中,選擇 "不格式化此磁碟分割區" 或者是 "不格式化此磁區"。在此精靈裡面,點 "下一步" 然後點 "完成"。 7) 要注意您現在在 VeraCrypt 中選擇的磁碟機路徑可能是錯誤的,因此,退出並重新啟動 VeraCrypt 加密區建立精靈(如果正在執行)。 8) 嘗試重新加密該設備/磁碟分割區。\n\n如果 VeraCrypt 仍然顯示加密失敗,您可以考慮建立檔案類型的容器。</entry>
<entry lang="zh-tw" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">錯誤:無法鎖定和/或卸載檔案系統。 它可能被操作系統或應用程序(例如,防病毒軟體)使用。 加密分區可能會導致資料損壞和系統不穩定。\n\n請關閉可能正在使用檔案系統的任何應用程序(包括防病毒軟體),然後重試。 如果沒有幫助,請按照以下步驟進行操作。</entry>
<entry lang="zh-tw" key="DEVICE_IN_USE_INFO">警告:一些掛載的磁碟機/磁碟分割區正在使用中!\n\n忽略這些可能導致非期望的結果,包括系統不穩定。\n\n我們強烈建議您關閉所有可能正在使用此磁碟機/磁碟分割區的應用程式。</entry>
<entry lang="zh-tw" key="DEVICE_PARTITIONS_ERR">選定的磁碟機包含磁碟分割區。\n\n格式化該磁碟機可能會導致系統不穩定或資料遺失。您可以選擇該磁碟機的某個磁碟分割區,或者刪除該磁碟機的所有磁碟分割區,以確保 VeraCrypt 對其安全格式化。</entry>
<entry lang="en" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">The selected non-system device contains partitions.\n\nEncrypted device-hosted VeraCrypt volumes can be created within devices that do not contain any partitions (including hard disks and solid-state drives). A device that contains partitions can be entirely encrypted in place (using a single master key) only if it is the drive where Windows is installed and from which it boots.\n\nIf you want to encrypt the selected non-system device using a single master key, you will need to remove all partitions on the device first to enable VeraCrypt to format it safely (formatting a device that contains partitions might cause system instability and/or data corruption). Alternatively, you can encrypt each partition on the drive individually (each partition will be encrypted using a different master key).\n\nNote: If you want to remove all partitions from a GPT disk, you may need to convert it to a MBR disk (using e.g. the Computer Management tool) in order to remove hidden partitions.</entry>
@@ -525,7 +523,7 @@
<entry lang="zh-tw" key="HIDVOL_FORMAT_FINISHED_TITLE">隱藏加密區已建立</entry>
<entry lang="en" key="HIDVOL_FORMAT_FINISHED_HELP">The hidden VeraCrypt volume has been successfully created and is ready for use. If all the instructions have been followed and if the precautions and requirements listed in the section "Security Requirements and Precautions Pertaining to Hidden Volumes" in the VeraCrypt User's Guide are followed, it should be impossible to prove that the hidden volume exists, even when the outer volume is mounted.\n\nWARNING: IF YOU DO NOT PROTECT THE HIDDEN VOLUME (FOR INFORMATION ON HOW TO DO SO, REFER TO THE SECTION "PROTECTION OF HIDDEN VOLUMES AGAINST DAMAGE" IN THE VERACRYPT USER'S GUIDE), DO NOT WRITE TO THE OUTER VOLUME. OTHERWISE, YOU MAY OVERWRITE AND DAMAGE THE HIDDEN VOLUME!</entry>
<entry lang="en" key="FIRST_HIDDEN_OS_BOOT_INFO">You have started the hidden operating system. As you may have noticed, the hidden operating system appears to be installed on the same partition as the original operating system. However, in reality, it is installed within the partition behind it (in the hidden volume). All read and write operations are being transparently redirected from the original system partition to the hidden volume.\n\nNeither the operating system nor applications will know that data written to and read from the system partition are actually written to and read from the partition behind it (from/to a hidden volume). Any such data is encrypted and decrypted on the fly as usual (with an encryption key different from the one that will be used for the decoy operating system).\n\n\nPlease click Next to continue.</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP_SYSENC">The outer volume has been created and mounted as drive %hc:. To this outer volume you should now copy some sensitive-looking files that you actually do NOT want to hide. They will be there for anyone forcing you to disclose the password for the first partition behind the system partition, where both the outer volume and the hidden volume (containing the hidden operating system) will reside. You will be able to reveal the password for this outer volume, and the existence of the hidden volume (and of the hidden operating system) will remain secret.\n\nIMPORTANT: The files you copy to the outer volume should not occupy more than %s. Otherwise, there may not be enough free space on the outer volume for the hidden volume (and you will not be able to continue). After you finish copying, click Next (do not unmount the volume).</entry>
<entry lang="en" key="HIDVOL_HOST_FILLING_HELP_SYSENC">The outer volume has been created and mounted as drive %hc:. To this outer volume you should now copy some sensitive-looking files that you actually do NOT want to hide. They will be there for anyone forcing you to disclose the password for the first partition behind the system partition, where both the outer volume and the hidden volume (containing the hidden operating system) will reside. You will be able to reveal the password for this outer volume, and the existence of the hidden volume (and of the hidden operating system) will remain secret.\n\nIMPORTANT: The files you copy to the outer volume should not occupy more than %s. Otherwise, there may not be enough free space on the outer volume for the hidden volume (and you will not be able to continue). After you finish copying, click Next (do not dismount the volume).</entry>
<entry lang="zh-tw" key="HIDVOL_HOST_FILLING_HELP">外層加密區已成功建立並作為 %hc: 磁碟機掛載。對這個加密區,現在您應複製一些您不是真正要隱藏的看似敏感的檔案。這是讓那些強迫您洩漏密碼的人能看到的檔。您將僅對這個外層加密區洩漏密碼,而不要洩漏給他們隱藏加密區的密碼。您真正要保護的檔將被儲存在稍後建立的隱藏加密區裡。當您完成複製後,請點 '下一步',而且不要卸載此加密區。\n\n注意:點 '下一步' 後,將進行叢集圖掃描來確定連續的可用空間大小,此可用空間的結尾與加密區結尾一致。該空間將提供用來建立隱藏加密區同時也是隱藏加密區的最大容量。叢集圖掃描能夠保證外層加密區中的資料不會被隱藏加密區複寫。</entry>
<entry lang="zh-tw" key="HIDVOL_HOST_FILLING_TITLE">外層加密區內容</entry>
<entry lang="zh-tw" key="HIDVOL_HOST_PRE_CIPHER_HELP">\n\n在下一步您將要為外層加密區(在其內將建立隱藏加密區)調整其選項。</entry>
@@ -590,7 +588,7 @@
<entry lang="en" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">Error: The files you copied to the outer volume occupy too much space. Therefore, there is not enough free space on the outer volume for the hidden volume.\n\nNote that the hidden volume must be as large as the system partition (the partition where the currently running operating system is installed). The reason is that the hidden operating system needs to be created by copying the content of the system partition to the hidden volume.\n\n\nThe process of creation of the hidden operating system cannot continue.</entry>
<entry lang="zh-tw" key="OPENFILES_DRIVER">驅動程式無法卸載這個加密區。位於此加密區上某些檔案可能仍被使用中。</entry>
<entry lang="zh-tw" key="OPENFILES_LOCK">無法鎖定此加密區。此加密區上仍有些檔案被使用中。因而也無法卸載。</entry>
<entry lang="en" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt cannot lock the volume because it is in use by the system or applications (there may be open files on the volume).\n\nDo you want to force unmount on the volume?</entry>
<entry lang="en" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt cannot lock the volume because it is in use by the system or applications (there may be open files on the volume).\n\nDo you want to force dismount on the volume?</entry>
<entry lang="zh-tw" key="OPEN_VOL_TITLE">請選擇一個 VeraCrypt 加密區</entry>
<entry lang="zh-tw" key="OPEN_TITLE">指定路徑和檔案名稱</entry>
<entry lang="en" key="SELECT_PKCS11_MODULE">Select PKCS #11 Library</entry>
@@ -613,7 +611,7 @@
<entry lang="en" key="FAVORITE_PIM_CHANGED">This volume is registered as a System Favorite and its PIM was changed.\nDo you want VeraCrypt to automatically update the System Favorite configuration (administrator privileges required)?\n\nPlease note that if you answer no, you'll have to update the System Favorite manually.</entry>
<entry lang="en" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">IMPORTANT: If you did not destroy your VeraCrypt Rescue Disk, your system partition/drive can still be decrypted using the old password (by booting the VeraCrypt Rescue Disk and entering the old password). You should create a new VeraCrypt Rescue Disk and then destroy the old one.\n\nDo you want to create a new VeraCrypt Rescue Disk?</entry>
<entry lang="zh-tw" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">要注意您的 VeraCrypt 救援磁碟仍然使用之前的加密演算法。如果您認為之前的加密演算法不安全,您應該建立一個新的 VeraCrypt 救援磁碟然後並銷毀原來的救援磁碟。\n\n您希望建立一個新的 VeraCrypt 救援磁碟嗎?要注意 VeraCrypt 將會使用之前的演算法。如果您認為之前的演算法不安全,您應該建立一片新的 VeraCrypt 救援磁碟且然後銷毀舊的。\n\n您想要建立一片新的 VeraCrypt 救援磁碟嗎?</entry>
<entry lang="en" key="KEYFILES_NOTE">Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="en" key="KEYFILES_NOTE">Any kind of file (for example, .mp3, .jpg, .zip, .avi) may be used as a VeraCrypt keyfile. Note that VeraCrypt never modifies the keyfile contents. You can select more than one keyfile (the order does not matter). If you add a folder, all non-hidden files found in it will be used as keyfiles. Click 'Add Token Files' to select keyfiles stored on security tokens or smart cards (or to import keyfiles to security tokens or smart cards).</entry>
<entry lang="zh-tw" key="KEYFILE_CHANGED">金鑰檔已成功新增/移除。</entry>
<entry lang="en" key="KEYFILE_EXPORTED">Keyfile exported.</entry>
<entry lang="zh-tw" key="PKCS5_PRF_CHANGED">首金鑰推導演算法已成功設定。</entry>
@@ -729,7 +727,7 @@
<entry lang="en" key="DLL_FILES">Library Modules</entry>
<entry lang="zh-tw" key="FORMAT_NTFS_STOP">NTFS 格式化無法繼續。</entry>
<entry lang="zh-tw" key="CANT_MOUNT_VOLUME">無法掛載加密區。</entry>
<entry lang="zh-tw" key="CANT_UNMOUNT_VOLUME">無法卸載加密區。</entry>
<entry lang="zh-tw" key="CANT_DISMOUNT_VOLUME">無法卸載加密區。</entry>
<entry lang="zh-tw" key="FORMAT_NTFS_FAILED">Windows 格式化為 NTFS 檔案系統格式時失敗。\n\n請選擇不同的檔案系統格式(如果可能的話)再嘗試一次。另外,您可以保留該區為未格式化區(檔案系統選擇為 "無"),結束精靈,掛載這個加密區,然後再使用系統或第三方廠商工具格式化這個已經掛載的加密區(該掛載的區仍然為加密狀態)。</entry>
<entry lang="zh-tw" key="FORMAT_NTFS_FAILED_ASK_FAT">Windows 格式化為 NTFS 檔案系統格式時失敗。\n\n您希望格式化為 FAT 檔案系統格式嗎?</entry>
<entry lang="zh-tw" key="DEFAULT">預設</entry>
@@ -771,7 +769,7 @@
<entry lang="en" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">An error prevented VeraCrypt from encrypting the partition. Please try fixing any previously reported problems and then try again. If the problems persist, it might help to follow the below steps.</entry>
<entry lang="en" key="INPLACE_ENC_GENERIC_ERR_RESUME">An error prevented VeraCrypt from resuming the process of encryption/decryption of the partition/volume.\n\nPlease try fixing any previously reported problems and then try resuming the process again if possible. Note that the volume cannot be mounted until it has been fully encrypted or fully decrypted.</entry>
<entry lang="en" key="INPLACE_DEC_GENERIC_ERR">An error prevented VeraCrypt from decrypting the volume. Please try fixing any previously reported problems and then try again if possible.</entry>
<entry lang="zh-tw" key="CANT_UNMOUNT_OUTER_VOL">錯誤:無法卸載外層加密區!\n\n如果加密區中的檔案或資料夾被程式或系統使用,則該加密區無法被鎖定。\n\n請關閉任何可能使用加密區上檔案或目錄的程式,然後再選取 '重試'。</entry>
<entry lang="zh-tw" key="CANT_DISMOUNT_OUTER_VOL">錯誤:無法卸載外層加密區!\n\n如果加密區中的檔案或資料夾被程式或系統使用,則該加密區無法被鎖定。\n\n請關閉任何可能使用加密區上檔案或目錄的程式,然後再選取 '重試'。</entry>
<entry lang="zh-tw" key="CANT_GET_OUTER_VOL_INFO">錯誤:不能獲得外層加密區的訊息! 加密區建立不能繼續。</entry>
<entry lang="zh-tw" key="CANT_ACCESS_OUTER_VOL">錯誤:無法存取外層加密區!加密區建立無法繼續。</entry>
<entry lang="zh-tw" key="CANT_MOUNT_OUTER_VOL">錯誤:無法掛載外層加密區!加密區建立無法繼續。</entry>
@@ -813,7 +811,7 @@
<entry lang="en" key="SECONDARY_KEY_SIZE_LRW">Tweak Key Size (LRW Mode)</entry>
<entry lang="zh-tw" key="BITS">位元</entry>
<entry lang="zh-tw" key="BLOCK_SIZE">區塊大小</entry>
<entry lang="zh-tw" key="KDF">KDF</entry>
<entry lang="zh-tw" key="PKCS5_PRF">PKCS-5 PRF</entry>
<entry lang="zh-tw" key="PKCS5_ITERATIONS">PKCS-5 反覆運算次數</entry>
<entry lang="zh-tw" key="VOLUME_CREATE_DATE">加密區建立時間</entry>
<entry lang="zh-tw" key="VOLUME_HEADER_DATE">標頭資訊上次修改時間</entry>
@@ -855,7 +853,7 @@
<entry lang="en" key="TC_INSTALLER_IS_RUNNING">VeraCrypt Installer is currently running on this system and performing or preparing installation or update of VeraCrypt. Before you proceed, please wait for it to finish or close it. If you cannot close it, please restart your computer before proceeding.</entry>
<entry lang="zh-tw" key="INSTALL_FAILED">安裝失敗。</entry>
<entry lang="zh-tw" key="UNINSTALL_FAILED">移除失敗。</entry>
<entry lang="zh-tw" key="DIST_PACKAGE_CORRUPTED">這發行包裝檔已經損壞。請試著再下載一次(最好從 VeraCrypt 官方網站 https://veracrypt.jp 下載)。</entry>
<entry lang="zh-tw" key="DIST_PACKAGE_CORRUPTED">這發行包裝檔已經損壞。請試著再下載一次(最好從 VeraCrypt 官方網站 https://www.veracrypt.fr 下載)。</entry>
<entry lang="zh-tw" key="CANNOT_WRITE_FILE_X">不能寫入檔案 %s</entry>
<entry lang="zh-tw" key="EXTRACTING_VERB">正在解壓縮</entry>
<entry lang="zh-tw" key="CANNOT_READ_FROM_PACKAGE">不能從包裝檔中讀取資料</entry>
@@ -882,7 +880,7 @@
<entry lang="zh-tw" key="INSTALL_COMPLETED">安裝完成。</entry>
<entry lang="zh-tw" key="CANT_CREATE_FOLDER">資料夾 "%s" 無法被建立</entry>
<entry lang="zh-tw" key="CLOSE_TC_FIRST">無法卸載 VeraCrypt 裝置驅動程式。\n\n請先關閉所有使用中的 VeraCrypt 視窗。如果這樣仍然沒有作用,請重新啟動電腦然後再試一次。</entry>
<entry lang="zh-tw" key="UNMOUNT_ALL_FIRST">在安裝或者移除 VeraCrypt 之前必須先要卸載所有的 VeraCrypt 加密區。</entry>
<entry lang="zh-tw" key="DISMOUNT_ALL_FIRST">在安裝或者移除 VeraCrypt 之前必須先要卸載所有的 VeraCrypt 加密區。</entry>
<entry lang="en" key="UNINSTALL_OLD_VERSION_FIRST">An obsolete version of VeraCrypt is currently installed on this system. It needs to be uninstalled before you can install this new version of VeraCrypt.\n\nAs soon as you close this message box, the uninstaller of the old version will be launched. Note that no volume will be decrypted when you uninstall VeraCrypt. After you uninstall the old version of VeraCrypt, run the installer of the new version of VeraCrypt again.</entry>
<entry lang="zh-tw" key="REG_INSTALL_FAILED">安裝註冊表項目失敗</entry>
<entry lang="zh-tw" key="DRIVER_INSTALL_FAILED">安裝裝置驅動程式失敗。請重新啟動電腦後再嘗試安裝 VeraCrypt。</entry>
@@ -903,7 +901,7 @@
<entry lang="zh-tw" key="MINUTES">分鐘</entry>
<entry lang="zh-tw" key="SECONDS"></entry>
<entry lang="zh-tw" key="OPEN">打開</entry>
<entry lang="zh-tw" key="UNMOUNT">卸載</entry>
<entry lang="zh-tw" key="DISMOUNT">卸載</entry>
<entry lang="zh-tw" key="SHOW_TC">顯示 VeraCrypt</entry>
<entry lang="zh-tw" key="HIDE_TC">隱藏 VeraCrypt</entry>
<entry lang="zh-tw" key="TOTAL_DATA_READ">掛載以來讀取的資料</entry>
@@ -940,7 +938,7 @@
<entry lang="en" key="ENTER_HEADER_BACKUP_PASSWORD">Enter password for the header stored in backup file</entry>
<entry lang="zh-tw" key="KEYFILE_CREATED">金鑰檔已成功建立。</entry>
<entry lang="en" key="KEYFILE_INCORRECT_NUMBER">The number of keyfiles you supplied is invalid.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be at least 64 bytes.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be comprized between 64 and 1048576 bytes.</entry>
<entry lang="en" key="KEYFILE_EMPTY_BASE_NAME">Please enter a name for the keyfile(s) to be generated</entry>
<entry lang="en" key="KEYFILE_INVALID_BASE_NAME">The base name of the keyfile(s) is invalid</entry>
<entry lang="en" key="KEYFILE_ALREADY_EXISTS">The keyfile '%s' already exists.\nDo you want to overwrite it? The generation process will be stopped if you answer No.</entry>
@@ -975,7 +973,7 @@
<entry lang="en" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - System Favorite Volumes</entry>
<entry lang="en" key="SYS_FAVORITES_HELP_LINK">What are system favorite volumes?</entry>
<entry lang="en" key="SYS_FAVORITES_REQUIRE_PBA">The system partition/drive does not appear to be encrypted.\n\nSystem favorite volumes can be mounted using only a pre-boot authentication password. Therefore, to enable use of system favorite volumes, you need to encrypt the system partition/drive first.</entry>
<entry lang="zh-tw" key="UNMOUNT_FIRST">在操作前請卸載加密區。</entry>
<entry lang="zh-tw" key="DISMOUNT_FIRST">在操作前請卸載加密區。</entry>
<entry lang="zh-tw" key="CANNOT_SET_TIMER">錯誤:不能設定計時器。</entry>
<entry lang="zh-tw" key="IDPM_CHECK_FILESYS">檢查檔案系統</entry>
<entry lang="zh-tw" key="IDPM_REPAIR_FILESYS">修正檔案系統</entry>
@@ -997,7 +995,7 @@
<entry lang="zh-tw" 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="zh-tw" key="UNSUPPORTED_CHARS_IN_PWD_RECOM">警告:密碼中包含非 ASCII 字元。可能會導致當作業系統組態改變時加密區無法掛載。\n\n您應該使用 ASCII 字元取代密碼中的非 ASCII 字元。如要這樣做,請選取 "加密區" -&gt; "修改加密區密碼"\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="en" key="EXE_FILE_EXTENSION_CONFIRM">WARNING: We strongly recommend that you avoid file extensions that are used for executable files (such as .exe, .sys, or .dll) and other similarly problematic file extensions. Using such file extensions causes Windows and antivirus software to interfere with the container, which adversely affects the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension or change it (e.g., to '.hc').\n\nAre you sure you want to use the problematic file extension?</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you unmount the volume.</entry>
<entry lang="en" key="EXE_FILE_EXTENSION_MOUNT_WARNING">WARNING: This container has a file extension that is used for executable files (such as .exe, .sys, or .dll) or some other file extension that is similarly problematic. It will very likely cause Windows and antivirus software to interfere with the container, which will adversely affect the performance of the volume and may also cause other serious problems.\n\nWe strongly recommend that you remove the file extension of the container or change it (e.g., to '.hc') after you dismount the volume.</entry>
<entry lang="zh-tw" key="HOMEPAGE">首頁(線上)</entry>
<entry lang="zh-tw" key="LARGE_IDE_WARNING_XP">警告:看起來您還沒有安裝任何 Windows 作業系統的修正檔案。您不應該向未安裝 SP1 或更新的修正檔案的 Windows XP 系統中大於 128 GB 的 IDE 硬碟寫入資料!如果這樣做了,磁碟上的資料(不論是否為 VeraCrypt 加密區)可能會損壞。要注意這是 Windows 作業系統的限制,而不是 VeraCrypt 的錯誤。</entry>
<entry lang="zh-tw" key="LARGE_IDE_WARNING_2K">警告:看起來您的 Windows 2000 系統還未安裝 SP3 或更新的修正檔案。您不應該向這個系統中大於 128 GB 的 IDE 硬碟寫入資料!如果這樣做了,磁碟上的資料(不論是否為 VeraCrypt 加密區)可能會損壞。要注意這是 Windows 作業系統的限制,而不是 VeraCrypt 的錯誤。\n\n注意:您也需在註冊表裡啟用 48-位元 LBA 支援;更多資訊,請參考 http//support.microsoft.com/kb/305098/EN-US</entry>
@@ -1009,11 +1007,11 @@
<entry lang="zh-tw" key="NO_SYSENC_PARTITION_SELECTED">沒有選擇分割區。\n\n點 "選擇磁碟機" 來選擇一個通常需要啟動前置認證的卸載的分割區(例如,一個位於其他沒有在執行作業系統的加密的系統磁碟機上的分割區,或是另外一個作業系統的加密的系統分割區)。\n\n注意:選擇的分割區將會以一般 VeraCrypt 加密區的方式掛載而沒有啟動前置認證。這會舉例來說在備份或修復的操作上比較有用。</entry>
<entry lang="zh-tw" key="CONFIRM_SAVE_DEFAULT_KEYFILES">警告:如果預設的金鑰檔被設定和啟用後,就無法掛載不使用該金鑰檔的加密區。因此,在啟用預設的金鑰檔之後,每當掛載加密區時記得不要勾選 "使用金鑰檔" 核取方塊(在輸入密碼欄位下方)。您確定保存選定的金鑰檔/路徑作為預設值嗎?</entry>
<entry lang="zh-tw" key="HK_AUTOMOUNT_DEVICES">自動掛載磁碟機</entry>
<entry lang="zh-tw" key="HK_UNMOUNT_ALL">全部卸載</entry>
<entry lang="zh-tw" key="HK_DISMOUNT_ALL">全部卸載</entry>
<entry lang="zh-tw" key="HK_WIPE_CACHE">清除快取</entry>
<entry lang="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All &amp; Wipe Cache</entry>
<entry lang="zh-tw" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">強制全部卸載並清除快取</entry>
<entry lang="zh-tw" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">強制全部卸載清除快取並結束程式</entry>
<entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All &amp; Wipe Cache</entry>
<entry lang="zh-tw" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">強制全部卸載並清除快取</entry>
<entry lang="zh-tw" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">強制全部卸載清除快取並結束程式</entry>
<entry lang="zh-tw" key="HK_MOUNT_FAVORITE_VOLUMES">掛載我的最愛加密區</entry>
<entry lang="zh-tw" key="HK_SHOW_HIDE_MAIN_WINDOW">顯示/隱藏 VeraCrypt 主視窗</entry>
<entry lang="zh-tw" key="PRESS_A_KEY_TO_ASSIGN">(點這裡並按下某個鍵盤按鍵)</entry>
@@ -1025,14 +1023,14 @@
<entry lang="en" key="PAGING_FILE_CREATION_PREVENTED">Paging file creation has been prevented.\n\nPlease note that, due to Windows issues, paging files cannot be located on non-system VeraCrypt volumes (including system favorite volumes). VeraCrypt supports creation of paging files only on an encrypted system partition/drive.</entry>
<entry lang="en" key="SYS_ENC_HIBERNATION_PREVENTED">An error or incompatibility prevents VeraCrypt from encrypting the hibernation file. Therefore, hibernation has been prevented.\n\nNote: When a computer hibernates (or enters a power-saving mode), the content of its system memory is written to a hibernation storage file residing on the system drive. VeraCrypt would not be able to prevent encryption keys and the contents of sensitive files opened in RAM from being saved unencrypted to the hibernation storage file.</entry>
<entry lang="en" key="HIDDEN_OS_HIBERNATION_PREVENTED">Hibernation has been prevented.\n\nVeraCrypt does not support hibernation on hidden operating systems that use an extra boot partition. Please note that the boot partition is shared by both the decoy and the hidden system. Therefore, in order to prevent data leaks and problems while resuming from hibernation, VeraCrypt has to prevent the hidden system from writing to the shared boot partition and from hibernating.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">VeraCrypt volume mounted as %c: has been unmounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt volumes have been unmounted.</entry>
<entry lang="en" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt volumes have been unmounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_UNMOUNTED">Successfully unmounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="zh-tw" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">警告:如果此選項被停用,包含使用中的檔案/目錄 的加密區將無法自動卸載。\n\n您確定要停用這個選項嗎?</entry>
<entry lang="zh-tw" key="WARN_PREF_AUTO_UNMOUNT">警告:包含使用中的檔案/目錄的加密區將無法自動卸載。\n\n要防止這種情況,在對話方塊視窗中啟用以下選項:"強制自動卸載,不論加密區是否包含使用中的檔案或目錄"</entry>
<entry lang="en" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-unmount volumes in such cases.</entry>
<entry lang="en" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">VeraCrypt volume mounted as %c: has been dismounted.</entry>
<entry lang="en" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt volumes have been dismounted.</entry>
<entry lang="en" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt volumes have been dismounted and password cache has been wiped.</entry>
<entry lang="en" key="SUCCESSFULLY_DISMOUNTED">Successfully dismounted</entry>
<entry lang="en" key="CONFIRM_BACKGROUND_TASK_DISABLED">WARNING: If the VeraCrypt Background Task is disabled, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n5) Tray icon\n\nNote: You can shut down the Background Task anytime by right-clicking the VeraCrypt tray icon and selecting 'Exit'.\n\nAre you sure you want to permanently disable the VeraCrypt Background Task?</entry>
<entry lang="zh-tw" key="CONFIRM_NO_FORCED_AUTODISMOUNT">警告:如果此選項被停用,包含使用中的檔案/目錄 的加密區將無法自動卸載。\n\n您確定要停用這個選項嗎?</entry>
<entry lang="zh-tw" key="WARN_PREF_AUTO_DISMOUNT">警告:包含使用中的檔案/目錄的加密區將無法自動卸載。\n\n要防止這種情況,在對話方塊視窗中啟用以下選項:"強制自動卸載,不論加密區是否包含使用中的檔案或目錄"</entry>
<entry lang="en" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">WARNING: When the notebook battery power is low, Windows may omit sending the appropriate messages to running applications when the computer is entering power saving mode. Therefore, VeraCrypt may fail to auto-dismount volumes in such cases.</entry>
<entry lang="en" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">You have scheduled the process of encryption/decryption of a partition/volume. The process has not been completed yet.\n\nDo you want to resume the process now?</entry>
<entry lang="zh-tw" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">您已經排定了加密或解密系統分割區/磁碟機的操作。但該項操作尚未完成。\n\n您希望現在開始(恢復)該項操作嗎?</entry>
<entry lang="en" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">Do you want to be prompted about whether you want to resume the currently scheduled processes of encryption/decryption of non-system partitions/volumes?</entry>
@@ -1040,7 +1038,7 @@
<entry lang="en" key="DO_NOT_PROMPT_ME">No, do not prompt me</entry>
<entry lang="en" key="NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL_NOTE">IMPORTANT: Keep in mind that you can resume the process of encryption/decryption of any non-system partition/volume by selecting 'Volumes' &gt; 'Resume Interrupted Process' from the menu bar of the main VeraCrypt window.</entry>
<entry lang="zh-tw" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">您已經排定了加密或解密系統分割區/磁碟機的操作。然而,啟動前置認證已失敗(或被繞過)。\n\n注意:如果您在啟動前置認證環境中解密了系統分割區/磁碟機,您也許需要經由在 VeraCrypt 主視窗選單中選擇 "系統" &gt; "永久解密系統分割區/磁碟機" 來完成最後的操作。</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="en" key="CONFIRM_EXIT">WARNING: If VeraCrypt exits now, the following functions will be disabled:\n\n1) Hot keys\n2) Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.)\n3) Auto-mount of favorite volumes\n4) Notifications (e.g., when damage to hidden volume is prevented)\n\nNote: If you do not wish VeraCrypt to run in the background, disable the VeraCrypt Background Task in the Preferences (and, if necessary, disable the automatic start of VeraCrypt in the Preferences).\n\nAre you sure you want VeraCrypt to exit?</entry>
<entry lang="zh-tw" key="CONFIRM_EXIT_UNIVERSAL">結束嗎?</entry>
<entry lang="zh-tw" key="CHOOSE_ENCRYPT_OR_DECRYPT">VeraCrypt 沒有足夠的訊息確定是否加密還是解密了。</entry>
<entry lang="zh-tw" key="CHOOSE_ENCRYPT_OR_DECRYPT_FINALIZE_DECRYPT_NOTE">VeraCrypt 沒有足夠的訊息確定是否加密還是解密了。\n\n注意:如果您在啟動前置認證環境中解密了系統分割區/磁碟機,您也許需要經由點 '解密' 來完成最後的操作。</entry>
@@ -1063,7 +1061,7 @@
<entry lang="zh-tw" key="SYS_AUTOMOUNT_DISABLED">您的系統未被設置為自動掛載新加密區。因此也不可能掛載磁碟機類型的加密區。自動卸載可以在執行下列命令後重啟系統來啟用。\n\n\nmountvol.exe /E</entry>
<entry lang="zh-tw" key="SYS_ASSIGN_DRIVE_LETTER">請在繼續前為該磁碟機/磁碟分割區指定一個代號("控制台" &gt; "系統和維護" &gt; "管理工具" - "建立和格式化磁碟分割區")。\n\n要注意這些是作業系統所需要的。</entry>
<entry lang="zh-tw" key="MOUNT_TC_VOLUME">掛載 VeraCrypt 加密區</entry>
<entry lang="zh-tw" key="UNMOUNT_ALL_TC_VOLUMES">卸除所有 VeraCrypt 加密區</entry>
<entry lang="zh-tw" key="DISMOUNT_ALL_TC_VOLUMES">卸除所有 VeraCrypt 加密區</entry>
<entry lang="zh-tw" key="UAC_INIT_ERROR">VeraCrypt 取得系統管理員權限失敗。</entry>
<entry lang="zh-tw" key="ERR_ACCESS_DENIED">已被作業系統拒絕存取。\n\n可能原因:作業系統要求您對某些資料夾、檔案、和磁碟機具有讀寫權限(或管理權限),以便您能夠從其中讀寫資料。通常情況下,非系統管理員只允許在他自己的檔案資料夾中建立、讀取和修改檔案。</entry>
<entry lang="en" key="SECTOR_SIZE_UNSUPPORTED">Error: The drive uses an unsupported sector size.\n\nIt is currently not possible to create partition/device-hosted volumes on drives that use sectors larger than 4096 bytes. However, note that you can create file-hosted volumes (containers) on such drives.</entry>
@@ -1229,7 +1227,7 @@
<entry lang="en" key="HIDDEN_OS_CREATION_PREINFO_HELP">In the next steps, VeraCrypt will create the hidden operating system by copying the content of the system partition to the hidden volume (data being copied will be encrypted on the fly with an encryption key different from the one that will be used for the decoy operating system).\n\nPlease note that the process will be performed in the pre-boot environment (before Windows starts) and it may take a long time to complete; several hours or even several days (depending on the size of the system partition and on the performance of your computer).\n\nYou will be able to interrupt the process, shut down your computer, start the operating system and then resume the process. However, if you interrupt it, the entire process of copying the system will have to start from the beginning (because the content of the system partition must not change during cloning).</entry>
<entry lang="en" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">Do you want to cancel the entire process of creation of the hidden operating system?\n\nNote: You will NOT be able to resume the process if you cancel it now.</entry>
<entry lang="zh-tw" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">您要取消系統加密預先測試嗎?</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://veracrypt.jp/en/Troubleshooting.html</entry>
<entry lang="en" key="BOOT_PRETEST_FAILED_RETRY">The VeraCrypt system encryption pretest failed. Do you want to try again?\n\nIf you select 'No', the pre-boot authentication component will be uninstalled.\n\nNotes:\n\n- If the VeraCrypt Boot Loader did not ask you to enter the password before Windows started, it is possible that your operating system does not boot from the drive on which it is installed. This is not supported.\n\n- If you used an encryption algorithm other than AES and the pretest failed (and you entered the password), it may have been caused by an inappropriately designed driver. Select 'No', and try encrypting the system partition/drive again, but use the AES encryption algorithm (which has the lowest memory requirements).\n\n- For more possible causes and solutions, see: https://www.veracrypt.fr/en/Troubleshooting.html</entry>
<entry lang="zh-tw" key="SYS_DRIVE_NOT_ENCRYPTED">系統分割區/磁碟機看起來並未加密(即沒有部分也沒有完全加密)。</entry>
<entry lang="zh-tw" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">您的系統分割區/磁碟機已加密(部分或完全加密)。\n\n請在繼續進行之前解密這個系統分割區/磁碟機。要這樣做,在 VeraCrypt 主視窗的選單中,選擇 "系統" &gt; "永久解密系統分割區/磁碟機"。</entry>
<entry lang="en" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">When the system partition/drive is encrypted (partially or fully), you cannot downgrade VeraCrypt (but you can upgrade it or reinstall the same version).</entry>
@@ -1285,17 +1283,17 @@
<entry lang="en" key="TOKEN_DATA_OBJECT_LABEL">File name</entry>
<entry lang="en" key="BOOT_PASSWORD_CACHE_KEYBOARD_WARNING">IMPORTANT: Please note that pre-boot authentication passwords are always typed using the standard US keyboard layout. Therefore, a volume that uses a password typed using any other keyboard layout may be impossible to mount using a pre-boot authentication password (note that this is not a bug in VeraCrypt). To allow such a volume to be mounted using a pre-boot authentication password, follow these steps:\n\n1) Click 'Select File' or 'Select Device' and select the volume.\n2) Select 'Volumes' &gt; 'Change Volume Password'.\n3) Enter the current password for the volume.\n4) Change the keyboard layout to English (US) by clicking the Language bar icon in the Windows taskbar and selecting 'EN English (United States)'.\n5) In VeraCrypt, in the field for the new password, type the pre-boot authentication password.\n6) Confirm the new password by retyping it in the confirmation field and click 'OK'.\nWARNING: Please keep in mind that if you follow these steps, the volume password will always have to be typed using the US keyboard layout (which is automatically ensured only in the pre-boot environment).</entry>
<entry lang="en" key="SYS_FAVORITES_KEYBOARD_WARNING">System favorite volumes will be mounted using the pre-boot authentication password. If any system favorite volume uses a different password, it will not be mounted.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Unmount All', auto-unmount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and unmount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be unmounted. Therefore, if you need e.g. to unmount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Unmount All' function, 'Auto-Unmount' functions, 'Unmount All' hot keys, etc.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Please note that if you need to prevent normal VeraCrypt volume actions (such as 'Dismount All', auto-dismount, etc.) from affecting system favorite volumes, you should enable the option 'Allow only administrators to view and dismount system favorite volumes in VeraCrypt'. In addition, when VeraCrypt is run without administrator privileges (the default on Windows Vista and later), system favorite volumes will not be displayed in the drive letter list in the main VeraCrypt application window.</entry>
<entry lang="en" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANT: Please keep in mind that if this option is enabled and VeraCrypt does not have administrator privileges, mounted system favorite volumes are NOT displayed in the VeraCrypt application window and they cannot be dismounted. Therefore, if you need e.g. to dismount a system favorite volume, please right-click the VeraCrypt icon (in the Start menu) and select 'Run as administrator' first. The same limitation applies to the 'Dismount All' function, 'Auto-Dismount' functions, 'Dismount All' hot keys, etc.</entry>
<entry lang="en" key="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry>
<entry lang="en" key="COMMAND_LINE_ERROR">Error while parsing command line.</entry>
<entry lang="zh-tw" key="RESCUE_DISK">救援磁碟</entry>
<entry lang="en" key="SELECT_FILE_AND_MOUNT">Select &amp;File and Mount...</entry>
<entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &amp;Device and Mount...</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and dismount system favorite volumes in VeraCrypt</entry>
<entry lang="en" key="MOUNT_SYSTEM_FAVORITES_ON_BOOT">Mount system favorite volumes when Windows starts (in the initial phase of the startup procedure)</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly unmounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always unmount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly unmounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="MOUNTED_VOLUME_DIRTY">Warning: The filesystem on the volume mounted as '%s' was not cleanly dismounted and thus may contain errors. Using a corrupted filesystem can cause data loss or data corruption.\n\nNote: Before you physically remove or switch off a device (such as a USB flash drive or an external hard drive) where a mounted VeraCrypt volume resides, you should always dismount the VeraCrypt volume in VeraCrypt first.\n\n\nDo you want Windows to attempt to detect and fix errors (if any) on the filesystem?</entry>
<entry lang="en" key="SYS_FAVORITE_VOLUME_DIRTY">Warning: One or more system favorite volumes were not cleanly dismounted and thus may contain filesystem errors. Please see the system event log for further details.\n\nUsing a corrupted filesystem can cause data loss or data corruption. You should check the affected system favorite volume(s) for errors (right-click each of them in VeraCrypt and select 'Repair Filesystem').</entry>
<entry lang="en" key="FILESYS_REPAIR_CONFIRM_BACKUP">Warning: Repairing a damaged filesystem using the Microsoft 'chkdsk' tool might cause loss of files in damaged areas. Therefore, it is recommended that you first back up the files stored on the VeraCrypt volume to another, healthy, VeraCrypt volume.\n\nDo you want to repair the filesystem now?</entry>
<entry lang="en" key="MOUNTED_CONTAINER_FORCED_READ_ONLY">Volume '%s' has been mounted as read-only because write access was denied.\n\nPlease make sure the security permissions of the file container allow you to write to it (right-click the container and select Properties &gt; Security).\n\nNote that, due to a Windows issue, you may see this warning even after setting the appropriate security permissions. This is not caused by a bug in VeraCrypt. A possible solution is to move your container to, e.g., your 'Documents' folder.\n\nIf you intend to keep your volume read-only, set the read-only attribute of the container (right-click the container and select Properties &gt; Read-only), which will suppress this warning.</entry>
<entry lang="en" key="MOUNTED_DEVICE_FORCED_READ_ONLY">Volume '%s' had to be mounted as read-only because write access was denied.\n\nPlease make sure no other application (e.g. antivirus software) is accessing the partition/device on which the volume is hosted.</entry>
@@ -1306,8 +1304,8 @@
<entry lang="en" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Note that the number of threads is currently limited, which will affect benchmark results (worse performance).\n\nTo utilize the full potential of the processor(s), select 'Settings' &gt; 'Performance' and disable the corresponding option.</entry>
<entry lang="en" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">Do you want VeraCrypt to attempt to disable write protection of the partition/drive?</entry>
<entry lang="en" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">WARNING: This setting may degrade performance.\n\nAre you sure you want to use this setting?</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-unmounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always unmount the volume in VeraCrypt first.\n\nUnexpected spontaneous unmount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Warning: VeraCrypt volume auto-dismounted</entry>
<entry lang="en" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Before you physically remove or turn off a device containing a mounted volume, you should always dismount the volume in VeraCrypt first.\n\nUnexpected spontaneous dismount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry>
<entry lang="en" key="UNSUPPORTED_TRUECRYPT_FORMAT">This volume was created with TrueCrypt %x.%x but VeraCrypt supports only TrueCrypt volumes created with TrueCrypt 6.x/7.x series</entry>
<entry lang="zh-tw" key="TEST">測試</entry>
<entry lang="zh-tw" key="KEYFILE">金鑰檔案</entry>
@@ -1453,7 +1451,7 @@
<entry lang="en" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Add All Mounted Volumes to Favorites...</entry>
<entry lang="en" key="TASKICON_PREF_MENU_ITEMS">Task Icon Menu Items</entry>
<entry lang="en" key="TASKICON_PREF_OPEN_VOL">Open Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry>
<entry lang="en" key="TASKICON_PREF_DISMOUNT_VOL">Dismount Mounted Volumes</entry>
<entry lang="en" key="DISK_FREE">Free space available: {0}</entry>
<entry lang="en" key="VOLUME_SIZE_HELP">Please specify the size of the container to create. Note that the minimum possible size of a volume is 292 KiB.</entry>
<entry lang="en" key="LINUX_CONFIRM_INNER_VOLUME_CALC">WARNING: You have selected a filesystem other than FAT for the outer volume.\nPlease Note that in this case VeraCrypt can't calculate the exact maximum allowed size for the hidden volume and it will use only an estimation that can be wrong.\nThus, it is your responsibility to use an adequate value for the size of the hidden volume so that it does not overlap the outer volume.\n\nDo you want to continue using the selected filesystem for the outer volume?</entry>
@@ -1483,14 +1481,14 @@
<entry lang="en" key="LINUX_DO_NOT_MOUNT">Do &amp;not mount</entry>
<entry lang="en" key="LINUX_MOUNT_AT_DIR">Mount at directory:</entry>
<entry lang="en" key="LINUX_SELECT">Se&amp;lect...</entry>
<entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount All Volumes When</entry>
<entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry>
<entry lang="en" key="LINUX_ENTERING_POWERSAVING">System is entering power saving mode</entry>
<entry lang="en" key="LINUX_LOGIN_ACTION">Actions to Perform when User Logs On</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</entry>
<entry lang="en" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Close all Explorer windows of volume being dismounted</entry>
<entry lang="en" key="LINUX_HOTKEYS">Hotkeys</entry>
<entry lang="en" key="LINUX_SYSTEM_HOTKEYS">System-Wide Hotkeys</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/unmount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_UNMOUNT">Display confirmation message box after unmount</entry>
<entry lang="en" key="LINUX_SOUND_NOTIFICATION">Play system notification sound after mount/dismount</entry>
<entry lang="en" key="LINUX_CONFIRM_AFTER_DISMOUNT">Display confirmation message box after dismount</entry>
<entry lang="en" key="LINUX_VC_QUITS">VeraCrypt quits</entry>
<entry lang="en" key="LINUX_OPEN_FINDER">Open Finder window for successfully mounted volume</entry>
<entry lang="en" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Please note that this setting takes effect only if use of the kernel cryptographic services is disabled.</entry>
@@ -1510,11 +1508,11 @@
<entry lang="en" key="LINUX_DYNAMIC_NOTICE">Please note that if your operating system does not allocate files from the beginning of the free space, the maximum possible hidden volume size may be much smaller than the size of the free space on the outer volume. This is not a bug in VeraCrypt but a limitation of the operating system.</entry>
<entry lang="en" key="LINUX_MAX_HIDDEN_SIZE">Maximum possible hidden volume size for this volume is {0}.</entry>
<entry lang="en" key="LINUX_OPEN_OUTER_VOL">Open Outer Volume</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not unmount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_OUTER_VOL_IS_MOUNTED">Outer volume has been successfully created and mounted as '{0}'. To this volume you should now copy some sensitive-looking files that you actually do NOT want to hide. The files will be there for anyone forcing you to disclose your password. You will reveal only the password for this outer volume, not for the hidden one. The files that you really care about will be stored in the hidden volume, which will be created later on. When you finish copying, click Next. Do not dismount the volume.\n\nNote: After you click Next, the outer volume will be analyzed to determine the size of uninterrupted area of free space whose end is aligned with the end of the volume. This area will accommodate the hidden volume, so it will limit its maximum possible size. The procedure ensures no data on the outer volume are overwritten by the hidden volume.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">Error: You are trying to encrypt a system drive.\n\nVeraCrypt can encrypt a system drive only under Windows.</entry>
<entry lang="en" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">Error: You are trying to encrypt a system partition.\n\nVeraCrypt can encrypt system partitions only under Windows.</entry>
<entry lang="en" key="LINUX_WARNING_FORMAT_DESTROY_FS">WARNING: Formatting of the device will destroy all data on filesystem '{0}'.\n\nDo you want to continue?</entry>
<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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please dismount '{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>
@@ -1522,8 +1520,7 @@
<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>
<entry lang="en" key="LINUX_VOL_DISMOUNTED">Volume {0} has been dismounted.</entry>
<entry lang="en" key="LINUX_OOM">Out of memory.</entry>
<entry lang="en" key="LINUX_CANT_GET_ADMIN_PRIV">Failed to obtain administrator privileges</entry>
<entry lang="en" key="LINUX_COMMAND_GET_ERROR">Command {0} returned error {1}.</entry>
@@ -1553,7 +1550,7 @@
<entry lang="en" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Error: The drive uses a sector size other than 512 bytes.\n\nDue to limitations of components available on your platform, partition/device-hosted volumes cannot be created/used on the drive.\n\nPossible solutions:\n- Create a file-hosted volume (container) on the drive.\n- Use a drive with 512-byte sectors.\n- Use VeraCrypt on another platform.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">The host file/device is already in use.</entry>
<entry lang="en" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Volume slot unavailable.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires macFUSE 2.5 or above.</entry>
<entry lang="en" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt requires OSXFUSE 2.5 or above.</entry>
<entry lang="en" key="EXCEPTION_OCCURRED">Exception occurred</entry>
<entry lang="en" key="ENTER_PASSWORD">Enter password</entry>
<entry lang="en" key="ENTER_TC_VOL_PASSWORD">Enter VeraCrypt Volume Password</entry>
@@ -1570,124 +1567,6 @@
<entry lang="en" key="VOLUME_HOST_IN_USE">WARNING: The host file/device {0} is already in use!\n\nIgnoring this can cause undesired results including system instability. All applications that might be using the host file/device should be closed before mounting the volume.\n\nContinue mounting?</entry>
<entry lang="en" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt was previously installed using an MSI package and so it can't be updated using the standard installer.\n\nPlease use the MSI package to update your VeraCrypt installation.</entry>
<entry lang="en" key="IDC_USE_ALL_FREE_SPACE">Use all available free space</entry>
<entry lang="en" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">VeraCrypt cannot be upgraded because the system partition/drive was encrypted using an algorithm that is not supported anymore.\nPlease decrypt your system before upgrading VeraCrypt and then encrypt it again.</entry>
<entry lang="en" key="LINUX_EX2MSG_TERMINALNOTFOUND">Supported terminal application could not be found, you need either xterm, konsole or gnome-terminal (with dbus-x11).</entry>
<entry lang="en" key="IDM_MOUNT_NO_CACHE">Mount Without Cache</entry>
<entry lang="en" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nExpand a VeraCrypt volume on the fly without reformatting\n\n\nAll kind of volumes (container files, disks and partitions) formatted with NTFS are supported. The only condition is that there must be enough free space on the host drive or host device of the VeraCrypt volume.\n\nDo not use this software to expand an outer volume containing a hidden volume, because this destroys the hidden volume!\n</entry>
<entry lang="en" key="IDC_STEPSEXPAND">1. Select the VeraCrypt volume to be expanded\n2. Click the 'Mount' button</entry>
<entry lang="en" key="IDT_VOL_NAME">Volume: </entry>
<entry lang="en" key="IDT_FILE_SYS">File system: </entry>
<entry lang="en" key="IDT_CURRENT_SIZE">Current size: </entry>
<entry lang="en" key="IDT_NEW_SIZE">New size: </entry>
<entry lang="en" key="IDT_NEW_SIZE_BOX_TITLE">Enter new volume size</entry>
<entry lang="en" key="IDC_INIT_NEWSPACE">Fill new space with random data</entry>
<entry lang="en" key="IDC_QUICKEXPAND">Quick Expand</entry>
<entry lang="en" key="IDT_INIT_SPACE">Fill new space: </entry>
<entry lang="en" key="EXPANDER_FREE_SPACE">%s free space available on host drive</entry>
<entry lang="en" key="EXPANDER_HELP_DEVICE">This is a device-based VeraCrypt volume.\n\nThe new volume size will be choosen automatically as the size of the host device.</entry>
<entry lang="en" key="EXPANDER_HELP_FILE">Please specify the new size of the VeraCrypt volume (must be at least %I64u KB larger than the current size).</entry>
<entry lang="en" key="QUICK_EXPAND_WARNING">WARNING: You should use Quick Expand only in the following cases:\n\n1) The device where the file container is located contains no sensitive data and you do not need plausible deniability.\n2) The device where the file container is located has already been securely and fully encrypted.\n\nAre you sure you want to use Quick Expand?</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT">IMPORTANT: Move your mouse as randomly as possible within this window. The longer you move it, the better. This significantly increases the cryptographic strength of the encryption keys. Then click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_STATUS_TEXT_LEGACY">Click 'Continue' to expand the volume.</entry>
<entry lang="en" key="EXPANDER_FINISH_ERROR">Error: volume expansion failed.</entry>
<entry lang="en" key="EXPANDER_FINISH_ABORT">Error: operation aborted by user.</entry>
<entry lang="en" key="EXPANDER_FINISH_OK">Finished. Volume successfully expanded.</entry>
<entry lang="en" key="EXPANDER_CANCEL_WARNING">Warning: Volume expansion is in progress!\n\nStopping now may result in a damaged volume.\n\nDo you really want to cancel?</entry>
<entry lang="en" key="EXPANDER_STARTING_STATUS">Starting volume expansion ...\n</entry>
<entry lang="en" key="EXPANDER_HIDDEN_VOLUME_ERROR">An outer volume containing a hidden volume can't be expanded, because this destroys the hidden volume.\n</entry>
<entry lang="en" key="EXPANDER_SYSTEM_VOLUME_ERROR">A VeraCrypt system volume can't be expanded.</entry>
<entry lang="en" key="EXPANDER_NO_FREE_SPACE">Not enough free space to expand the volume</entry>
<entry lang="en" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Warning: The container file is larger than the VeraCrypt volume area. The data after the VeraCrypt volume area will be overwritten.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_FAT">Warning: The VeraCrypt volume contains a FAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_EXFAT">Warning: The VeraCrypt volume contains an exFAT file system!\n\nOnly the VeraCrypt volume itself will be expanded, but not the file system.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_WARNING_UNKNOWN_FS">Warning: The VeraCrypt volume contains an unknown or no file system!\n\nOnly the VeraCrypt volume itself will be expanded, the file system remains unchanged.\n\nDo you want to continue?</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">New volume size too small, must be at least %I64u kB larger than the current size.</entry>
<entry lang="en" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">New volume size too large, not enough space on host drive.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Maximum file size of %I64u MB on host drive exceeded.</entry>
<entry lang="en" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Error: Failed to get necessary privileges to enable Quick Expand!\nPlease uncheck Quick Expand option and try again.</entry>
<entry lang="en" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Maximum VeraCrypt volume size of %I64u TB exceeded!\n</entry>
<entry lang="en" key="FULL_FORMAT">Full Format</entry>
<entry lang="en" key="FAST_CREATE">Fast Create</entry>
<entry lang="en" key="WARN_FAST_CREATE">WARNING: You should use Fast Create only in the following cases:\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 Fast Create?</entry>
<entry lang="en" key="IDC_ENABLE_EMV_SUPPORT">Enable EMV Support</entry>
<entry lang="en" key="COMMAND_APDU_INVALID">The APDU command sent to the card is not valid.</entry>
<entry lang="en" key="EXTENDED_APDU_UNSUPPORTED">Extended APDU commands cannot be used with the current token.</entry>
<entry lang="en" key="SCARD_MODULE_INIT_FAILED">Error when loading the WinSCard / PCSC library.</entry>
<entry lang="en" key="EMV_UNKNOWN_CARD_TYPE">The card in the reader is not a supported EMV card.</entry>
<entry lang="en" key="EMV_SELECT_AID_FAILED">The AID of the card in the reader could not be selected.</entry>
<entry lang="en" key="EMV_ICC_CERT_NOTFOUND">ICC Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_ISSUER_CERT_NOTFOUND">Issuer Public Key Certificate was not found in the card.</entry>
<entry lang="en" key="EMV_CPLC_NOTFOUND">CPLC was not found in the EMV card.</entry>
<entry lang="en" key="EMV_PAN_NOTFOUND">No Primary Account Number (PAN) found in the EMV card.</entry>
<entry lang="en" key="INVALID_EMV_PATH">EMV path is invalid.</entry>
<entry lang="en" key="EMV_KEYFILE_DATA_NOTFOUND">Unable to build a keyfile from the EMV card's data.\n\nOne of the following is missing:\n- ICC Public Key Certificate.\n- Issuer Public Key Certificate.\n- CPLC data.</entry>
<entry lang="en" key="SCARD_W_REMOVED_CARD">No card in the reader.\n\nPlease make sure the card is correctly slotted.</entry>
<entry lang="en" key="FORMAT_EXTERNAL_FAILED">Windows format.com command failed to format the volume as NTFS/exFAT/ReFS: Error 0x%.8X.\n\nFalling back to using Windows FormatEx API.</entry>
<entry lang="en" key="FORMATEX_API_FAILED">Windows FormatEx API failed to format the volume as NTFS/exFAT/ReFS.\n\nFailure status = %s.</entry>
<entry lang="en" key="EXPANDER_WRITING_RANDOM_DATA">Writing random data to new space ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Writing re-encrypted backup header ...\n</entry>
<entry lang="en" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Writing re-encrypted primary header ...\n</entry>
<entry lang="en" key="EXPANDER_WIPING_OLD_HEADER">Wiping old backup header ...\n</entry>
<entry lang="en" key="EXPANDER_MOUNTING_VOLUME">Mounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_UNMOUNTING_VOLUME">Unmounting volume ...\n</entry>
<entry lang="en" key="EXPANDER_EXTENDING_FILESYSTEM">Extending file system ...\n</entry>
<entry lang="en" key="PARTIAL_SYSENC_MOUNT_READONLY">Warning: The system partition you attempted to mount was not fully encrypted. As a safety measure to prevent potential corruption or unwanted modifications, volume '%s' was mounted as read-only.</entry>
<entry lang="en" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Important information on using third-party file extensions</entry>
<entry lang="en" key="IDC_DISABLE_MEMORY_PROTECTION">Disable memory protection for Accessibility tools compatibility</entry>
<entry lang="en" key="DISABLE_MEMORY_PROTECTION_WARNING">WARNING: Disabling memory protection significantly reduces security. Enable this option ONLY if you rely on Accessibility tools, like Screen Readers, to interact with VeraCrypt's UI.</entry>
<entry lang="en" key="LINUX_LANGUAGE">Language</entry>
<entry lang="en" key="LINUX_SELECT_SYS_DEFAULT_LANG">Select system's default language</entry>
<entry lang="en" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">For the language change to come into effect, VeraCrypt needs to be restarted.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE">WARNING: The volume's master key is vulnerable to an attack that compromises data security.\n\nPlease create a new volume and transfer the data to it.</entry>
<entry lang="en" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">WARNING: The encrypted system's master key is vulnerable to an attack that compromises data security.\nPlease decrypt the system partition/drive and then re-encrypt it.</entry>
<entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">WARNING: The volume's master key has a security vulnerability.</entry>
<entry lang="en" key="MOUNTPOINT_BLOCKED">ERROR: The volume mount point is blocked because it overrides a protected system directory.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="MOUNTPOINT_NOTALLOWED">ERROR: The volume mount point is not allowed because it overrides a directory that is part of the PATH environment variable.\n\nPlease choose a different mount point.</entry>
<entry lang="en" key="INSECURE_MODE">[INSECURE MODE]</entry>
<entry lang="en" key="IDC_DISABLE_SCREEN_PROTECTION">Disable protection against screenshots and screen recording</entry>
<entry lang="en" key="DISABLE_SCREEN_PROTECTION_WARNING">WARNING: Disabling screen protection significantly reduces security. Enable this option ONLY if you have a specific need to capture VeraCrypt's interface. This may expose sensitive data to screenshot tools and screen recording features such as Windows 11 Recall.</entry>
<entry lang="en" key="MEMORY_COST">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="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>
<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>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
-444
View File
@@ -1,444 +0,0 @@
<#
.SYNOPSIS
Create a VeraCrypt container just large enough for the supplied file or
directory and copy the data into it.
.DESCRIPTION
• Chooses an exFAT cluster size (auto or explicit).
• Calculates the minimum container size using an iterative approach for FAT/Bitmap sizing, plus safety margin.
• Creates, mounts, copies, verifies, and unmounts all guarded by -WhatIf/-Confirm (SupportsShouldProcess).
• Finds VeraCrypt automatically or takes a -VeraCryptDir override.
• Encryption and hash algorithms are parameters.
• Password can be passed via SecureString prompt or pipeline.
• Enhanced parameterization for safety margins and VeraCrypt overhead.
.PARAMETER InputPath File or directory to store in the container.
.PARAMETER ContainerPath Dest *.hc* file. Default: InputPath + '.hc'.
.PARAMETER ClusterSizeKB 4512 KiB or 'Auto' (default 32).
.PARAMETER VeraCryptDir Optional folder containing VeraCrypt *.exe* files.
.PARAMETER EncryptionAlg Any algorithm VeraCrypt accepts (default AES).
.PARAMETER HashAlg VeraCrypt hash (default SHA512).
.PARAMETER SafetyPercent Safety margin as percentage of calculated size (default 1.0 for small, 0.1 for large).
.PARAMETER VCOverheadMiB VeraCrypt overhead in MiB (default varies by size).
.PARAMETER Force If specified, allows overwriting the output container if it already exists.
.PARAMETER Password Optional SecureString password for automation (prompts if not provided).
.EXAMPLE
.\EncryptData.ps1 -InputPath C:\Data -ContainerPath C:\EncryptedData.hc -ClusterSizeKB Auto
.NOTES
Author: Mounir IDRASSI
Email: mounir.idrassi@amcrypto.jp
Date: 30 April 2025
License: This script is licensed under the Apache License 2.0
#>
[CmdletBinding(SupportsShouldProcess)]
param(
[Parameter(Mandatory)][string]$InputPath,
[string]$ContainerPath,
[ValidateSet('Auto','4','8','16','32','64','128','256','512')]
[string]$ClusterSizeKB = '32',
[string]$VeraCryptDir,
[string]$EncryptionAlg = 'AES',
[string]$HashAlg = 'SHA512',
# 0 ⇒ use built-in logic; otherwise 0100 %
[ValidateRange(0.0,100.0)]
[double]$SafetyPercent = 0,
# 0 ⇒ auto. 1-8192 MiB accepted.
[ValidateRange(0,8192)]
[int]$VCOverheadMiB = 0,
[Parameter(ValueFromPipeline = $true)][System.Security.SecureString]$Password,
[switch]$Force
)
Set-StrictMode -Version Latest
$ErrorActionPreference = 'Stop'
function Get-AbsolutePath([string]$Path) {
if ([System.IO.Path]::IsPathRooted($Path)) {
return [System.IO.Path]::GetFullPath($Path)
} else {
$combined = Join-Path -Path (Get-Location) -ChildPath $Path
return [System.IO.Path]::GetFullPath($combined)
}
}
# Helper creates a temp file, registers it for secure deletion in finally
function New-VcErrFile {
$tmp = [System.IO.Path]::GetTempFileName()
# Pre-allocate 0-byte file; caller overwrites
return $tmp
}
# Constants for exFAT sizing
$EXFAT_MIN_CLUSTERS = 2
$EXFAT_PRACTICAL_MIN_CLUSTERS = 65533
$INITIAL_VBR_SIZE = 32KB
$BACKUP_VBR_SIZE = 32KB
$RAW_UPCASE_BYTES = 128KB
#----------------------- Locate VeraCrypt executables --------------------------
if (-not $VeraCryptDir) {
$candidates = @(Join-Path $env:ProgramFiles 'VeraCrypt')
$VeraCryptDir = $candidates |
Where-Object { Test-Path (Join-Path $_ 'VeraCrypt.exe') } |
Select-Object -First 1
if (-not $VeraCryptDir) {
$cmd = Get-Command 'VeraCrypt.exe' -ErrorAction SilentlyContinue
if ($cmd) { $VeraCryptDir = Split-Path $cmd.Path }
}
if (-not $VeraCryptDir) { throw 'VeraCrypt executables not found specify -VeraCryptDir.' }
}
$VeraCryptExe = Join-Path $VeraCryptDir 'VeraCrypt.exe'
$VeraCryptFormatExe = Join-Path $VeraCryptDir 'VeraCrypt Format.exe'
if (-not (Test-Path $VeraCryptExe) -or -not (Test-Path $VeraCryptFormatExe)) {
throw 'VeraCrypt executables missing.'
}
#--------------------------- Input / Output Paths ------------------------------
$InputPath = Get-AbsolutePath $InputPath
if (-not (Test-Path $InputPath)) { throw "InputPath '$InputPath' does not exist." }
if (-not $ContainerPath) {
$ContainerPath = ($InputPath.TrimEnd('\') + '.hc')
} else {
$ContainerPath = Get-AbsolutePath $ContainerPath
}
if (Test-Path $ContainerPath) {
if ($Force) {
Write-Verbose "Container '$ContainerPath' already exists and will be overwritten."
if ($PSCmdlet.ShouldProcess("File '$ContainerPath'", "Remove existing container")) {
Remove-Item $ContainerPath -Force
} else {
throw "Operation cancelled by user. Cannot overwrite '$ContainerPath'."
}
} else {
throw "Container '$ContainerPath' already exists. Use -Force to overwrite."
}
}
#----------------------------- Cluster Size -------------------------------------
[UInt32]$ClusterSize = if ($ClusterSizeKB -eq 'Auto') { $null } else { [int]$ClusterSizeKB * 1KB }
#--------------------------- exFAT Size Helpers --------------------------------
function Get-DirectoryStats {
param([string]$Path)
$fileLengths = [System.Collections.Generic.List[UInt64]]::new()
$dirLengths = [System.Collections.Generic.List[UInt64]]::new()
[UInt64]$metaSum = 0
function WalkDir {
param([System.IO.DirectoryInfo]$Dir)
[UInt64]$thisDirBytes = 0
# Use -ErrorAction SilentlyContinue for potentially inaccessible items (like system junctions)
Get-ChildItem -LiteralPath $Dir.FullName -Force -ErrorAction SilentlyContinue | ForEach-Object {
$nameLen = $_.Name.Length
$nameSlots = [math]::Ceiling($nameLen / 15) # name entries
$dirSlots = 2 + $nameSlots # File + Stream + Names
$entryBytes = $dirSlots * 32
$metaSum += $entryBytes
$thisDirBytes += $entryBytes
if ($_.PSIsContainer) {
WalkDir $_
} else {
# Handle potential errors reading length (e.g., locked files)
try {
$fileLengths.Add([UInt64]$_.Length)
} catch {
Write-Warning "Could not get length for file: $($_.FullName). Error: $($_.Exception.Message)"
}
}
}
# At least one 32-byte entry so the directory is not “empty”
if ($thisDirBytes -lt 32) { $thisDirBytes = 32 }
$dirLengths.Add($thisDirBytes)
}
$startItem = Get-Item -LiteralPath $Path -Force
if ($startItem -isnot [System.IO.DirectoryInfo]) {
# Handle case where InputPath is a single file
$nameLen = $startItem.Name.Length
$nameSlots = [math]::Ceiling($nameLen / 15)
$dirSlots = 2 + $nameSlots
$entryBytes = $dirSlots * 32
$metaSum = $entryBytes
$fileLengths.Add([UInt64]$startItem.Length)
$dirLengths.Add(32) # Minimal directory entry size for the root
} else {
WalkDir $startItem
}
[PSCustomObject]@{
MetadataSum = $metaSum # pure 32-byte entry bytes (used for info, not size calc)
FileLengths = $fileLengths # payload of regular files
DirLengths = $dirLengths # payload of *directory files* (containing entries)
}
}
function Compute-ExFatSize {
param(
[Parameter(Mandatory)][UInt64[]] $FileLengths,
[Parameter(Mandatory)][UInt64[]] $DirLengths,
[Parameter(Mandatory)][UInt32] $Cluster
)
# --- Calculate base size (VBR, UpCase Table, File Payloads, Directory Payloads) ---
# These parts don't depend on the total cluster count directly.
[UInt64]$baseSize = $INITIAL_VBR_SIZE + $BACKUP_VBR_SIZE
$baseSize += [math]::Ceiling($RAW_UPCASE_BYTES / $Cluster) * $Cluster # up-case tbl aligned
foreach ($len in $FileLengths) { $baseSize += [math]::Ceiling($len / $Cluster) * $Cluster }
foreach ($len in $DirLengths ) { $baseSize += [math]::Ceiling($len / $Cluster) * $Cluster }
# --- Iterative FAT/Bitmap Calculation ---
# The size of FAT and Bitmap depends on the total cluster count, which depends on the total size (including FAT/Bitmap).
# We iterate until the calculated total size stabilizes.
[UInt64]$currentTotalSize = $baseSize # Initial guess: size without FAT/Bitmap
[UInt64]$previousTotalSize = 0
$maxIterations = 10 # Safety break to prevent infinite loops
$iteration = 0
while ($currentTotalSize -ne $previousTotalSize -and $iteration -lt $maxIterations) {
$previousTotalSize = $currentTotalSize
$iteration++
Write-Verbose "Compute-ExFatSize Iteration '$iteration': Starting size = '$previousTotalSize' bytes"
# Calculate cluster count based on the size from the *start* of this iteration
$clusterCount = [math]::Ceiling($previousTotalSize / $Cluster)
# Ensure minimum cluster count if needed (exFAT has minimums, though usually covered by VBR etc.)
if ($clusterCount -lt $EXFAT_PRACTICAL_MIN_CLUSTERS) { $clusterCount = $EXFAT_PRACTICAL_MIN_CLUSTERS } # Practical minimum for FAT entries > sector size
# Allocation bitmap (1 bit per cluster, aligned to cluster size)
$bitmapBytes = [math]::Ceiling($clusterCount / 8)
$bitmapBytesAligned = [math]::Ceiling($bitmapBytes / $Cluster) * $Cluster
Write-Verbose " Clusters: '$clusterCount', Bitmap Bytes: '$bitmapBytes', Aligned Bitmap: '$bitmapBytesAligned'"
# FAT (4 bytes per cluster, +2 reserved entries, aligned to cluster size)
$fatBytes = ([UInt64]$clusterCount + 2) * 4 # Use UInt64 to avoid overflow on large volumes
$fatBytesAligned = [math]::Ceiling($fatBytes / $Cluster) * $Cluster
Write-Verbose " FAT Bytes: '$fatBytes', Aligned FAT: '$fatBytesAligned'"
# Calculate the new total size estimate including FAT and Bitmap
$currentTotalSize = $baseSize + $bitmapBytesAligned + $fatBytesAligned
Write-Verbose " New Estimated Total Size: '$currentTotalSize' bytes"
}
if ($iteration -ge $maxIterations) {
Write-Warning "FAT/Bitmap size calculation did not converge after '$maxIterations' iterations. Using last calculated size ('$currentTotalSize' bytes). This might indicate an issue or extremely large dataset."
}
Write-Verbose "Compute-ExFatSize Converged Size: '$currentTotalSize' bytes after '$iteration' iterations."
return [PSCustomObject]@{
TotalSize = $currentTotalSize
ClusterCount = $clusterCount
IterationHistory = @()
}
}
function Get-RecommendedCluster {
param([UInt64]$VolumeBytes)
switch ($VolumeBytes) {
{ $_ -le 256MB } { return 4KB }
{ $_ -le 32GB } { return 32KB }
{ $_ -le 256TB } { return 128KB }
default { return 512KB }
}
}
#----------------------------------------------- Drive the two-pass logic
Write-Host "Calculating required size for '$InputPath'..."
$stats = Get-DirectoryStats -Path $InputPath
Write-Verbose "Stats: $($stats.FileLengths.Count) files, $($stats.DirLengths.Count) directories, Metadata: $($stats.MetadataSum) bytes."
if (-not $ClusterSize) {
Write-Verbose "Cluster size set to 'Auto'. Performing first pass calculation with 4KB cluster..."
$firstPassResult = Compute-ExFatSize -FileLengths $stats.FileLengths -DirLengths $stats.DirLengths -Cluster 4KB
$firstPassSize = $firstPassResult.TotalSize
Write-Verbose "First pass estimated size: '$firstPassSize' bytes"
$ClusterSize = Get-RecommendedCluster -VolumeBytes $firstPassSize
Write-Host "Auto-selected Cluster size: $($ClusterSize / 1KB) KiB based on estimated size."
Write-Verbose "Performing second pass calculation with selected cluster size ($($ClusterSize / 1KB) KiB)..."
$sizeResult = Compute-ExFatSize -FileLengths $stats.FileLengths -DirLengths $stats.DirLengths -Cluster $ClusterSize
$rawSize = $sizeResult.TotalSize
} else {
Write-Host "Using specified Cluster size: $($ClusterSize / 1KB) KiB."
Write-Verbose "Performing calculation with specified cluster size..."
$sizeResult = Compute-ExFatSize -FileLengths $stats.FileLengths -DirLengths $stats.DirLengths -Cluster $ClusterSize
$rawSize = $sizeResult.TotalSize
}
#---------------------------- Container Sizing ---------------------------------
$safetyPercentUsed = if ($SafetyPercent -gt 0.0) { $SafetyPercent } else { if ($rawSize -lt 100MB) { 1.0 } else { 0.1 } }
$safety = if ($rawSize -lt 100MB) { [math]::Max(64KB, [math]::Ceiling($rawSize * $safetyPercentUsed / 100)) }
else { [math]::Max(1MB, [math]::Ceiling($rawSize * $safetyPercentUsed / 100)) }
$contBytes = $rawSize + [UInt64]$safety
$contMiB = [int][math]::Ceiling($contBytes / 1MB)
if ($contMiB -lt 2) { $contMiB = 2 }
$vcOverheadMiBUsed = if ($VCOverheadMiB -gt 0) { $VCOverheadMiB } else {
if ($contMiB -lt 10) { 1 } elseif ($contMiB -lt 100) { 2 } else { [math]::Ceiling($contMiB * 0.01) }
}
$finalContMiB = $contMiB + $vcOverheadMiBUsed
Write-Host ("Cluster Size : {0} KiB`nCalculated FS: {1:N0} bytes`nSafety Margin: {2:N0} bytes ({3}%)`nVC Overhead : {4} MiB`nFinal Size : {5} MiB" -f
($ClusterSize/1KB), $rawSize, $safety, $safetyPercentUsed, $vcOverheadMiBUsed, $finalContMiB)
#---- Secure Password Prompt ----
if (-not $Password) {
$Password = Read-Host -AsSecureString -Prompt "Enter container password"
}
$cred = New-Object System.Management.Automation.PSCredential ("VeraCryptUser", $Password)
$plainPassword = $cred.GetNetworkCredential().Password
if ([string]::IsNullOrWhiteSpace($plainPassword)) {
Write-Host "Error: Password cannot be empty. Please provide a non-empty password." -ForegroundColor Red
exit 1
}
#---- Main Action ----
$mounted = $false
$driveLetter = $null
$errFile = New-VcErrFile
$mountFile = New-VcErrFile
try {
#--- Create Container ----
if ($PSCmdlet.ShouldProcess("File '$ContainerPath'", "Create VeraCrypt container ($finalContMiB MiB)")) {
$formatArgs = @(
'/create', $ContainerPath,
'/size', "$($finalContMiB)M",
'/password', $plainPassword,
'/encryption', $EncryptionAlg,
'/hash', $HashAlg,
'/filesystem', 'exFAT',
'/quick', '/silent',
'/force'
)
$maskedArgs = $formatArgs.Clone()
$pwIndex = [array]::IndexOf($maskedArgs, '/password')
if ($pwIndex -ge 0 -and $pwIndex + 1 -lt $maskedArgs.Length) { $maskedArgs[$pwIndex+1] = '********' }
Write-Verbose "Executing: `"$VeraCryptFormatExe`" $($maskedArgs -join ' ')"
$proc = Start-Process -FilePath $VeraCryptFormatExe -ArgumentList $formatArgs -NoNewWindow -Wait -PassThru -RedirectStandardError $errFile
if ($proc.ExitCode -ne 0) {
$errMsg = if (Test-Path $errFile) { Get-Content $errFile -Raw } else { "No error output captured." }
throw "VeraCrypt Format failed (code $($proc.ExitCode)). Error: $errMsg"
}
Write-Verbose "VeraCrypt Format completed successfully."
} else {
Write-Host "Container creation skipped due to -WhatIf."
exit
}
#--- Choose Drive Letter ----
$used = (Get-PSDrive -PSProvider FileSystem).Name
$driveLetter = (67..90 | ForEach-Object {[char]$_}) |
Where-Object { $_ -notin $used } |
Select-Object -First 1
if (-not $driveLetter) { throw 'No free drive letters found (C-Z).' }
Write-Verbose "Selected drive letter: $driveLetter"
#--- Mount ----
if ($PSCmdlet.ShouldProcess("Drive $driveLetter", "Mount VeraCrypt volume '$ContainerPath'")) {
$mountArgs = @(
'/volume', $ContainerPath,
'/letter', $driveLetter,
'/m', 'rm',
'/password', $plainPassword,
'/quit', '/silent'
)
$maskedArgs = $mountArgs.Clone()
$pwIndex = [array]::IndexOf($maskedArgs, '/password')
if ($pwIndex -ge 0 -and $pwIndex + 1 -lt $maskedArgs.Length) { $maskedArgs[$pwIndex+1] = '********' }
Write-Verbose "Executing: `"$VeraCryptExe`" $($maskedArgs -join ' ')"
$mountProc = Start-Process -FilePath $VeraCryptExe -ArgumentList $mountArgs -NoNewWindow -Wait -PassThru -RedirectStandardError $mountFile
if ($mountProc.ExitCode -ne 0) {
$errMsg = if (Test-Path $mountFile) { Get-Content $mountFile -Raw } else { "No error output captured." }
throw "VeraCrypt mount failed (code $($mountProc.ExitCode)). Error: $errMsg"
}
$root = "$($driveLetter):\"
Write-Verbose "Waiting for drive $root to become available..."
$mountTimeoutSeconds = 30
$mountCheckInterval = 0.5
$elapsed = 0
while (-not (Test-Path $root) -and $elapsed -lt $mountTimeoutSeconds) {
Start-Sleep -Seconds $mountCheckInterval
$elapsed += $mountCheckInterval
}
if (-not (Test-Path $root)) { throw "Drive $driveLetter did not appear within $mountTimeoutSeconds seconds." }
$mounted = $true
Write-Verbose "Drive $root mounted successfully."
} else {
Write-Host "Mounting skipped due to -WhatIf."
exit
}
#--- Copy Data ----
$destinationPath = "$($driveLetter):\"
if ($PSCmdlet.ShouldProcess("'$InputPath' -> '$destinationPath'", "Copy input data into container")) {
Write-Verbose "Starting data copy..."
if (Test-Path $InputPath -PathType Container) {
Copy-Item -Path "$InputPath\*" -Destination $destinationPath -Recurse -Force -ErrorAction Stop
Write-Verbose "Copied directory contents recursively."
} else {
Copy-Item -Path $InputPath -Destination $destinationPath -Force -ErrorAction Stop
Write-Verbose "Copied single file."
}
try {
$driveInfo = Get-PSDrive $driveLetter -ErrorAction Stop
$freeSpace = $driveInfo.Free
Write-Verbose "Free space after copy: $freeSpace bytes."
if ($freeSpace -lt 0) {
Write-Warning 'Reported free space is negative. This might indicate an issue, but the copy might still be okay.'
} elseif ($freeSpace -lt 1MB) {
Write-Warning "Very low free space remaining ($freeSpace bytes). The container might be too small if data changes slightly."
}
} catch {
Write-Warning "Could not verify free space on drive $driveLetter after copy. Error: $($_.Exception.Message)"
}
Write-Host "Data copy completed."
} else {
Write-Host "Data copy skipped due to -WhatIf."
}
} catch {
Write-Error "An error occurred: $($_.Exception.Message)"
} finally {
if (Test-Path variable:plainPassword) { Clear-Variable plainPassword -ErrorAction SilentlyContinue }
if ($mounted) {
if ($PSCmdlet.ShouldProcess("Drive $driveLetter", "Unmount VeraCrypt volume")) {
Write-Verbose "Unmounting drive $driveLetter..."
$unmountArgs = @('/unmount', $driveLetter, '/force', '/quit', '/silent')
Start-Process -FilePath $VeraCryptExe -ArgumentList $unmountArgs -NoNewWindow -Wait -ErrorAction SilentlyContinue
Write-Verbose "Unmount command issued."
} else {
Write-Host "Unmount skipped due to -WhatIf."
}
}
foreach($f in @($errFile,$mountFile) | Where-Object { $_ }) {
if(Test-Path $f){
try { Set-Content -Path $f -Value ($null) -Encoding Byte -Force } catch{}
Remove-Item $f -Force -ErrorAction SilentlyContinue
}
}
}
if ($PSCmdlet.ShouldProcess("File '$ContainerPath'", "Create VeraCrypt container ($finalContMiB MiB)")) {
Write-Host ("Script finished. VeraCrypt container created at '{0}' ({1} MiB)." -f $ContainerPath, $finalContMiB)
} else {
Write-Host ("Script finished (simulation mode).")
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -95,14 +95,6 @@
<param name="Local" value="Mounting VeraCrypt Volumes.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Normal Unmount vs Force Unmount ">
<param name="Local" value="Normal Unmount vs Force Unmount.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Avoid Third-Party File Extensions">
<param name="Local" value="Avoid Third-Party File Extensions.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Parallelization">
<param name="Local" value="Parallelization.html">
@@ -139,10 +131,6 @@
<param name="Name" value="Converting TrueCrypt Volumes &amp; Partitions">
<param name="Local" value="Converting TrueCrypt volumes and partitions.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Conversion Guide for Versions 1.26 and Later">
<param name="Local" value="Conversion_Guide_VeraCrypt_1.26_and_Later.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Default Mount Parameters">
<param name="Local" value="Default Mount Parameters.html">
@@ -187,8 +175,8 @@
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="BLAKE2s-256">
<param name="Local" value="BLAKE2s-256.html">
<param name="Name" value="RIPEMD-160">
<param name="Local" value="RIPEMD-160.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="SHA-256">
@@ -207,20 +195,6 @@
<param name="Local" value="Streebog.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Key Derivation Algorithms">
<param name="Local" value="Key Derivation Algorithms.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Argon2id">
<param name="Local" value="Argon2id.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="PBKDF2">
<param name="Local" value="pbkdf2.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Supported Operating Systems">
<param name="Local" value="Supported Operating Systems.html">
@@ -229,16 +203,6 @@
<param name="Name" value="Command Line Usage">
<param name="Local" value="Command Line Usage.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Windows">
<param name="Local" value="Command Line Usage for Windows.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Linux and macOS">
<param name="Local" value="Command Line Usage for Unix.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Security Model">
<param name="Local" value="Security Model.html">
@@ -270,14 +234,6 @@
<param name="Name" value="Unencrypted Data in RAM">
<param name="Local" value="Unencrypted Data in RAM.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="VeraCrypt RAM Encryption">
<param name="Local" value="VeraCrypt RAM Encryption.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="VeraCrypt Memory Protection">
<param name="Local" value="VeraCrypt Memory Protection.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Physical Security">
<param name="Local" value="Physical Security.html">
@@ -434,20 +390,6 @@
<param name="Name" value="Source Code">
<param name="Local" value="Source Code.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Building VeraCrypt From Source">
<param name="Local" value="CompilingGuidelines.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Windows Build Guide">
<param name="Local" value="CompilingGuidelineWin.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Linux Build Guide">
<param name="Local" value="CompilingGuidelineLinux.html">
</OBJECT>
</UL>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Contact">
@@ -13,13 +13,12 @@ Title=VeraCrypt User Guide
Acknowledgements.html
Additional Security Requirements and Precautions.html
AES.html
Argon2id.html
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
BCH_Logo_48x30.png
Beginner's Tutorial.html
Beginner's Tutorial_Image_001.jpg
Beginner's Tutorial_Image_002.jpg
@@ -45,20 +44,13 @@ Beginner's Tutorial_Image_022.jpg
Beginner's Tutorial_Image_023.gif
Beginner's Tutorial_Image_024.gif
Beginner's Tutorial_Image_034.png
BLAKE2s-256.html
Camellia.html
Cascades.html
Changing Passwords and Keyfiles.html
Choosing Passwords and Keyfiles.html
Command Line Usage.html
Command Line Usage for Windows.html
Command Line Usage for Unix.html
CompilingGuidelineLinux.html
CompilingGuidelines.html
CompilingGuidelineWin.html
Contact.html
Contributed Resources.html
Conversion_Guide_VeraCrypt_1.26_and_Later.html
Converting TrueCrypt volumes and partitions.html
Converting TrueCrypt volumes and partitions_truecrypt_convertion.jpg
Creating New Volumes.html
@@ -69,6 +61,18 @@ Defragmenting.html
Digital Signatures.html
Disclaimers.html
Documentation.html
Donation.html
Donation_donate.gif
Donation_donate_CHF.gif
Donation_donate_Dollars.gif
Donation_donate_Euros.gif
Donation_donate_GBP.gif
Donation_donate_PLN.gif
Donation_donate_YEN.gif
Donation_VeraCrypt_Bitcoin_small.png
Donation_VeraCrypt_BitcoinCash.png
Donation_VeraCrypt_Litecoin.png
Donation_VeraCrypt_Monero.png
Encryption Algorithms.html
Encryption Scheme.html
FAQ.html
@@ -92,7 +96,6 @@ Incompatibilities.html
Introduction.html
Issues and Limitations.html
Journaling File Systems.html
Key Derivation Algorithms.html
Keyfiles in VeraCrypt.html
Keyfiles in VeraCrypt_Image_040.gif
Keyfiles.html
@@ -103,7 +106,6 @@ liberapay_donate.svg
LTC_Logo_30x30.png
Main Program Window.html
Malware.html
mastodon_veracrypt.PNG
Memory Dump Files.html
Miscellaneous.html
Modes of Operation.html
@@ -114,7 +116,6 @@ Notation.html
Paging File.html
Parallelization.html
paypal_30x30.png
pbkdf2.html
Personal Iterations Multiplier (PIM).html
Personal Iterations Multiplier (PIM)_VeraCrypt_ChangePIM_Step1.png
Personal Iterations Multiplier (PIM)_VeraCrypt_ChangePIM_Step2.png
@@ -140,6 +141,7 @@ References.html
Release Notes.html
Removable Medium Volume.html
Removing Encryption.html
RIPEMD-160.html
Security Model.html
Security Requirements and Precautions.html
Security Requirements for Hidden Volumes.html
@@ -169,8 +171,6 @@ Using VeraCrypt Without Administrator Privileges.html
VeraCrypt Background Task.html
VeraCrypt Hidden Operating System.html
VeraCrypt License.html
VeraCrypt Memory Protection.html
VeraCrypt RAM Encryption.html
VeraCrypt Rescue Disk.html
VeraCrypt System Files.html
VeraCrypt Volume Format Specification.html
@@ -181,3 +181,4 @@ Wear-Leveling.html
Whirlpool.html
[INFOTYPES]
+3 -34
View File
@@ -1,41 +1,10 @@
PATH=%PATH%;C:\Program Files (x86)\HTML Help Workshop
set CHMBUILDPATH=%~dp0
cd %CHMBUILDPATH%\en
cd %CHMBUILDPATH%
xcopy /E ..\..\html\en\* .
copy ..\html\* .
hhc VeraCrypt.hhp
del /F /Q *.html *.css *.jpg *.gif *.png *.svg *.js
rmdir /s /Q CompilingGuidelineWin
move /Y "VeraCrypt User Guide.chm" "..\VeraCrypt User Guide.chm"
cd %CHMBUILDPATH%\zh-cn
xcopy /E ..\..\html\zh-cn\* .
hhc VeraCrypt.zh-cn.hhp
del /F /Q *.html *.css *.jpg *.gif *.png *.svg *.js
rmdir /s /Q CompilingGuidelineWin
move /Y "VeraCrypt User Guide.zh-cn.chm" "..\VeraCrypt User Guide.zh-cn.chm"
cd %CHMBUILDPATH%\ru
xcopy /E ..\..\html\ru\* .
hhc VeraCrypt.ru.hhp
del /F /Q *.html *.css *.jpg *.gif *.png *.svg *.js
rmdir /s /Q CompilingGuidelineWin
move /Y "VeraCrypt User Guide.ru.chm" "..\VeraCrypt User Guide.ru.chm"
cd %CHMBUILDPATH%
del /F /Q *.html *.css *.jpg *.gif *.png *.svg
-449
View File
@@ -1,449 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<HTML>
<HEAD>
<meta name="GENERATOR" content="Microsoft&reg; HTML Help Workshop 4.1">
<!-- Sitemap 1.0 -->
</HEAD><BODY>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Äîêóìåíòàöèÿ">
<param name="Local" value="Documentation.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ïðåäèñëîâèå">
<param name="Local" value="Preface.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ââåäåíèå">
<param name="Local" value="Introduction.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ðóêîâîäñòâî äëÿ íà÷èíàþùèõ">
<param name="Local" value="Beginner's Tutorial.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Òîì VeraCrypt">
<param name="Local" value="VeraCrypt Volume.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ñîçäàíèå íîâîãî òîìà VeraCrypt">
<param name="Local" value="Creating New Volumes.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Èçáðàííûå òîìà">
<param name="Local" value="Favorite Volumes.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ñèñòåìíûå èçáðàííûå òîìà">
<param name="Local" value="System Favorite Volumes.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Øèôðîâàíèå ñèñòåìû">
<param name="Local" value="System Encryption.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ñêðûòàÿ îïåðàöèîííàÿ ñèñòåìà">
<param name="Local" value="Hidden Operating System.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Îïåðàöèîííûå ñèñòåìû, ïîääåðæèâàþùèå ñèñòåìíîå øèôðîâàíèå">
<param name="Local" value="Supported Systems for System Encryption.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Äèñê âîññòàíîâëåíèÿ VeraCrypt (Rescue Disk)">
<param name="Local" value="VeraCrypt Rescue Disk.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ïðàâäîïîäîáíîå îòðèöàíèå íàëè÷èÿ øèôðîâàíèÿ">
<param name="Local" value="Plausible Deniability.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ñêðûòûé òîì">
<param name="Local" value="Hidden Volume.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Çàùèòà ñêðûòûõ òîìîâ îò ïîâðåæäåíèé">
<param name="Local" value="Protection of Hidden Volumes.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Òðåáîâàíèÿ áåçîïàñíîñòè è ìåðû ïðåäîñòîðîæíîñòè, êàñàþùèåñÿ ñêðûòûõ òîìîâ">
<param name="Local" value="Security Requirements for Hidden Volumes.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ñêðûòàÿ îïåðàöèîííàÿ ñèñòåìà">
<param name="Local" value="VeraCrypt Hidden Operating System.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ãëàâíîå îêíî ïðîãðàììû">
<param name="Local" value="Main Program Window.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ìåíþ ïðîãðàììû">
<param name="Local" value="Program Menu.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ìîíòèðîâàíèå òîìîâ">
<param name="Local" value="Mounting VeraCrypt Volumes.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Îáû÷íîå ðàçìîíòèðîâàíèå ïðîòèâ ïðèíóäèòåëüíîãî">
<param name="Local" value="Normal Unmount vs Force Unmount.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Î ðèñêàõ, ñâÿçàííûõ ñî ñòîðîííèìè ðàñøèðåíèÿìè ôàéëîâ">
<param name="Local" value="Avoid Third-Party File Extensions.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ðàñïàðàëëåëèâàíèå">
<param name="Local" value="Parallelization.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Êîíâåéåðèçàöèÿ">
<param name="Local" value="Pipelining.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Àïïàðàòíîå óñêîðåíèå">
<param name="Local" value="Hardware Acceleration.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ãîðÿ÷èå êëàâèøè">
<param name="Local" value="Hot Keys.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Êëþ÷åâûå ôàéëû">
<param name="Local" value="Keyfiles in VeraCrypt.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Òîêåíû áåçîïàñíîñòè è ñìàðò-êàðòû">
<param name="Local" value="Security Tokens & Smart Cards.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ïîðòàòèâíûé (ïåðåíîñíîé) ðåæèì">
<param name="Local" value="Portable Mode.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ïîääåðæêà TrueCrypt">
<param name="Local" value="TrueCrypt Support.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ïðåîáðàçîâàíèå òîìîâ è ðàçäåëîâ TrueCrypt â ôîðìàò VeraCrypt">
<param name="Local" value="Converting TrueCrypt volumes and partitions.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ðóêîâîäñòâî ïî ïðåîáðàçîâàíèþ òîìîâ äëÿ âåðñèé 1.26 è íîâåå">
<param name="Local" value="Conversion_Guide_VeraCrypt_1.26_and_Later.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ïàðàìåòðû ìîíòèðîâàíèÿ ïî óìîë÷àíèþ">
<param name="Local" value="Default Mount Parameters.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="ßçûêîâûå ïàêåòû">
<param name="Local" value="Language Packs.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Àëãîðèòìû øèôðîâàíèÿ">
<param name="Local" value="Encryption Algorithms.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="AES">
<param name="Local" value="AES.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Camellia">
<param name="Local" value="Camellia.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Kuznyechik">
<param name="Local" value="Kuznyechik.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Serpent">
<param name="Local" value="Serpent.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Twofish">
<param name="Local" value="Twofish.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Êàñêàäû øèôðîâ">
<param name="Local" value="Cascades.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Àëãîðèòìû õåøèðîâàíèÿ">
<param name="Local" value="Hash Algorithms.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="BLAKE2s-256">
<param name="Local" value="BLAKE2s-256.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="SHA-256">
<param name="Local" value="SHA-256.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="SHA-512">
<param name="Local" value="SHA-512.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Whirlpool">
<param name="Local" value="Whirlpool.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Streebog">
<param name="Local" value="Streebog.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ïîääåðæèâàåìûå îïåðàöèîííûå ñèñòåìû">
<param name="Local" value="Supported Operating Systems.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Èñïîëüçîâàíèå â êîìàíäíîé ñòðîêå">
<param name="Local" value="Command Line Usage.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ìîäåëü áåçîïàñíîñòè">
<param name="Local" value="Security Model.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Òðåáîâàíèÿ áåçîïàñíîñòè è ìåðû ïðåäîñòîðîæíîñòè">
<param name="Local" value="Security Requirements and Precautions.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Óòå÷êè äàííûõ">
<param name="Local" value="Data Leaks.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ôàéë ïîäêà÷êè">
<param name="Local" value="Paging File.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ôàéëû äàìïà ïàìÿòè">
<param name="Local" value="Memory Dump Files.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ôàéë ãèáåðíàöèè">
<param name="Local" value="Hibernation File.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Íåçàøèôðîâàííûå äàííûå â ÎÇÓ">
<param name="Local" value="Unencrypted Data in RAM.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Øèôðîâàíèå îïåðàòèâíîé ïàìÿòè â VeraCrypt">
<param name="Local" value="VeraCrypt RAM Encryption.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Çàùèòà ïàìÿòè â VeraCrypt">
<param name="Local" value="VeraCrypt Memory Protection.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ôèçè÷åñêàÿ áåçîïàñíîñòü">
<param name="Local" value="Physical Security.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Âðåäîíîñíîå ÏÎ (malware)">
<param name="Local" value="Malware.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ìíîãîïîëüçîâàòåëüñêàÿ ñðåäà">
<param name="Local" value="Multi-User Environment.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ïîäëèííîñòü è öåëîñòíîñòü äàííûõ">
<param name="Local" value="Authenticity and Integrity.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Âûáîð ïàðîëåé è êëþ÷åâûõ ôàéëîâ">
<param name="Local" value="Choosing Passwords and Keyfiles.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Èçìåíåíèå ïàðîëåé è êëþ÷åâûõ ôàéëîâ">
<param name="Local" value="Changing Passwords and Keyfiles.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Îïåðàöèÿ Trim">
<param name="Local" value="Trim Operation.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ðàñïðåäåëåíèå èçíîñà (Wear-Leveling)">
<param name="Local" value="Wear-Leveling.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ïåðåðàñïðåäåë¸ííûå ñåêòîðà">
<param name="Local" value="Reallocated Sectors.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Äåôðàãìåíòàöèÿ">
<param name="Local" value="Defragmenting.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Æóðíàëèðóåìûå ôàéëîâûå ñèñòåìû">
<param name="Local" value="Journaling File Systems.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Êëîíèðîâàíèå òîìîâ">
<param name="Local" value="Volume Clones.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Äîïîëíèòåëüíûå òðåáîâàíèÿ áåçîïàñíîñòè è ìåðû ïðåäîñòîðîæíîñòè">
<param name="Local" value="Additional Security Requirements and Precautions.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Î áåçîïàñíîì ðåçåðâíîì êîïèðîâàíèè">
<param name="Local" value="How to Back Up Securely.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ðàçíîå">
<param name="Local" value="Miscellaneous.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Èñïîëüçîâàíèå VeraCrypt áåç ïðàâ àäìèíèñòðàòîðà">
<param name="Local" value="Using VeraCrypt Without Administrator Privileges.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Îáùèé äîñòóï ïî ñåòè">
<param name="Local" value="Sharing over Network.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ðàáîòà VeraCrypt â ôîíîâîì ðåæèìå">
<param name="Local" value="VeraCrypt Background Task.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Òîì, ñìîíòèðîâàííûé êàê ñìåííûé íîñèòåëü">
<param name="Local" value="Removable Medium Volume.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ñèñòåìíûå ôàéëû VeraCrypt è ïðîãðàììíûå äàííûå">
<param name="Local" value="VeraCrypt System Files.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Êàê óäàëèòü øèôðîâàíèå">
<param name="Local" value="Removing Encryption.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Óäàëåíèå VeraCrypt">
<param name="Local" value="Uninstalling VeraCrypt.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Öèôðîâûå ïîäïèñè">
<param name="Local" value="Digital Signatures.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Óñòðàíåíèå çàòðóäíåíèé">
<param name="Local" value="Troubleshooting.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Íåñîâìåñòèìîñòè">
<param name="Local" value="Incompatibilities.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Çàìå÷åííûå ïðîáëåìû è îãðàíè÷åíèÿ">
<param name="Local" value="Issues and Limitations.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Âîïðîñû è îòâåòû">
<param name="Local" value="FAQ.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Òåõíè÷åñêèå ïîäðîáíîñòè">
<param name="Local" value="Technical Details.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ñèñòåìà îáîçíà÷åíèé">
<param name="Local" value="Notation.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ñõåìà øèôðîâàíèÿ">
<param name="Local" value="Encryption Scheme.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ðåæèìû ðàáîòû">
<param name="Local" value="Modes of Operation.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ôîðìèðîâàíèå êëþ÷à çàãîëîâêà, ñîëü è êîëè÷åñòâî èòåðàöèé">
<param name="Local" value="Header Key Derivation.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ãåíåðàòîð ñëó÷àéíûõ ÷èñåë">
<param name="Local" value="Random Number Generator.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Êëþ÷åâûå ôàéëû">
<param name="Local" value="Keyfiles.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="PIM (Ïåðñîíàëüíûé ìíîæèòåëü èòåðàöèé)">
<param name="Local" value="Personal Iterations Multiplier (PIM).html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ñïåöèôèêàöèÿ ôîðìàòà òîìîâ VeraCrypt">
<param name="Local" value="VeraCrypt Volume Format Specification.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ñîîòâåòñòâèå ñòàíäàðòàì è ñïåöèôèêàöèÿì">
<param name="Local" value="Standard Compliance.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Èñõîäíûé êîä ïðîãðàììû">
<param name="Local" value="Source Code.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ñáîðêà VeraCrypt èç èñõîäíîãî êîäà">
<param name="Local" value="CompilingGuidelines.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ðóêîâîäñòâî ïî ñáîðêå â Windows">
<param name="Local" value="CompilingGuidelineWin.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ðóêîâîäñòâî ïî ñáîðêå â Linux">
<param name="Local" value="CompilingGuidelineLinux.html">
</OBJECT>
</UL>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ñâÿçü ñ àâòîðàìè">
<param name="Local" value="Contact.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ïðàâîâàÿ èíôîðìàöèÿ">
<param name="Local" value="Legal Information.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Èñòîðèÿ âåðñèé">
<param name="Local" value="Release Notes.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Áëàãîäàðíîñòè">
<param name="Local" value="Acknowledgements.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ññûëêè">
<param name="Local" value="References.html">
</OBJECT>
</UL>
</BODY></HTML>
-13
View File
@@ -1,13 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<HTML>
<HEAD>
<!-- Sitemap 1.0 -->
</HEAD><BODY>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Äîêóìåíòàöèÿ">
<param name="Local" value="Documentation.html">
</OBJECT>
</UL>
</BODY></HTML>
-180
View File
@@ -1,180 +0,0 @@
[OPTIONS]
Compatibility=1.1 or later
Compiled file=VeraCrypt User Guide.ru.chm
Contents file=VeraCrypt.ru.hhc
Default topic=Documentation.html
Default Font=Tahoma,9,0
Display compile progress=No
Full-text search=Yes
Index file=VeraCrypt.ru.hhk
Language=0x419 Ðóññêèé(Ðîññèÿ)
Title=Ðóêîâîäñòâî ïîëüçîâàòåëÿ VeraCrypt
[FILES]
Acknowledgements.html
Additional Security Requirements and Precautions.html
AES.html
arrow_right.gif
Authenticity and Integrity.html
Authors.html
Avoid Third-Party File Extensions.html
BC_Logo_30x30.png
BCH_Logo_30x30.png
Beginner's Tutorial.html
Beginner's Tutorial_Image_001.png
Beginner's Tutorial_Image_002.png
Beginner's Tutorial_Image_003.png
Beginner's Tutorial_Image_004.png
Beginner's Tutorial_Image_005.png
Beginner's Tutorial_Image_007.png
Beginner's Tutorial_Image_008.png
Beginner's Tutorial_Image_009.png
Beginner's Tutorial_Image_010.png
Beginner's Tutorial_Image_011.png
Beginner's Tutorial_Image_012.png
Beginner's Tutorial_Image_013.png
Beginner's Tutorial_Image_014.png
Beginner's Tutorial_Image_015.png
Beginner's Tutorial_Image_016.png
Beginner's Tutorial_Image_017.png
Beginner's Tutorial_Image_018.png
Beginner's Tutorial_Image_019.png
Beginner's Tutorial_Image_020.png
Beginner's Tutorial_Image_021.png
Beginner's Tutorial_Image_022.png
Beginner's Tutorial_Image_023.png
Beginner's Tutorial_Image_024.png
Beginner's Tutorial_Image_034.png
BLAKE2s-256.html
Camellia.html
Cascades.html
Changing Passwords and Keyfiles.html
Choosing Passwords and Keyfiles.html
Command Line Usage.html
CompilingGuidelineLinux.html
CompilingGuidelines.html
CompilingGuidelineWin.html
Contact.html
Contributed Resources.html
Conversion_Guide_VeraCrypt_1.26_and_Later.html
Converting TrueCrypt volumes and partitions.html
Converting TrueCrypt volumes and partitions_truecrypt_convertion.png
Creating New Volumes.html
Data Leaks.html
Default Mount Parameters.html
Default Mount Parameters_VeraCrypt_password_using_default_parameters.png
Defragmenting.html
Digital Signatures.html
Disclaimers.html
Documentation.html
Encryption Algorithms.html
Encryption Scheme.html
FAQ.html
Favorite Volumes.html
flattr-badge-large.png
gf2_mul.gif
Hardware Acceleration.html
Hash Algorithms.html
Header Key Derivation.html
Hibernation File.html
Hidden Operating System.html
Hidden Volume.html
Home_facebook_veracrypt.png
Home_reddit.png
Home_utilities-file-archiver-3.png
Home_VeraCrypt_Default_Mount_Parameters.png
Home_VeraCrypt_menu_Default_Mount_Parameters.png
Hot Keys.html
How to Back Up Securely.html
Incompatibilities.html
Introduction.html
Issues and Limitations.html
Journaling File Systems.html
Keyfiles in VeraCrypt.html
Keyfiles in VeraCrypt_Image_040.png
Keyfiles.html
Kuznyechik.html
Language Packs.html
Legal Information.html
liberapay_donate.svg
LTC_Logo_30x30.png
Main Program Window.html
Malware.html
mastodon_veracrypt.PNG
Memory Dump Files.html
Miscellaneous.html
Modes of Operation.html
Monero_Logo_30x30.png
Mounting VeraCrypt Volumes.html
Multi-User Environment.html
Notation.html
Paging File.html
Parallelization.html
paypal_30x30.png
Personal Iterations Multiplier (PIM).html
Personal Iterations Multiplier (PIM)_VeraCrypt_ChangePIM_Step1.png
Personal Iterations Multiplier (PIM)_VeraCrypt_ChangePIM_Step2.png
Personal Iterations Multiplier (PIM)_VeraCrypt_ChangePIM_System_Step1.png
Personal Iterations Multiplier (PIM)_VeraCrypt_ChangePIM_System_Step2.png
Personal Iterations Multiplier (PIM)_VeraCrypt_UsePIM_Step1.png
Personal Iterations Multiplier (PIM)_VeraCrypt_UsePIM_Step2.png
Physical Security.html
Pipelining.html
Plausible Deniability.html
Portable Mode.html
Preface.html
Program Menu.html
Protection of Hidden Volumes.html
Protection of Hidden Volumes_Image_027.png
Protection of Hidden Volumes_Image_028.png
Protection of Hidden Volumes_Image_029.png
Protection of Hidden Volumes_Image_030.png
Protection of Hidden Volumes_Image_031.png
Random Number Generator.html
Reallocated Sectors.html
References.html
Release Notes.html
Removable Medium Volume.html
Removing Encryption.html
Security Model.html
Security Requirements and Precautions.html
Security Requirements for Hidden Volumes.html
Security Tokens & Smart Cards.html
Serpent.html
SHA-256.html
SHA-512.html
Sharing over Network.html
Source Code.html
Standard Compliance.html
Streebog.html
styles.css
Supported Operating Systems.html
Supported Systems for System Encryption.html
System Encryption.html
System Favorite Volumes.html
Technical Details.html
Trim Operation.html
Troubleshooting.html
TrueCrypt Support.html
TrueCrypt Support_truecrypt_mode_gui.png
twitter_veracrypt.PNG
Twofish.html
Unencrypted Data in RAM.html
Uninstalling VeraCrypt.html
Using VeraCrypt Without Administrator Privileges.html
VeraCrypt Background Task.html
VeraCrypt Hidden Operating System.html
VeraCrypt License.html
VeraCrypt Memory Protection.html
VeraCrypt RAM Encryption.html
VeraCrypt Rescue Disk.html
VeraCrypt System Files.html
VeraCrypt Volume Format Specification.html
VeraCrypt Volume.html
VeraCrypt128x128.png
Volume Clones.html
Wear-Leveling.html
Whirlpool.html
[INFOTYPES]
-449
View File
@@ -1,449 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<HTML>
<HEAD>
<meta name="GENERATOR" content="Microsoft&reg; HTML Help Workshop 4.1">
<!-- Sitemap 1.0 -->
</HEAD><BODY>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="目录">
<param name="Local" value="Documentation.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="前言">
<param name="Local" value="Preface.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="简介">
<param name="Local" value="Introduction.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="初学者教程">
<param name="Local" value="Beginner's Tutorial.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="VeraCrypt卷">
<param name="Local" value="VeraCrypt Volume.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="创建新的VeraCrypt卷">
<param name="Local" value="Creating New Volumes.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="收藏卷">
<param name="Local" value="Favorite Volumes.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="系统收藏卷">
<param name="Local" value="System Favorite Volumes.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="系统加密">
<param name="Local" value="System Encryption.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="隐藏操作系统">
<param name="Local" value="Hidden Operating System.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="支持系统加密的操作系统">
<param name="Local" value="Supported Systems for System Encryption.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="VeraCrypt急救盘">
<param name="Local" value="VeraCrypt Rescue Disk.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="合理否认">
<param name="Local" value="Plausible Deniability.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="隐藏卷">
<param name="Local" value="Hidden Volume.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="隐藏卷防损坏保护">
<param name="Local" value="Protection of Hidden Volumes.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="隐藏卷的安全要求和注意事项">
<param name="Local" value="Security Requirements for Hidden Volumes.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="隐藏操作系统">
<param name="Local" value="VeraCrypt Hidden Operating System.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="主程序窗口">
<param name="Local" value="Main Program Window.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="程序菜单">
<param name="Local" value="Program Menu.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="挂载卷">
<param name="Local" value="Mounting VeraCrypt Volumes.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="正常卸载与强制卸载">
<param name="Local" value="Normal Unmount vs Force Unmount.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="避免使用第三方文件扩展名">
<param name="Local" value="Avoid Third-Party File Extensions.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="并行处理">
<param name="Local" value="Parallelization.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="流水线处理">
<param name="Local" value="Pipelining.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="硬件加速">
<param name="Local" value="Hardware Acceleration.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="热键">
<param name="Local" value="Hot Keys.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="密钥文件">
<param name="Local" value="Keyfiles in VeraCrypt.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="安全令牌和智能卡">
<param name="Local" value="Security Tokens & Smart Cards.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="便携模式">
<param name="Local" value="Portable Mode.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="TrueCrypt支持">
<param name="Local" value="TrueCrypt Support.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="转换TrueCrypt卷和分区">
<param name="Local" value="Converting TrueCrypt volumes and partitions.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="1.26及更高版本转换指南">
<param name="Local" value="Conversion_Guide_VeraCrypt_1.26_and_Later.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="默认挂载参数">
<param name="Local" value="Default Mount Parameters.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="语言包">
<param name="Local" value="Language Packs.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="加密算法">
<param name="Local" value="Encryption Algorithms.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="AES">
<param name="Local" value="AES.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Camellia">
<param name="Local" value="Camellia.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Kuznyechik">
<param name="Local" value="Kuznyechik.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Serpent">
<param name="Local" value="Serpent.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Twofish">
<param name="Local" value="Twofish.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="密码级联">
<param name="Local" value="Cascades.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="哈希算法">
<param name="Local" value="Hash Algorithms.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="BLAKE2s-256">
<param name="Local" value="BLAKE2s-256.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="SHA-256">
<param name="Local" value="SHA-256.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="SHA-512">
<param name="Local" value="SHA-512.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Whirlpool">
<param name="Local" value="Whirlpool.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Streebog">
<param name="Local" value="Streebog.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="支持的操作系统">
<param name="Local" value="Supported Operating Systems.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="命令行用法">
<param name="Local" value="Command Line Usage.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="安全模型">
<param name="Local" value="Security Model.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="安全要求和注意事项">
<param name="Local" value="Security Requirements and Precautions.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="数据泄露">
<param name="Local" value="Data Leaks.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="分页文件">
<param name="Local" value="Paging File.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="内存转储文件">
<param name="Local" value="Memory Dump Files.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="休眠文件">
<param name="Local" value="Hibernation File.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="RAM中的未加密数据">
<param name="Local" value="Unencrypted Data in RAM.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="VeraCrypt RAM加密">
<param name="Local" value="VeraCrypt RAM Encryption.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="VeraCrypt内存保护">
<param name="Local" value="VeraCrypt Memory Protection.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="物理安全">
<param name="Local" value="Physical Security.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="恶意软件">
<param name="Local" value="Malware.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="多用户环境">
<param name="Local" value="Multi-User Environment.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="真实性和完整性">
<param name="Local" value="Authenticity and Integrity.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="选择密码和密钥文件">
<param name="Local" value="Choosing Passwords and Keyfiles.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="更改密码和密钥文件">
<param name="Local" value="Changing Passwords and Keyfiles.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Trim操作">
<param name="Local" value="Trim Operation.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="磨损均衡">
<param name="Local" value="Wear-Leveling.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="重新分配扇区">
<param name="Local" value="Reallocated Sectors.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="碎片整理">
<param name="Local" value="Defragmenting.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="日志文件系统">
<param name="Local" value="Journaling File Systems.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="卷克隆">
<param name="Local" value="Volume Clones.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="附加安全要求和注意事项">
<param name="Local" value="Additional Security Requirements and Precautions.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="如何安全备份">
<param name="Local" value="How to Back Up Securely.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="杂项">
<param name="Local" value="Miscellaneous.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="无需管理员权限使用VeraCrypt">
<param name="Local" value="Using VeraCrypt Without Administrator Privileges.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="网络共享">
<param name="Local" value="Sharing over Network.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="VeraCrypt后台任务">
<param name="Local" value="VeraCrypt Background Task.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="作为可移动介质挂载的卷">
<param name="Local" value="Removable Medium Volume.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="VeraCrypt系统文件和应用数据">
<param name="Local" value="VeraCrypt System Files.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="如何移除加密">
<param name="Local" value="Removing Encryption.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="卸载VeraCrypt">
<param name="Local" value="Uninstalling VeraCrypt.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="数字签名">
<param name="Local" value="Digital Signatures.html">
</OBJECT>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="故障排除">
<param name="Local" value="Troubleshooting.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="不兼容问题">
<param name="Local" value="Incompatibilities.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="已知问题和限制">
<param name="Local" value="Issues and Limitations.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="常见问题解答">
<param name="Local" value="FAQ.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="技术细节">
<param name="Local" value="Technical Details.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="符号表示">
<param name="Local" value="Notation.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="加密方案">
<param name="Local" value="Encryption Scheme.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="操作模式">
<param name="Local" value="Modes of Operation.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="头部密钥派生、盐和迭代次数">
<param name="Local" value="Header Key Derivation.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="随机数生成器">
<param name="Local" value="Random Number Generator.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="密钥文件">
<param name="Local" value="Keyfiles.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="PIM(个人迭代乘数)">
<param name="Local" value="Personal Iterations Multiplier (PIM).html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="VeraCrypt卷格式规范">
<param name="Local" value="VeraCrypt Volume Format Specification.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="标准合规性">
<param name="Local" value="Standard Compliance.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="源代码">
<param name="Local" value="Source Code.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="从源代码构建VeraCrypt">
<param name="Local" value="CompilingGuidelines.html">
</OBJECT>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Windows构建指南">
<param name="Local" value="CompilingGuidelineWin.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Linux构建指南">
<param name="Local" value="CompilingGuidelineLinux.html">
</OBJECT>
</UL>
</UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="联系我们">
<param name="Local" value="Contact.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="法律信息">
<param name="Local" value="Legal Information.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="版本历史">
<param name="Local" value="Release Notes.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="致谢">
<param name="Local" value="Acknowledgements.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="参考文献">
<param name="Local" value="References.html">
</OBJECT>
</UL>
</BODY></HTML>
-13
View File
@@ -1,13 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<HTML>
<HEAD>
<meta name="GENERATOR" content="Microsoft&reg; HTML Help Workshop 4.1">
<!-- Sitemap 1.0 -->
</HEAD><BODY>
<UL>
<LI> <OBJECT type="text/sitemap">
<param name="Name" value="Ŀ¼±í">
<param name="Local" value="Documentation.html">
</OBJECT>
</UL>
</BODY></HTML>
-181
View File
@@ -1,181 +0,0 @@
[OPTIONS]
Compatibility=1.1 or later
Compiled file=VeraCrypt User Guide.zh-cn.chm
Contents file=VeraCrypt.zh-cn.hhc
Default Font=微软雅黑,9,0
Default topic=Documentation.html
Display compile progress=No
Full-text search=Yes
Index file=VeraCrypt.zh-cn.hhk
Language=0x804 中文(简体,中国)
Title=VeraCrypt用户指南
[FILES]
Acknowledgements.html
Additional Security Requirements and Precautions.html
AES.html
arrow_right.gif
Authenticity and Integrity.html
Authors.html
Avoid Third-Party File Extensions.html
BC_Logo_30x30.png
BCH_Logo_30x30.png
Beginner's Tutorial.html
Beginner's Tutorial_Image_001.jpg
Beginner's Tutorial_Image_002.jpg
Beginner's Tutorial_Image_003.jpg
Beginner's Tutorial_Image_004.jpg
Beginner's Tutorial_Image_005.jpg
Beginner's Tutorial_Image_007.jpg
Beginner's Tutorial_Image_008.jpg
Beginner's Tutorial_Image_009.jpg
Beginner's Tutorial_Image_010.jpg
Beginner's Tutorial_Image_011.jpg
Beginner's Tutorial_Image_012.jpg
Beginner's Tutorial_Image_013.jpg
Beginner's Tutorial_Image_014.jpg
Beginner's Tutorial_Image_015.jpg
Beginner's Tutorial_Image_016.jpg
Beginner's Tutorial_Image_017.jpg
Beginner's Tutorial_Image_018.jpg
Beginner's Tutorial_Image_019.jpg
Beginner's Tutorial_Image_020.jpg
Beginner's Tutorial_Image_021.jpg
Beginner's Tutorial_Image_022.jpg
Beginner's Tutorial_Image_023.gif
Beginner's Tutorial_Image_024.gif
Beginner's Tutorial_Image_034.png
BLAKE2s-256.html
Camellia.html
Cascades.html
Changing Passwords and Keyfiles.html
Choosing Passwords and Keyfiles.html
Command Line Usage.html
CompilingGuidelineLinux.html
CompilingGuidelines.html
CompilingGuidelineWin.html
Contact.html
Contributed Resources.html
Conversion_Guide_VeraCrypt_1.26_and_Later.html
Converting TrueCrypt volumes and partitions.html
Converting TrueCrypt volumes and partitions_truecrypt_convertion.jpg
Creating New Volumes.html
Data Leaks.html
Default Mount Parameters.html
Default Mount Parameters_VeraCrypt_password_using_default_parameters.png
Defragmenting.html
Digital Signatures.html
Disclaimers.html
Documentation.html
Encryption Algorithms.html
Encryption Scheme.html
FAQ.html
Favorite Volumes.html
flattr-badge-large.png
gf2_mul.gif
Hardware Acceleration.html
Hash Algorithms.html
Header Key Derivation.html
Hibernation File.html
Hidden Operating System.html
Hidden Volume.html
Home_facebook_veracrypt.png
Home_reddit.png
Home_utilities-file-archiver-3.png
Home_VeraCrypt_Default_Mount_Parameters.png
Home_VeraCrypt_menu_Default_Mount_Parameters.png
Hot Keys.html
How to Back Up Securely.html
Incompatibilities.html
Introduction.html
Issues and Limitations.html
Journaling File Systems.html
Keyfiles in VeraCrypt.html
Keyfiles in VeraCrypt_Image_040.gif
Keyfiles.html
Kuznyechik.html
Language Packs.html
Legal Information.html
liberapay_donate.svg
LTC_Logo_30x30.png
Main Program Window.html
Malware.html
mastodon_veracrypt.PNG
Memory Dump Files.html
Miscellaneous.html
Modes of Operation.html
Monero_Logo_30x30.png
Mounting VeraCrypt Volumes.html
Multi-User Environment.html
Notation.html
Paging File.html
Parallelization.html
paypal_30x30.png
Personal Iterations Multiplier (PIM).html
Personal Iterations Multiplier (PIM)_VeraCrypt_ChangePIM_Step1.png
Personal Iterations Multiplier (PIM)_VeraCrypt_ChangePIM_Step2.png
Personal Iterations Multiplier (PIM)_VeraCrypt_ChangePIM_System_Step1.png
Personal Iterations Multiplier (PIM)_VeraCrypt_ChangePIM_System_Step2.png
Personal Iterations Multiplier (PIM)_VeraCrypt_UsePIM_Step1.png
Personal Iterations Multiplier (PIM)_VeraCrypt_UsePIM_Step2.png
Physical Security.html
Pipelining.html
Plausible Deniability.html
Portable Mode.html
Preface.html
Program Menu.html
Protection of Hidden Volumes.html
Protection of Hidden Volumes_Image_027.jpg
Protection of Hidden Volumes_Image_028.jpg
Protection of Hidden Volumes_Image_029.jpg
Protection of Hidden Volumes_Image_030.jpg
Protection of Hidden Volumes_Image_031.jpg
Random Number Generator.html
Reallocated Sectors.html
References.html
Release Notes.html
Removable Medium Volume.html
Removing Encryption.html
Security Model.html
Security Requirements and Precautions.html
Security Requirements for Hidden Volumes.html
Security Tokens & Smart Cards.html
Serpent.html
SHA-256.html
SHA-512.html
Sharing over Network.html
Source Code.html
Standard Compliance.html
Streebog.html
styles.css
Supported Operating Systems.html
Supported Systems for System Encryption.html
System Encryption.html
System Favorite Volumes.html
Technical Details.html
Trim Operation.html
Troubleshooting.html
TrueCrypt Support.html
TrueCrypt Support_truecrypt_mode_gui.jpg
twitter_veracrypt.PNG
Twofish.html
Unencrypted Data in RAM.html
Uninstalling VeraCrypt.html
Using VeraCrypt Without Administrator Privileges.html
VeraCrypt Background Task.html
VeraCrypt Hidden Operating System.html
VeraCrypt License.html
VeraCrypt Memory Protection.html
VeraCrypt RAM Encryption.html
VeraCrypt Rescue Disk.html
VeraCrypt System Files.html
VeraCrypt Volume Format Specification.html
VeraCrypt Volume.html
VeraCrypt128x128.png
Volume Clones.html
Wear-Leveling.html
Whirlpool.html
[INFOTYPES]
+7 -6
View File
@@ -1,5 +1,6 @@
<!DOCTYPE html>
<html lang="en">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" 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>
@@ -16,7 +17,7 @@
<div id="menu">
<ul>
<li><a href="Home.html">Home</a></li>
<li><a href="Code.html">Source Code</a></li>
<li><a href="/code/">Source Code</a></li>
<li><a href="Downloads.html">Downloads</a></li>
<li><a class="active" href="Documentation.html">Documentation</a></li>
<li><a href="Donation.html">Donate</a></li>
@@ -38,13 +39,13 @@
<div style="text-align:left; margin-top:19px; margin-bottom:19px; padding-top:0px; padding-bottom:0px">
The Advanced Encryption Standard (AES) specifies a FIPS-approved cryptographic algorithm (Rijndael, designed by Joan Daemen and Vincent Rijmen, published in 1998) that may be used by US federal departments and agencies to cryptographically protect sensitive
information [3]. VeraCrypt uses AES with 14 rounds and a 256-bit key (i.e., AES-256, published in 2001) operating in
<a href="Modes%20of%20Operation.html" style="text-align:left; color:#0080c0; text-decoration:none">
XTS mode</a> (see the section <a href="Modes%20of%20Operation.html" style="text-align:left; color:#0080c0; text-decoration:none">
<a href="Modes%20of%20Operation.html" style="text-align:left; color:#0080c0; text-decoration:none.html">
XTS mode</a> (see the section <a href="Modes%20of%20Operation.html" style="text-align:left; color:#0080c0; text-decoration:none.html">
Modes of Operation</a>).</div>
<div style="text-align:left; margin-top:19px; margin-bottom:19px; padding-top:0px; padding-bottom:0px">
In June 2003, after the NSA (US National Security Agency) conducted a review and analysis of AES, the U.S. CNSS (Committee on National Security Systems) announced in [1] that the design and strength of AES-256 (and AES-192) are sufficient to protect classified
information up to the Top Secret level. This is applicable to all U.S. Government Departments or Agencies that are considering the acquisition or use of products incorporating the Advanced Encryption Standard (AES) to satisfy Information Assurance requirements
associated with the protection of national security systems and/or national security information [1].</div>
<div style="text-align:left; margin-top:19px; margin-bottom:19px; padding-top:0px; padding-bottom:0px">
<a href="Camellia.html" style="text-align:left; color:#0080c0; text-decoration:none; font-weight:bold">Next Section &gt;&gt;</a></div>
<a href="Camellia.html" style="text-align:left; color:#0080c0; text-decoration:none; font-weight:bold.html">Next Section &gt;&gt;</a></div>
</div><div class="ClearBoth"></div></body></html>
@@ -1,5 +1,6 @@
<!DOCTYPE html>
<html lang="en">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" 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>
@@ -16,7 +17,7 @@
<div id="menu">
<ul>
<li><a href="Home.html">Home</a></li>
<li><a href="Code.html">Source Code</a></li>
<li><a href="/code/">Source Code</a></li>
<li><a href="Downloads.html">Downloads</a></li>
<li><a class="active" href="Documentation.html">Documentation</a></li>
<li><a href="Donation.html">Donate</a></li>
@@ -1,5 +1,6 @@
<!DOCTYPE html>
<html lang="en">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" 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>
@@ -16,7 +17,7 @@
<div id="menu">
<ul>
<li><a href="Home.html">Home</a></li>
<li><a href="Code.html">Source Code</a></li>
<li><a href="/code/">Source Code</a></li>
<li><a href="Downloads.html">Downloads</a></li>
<li><a class="active" href="Documentation.html">Documentation</a></li>
<li><a href="Donation.html">Donate</a></li>
@@ -1,5 +1,6 @@
<!DOCTYPE html>
<html lang="en">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" 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>
@@ -16,7 +17,7 @@
<div id="menu">
<ul>
<li><a href="Home.html">Home</a></li>
<li><a href="Code.html">Source Code</a></li>
<li><a href="/code/">Source Code</a></li>
<li><a href="Downloads.html">Downloads</a></li>
<li><a class="active" href="Documentation.html">Documentation</a></li>
<li><a href="Donation.html">Donate</a></li>
@@ -1,5 +1,6 @@
<!DOCTYPE html>
<html lang="en">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" 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>
@@ -16,7 +17,7 @@
<div id="menu">
<ul>
<li><a href="Home.html">Home</a></li>
<li><a href="Code.html">Source Code</a></li>
<li><a href="/code/">Source Code</a></li>
<li><a href="Downloads.html">Downloads</a></li>
<li><a class="active" href="Documentation.html">Documentation</a></li>
<li><a href="Donation.html">Donate</a></li>
@@ -33,8 +34,8 @@
<div class="wikidoc">
<h2>Authors</h2>
<p>Mounir IDRASSI (<a href="https://amcrypto.jp" target="_blank">AM Crypto</a>, <a href="https://www.linkedin.com/in/idrassi" target="_blank">
https://www.linkedin.com/in/idrassi</a>) is the creator and main developer of VeraCrypt. He managed all development and deployment aspects on all supported platforms (Windows,Linux and OSX).</p>
<p>Mounir IDRASSI (<a href="https://www.idrix.fr" target="_blank">IDRIX</a>, <a href="https://fr.linkedin.com/in/idrassi" target="_blank">
https://fr.linkedin.com/in/idrassi</a>) is the creator and main developer of VeraCrypt. He managed all development and deployment aspects on all supported platforms (Windows,Linux and OSX).</p>
<p>Alex Kolotnikov (<a href="https://ru.linkedin.com/in/alex-kolotnikov-6625568b" target="_blank">https://ru.linkedin.com/in/alex-kolotnikov-6625568b</a>) is the author of VeraCrypt EFI bootloader. He manages all aspects of EFI support and his strong expertise
helps bring new exciting features to VeraCrypt Windows system encryption.</p>
<p>&nbsp;</p>
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

@@ -1,5 +1,6 @@
<!DOCTYPE html>
<html lang="en">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" 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>
@@ -16,7 +17,7 @@
<div id="menu">
<ul>
<li><a href="Home.html">Home</a></li>
<li><a href="Code.html">Source Code</a></li>
<li><a href="/code/">Source Code</a></li>
<li><a href="Downloads.html">Downloads</a></li>
<li><a class="active" href="Documentation.html">Documentation</a></li>
<li><a href="Donation.html">Donate</a></li>
@@ -187,14 +188,14 @@ You can copy files (or folders) to and from the VeraCrypt volume just as you wou
on the fly in RAM (memory). Similarly, files that are being written or copied to the VeraCrypt volume are automatically encrypted on the fly in RAM (right before they are written to the disk).<br>
<br>
Note that VeraCrypt never saves any decrypted data to a disk &ndash; it only stores them temporarily in RAM (memory). Even when the volume is mounted, data stored in the volume is still encrypted. When you restart Windows or turn off your computer, the volume
will be unmounted and all files stored on it will be inaccessible (and encrypted). Even when power supply is suddenly interrupted (without proper system shut down), all files stored on the volume will be inaccessible (and encrypted). To make them accessible
will be dismounted and all files stored on it will be inaccessible (and encrypted). Even when power supply is suddenly interrupted (without proper system shut down), all files stored on the volume will be inaccessible (and encrypted). To make them accessible
again, you have to mount the volume. To do so, repeat Steps 13-18.</p>
<p>If you want to close the volume and make files stored on it inaccessible, either restart your operating system or unmount the volume. To do so, follow these steps:<br>
<p>If you want to close the volume and make files stored on it inaccessible, either restart your operating system or dismount the volume. To do so, follow these steps:<br>
<br>
<img src="Beginner's Tutorial_Image_022.jpg" alt=""><br>
<br>
Select the volume from the list of mounted volumes in the main VeraCrypt window (marked with a red rectangle in the screenshot above) and then click
<strong>Unmount </strong>(also marked with a red rectangle in the screenshot above). To make files stored on the volume accessible again, you will have to mount the volume. To do so, repeat Steps 13-18.</p>
<strong>Dismount </strong>(also marked with a red rectangle in the screenshot above). To make files stored on the volume accessible again, you will have to mount the volume. To do so, repeat Steps 13-18.</p>
<h2>How to Create and Use a VeraCrypt-Encrypted Partition/Device</h2>
<p>Instead of creating file containers, you can also encrypt physical partitions or drives (i.e., create VeraCrypt device-hosted volumes). To do so, repeat the steps 1-3 but in the step 3 select the second or third option. Then follow the remaining instructions
in the wizard. When you create a device-hosted VeraCrypt volume within a <em>non-system

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 58 KiB

Before

Width:  |  Height:  |  Size: 112 KiB

After

Width:  |  Height:  |  Size: 112 KiB

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 46 KiB

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 62 KiB

Before

Width:  |  Height:  |  Size: 59 KiB

After

Width:  |  Height:  |  Size: 59 KiB

Before

Width:  |  Height:  |  Size: 112 KiB

After

Width:  |  Height:  |  Size: 112 KiB

Before

Width:  |  Height:  |  Size: 48 KiB

After

Width:  |  Height:  |  Size: 48 KiB

Before

Width:  |  Height:  |  Size: 47 KiB

After

Width:  |  Height:  |  Size: 47 KiB

Before

Width:  |  Height:  |  Size: 71 KiB

After

Width:  |  Height:  |  Size: 71 KiB

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 58 KiB

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Before

Width:  |  Height:  |  Size: 61 KiB

After

Width:  |  Height:  |  Size: 61 KiB

Before

Width:  |  Height:  |  Size: 61 KiB

After

Width:  |  Height:  |  Size: 61 KiB

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 62 KiB

Before

Width:  |  Height:  |  Size: 63 KiB

After

Width:  |  Height:  |  Size: 63 KiB

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 35 KiB

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 64 KiB

Before

Width:  |  Height:  |  Size: 71 KiB

After

Width:  |  Height:  |  Size: 71 KiB

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 66 KiB

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