diff options
678 files changed, 8000 insertions, 5194 deletions
diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 87dc0b45..01a589d3 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -103,3 +103,3 @@ jobs: - name: Upload GUI .deb packages - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: @@ -109,3 +109,3 @@ jobs: - name: Upload Console .deb packages - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: diff --git a/.github/workflows/xmlvalidate.sh b/.github/workflows/xmlvalidate.sh new file mode 100644 index 00000000..79d52c16 --- /dev/null +++ b/.github/workflows/xmlvalidate.sh @@ -0,0 +1,42 @@ +#!/bin/bash +fail=false + +# Get all string keys +KEYS=$(grep -oP '<entry[\ ]+lang="[^"]+"[\ ]+key="\K[^"]+' "$1"/src/Common/Language.xml) + +for file in {"$1"/Translations/Language.*.xml,"$1"/src/Common/Language.xml}; do + echo "$file" + passes=true + + # Validate xml + output=$(fxparser -V "$file") + returnvalue=$? + + if [ "$returnvalue" -ne "0" ]; then + passes=false + fail=true + echo $output + fi + + # Ensure each key found in common xml is found in translation xmls + for key in $KEYS; do + if ! grep -q "$key" "$file"; then + echo "Key $key not found in $file" + passes=false + fail=true + fi + done + + if [ "$passes" = true ]; then + echo -e "\e[32m$file passes xml validation.\e[0m" + else + echo -e "\e[31m$file fails xml validation.\e[0m" + fi + +done + +if [ "$fail" = true ]; then + exit 1 +else + exit 0 +fi diff --git a/.github/workflows/xmlvalidate.yml b/.github/workflows/xmlvalidate.yml new file mode 100644 index 00000000..66389252 --- /dev/null +++ b/.github/workflows/xmlvalidate.yml @@ -0,0 +1,36 @@ +name: Validate XML + +on: + push: + branches: [ "ci" ] + paths: + - 'Translations/*' + - 'src/Common/Language.xml' + - '.github/workflows/xmlvalidate.*' + pull_request: + branches: [ "ci" ] + 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 -g + - name: Run XML validator script + run: ${{ github.workspace }}/.github/workflows/xmlvalidate.sh "${{ github.workspace }}" @@ -19,2 +19,3 @@ src/Main/veracrypt *.oshani +*.oarmv8crypto @@ -209,6 +209,6 @@ https://www.veracrypt.fr/ This software as a whole: -Copyright (c) 2013-2024 IDRIX. All rights reserved. +Copyright (c) 2013-2025 IDRIX. All rights reserved. Portions of this software: -Copyright (c) 2013-2024 IDRIX. All rights reserved. +Copyright (c) 2013-2025 IDRIX. All rights reserved. Copyright (c) 2003-2012 TrueCrypt Developers Association. All rights reserved. diff --git a/Translations/Language.ar.xml b/Translations/Language.ar.xml index d58af160..43d56f30 100644 --- a/Translations/Language.ar.xml +++ b/Translations/Language.ar.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="ar" name="العربية" en-name="Arabic" version="0.2.0" translators="Ahmad Gharbeia, Khaled Hosny, Ali Khojah" /> @@ -137,4 +137,4 @@ <entry lang="ar" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">إعدادات عامة</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_UNMOUNT_BALLOON_TOOLTIP"> عقب التنزيل السريع، أعرض الكتابة في بالون</entry> + <entry lang="ar" key="IDC_HK_UNMOUNT_PLAY_SOUND">عقب التنزيل السريع، شغل نغمة تنبيهات النظام</entry> <entry lang="ar" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="ar" key="IDC_PREF_CACHE_PASSWORDS">خزّن كلمات السرّ مؤقتا في ذاكرة المُشغِّل</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_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_LOGON_MOUNT_DEVICES">أوصل كل مجلدات ڤيراكربت المستضافة في نبائط</entry> @@ -171,3 +171,3 @@ <entry lang="ar" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">قم باستخدام أيقونة مختلفة في شريط الأوامر عند وجود أقراص محملة</entry> - <entry lang="ar" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">امحُ كلمات السر المخزّنة مؤقتا عند الفصل التلقائي</entry> + <entry lang="ar" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">امحُ كلمات السر المخزّنة مؤقتا عند الفصل التلقائي</entry> <entry lang="ar" key="IDC_PREF_WIPE_CACHE_ON_EXIT">امحُ كلمات السر المخزّنة مؤقتا عند الخروج</entry> @@ -271,4 +271,4 @@ <entry lang="ar" key="IDT_AUTORUN">تضبيطات التشغيل التلقائي (autorun.inf)</entry> - <entry lang="ar" key="IDT_AUTO_DISMOUNT">افصل تلقائيًا</entry> - <entry lang="ar" key="IDT_AUTO_DISMOUNT_ON">افصل الكل عندما:</entry> + <entry lang="ar" key="IDT_AUTO_UNMOUNT">افصل تلقائيًا</entry> + <entry lang="ar" key="IDT_AUTO_UNMOUNT_ON">افصل الكل عندما:</entry> <entry lang="ar" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">خيارات شاشة مُحمِّل الإقلاع</entry> @@ -278,3 +278,3 @@ <entry lang="ar" key="IDT_DEFAULT_MOUNT_OPTIONS">خيارات الوصل المبدئية</entry> - <entry lang="ar" key="IDT_DISMOUNT_ACTION">خيارات أزرار الاختصار</entry> + <entry lang="ar" key="IDT_UNMOUNT_ACTION">خيارات أزرار الاختصار</entry> <entry lang="ar" key="IDT_DRIVER_OPTIONS">تهيئة المحرك</entry> @@ -425,4 +425,4 @@ <entry lang="ar" key="DEVICE_IN_USE_INPLACE_ENC">تحذير: هذا القسم قيد الاستخدام بواسطة نظام التشغيل أو تطبيق ما. ينبغي أن تغلق كل التطبيقات التي يمكن أن تكون مستخدمة القسم (بما في ذلك مضادات الفيروسات). أأواصل؟</entry> - <entry lang="ar" key="FORMAT_CANT_DISMOUNT_FILESYS">عُطل: تحتوي النبيطة\\القسم على نظام ملفات تعذَّر فصله. ربما يستخدم نظامُ التشغيل نظامَ الملفات. ستسبب تهيئة النبيطة\\القسم تلف البيانات وعدم استقرار النظام. لحل هذه المشكلة ننصحك بأن تحذف القسم أولًا ثم تعيد إنشاءه دون تهيئة. لفعل هذا اتبع الخطوات التالية: 1) انقر باليمين أيقونة 'الحاسوب' (أو 'حاسوبي') في 'قائمة ابدأ' واختر 'أدر'. ستظهر نافذة 'إدارة الحاسوب'. 2) من نافذة 'إدارة الحاسوب' اختر 'تخزين' > 'إدارة القرص'. 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="FORMAT_CANT_UNMOUNT_FILESYS">عُطل: تحتوي النبيطة\\القسم على نظام ملفات تعذَّر فصله. ربما يستخدم نظامُ التشغيل نظامَ الملفات. ستسبب تهيئة النبيطة\\القسم تلف البيانات وعدم استقرار النظام. لحل هذه المشكلة ننصحك بأن تحذف القسم أولًا ثم تعيد إنشاءه دون تهيئة. لفعل هذا اتبع الخطوات التالية: 1) انقر باليمين أيقونة 'الحاسوب' (أو 'حاسوبي') في 'قائمة ابدأ' واختر 'أدر'. ستظهر نافذة 'إدارة الحاسوب'. 2) من نافذة 'إدارة الحاسوب' اختر 'تخزين' > 'إدارة القرص'. 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="DEVICE_IN_USE_INFO">تحذير: بعض النبائط\\الأقسام الموصولة قيد الاستخدام! سيسبب تجاهل هذا نتائج غير مرغوبة تشمل عدم استقرار النظام. ننصح بشدة بغلق أي تطبيق يستخدم النبائط\\الأقسام.</entry> @@ -592,3 +592,3 @@ <entry lang="ar" key="OPENFILES_LOCK">تعذَّر قفل المجلد. ما زالت بعض الملفات على المجلد مفتوحة. لذا لا يمكن فصله.</entry> - <entry lang="ar" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">تعذَّر على ڤيراكربت قفل المجلد لأنه قيد الاستخدام بواسطة النظام أو تطبيقات (ربما توجد ملفات مفتوحة على المجلد). أتريد إجبار فصل المجلد؟</entry> + <entry lang="ar" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">تعذَّر على ڤيراكربت قفل المجلد لأنه قيد الاستخدام بواسطة النظام أو تطبيقات (ربما توجد ملفات مفتوحة على المجلد). أتريد إجبار فصل المجلد؟</entry> <entry lang="ar" key="OPEN_VOL_TITLE">اختر مجلد ڤيراكربت</entry> @@ -731,3 +731,3 @@ <entry lang="ar" key="CANT_MOUNT_VOLUME">تعذَّر وصل المجلد.</entry> - <entry lang="ar" key="CANT_DISMOUNT_VOLUME">تعذَّر فصل المجلد.</entry> + <entry lang="ar" key="CANT_UNMOUNT_VOLUME">تعذَّر فصل المجلد.</entry> <entry lang="ar" key="FORMAT_NTFS_FAILED">فشل ويندوز في تهيئة المجلد بنظام NTFS. اختر نظام ملفات مختلف (إن أمكن) وحاول مجددا. أو يمكنك ترك المجلد دون تهيئة (اختر نوع نظام الملفات 'لا شيء') واخرج من هذا المرشد ثم أوصل المجلد واستخدم أداة النظام أو أداة أخرى لتهيئة المجلد الموصول (سيبقى المجلد معمّى).</entry> @@ -773,3 +773,3 @@ <entry lang="ar" key="INPLACE_DEC_GENERIC_ERR">خطأ تسبب في عدم تمكن فيراكربت من فك تشفير القرص. يرجى إصلاح أي خلل سابق ثم معاودة المحاولة إذا أمكن.</entry> - <entry lang="ar" key="CANT_DISMOUNT_OUTER_VOL">عُطل: تعذَّر فصل المجلد الخارجي! لا يمكن فصل المجلد إذا حوى ملفات أو أدلة يستخدمها تطبيق أو النظام. أغلق كل البرمجيات التي قد تكون مستخدمة ملفات أو أدلة على المجلد ثم انقر 'حاول مجددا'.</entry> + <entry lang="ar" key="CANT_UNMOUNT_OUTER_VOL">عُطل: تعذَّر فصل المجلد الخارجي! لا يمكن فصل المجلد إذا حوى ملفات أو أدلة يستخدمها تطبيق أو النظام. أغلق كل البرمجيات التي قد تكون مستخدمة ملفات أو أدلة على المجلد ثم انقر 'حاول مجددا'.</entry> <entry lang="ar" key="CANT_GET_OUTER_VOL_INFO">عطل: تعذّر جلب معلومات عن المجلد الخارجي! لا تمكن مواصلة إنشاء المجلد.</entry> @@ -884,3 +884,3 @@ <entry lang="ar" key="CLOSE_TC_FIRST">تعذَّر إفراغ مُشغِّل ڤيراكربت. أغلق كل نوافذ ڤيراكربت المفتوحة أولا. إذا لم ينجح هذا أعد تشغيل ويندوز و حاول مجددا.</entry> - <entry lang="ar" key="DISMOUNT_ALL_FIRST">يجب أن تُفصل كل مجلدات ڤيراكربت قبل تنصيب أو إزالة ڤيراكربت.</entry> + <entry lang="ar" key="UNMOUNT_ALL_FIRST">يجب أن تُفصل كل مجلدات ڤيراكربت قبل تنصيب أو إزالة ڤيراكربت.</entry> <entry lang="ar" key="UNINSTALL_OLD_VERSION_FIRST">نسخة منتهية الصلاحية من فيراكربت مثبتة حاليا على هذا النظام. لابد من إزالة هذه النسخة قبل أن تتمكن من تثبيت النسخة الجديدة من فيراكربت.\n\nفور إقفالك لهذه الرسالة, سوف يبدأ برنامج إزالة التثبيت في العمل. لاحظ أنه لن يتم فك تشفير أي قرص أثناء عملية الإزالة. بعد عملية الإزالة للنسخة القديمة من فيراكربت, قم بتثبيت النسخة الجديدة من فيراكر.</entry> @@ -905,3 +905,3 @@ <entry lang="ar" key="OPEN">افتح</entry> - <entry lang="ar" key="DISMOUNT">افصل</entry> + <entry lang="ar" key="UNMOUNT">افصل</entry> <entry lang="ar" key="SHOW_TC">أظهر ڤيراكربت</entry> @@ -977,3 +977,3 @@ <entry lang="ar" key="SYS_FAVORITES_REQUIRE_PBA">قرص النظام لا يبدو أنه مشفر.\n\nأقراص النظام المفضلة يمكن استخدامها فقط بكلمة سر قبل الإقلاع . لذلك, لتفعيل استخدام أقراص النظام المفضلة, تحتاج إلى تشفير قرص النظام أو جزء النظام أولا.</entry> - <entry lang="ar" key="DISMOUNT_FIRST">افصل المجلد قبل الاستمرار.</entry> + <entry lang="ar" key="UNMOUNT_FIRST">افصل المجلد قبل الاستمرار.</entry> <entry lang="ar" key="CANNOT_SET_TIMER">عطل: تعذّر شبط المؤقِّت.</entry> @@ -1011,7 +1011,7 @@ <entry lang="ar" key="HK_AUTOMOUNT_DEVICES">أوصل النبائط تلقائيا</entry> - <entry lang="ar" key="HK_DISMOUNT_ALL">افصل الكل</entry> + <entry lang="ar" key="HK_UNMOUNT_ALL">افصل الكل</entry> <entry lang="ar" key="HK_WIPE_CACHE">امحُ الذّاكرة المخبئية</entry> - <entry lang="ar" key="HK_DISMOUNT_ALL_AND_WIPE">تنزيل الجميع & تدمير الكاش</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_UNMOUNT_ALL_AND_WIPE">تنزيل الجميع & تدمير الكاش</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_MOUNT_FAVORITE_VOLUMES">أوصل المجلدات المفضّلة</entry> @@ -1027,10 +1027,10 @@ <entry lang="ar" key="HIDDEN_OS_HIBERNATION_PREVENTED">تم منع الإسبات.\n\nفيراكربت لايدعم الإسبات في نظام تشغيل مخفي يستخدم جزءا خاصا للإقلاع. لاحظ أن جزء الإقلاع مشترك بين النظام المزيف والمخفي. لذلك, من أجل منع تسرب البيانات عند الإفاقة من الإسبات, فإن فيراكربت يمنع الإسبات ويمنع النظام المخفي من الكتابة على جزء الإقلاع المشترك.</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="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="CONFIRM_BACKGROUND_TASK_DISABLED">تحذير: إذا كانت عمليات فيراكربت الخلفية معطلة, الوظائف التالية ستتعطل:\n\n1) المفاتيح الساخنة\n2) التنزيل التلقائي (مثال, عند الخروج, إخراج الجهاز غير المتعمد, نفاذ التوقيت, etc.)\n3) التحميل التلقائي للمفضلات\n4) التنبيهات (مثال, عند منع العطب للأقراص المخفية)\n5) أيقونة الشريط السفلي\n\nملاحظة: بإمكانك تعطيل العمليات الخلفية لفيراكربت في أي وقت وذلك بالضغط بالزر الأيمن على شريط فيراكربت ثم اختيار الخروج .\n\nهل أنت متأكد من رغبتك في تعطيل مهام فيراكربت الخلفية نهائيا?</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="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="NONSYS_INPLACE_ENC_RESUME_PROMPT">كنت قد جدولت صيرورة تعمية قسم\\مجلد، و لم تتم تلك الصيرورة. أتريد معاودة الصيرورة الآن؟</entry> @@ -1065,3 +1065,3 @@ <entry lang="ar" key="MOUNT_TC_VOLUME">أوصل مجلد ڤيراكربت</entry> - <entry lang="ar" key="DISMOUNT_ALL_TC_VOLUMES">افصل كل مجلدات ڤيراكربت</entry> + <entry lang="ar" key="UNMOUNT_ALL_TC_VOLUMES">افصل كل مجلدات ڤيراكربت</entry> <entry lang="ar" key="UAC_INIT_ERROR">فشل ڤيراكربت في الحصول على صلاحيات الإدارة.</entry> @@ -1308,4 +1308,4 @@ <entry lang="ar" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">تحذير: هذا الخيار يمكن يؤثر سلبا على الأداء.\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="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">تحذير: قرص فيراكربت تم تنزيله</entry> + <entry lang="ar" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">قبل فصل جهاز موصول ويحوي قرص فيراكربت, لابد دوما من تنزيل ملف الحاوية أولا.\n\nفصل الحاوية المفاجئ سببه إنقطاع التوصيل المتكرر لسلك الجهاز, المحرك (الغطاء), ...الخ.</entry> <entry lang="ar" key="UNSUPPORTED_TRUECRYPT_FORMAT">هذا القرص تم إنشاؤه بالإصدار %x.%x لكن فيراكربت يدعم فقط أقراص تروكربت من إصدار 6.x/7.x series</entry> @@ -1455,3 +1455,3 @@ <entry lang="ar" key="TASKICON_PREF_OPEN_VOL">فتح الأحجام المركبة</entry> - <entry lang="ar" key="TASKICON_PREF_DISMOUNT_VOL">إلغاء تركيب الأحجام المركبة</entry> + <entry lang="ar" key="TASKICON_PREF_UNMOUNT_VOL">إلغاء تركيب الأحجام المركبة</entry> <entry lang="ar" key="DISK_FREE">المساحة الحرة المتوفرة :{0}</entry> @@ -1485,6 +1485,6 @@ <entry lang="ar" key="LINUX_SELECT">اخ&تر...</entry> - <entry lang="ar" key="LINUX_DISMOUNT_ALL_WHEN">إلغاء تركيب جميع الأحجام عند</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_DISMOUNT">إغلاق جميع نوافذ المستكشف للحجم الجاري إلغاء تركيبه</entry> + <entry lang="ar" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">إغلاق جميع نوافذ المستكشف للحجم الجاري إلغاء تركيبه</entry> <entry lang="ar" key="LINUX_HOTKEYS">مفاتيح الاختصار</entry> @@ -1492,3 +1492,3 @@ <entry lang="ar" key="LINUX_SOUND_NOTIFICATION">تشغيل صوت الإشعار بالنظام بعد التركيب/إلغاء التركيب</entry> - <entry lang="ar" key="LINUX_CONFIRM_AFTER_DISMOUNT">عرض رسالة تأكيد بعد إلغاء التركيب</entry> + <entry lang="ar" key="LINUX_CONFIRM_AFTER_UNMOUNT">عرض رسالة تأكيد بعد إلغاء التركيب</entry> <entry lang="ar" key="LINUX_VC_QUITS">VeraCrypt يخرج</entry> @@ -1524,3 +1524,3 @@ <entry lang="ar" key="LINUX_KERNEL_OLD">نظامك يستخدم إصدارًا قديمًا من نواة لينكس.\n\nنظرًا لخلل في نواة لينكس، قد يتوقف نظامك عن الاستجابة عند كتابة البيانات إلى حجم VeraCrypt. يمكن حل هذه المشكلة بترقية النواة إلى الإصدار 2.6.24 أو أحدث.</entry> - <entry lang="ar" key="LINUX_VOL_DISMOUNTED">تم إلغاء تركيب الحجم {0}.</entry> + <entry lang="ar" key="LINUX_VOL_UNMOUNTED">تم إلغاء تركيب الحجم {0}.</entry> <entry lang="ar" key="LINUX_VOL_MOUNTED">تم تركيب الحجم {0}.</entry> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/Translations/Language.be.xml b/Translations/Language.be.xml index d3941544..03352808 100644 --- a/Translations/Language.be.xml +++ b/Translations/Language.be.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="be" name="Беларуская" en-name="Belarusian" version="0.1.0" translators="Aleg Azarousky" /> @@ -137,4 +137,4 @@ <entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</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="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="be" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="be" key="IDC_PREF_CACHE_PASSWORDS">Кэшаваць паролі ў памяці прывада</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_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_LOGON_MOUNT_DEVICES">Мантаваць усе тамы на прыладах</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">Ачысціць кэш пароляў пры аўтаразмантаванні</entry> + <entry lang="be" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Ачысціць кэш пароляў пры аўтаразмантаванні</entry> <entry lang="be" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Ачысціць кэш пароляў на выхадзе</entry> @@ -271,4 +271,4 @@ <entry lang="be" key="IDT_AUTORUN">Налады аўтазапуску (файл autorun.inf)</entry> - <entry lang="be" key="IDT_AUTO_DISMOUNT">Аўтаматычнае размантаванне</entry> - <entry lang="be" key="IDT_AUTO_DISMOUNT_ON">Размантаваць усе тамы падчас:</entry> + <entry lang="be" key="IDT_AUTO_UNMOUNT">Аўтаматычнае размантаванне</entry> + <entry lang="be" key="IDT_AUTO_UNMOUNT_ON">Размантаваць усе тамы падчас:</entry> <entry lang="en" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader Screen Options</entry> @@ -278,3 +278,3 @@ <entry lang="be" key="IDT_DEFAULT_MOUNT_OPTIONS">Прадвызначаныя налады мантавання</entry> - <entry lang="be" key="IDT_DISMOUNT_ACTION">Дадатковыя налады</entry> + <entry lang="be" key="IDT_UNMOUNT_ACTION">Дадатковыя налады</entry> <entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry> @@ -425,4 +425,4 @@ <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_DISMOUNT_FILESYS">ПАМЫЛКА: Прылада/падзел мае файлавую сістэму, якая не можа быць размантаваная. Магчыма, яна выкарыстоўваецца аперацыйнай сістэмай. Фарматаванне прылады/падзела хутчэй за ўсё выкліча пашкоджанне дадзеных і нестабільнасць сістэмы.\n\nДля вырашэння гэтай праблемы мы рэкамендуем спачатку выдаліць гэты падзел, затым ізноў стварыць яго без фарматавання. Вось як гэта зрабіць: 1) Пстрыкніце правай кнопкай мышы па цэтліку 'Кампутар' (ці 'Мой кампутар') в меню 'Пуск' і абярыце 'Кіраванне'. Павінна адчыніцца акно 'Кіраванне кампутарам'. 2) У акне 'Кіраванне кампутарам', абярыце 'Запамінальныя прылады' > 'Кіраванне дыскамі'. 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="FORMAT_CANT_UNMOUNT_FILESYS">ПАМЫЛКА: Прылада/падзел мае файлавую сістэму, якая не можа быць размантаваная. Магчыма, яна выкарыстоўваецца аперацыйнай сістэмай. Фарматаванне прылады/падзела хутчэй за ўсё выкліча пашкоджанне дадзеных і нестабільнасць сістэмы.\n\nДля вырашэння гэтай праблемы мы рэкамендуем спачатку выдаліць гэты падзел, затым ізноў стварыць яго без фарматавання. Вось як гэта зрабіць: 1) Пстрыкніце правай кнопкай мышы па цэтліку 'Кампутар' (ці 'Мой кампутар') в меню 'Пуск' і абярыце 'Кіраванне'. Павінна адчыніцца акно 'Кіраванне кампутарам'. 2) У акне 'Кіраванне кампутарам', абярыце 'Запамінальныя прылады' > 'Кіраванне дыскамі'. 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="DEVICE_IN_USE_INFO">УВАГА: Некаторыя змантаваныя прылады/падзелы ўжо выкарыстоўваюцца.\n\nІгнараванне гэтага можа прывесці да непажаданых наступстваў, у тым ліку да нестабільнасці сістэмы.\n\nНастойліва рэкамендуецца зачыніць усе вокны, што выкарыстоўваюць гэтыя прылады/падзелы.</entry> @@ -527,3 +527,3 @@ <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 dismount 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 unmount the volume).</entry> <entry lang="be" key="HIDVOL_HOST_FILLING_HELP">Вонкавы том паспяхова створаны і змантаваны як дыск %hc:. У гэты том цяпер варта скапіяваць якія-небудзь што асэнсавана выглядаюць файлы, якія на самай справе вам хаваць НЕ трэба, каб збянтэжыць нядобразычліўца, калі ён вымусіць вас паведаміць пароль. У гэтым выпадку вы скажаце толькі пароль для гэтага вонкавага тома, але не для ўтоенага. Сапраўды каштоўныя для вас файлы будуць захоўвацца ва ўтоеным томе, створаным пазней. Калі скончыце капіяваць файлы, націсніце 'Далей'. Не размантоўвайце гэты том. НАТАТКА: Націск 'Далей' запусціць сканаванне карты кластараў вонкавага тома для высвятлення памеру бесперапыннай вольнай вобласці, канец якой стане канцом тома. Гэты ўчастак будзе прыстасаваны пад утоены том, г.зн. менавіта ім вызначаецца яго максімальна магчымы памер. Сканаванне карты кластараў гарантуе, што ніякія дадзеныя ў вонкавым томе не будуць перазапісаныя ўтоеным томам.</entry> @@ -592,3 +592,3 @@ <entry lang="be" key="OPENFILES_LOCK">Немагчыма заблакаваць том. На гэтым томе ёсць адкрытыя файлы, таму яго нельга размантаваць.</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="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="be" key="OPEN_VOL_TITLE">Абярыце том VeraCrypt</entry> @@ -731,3 +731,3 @@ <entry lang="be" key="CANT_MOUNT_VOLUME">Немагчыма змантаваць том.</entry> - <entry lang="be" key="CANT_DISMOUNT_VOLUME">Немагчыма размантаваць том.</entry> + <entry lang="be" key="CANT_UNMOUNT_VOLUME">Немагчыма размантаваць том.</entry> <entry lang="be" key="FORMAT_NTFS_FAILED">Windows не можа адфарматаваць гэты том як NTFS.\n\nАбярыце іншы тып файлавай сістэмы (калі магчыма) і паўтарыце спробу. Альбо вы можаце пакінуць гэты том нефарматаваным (у поле выбару файлавай сістэмы азначце 'Не'), зачыніць акно майстра, змантаваць том, а затым з дапамогай сістэмнай ці іншай утыліты адфарматаваць змантаваны том (ён пры гэтым застанецца зашыфраваным).</entry> @@ -773,3 +773,3 @@ <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_DISMOUNT_OUTER_VOL">Памылка! Немагчыма размантаваць вонкавы том.\n\nТом нельга размантаваць, калі ён утрымоўвае файлы ці тэчкі, што выкарыстоўваюцца якой-небудзь праграмай ці сістэмай.\n\nЗачыніце ўсе праграмы, якія могуць выкарыстоўваць файлы і тэчкі на гэтым томе, і націсніце 'Паўтор'.</entry> + <entry lang="be" key="CANT_UNMOUNT_OUTER_VOL">Памылка! Немагчыма размантаваць вонкавы том.\n\nТом нельга размантаваць, калі ён утрымоўвае файлы ці тэчкі, што выкарыстоўваюцца якой-небудзь праграмай ці сістэмай.\n\nЗачыніце ўсе праграмы, якія могуць выкарыстоўваць файлы і тэчкі на гэтым томе, і націсніце 'Паўтор'.</entry> <entry lang="be" key="CANT_GET_OUTER_VOL_INFO">Памылка! Немагчыма атрымаць інфармацыю пра вонкавы том. Стварэнне тома спынена.</entry> @@ -884,3 +884,3 @@ <entry lang="be" key="CLOSE_TC_FIRST">Немагчыма выгрузіць драйвер VeraCrypt.\n\nСпачатку зачыніце ўсе адчыненыя вокны VeraCrypt. Калі гэта не дапаможа, перазагрузіце Windows і паспрабуйце яшчэ раз.</entry> - <entry lang="be" key="DISMOUNT_ALL_FIRST">Перш чым працягнуць усталёўку ці выдаленне VeraCrypt, трэба размантаваць усе VeraCrypt-тамы.</entry> + <entry lang="be" key="UNMOUNT_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> @@ -905,3 +905,3 @@ <entry lang="be" key="OPEN">Адкрыць</entry> - <entry lang="be" key="DISMOUNT">Размантаваць</entry> + <entry lang="be" key="UNMOUNT">Размантаваць</entry> <entry lang="be" key="SHOW_TC">Паказаць VeraCrypt</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">Перш чым працягнуць, размантуйце том.</entry> + <entry lang="be" key="UNMOUNT_FIRST">Перш чым працягнуць, размантуйце том.</entry> <entry lang="be" key="CANNOT_SET_TIMER">ПАМЫЛКА: Немагчыма ўсталяваць таймер.</entry> @@ -999,3 +999,3 @@ <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 dismount 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 unmount the volume.</entry> <entry lang="be" key="HOMEPAGE">Хатняя старонка</entry> @@ -1008,10 +1008,10 @@ <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 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="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="be" key="CONFIRM_SAVE_DEFAULT_KEYFILES">УВАГА: Калі ўсталяваныя і актываваныя ключавыя файлы па змаўчанні, мантаваць тамы, што іх НЕ выкарыстоўваюць, будзе немагчыма. Пры мантаванні такіх тамоў не забывайце выключаць наладу 'Ключавыя файлы' (ніжэй поля ўводу пароля).\n\nВы сапраўды жадаеце захаваць абраныя ключавыя файлы/шляхі як выкарыстаныя па змаўчанні?</entry> <entry lang="be" key="HK_AUTOMOUNT_DEVICES">Аўтамантаванне прылад</entry> - <entry lang="be" key="HK_DISMOUNT_ALL">Размантаваць усё</entry> + <entry lang="be" key="HK_UNMOUNT_ALL">Размантаваць усё</entry> <entry lang="be" key="HK_WIPE_CACHE">Ачыстка кэша</entry> - <entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All & 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="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All & 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="be" key="HK_MOUNT_FAVORITE_VOLUMES">Змантаваць абраныя тамы</entry> @@ -1027,10 +1027,10 @@ <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_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="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="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> @@ -1042,3 +1042,3 @@ <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' > '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-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">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="be" key="CONFIRM_EXIT_UNIVERSAL">Выйсці?</entry> @@ -1065,3 +1065,3 @@ <entry lang="be" key="MOUNT_TC_VOLUME">Змантаваць том VeraCrypt</entry> - <entry lang="be" key="DISMOUNT_ALL_TC_VOLUMES">Размантаваць усе тамы VeraCrypt</entry> + <entry lang="be" key="UNMOUNT_ALL_TC_VOLUMES">Размантаваць усе тамы VeraCrypt</entry> <entry lang="be" key="UAC_INIT_ERROR">VeraCrypt не можа атрымаць правы адміністратара.</entry> @@ -1287,4 +1287,4 @@ <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 '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="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="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry> @@ -1294,6 +1294,6 @@ <entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &Device and Mount...</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="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount 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 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="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="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> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <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="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry> <entry lang="en" key="DISK_FREE">Free space available: {0}</entry> @@ -1485,10 +1485,10 @@ <entry lang="en" key="LINUX_SELECT">Se&lect...</entry> - <entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry> + <entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount 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_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</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_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_VC_QUITS">VeraCrypt quits</entry> @@ -1512,3 +1512,3 @@ <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_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_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> @@ -1516,3 +1516,3 @@ <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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry> <entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry> @@ -1524,3 +1524,3 @@ <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_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry> <entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/Translations/Language.bg.xml b/Translations/Language.bg.xml index a3ddd510..68be0aa8 100644 --- a/Translations/Language.bg.xml +++ b/Translations/Language.bg.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="bg" name="Български" en-name="Bulgarian" version="0.1.0" translators="Lachezar Gorchev" /> @@ -137,4 +137,4 @@ <entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</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="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="bg" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="bg" key="IDC_PREF_CACHE_PASSWORDS">Кеширане на пароли в паметта</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_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_LOGON_MOUNT_DEVICES">Монтиране на всички VeraCrypt томове-устройства</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">Заличаване на кешираните пароли при авто-демонтиране</entry> + <entry lang="bg" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Заличаване на кешираните пароли при авто-демонтиране</entry> <entry lang="bg" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Заличаване при изход</entry> @@ -271,4 +271,4 @@ <entry lang="bg" key="IDT_AUTORUN">Конфигурация на АвтоСтарт (autorun.inf)</entry> - <entry lang="bg" key="IDT_AUTO_DISMOUNT">Авто-демонтиране</entry> - <entry lang="bg" key="IDT_AUTO_DISMOUNT_ON">Демонтиране на всички когато:</entry> + <entry lang="bg" key="IDT_AUTO_UNMOUNT">Авто-демонтиране</entry> + <entry lang="bg" key="IDT_AUTO_UNMOUNT_ON">Демонтиране на всички когато:</entry> <entry lang="bg" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Опци на Boot Loader екрана</entry> @@ -278,3 +278,3 @@ <entry lang="bg" key="IDT_DEFAULT_MOUNT_OPTIONS">Подразбиращи се опции при монтиране</entry> - <entry lang="bg" key="IDT_DISMOUNT_ACTION">Опции на системните клавиши</entry> + <entry lang="bg" key="IDT_UNMOUNT_ACTION">Опции на системните клавиши</entry> <entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry> @@ -425,4 +425,4 @@ <entry lang="bg" key="DEVICE_IN_USE_INPLACE_ENC">Внимание: Този дял се използва от операционната система или от някое приложение. Трябва да затворите всички приложения които биха могли да използват дяла (включително и антивирусни програми).\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' > '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="FORMAT_CANT_UNMOUNT_FILESYS">Грешка: Устройството/дяла съдържа файлова система която не може да бъде демонтирана. Файловата система може да се използва от операционната система. Форматирането на устройството/дяла е мнго вероятно да причини повреда на данните и нестабилност на системата.\n\nЗа да разрешите този проблем, препоръчваме първо да изтриете дяла и след това да го създадете на ново без форматиране. За да направите това, следвайте тези стъпки: 1) Натиснете десен бутон върху иконата на 'Computer' (или 'My Computer') в 'Start Menu' и изберете 'Manage'. Трябва да се появи прозореца 'Computer Management'. 2) В прозореца 'Computer Management', изберете 'Storage' > '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="DEVICE_IN_USE_INFO">ВНИМАНИЕ: Някои от монтираните дялове/устройства вече се използваха!\n\nПренебрегването на това може да доведе до нежелани последствия, включително нестабилност на системата.\n\nСилно препоръчваме да затворите всички приложения, които биха могли да използват устройствата/дяловете.</entry> @@ -592,3 +592,3 @@ <entry lang="bg" key="OPENFILES_LOCK">Не е възможно да се заключи тома. Все още на тома има отворени файлове. За това тома не може да бъде демонтиран.</entry> - <entry lang="bg" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt не може да заключи тома, тъй като се използва от системата или от някое приложение (може да има отворени файлове на тома).\n\nЖелаете ли да демонтирате тома принудително?</entry> + <entry lang="bg" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt не може да заключи тома, тъй като се използва от системата или от някое приложение (може да има отворени файлове на тома).\n\nЖелаете ли да демонтирате тома принудително?</entry> <entry lang="bg" key="OPEN_VOL_TITLE">Изберете VeraCrypt том</entry> @@ -731,3 +731,3 @@ <entry lang="bg" key="CANT_MOUNT_VOLUME">Тома не може да се монтира.</entry> - <entry lang="bg" key="CANT_DISMOUNT_VOLUME">Тома не може да се демонтира.</entry> + <entry lang="bg" key="CANT_UNMOUNT_VOLUME">Тома не може да се демонтира.</entry> <entry lang="bg" key="FORMAT_NTFS_FAILED">Windows не успя да форматира тома като NTFS.\n\nМоля, изберете друг тип файлова система (ако е възможно) и опитайте отново. Също така, можете да оставите тома неформатиран (изберете 'None' за файлова система), излезте от този помощник, монтирайте тома, и тогава използвайте или системен инструмент или инструмент от "трета страна" за да форматирате монтирания том (тома ще остане криптиран).</entry> @@ -773,3 +773,3 @@ <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_DISMOUNT_OUTER_VOL">Грешка: Външният том не може да бъде демонтиран!\n\nТом не може да бъде демонтиран, ако съдържа файлове или директории, които се използват от приложение или от системата.\n\nМоля, затворете всяка програма, която би могла да използва файлове или директории на тома и натиснете Опитай пак.</entry> + <entry lang="bg" key="CANT_UNMOUNT_OUTER_VOL">Грешка: Външният том не може да бъде демонтиран!\n\nТом не може да бъде демонтиран, ако съдържа файлове или директории, които се използват от приложение или от системата.\n\nМоля, затворете всяка програма, която би могла да използва файлове или директории на тома и натиснете Опитай пак.</entry> <entry lang="bg" key="CANT_GET_OUTER_VOL_INFO">Грешка: Не може да се получи информация за външния том! Създаването на том не може да продължи.</entry> @@ -884,3 +884,3 @@ <entry lang="bg" key="CLOSE_TC_FIRST">VeraCrypt драйвера не може да бъде спрян.\n\nМоля, най-напред затворете всички отворени VeraCrypt процорци. Ако това не помага, моля рестартирайте Windows и опитайте отново.</entry> - <entry lang="bg" key="DISMOUNT_ALL_FIRST">Всички VeraCrypt томове трябва да бъдат демонтирани преди инсталиране или деинсталиране на VeraCrypt.</entry> + <entry lang="bg" key="UNMOUNT_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> @@ -905,3 +905,3 @@ <entry lang="bg" key="OPEN">Отваряне</entry> - <entry lang="bg" key="DISMOUNT">Демонтиране</entry> + <entry lang="bg" key="UNMOUNT">Демонтиране</entry> <entry lang="bg" key="SHOW_TC">Показване на VeraCrypt</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">Моля демонтирайте тома преди да продължите.</entry> + <entry lang="bg" key="UNMOUNT_FIRST">Моля демонтирайте тома преди да продължите.</entry> <entry lang="bg" key="CANNOT_SET_TIMER">Грешка: Не може да се настрои таймер.</entry> @@ -1011,7 +1011,7 @@ <entry lang="bg" key="HK_AUTOMOUNT_DEVICES">Авто-монтиране на устройствата</entry> - <entry lang="bg" key="HK_DISMOUNT_ALL">Демонтиране на всички</entry> + <entry lang="bg" key="HK_UNMOUNT_ALL">Демонтиране на всички</entry> <entry lang="bg" key="HK_WIPE_CACHE">Изчистване на кеша</entry> - <entry lang="bg" key="HK_DISMOUNT_ALL_AND_WIPE">Демонтиране на всички & Заличаване на кеша</entry> - <entry lang="bg" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Принудително демонтиране на всички & Заличаване на кеша</entry> - <entry lang="bg" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Принудително демонтиране на всички, Заличаване на кеша & Изход</entry> + <entry lang="bg" key="HK_UNMOUNT_ALL_AND_WIPE">Демонтиране на всички & Заличаване на кеша</entry> + <entry lang="bg" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Принудително демонтиране на всички & Заличаване на кеша</entry> + <entry lang="bg" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Принудително демонтиране на всички, Заличаване на кеша & Изход</entry> <entry lang="bg" key="HK_MOUNT_FAVORITE_VOLUMES">Монтиране на любимите томове</entry> @@ -1027,10 +1027,10 @@ <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_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="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="bg" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Задали сте процес на криптиране на дял/устройство. Процеса все още не е приключил.\n\nЖелаете ли да продължите процеса сега?</entry> @@ -1042,3 +1042,3 @@ <entry lang="bg" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">Били сте задали процес на криптиране или декриптиране на системният дял/устройство. Както и да е, pre-boot автентикацията е неуспешна (или е била подмината).\n\nЗабележка: Ако сте декриптирали системния дял/устройство в pre-boot средата, може да трябва да завършите процеса като изберете 'Система' > 'Декриптиране на системния дял/устройство за постоянно' от менюто на главния прозорец на 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-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">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="bg" key="CONFIRM_EXIT_UNIVERSAL">Изход?</entry> @@ -1065,3 +1065,3 @@ <entry lang="bg" key="MOUNT_TC_VOLUME">Монтиране на VeraCrypt том</entry> - <entry lang="bg" key="DISMOUNT_ALL_TC_VOLUMES">Демонтиране на всички VeraCrypt томове</entry> + <entry lang="bg" key="UNMOUNT_ALL_TC_VOLUMES">Демонтиране на всички VeraCrypt томове</entry> <entry lang="bg" key="UAC_INIT_ERROR">VeraCrypt не успява да получи администрароски права.</entry> @@ -1287,4 +1287,4 @@ <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 '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="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="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry> @@ -1294,6 +1294,6 @@ <entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &Device and Mount...</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="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount 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 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="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="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> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <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="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry> <entry lang="en" key="DISK_FREE">Free space available: {0}</entry> @@ -1485,10 +1485,10 @@ <entry lang="en" key="LINUX_SELECT">Se&lect...</entry> - <entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry> + <entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount 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_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</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_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_VC_QUITS">VeraCrypt quits</entry> @@ -1512,3 +1512,3 @@ <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_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_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> @@ -1516,3 +1516,3 @@ <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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry> <entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry> @@ -1524,3 +1524,3 @@ <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_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry> <entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/Translations/Language.ca.xml b/Translations/Language.ca.xml index f9f1dcc5..dd91a915 100644 --- a/Translations/Language.ca.xml +++ b/Translations/Language.ca.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="ca" name="Català" en-name="Catalan" version="0.1.0" translators="CESICAT, Centre de Seguretat de la Informació de Catalunya" /> @@ -137,4 +137,4 @@ <entry lang="ca" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Configuració global</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="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="ca" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="ca" key="IDC_PREF_CACHE_PASSWORDS">Guardar contrasenyes al controlador</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_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_LOGON_MOUNT_DEVICES">Muntar tots els volums de dispositiu</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">Oblidar les contrasenyes guardades quan es desmunti automàticament</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_EXIT">Oblidar les contrasenyes guardades al sortir</entry> @@ -271,4 +271,4 @@ <entry lang="ca" key="IDT_AUTORUN">Configuració d'inici automàtic (autorun.inf)</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_AUTO_UNMOUNT">Desmuntar automàticament</entry> + <entry lang="ca" key="IDT_AUTO_UNMOUNT_ON">Desmuntar-ho tot quan:</entry> <entry lang="ca" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Opcions de la pantalla de gestió d'arrencada</entry> @@ -278,3 +278,3 @@ <entry lang="ca" key="IDT_DEFAULT_MOUNT_OPTIONS">Opcions de muntatge per defecte</entry> - <entry lang="ca" key="IDT_DISMOUNT_ACTION">Opcions de les dreceres de teclat</entry> + <entry lang="ca" key="IDT_UNMOUNT_ACTION">Opcions de les dreceres de teclat</entry> <entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry> @@ -425,4 +425,4 @@ <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_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' > '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="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' > '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="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> @@ -592,3 +592,3 @@ <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_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="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="OPEN_VOL_TITLE">Seleccioni el volum VeraCrypt</entry> @@ -731,3 +731,3 @@ <entry lang="ca" key="CANT_MOUNT_VOLUME">No s'ha pogut muntar el volum.</entry> - <entry lang="ca" key="CANT_DISMOUNT_VOLUME">No s'ha pogut desmuntar el volum.</entry> + <entry lang="ca" key="CANT_UNMOUNT_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> @@ -773,3 +773,3 @@ <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_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_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_GET_OUTER_VOL_INFO">Error: No s'ha pogut obtenir informació sobre el volum exterior!\nLa creació del volum no pot continuar.</entry> @@ -884,3 +884,3 @@ <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="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="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="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> @@ -905,3 +905,3 @@ <entry lang="ca" key="OPEN">Obrir</entry> - <entry lang="ca" key="DISMOUNT">Desmuntar</entry> + <entry lang="ca" key="UNMOUNT">Desmuntar</entry> <entry lang="ca" key="SHOW_TC">Veure el VeraCrypt</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">Si us plau, desmunti el volum abans de continuar.</entry> + <entry lang="ca" key="UNMOUNT_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> @@ -1011,7 +1011,7 @@ <entry lang="ca" key="HK_AUTOMOUNT_DEVICES">Muntar automàticament</entry> - <entry lang="ca" key="HK_DISMOUNT_ALL">Desmuntar-ho tot</entry> + <entry lang="ca" key="HK_UNMOUNT_ALL">Desmuntar-ho tot</entry> <entry lang="ca" key="HK_WIPE_CACHE">Buidar memòria cau</entry> - <entry lang="ca" key="HK_DISMOUNT_ALL_AND_WIPE">Desmuntar-ho tot & buidar memòria cau</entry> - <entry lang="ca" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Forçar desmuntar-ho tot & 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 & sortir</entry> + <entry lang="ca" key="HK_UNMOUNT_ALL_AND_WIPE">Desmuntar-ho tot & buidar memòria cau</entry> + <entry lang="ca" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Forçar desmuntar-ho tot & 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 & sortir</entry> <entry lang="ca" key="HK_MOUNT_FAVORITE_VOLUMES">Muntar els volums favorits</entry> @@ -1027,10 +1027,10 @@ <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_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="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="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_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="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="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> @@ -1065,3 +1065,3 @@ <entry lang="ca" key="MOUNT_TC_VOLUME">Muntar el volum VeraCrypt</entry> - <entry lang="ca" key="DISMOUNT_ALL_TC_VOLUMES">Desmuntar tots els volums VeraCrypt</entry> + <entry lang="ca" key="UNMOUNT_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> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <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="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry> <entry lang="en" key="DISK_FREE">Free space available: {0}</entry> @@ -1485,10 +1485,10 @@ <entry lang="en" key="LINUX_SELECT">Se&lect...</entry> - <entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry> + <entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount 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_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</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_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_VC_QUITS">VeraCrypt quits</entry> @@ -1512,3 +1512,3 @@ <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_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_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> @@ -1516,3 +1516,3 @@ <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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry> <entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry> @@ -1524,3 +1524,3 @@ <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_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry> <entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/Translations/Language.co.xml b/Translations/Language.co.xml index 3ff0e6ba..b2384e32 100644 --- a/Translations/Language.co.xml +++ b/Translations/Language.co.xml @@ -21,3 +21,3 @@ Information about Corsican localization: <VeraCrypt> - <localization prog-version="1.26.17"> + <localization prog-version="1.26.20"> <language langid="co" name="Corsu" en-name="Corsican" version="1.4.6" translators="Patriccollu di Santa Maria è Sichè"/> @@ -156,4 +156,4 @@ Information about Corsican localization: <entry lang="co" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Definizioni glubale</entry> - <entry lang="co" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Affissà una bolla d’infurmazione dopu à una smuntatura riesciuta di tastu di scelta rapida</entry> - <entry lang="co" key="IDC_HK_DISMOUNT_PLAY_SOUND">Sunà un sonu di nutificazione di sistema dopu à una smuntatura riesciuta di tastu di scelta rapida</entry> + <entry lang="co" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Affissà una bolla d’infurmazione dopu à una smuntatura riesciuta di tastu di scelta rapida</entry> + <entry lang="co" key="IDC_HK_UNMOUNT_PLAY_SOUND">Sunà un sonu di nutificazione di sistema dopu à una smuntatura riesciuta di tastu di scelta rapida</entry> <entry lang="co" key="IDC_HK_MOD_ALT">Alt</entry> @@ -177,8 +177,8 @@ Information about Corsican localization: <entry lang="co" key="IDC_PREF_CACHE_PASSWORDS">Mette parolle d’intesa in l’impiatta di pilotu</entry> - <entry lang="co" key="IDC_PREF_DISMOUNT_INACTIVE">S’è alcunu datu ùn ci hè statu lettu o scrittu nant’à u vulume durante</entry> - <entry lang="co" key="IDC_PREF_DISMOUNT_LOGOFF">L’utilizatore si scunnette</entry> - <entry lang="co" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">Sessione utilizatore hè ammarchjunata</entry> - <entry lang="co" key="IDC_PREF_DISMOUNT_POWERSAVING">Entrata in modu d’ecunumia d’energia</entry> - <entry lang="co" key="IDC_PREF_DISMOUNT_SCREENSAVER">Risparmiadore di screnu lanciatu</entry> - <entry lang="co" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Sfurzà a smuntatura autumatica ancu s’è u vulume cuntene schedarii o cartulari aperti</entry> + <entry lang="co" key="IDC_PREF_UNMOUNT_INACTIVE">S’è alcunu datu ùn ci hè statu lettu o scrittu nant’à u vulume durante</entry> + <entry lang="co" key="IDC_PREF_UNMOUNT_LOGOFF">L’utilizatore si scunnette</entry> + <entry lang="co" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">Sessione utilizatore hè ammarchjunata</entry> + <entry lang="co" key="IDC_PREF_UNMOUNT_POWERSAVING">Entrata in modu d’ecunumia d’energia</entry> + <entry lang="co" key="IDC_PREF_UNMOUNT_SCREENSAVER">Risparmiadore di screnu lanciatu</entry> + <entry lang="co" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Sfurzà a smuntatura autumatica ancu s’è u vulume cuntene schedarii o cartulari aperti</entry> <entry lang="co" key="IDC_PREF_LOGON_MOUNT_DEVICES">Muntà tutti i vulumi VeraCrypt di st’apparechju</entry> @@ -190,3 +190,3 @@ Information about Corsican localization: <entry lang="co" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Impiegà un’icona sfarente in a barra di e tacche quandu ci hè vulumi muntati</entry> - <entry lang="co" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Nettà e parolle d’intesa da l’impiatta à a smuntatura autumatica</entry> + <entry lang="co" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Nettà e parolle d’intesa da l’impiatta à a smuntatura autumatica</entry> <entry lang="co" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Nettà parolle d’intesa da l’impiatta à l’esce di VC</entry> @@ -290,4 +290,4 @@ Information about Corsican localization: <entry lang="co" key="IDT_AUTORUN">Cunfigurazione di lanciu autumaticu (autorun.inf)</entry> - <entry lang="co" key="IDT_AUTO_DISMOUNT">Smuntatura autumatica</entry> - <entry lang="co" key="IDT_AUTO_DISMOUNT_ON">Tuttu smuntà quandu :</entry> + <entry lang="co" key="IDT_AUTO_UNMOUNT">Smuntatura autumatica</entry> + <entry lang="co" key="IDT_AUTO_UNMOUNT_ON">Tuttu smuntà quandu :</entry> <entry lang="co" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Ozzioni di u screnu di caricadore di piccera</entry> @@ -297,3 +297,3 @@ Information about Corsican localization: <entry lang="co" key="IDT_DEFAULT_MOUNT_OPTIONS">Ozzioni predefinite di muntatura</entry> - <entry lang="co" key="IDT_DISMOUNT_ACTION">Ozzioni di i tasti di scelta rapida</entry> + <entry lang="co" key="IDT_UNMOUNT_ACTION">Ozzioni di i tasti di scelta rapida</entry> <entry lang="co" key="IDT_DRIVER_OPTIONS">Cunfigurazione di u pilotu</entry> @@ -444,4 +444,4 @@ Information about Corsican localization: <entry lang="co" key="DEVICE_IN_USE_INPLACE_ENC">AVERTIMENTU : A partizione hè impiegata da u sistema operatoriu o da appiecazioni. Ci vuleria à chjode tutta appiecazione chì puderia impiegà a partizione (u prugramma antivirus inchjusu).\n\nCuntinuà ?</entry> - <entry lang="co" key="FORMAT_CANT_DISMOUNT_FILESYS">AVERTIMENTU : L’apparechju o a partizione cuntene un sistema di schedarii chì ùn pò micca esse smuntatu. U sistema di schedarii pò esse impiegatu da u sistema operatoriu. A so messa à u furmatu pò, di sicuru, cagiunà una deteriurazione di i dati o à una istabilità di u sistema.\n\nPer currege stu prublema, vi ricumandemu di squassà a partizione in primu locu, è tandu, di crealla torna senza messa à u furmatu. Per fà què, seguitate st’istruzzioni :\n1) Cliccu dirittu nant’à l’icona di l’urdinatore o « U mo urdinatore » in u listinu « Démarrer » è selezziunà « Ghjestione ». A finestra di ghjestione di l’urdinatore deve affaccassi.\n2) Nant’à sta finestra, selezziunà l’unghjetta « Memoria » eppò « Ghjestione di i dischi ».\n3) Cliccu dirittu nant’à a partizione ch’ella ci vole à cifrà è selezziunà, sia « Squassà a partizione », sia « Squassà u vulume », sia « Squassà u discu logicu ».\n4) Cliccu nant’à « Sì ». S’è Windows vi dumanda di reinizià l’urdinatore, fatelu. Eppò ripetite e tappe 1 è 2 è cuntinuate da a tappa 5.\n5) Cliccu dirittu in l’area di u spaziu liberu è micca attribuitu è selezziunà « Nova partizione », o « Novu vulume simplice », o « Novu discu logicu ».\n6) A finestra di l’assistente currispundente s’affacca è ci vole à seguità e so istruzzioni. Nant’à a pagina di l’assistente chjamata « Mette a partizione à u furmatu », selezziunà sia « Ùn mette micca sta partizione à u furmatu », sia « Ùn mette micca stu vulume à u furmatu ». Cliccu nant’à « Seguente » eppò « Compie ».\n7) Sappiate chì u chjassu di l’apparechju chì vò avete selezziunatu in VeraCrypt pò esse falsu avà. Dunque, esce di l’assistente di creazione di vulume VeraCrypt (s’ellu hè sempre in funzione) è rilanciallu.\n8) Pruvà torna di cifrà l’apparechju o a partizione.\n\nS’è VeraCrypt cuntinueghja di fiascà a cifratura di l’apparechju o di a partizione, ci vulerà à riflette à creà piuttostu un cuntenidore di schedariu.</entry> - <entry lang="co" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Sbagliu : U sistema di schedarii ùn pò micca esse ammarchjunatu o smuntatu. Forse hè impiegatu da u sistema operatoriu o da appiecazioni (per indettu, u prugramma antivirus). Cifrà a partizione puderia cagiunà una deteriurazione di i dati o à una istabilità di u sistema.\n\nCi vole à chjode tutta appiecazione chì puderia impiegà u sistema di schedarii (u prugramma antivirus inchjusu) è pruvà torna. S’è què ùn funziuneghja micca, ci vole à seguità l’istruzzioni quì sottu.</entry> + <entry lang="co" key="FORMAT_CANT_UNMOUNT_FILESYS">AVERTIMENTU : L’apparechju o a partizione cuntene un sistema di schedarii chì ùn pò micca esse smuntatu. U sistema di schedarii pò esse impiegatu da u sistema operatoriu. A so messa à u furmatu pò, di sicuru, cagiunà una deteriurazione di i dati o à una istabilità di u sistema.\n\nPer currege stu prublema, vi ricumandemu di squassà a partizione in primu locu, è tandu, di crealla torna senza messa à u furmatu. Per fà què, seguitate st’istruzzioni :\n1) Cliccu dirittu nant’à l’icona di l’urdinatore o « U mo urdinatore » in u listinu « Démarrer » è selezziunà « Ghjestione ». A finestra di ghjestione di l’urdinatore deve affaccassi.\n2) Nant’à sta finestra, selezziunà l’unghjetta « Memoria » eppò « Ghjestione di i dischi ».\n3) Cliccu dirittu nant’à a partizione ch’ella ci vole à cifrà è selezziunà, sia « Squassà a partizione », sia « Squassà u vulume », sia « Squassà u discu logicu ».\n4) Cliccu nant’à « Sì ». S’è Windows vi dumanda di reinizià l’urdinatore, fatelu. Eppò ripetite e tappe 1 è 2 è cuntinuate da a tappa 5.\n5) Cliccu dirittu in l’area di u spaziu liberu è micca attribuitu è selezziunà « Nova partizione », o « Novu vulume simplice », o « Novu discu logicu ».\n6) A finestra di l’assistente currispundente s’affacca è ci vole à seguità e so istruzzioni. Nant’à a pagina di l’assistente chjamata « Mette a partizione à u furmatu », selezziunà sia « Ùn mette micca sta partizione à u furmatu », sia « Ùn mette micca stu vulume à u furmatu ». Cliccu nant’à « Seguente » eppò « Compie ».\n7) Sappiate chì u chjassu di l’apparechju chì vò avete selezziunatu in VeraCrypt pò esse falsu avà. Dunque, esce di l’assistente di creazione di vulume VeraCrypt (s’ellu hè sempre in funzione) è rilanciallu.\n8) Pruvà torna di cifrà l’apparechju o a partizione.\n\nS’è VeraCrypt cuntinueghja di fiascà a cifratura di l’apparechju o di a partizione, ci vulerà à riflette à creà piuttostu un cuntenidore di schedariu.</entry> + <entry lang="co" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Sbagliu : U sistema di schedarii ùn pò micca esse ammarchjunatu o smuntatu. Forse hè impiegatu da u sistema operatoriu o da appiecazioni (per indettu, u prugramma antivirus). Cifrà a partizione puderia cagiunà una deteriurazione di i dati o à una istabilità di u sistema.\n\nCi vole à chjode tutta appiecazione chì puderia impiegà u sistema di schedarii (u prugramma antivirus inchjusu) è pruvà torna. S’è què ùn funziuneghja micca, ci vole à seguità l’istruzzioni quì sottu.</entry> <entry lang="co" key="DEVICE_IN_USE_INFO">AVERTIMENTU : Certi apparechji o partizioni muntati eranu dighjà in corsu d’usu !\n\nIgnurà què pò cagiunà fenomeni imprevisti cum’è l’istabilità di u sistema.\n\nVi ricumandemu di chjode tutta appiecazione chì puderia impiegà l’apparechji o e partizioni.</entry> @@ -611,3 +611,3 @@ Information about Corsican localization: <entry lang="co" key="OPENFILES_LOCK">Impussibule d’ammarchjunà u vulume. Ci hè ancu schedarii aperti nant’à u vulume. Per via di què, ùn pò micca esse smuntatu.</entry> - <entry lang="co" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt ùn pò micca ammarchjunà u vulume perch’ellu hè impiegatu da u sistema o da appiecazioni (forse, ci hè ancu schedarii aperti nant’à u vulume).\n\nVulete furzà a smuntatura ?</entry> + <entry lang="co" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt ùn pò micca ammarchjunà u vulume perch’ellu hè impiegatu da u sistema o da appiecazioni (forse, ci hè ancu schedarii aperti nant’à u vulume).\n\nVulete furzà a smuntatura ?</entry> <entry lang="co" key="OPEN_VOL_TITLE">Selezziunà un vulume VeraCrypt</entry> @@ -750,3 +750,3 @@ Information about Corsican localization: <entry lang="co" key="CANT_MOUNT_VOLUME">Impussibule di muntà u vulume.</entry> - <entry lang="co" key="CANT_DISMOUNT_VOLUME">Impussibule di smuntà u vulume.</entry> + <entry lang="co" key="CANT_UNMOUNT_VOLUME">Impussibule di smuntà u vulume.</entry> <entry lang="co" key="FORMAT_NTFS_FAILED">Windows hà fiascatu a messa à u furmatu NTFS/exFAT/ReFS.\n\nCi vole à selezziunà un tipu sfarente di sistema di schedarii (s’ella hè pussibule) è pruvà torna. Altrimente, pudete dinù lascià u vulume senza messa à u furmatu (selezziunate « Nisunu » cum’è sistema di schedarii), abbandunate st’assistente, muntate u vulume, eppò impiegate, sia u sistema, sia un attrezzu terzu per mette à u furmatu u vulume muntatu (u vulume sterà cifratu).</entry> @@ -792,3 +792,3 @@ Information about Corsican localization: <entry lang="co" key="INPLACE_DEC_GENERIC_ERR">Un sbagliu hà impeditu VeraCrypt di dicifrà u vulume. Pruvate di currege tutti i prublemi signalati anteriurmente è pruvate torna, s’ella hè pussibule.</entry> - <entry lang="co" key="CANT_DISMOUNT_OUTER_VOL">Sbagliu : Impussibule di smuntà u vulume esternu !\n\nU vulume ùn pò micca esse smuntatu s’ellu cuntene schedarii o cartulari in corsu d’impiegu da un prugramma o da u sistema.\n\nChjudite tutti i prugrammi chì puderianu impiegà schedarii o cartulari di u vulume è cliccu nant’à « Torna ».</entry> + <entry lang="co" key="CANT_UNMOUNT_OUTER_VOL">Sbagliu : Impussibule di smuntà u vulume esternu !\n\nU vulume ùn pò micca esse smuntatu s’ellu cuntene schedarii o cartulari in corsu d’impiegu da un prugramma o da u sistema.\n\nChjudite tutti i prugrammi chì puderianu impiegà schedarii o cartulari di u vulume è cliccu nant’à « Torna ».</entry> <entry lang="co" key="CANT_GET_OUTER_VOL_INFO">Sbagliu : Impussibule d’ottene l’infurmazione nant’à u vulume esternu !\nA creazione di u vulume ùn pò micca cuntinuà.</entry> @@ -903,3 +903,3 @@ Information about Corsican localization: <entry lang="co" key="CLOSE_TC_FIRST">U pilotu d’apparechju di VeraCrypt ùn pò micca esse cacciatu.\n\nDa prima, chjudite tutte e finestre aperte VeraCrypt. S’è què ùn funziuneghja micca, ci vole à rilancià Windows è pruvà torna.</entry> - <entry lang="co" key="DISMOUNT_ALL_FIRST">Tutti i vulumi VeraCrypt devenu esse smuntati nanzu d’installà o disinstallà VeraCrypt.</entry> + <entry lang="co" key="UNMOUNT_ALL_FIRST">Tutti i vulumi VeraCrypt devenu esse smuntati nanzu d’installà o disinstallà VeraCrypt.</entry> <entry lang="co" key="UNINSTALL_OLD_VERSION_FIRST">Una versione anziana di VeraCrypt hè attualmente installata nant’à stu sistema. Deve esse disinstallata prima di pudè installà sta nova versione di VeraCrypt.\n\nDa ch’ellu si chjode sta finestra di messaghju, u disinstalladore di a vechja versione serà lanciatu. Sappiate chì alcunu vulume ùn serà dicifratu quandu vò disinstallate VeraCrypt. Dopu a disinstallazione di a vechja versione di VeraCrypt, lanciate torna u stalladore di a nova versione di VeraCrypt.</entry> @@ -924,3 +924,3 @@ Information about Corsican localization: <entry lang="co" key="OPEN">Apre</entry> - <entry lang="co" key="DISMOUNT">Smuntà</entry> + <entry lang="co" key="UNMOUNT">Smuntà</entry> <entry lang="co" key="SHOW_TC">Affissà VeraCrypt</entry> @@ -996,3 +996,3 @@ Information about Corsican localization: <entry lang="co" key="SYS_FAVORITES_REQUIRE_PBA">A partizione o u lettore di u sistema ùn pare micca esse cifrata(u).\n\nI vulumi favuriti di u sistema ponu esse muntati aduprendu solu una parolla d’intesa d’autenticazione di prepiccera. In cunsequenza, per permette l’impiegu di i vulumi favuriti di u sistema, ci vole, in primu locu, à cifrà a partizione o u lettore di u sistema.</entry> - <entry lang="co" key="DISMOUNT_FIRST">Smuntate u vulume prima di cuntinuà.</entry> + <entry lang="co" key="UNMOUNT_FIRST">Smuntate u vulume prima di cuntinuà.</entry> <entry lang="co" key="CANNOT_SET_TIMER">Sbagliu : Impussibule di definisce a minuteria.</entry> @@ -1030,7 +1030,7 @@ Information about Corsican localization: <entry lang="co" key="HK_AUTOMOUNT_DEVICES">Muntatura autumatica di l’apparechji</entry> - <entry lang="co" key="HK_DISMOUNT_ALL">Tuttu smuntà</entry> + <entry lang="co" key="HK_UNMOUNT_ALL">Tuttu smuntà</entry> <entry lang="co" key="HK_WIPE_CACHE">Nettà l‘impiatta</entry> - <entry lang="co" key="HK_DISMOUNT_ALL_AND_WIPE">Tuttu smuntà è nettà l‘impiatta</entry> - <entry lang="co" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Sfurzà a smuntatura di tutti è nettà l‘impiatta</entry> - <entry lang="co" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Sfurzà a smuntatura di tutti, nettà l‘impiatta è esce</entry> + <entry lang="co" key="HK_UNMOUNT_ALL_AND_WIPE">Tuttu smuntà è nettà l‘impiatta</entry> + <entry lang="co" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Sfurzà a smuntatura di tutti è nettà l‘impiatta</entry> + <entry lang="co" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Sfurzà a smuntatura di tutti, nettà l‘impiatta è esce</entry> <entry lang="co" key="HK_MOUNT_FAVORITE_VOLUMES">Muntà i vulumi favuriti</entry> @@ -1046,10 +1046,10 @@ Information about Corsican localization: <entry lang="co" key="HIDDEN_OS_HIBERNATION_PREVENTED">L’invernazione hè stata impedita.\n\nVeraCrypt ùn permette micca l’invernazione nant’à i sistemi operatorii chì impieganu una partizione addiziunale di piccera. Sappiate chì a partizione di piccera hè scumparta da l’ingannu è da u sistema piattatu. In cunsequenza, per impedisce e sfughjime di dati è i prublemi à l’esce di l’invernazione, VeraCrypt hà da impedisce u sistema piattatu di scrive in a partizione scumparta di piccera è di mettesi in invernazione.</entry> - <entry lang="co" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">U vulume VeraCrypt chì era muntatu cum’è %c: hè statu smuntatu.</entry> - <entry lang="co" key="MOUNTED_VOLUMES_DISMOUNTED">I vulumi VeraCrypt sò stati smuntati.</entry> - <entry lang="co" key="VOLUMES_DISMOUNTED_CACHE_WIPED">I vulumi VeraCrypt sò stati smuntati è l’impiatta di a parolla d’intesa hè stata nettata.</entry> - <entry lang="co" key="SUCCESSFULLY_DISMOUNTED">Smuntatu currettamente</entry> + <entry lang="co" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">U vulume VeraCrypt chì era muntatu cum’è %c: hè statu smuntatu.</entry> + <entry lang="co" key="MOUNTED_VOLUMES_UNMOUNTED">I vulumi VeraCrypt sò stati smuntati.</entry> + <entry lang="co" key="VOLUMES_UNMOUNTED_CACHE_WIPED">I vulumi VeraCrypt sò stati smuntati è l’impiatta di a parolla d’intesa hè stata nettata.</entry> + <entry lang="co" key="SUCCESSFULLY_UNMOUNTED">Smuntatu currettamente</entry> <entry lang="co" key="CONFIRM_BACKGROUND_TASK_DISABLED">AVERTIMENTU : S’è a tacca di sfondulu VeraCrypt hè disattivata, quelle funzioni seranu inattive :\n\n1) Tasti di scelta rapida\n2) Smuntatura autumatica (per indettu, à a scunnessione, a cacciatura invuluntaria d’apparechju ospite, cumportu d’attesa, ecc.)\n3) Muntatura autumatica di i vulumi favuriti\n4) Nutificazioni (per indettu, quandu un dannu hè impeditu nant’à u vulume piattatu)\n5) Icona di u spaziu di nutificazione\n\nNota : Pudete piantà a tacca di sfondulu à ogni mumentu da un cliccu dirittu nant’à l’icona VeraCrypt in u spaziu di nutificazione è selezziunendu « Esce ».\n\nDa veru, vulete disattivà ab’eternu a tacca di sfondulu VeraCrypt ?</entry> - <entry lang="co" key="CONFIRM_NO_FORCED_AUTODISMOUNT">AVERTIMENTU : S’è st’ozzione hè disattivata, i vulumi chì cuntenenu schedarii o cartulari aperti ùn puderanu micca esse smuntati autumaticamente.\n\nDa veru, vulete disattivà st’ozzione ?</entry> - <entry lang="co" key="WARN_PREF_AUTO_DISMOUNT">AVERTIMENTU : I vulumi chì cuntenenu schedarii o cartulari aperti ùn seranu MICCA smuntati autumaticamente.\n\nPer impedisce què, attivate quella ozzione in sta finestra di dialogu : « Sfurzà a smuntatura autumatica ancu s’è u vulume cuntene schedarii o cartulari aperti »</entry> - <entry lang="co" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">AVERTIMENTU : S’è a batteria di l’urdinatore purtavule hè debule, Windows pò omette di mandà i messaghji adequati à l’appiecazioni chì funziuneghjanu quandu l’urdinatore entre in u modu d’ecunumia d’energia. In cunsequenza, VeraCrypt pò fiascà à smuntà autumaticamente i vulumi in tale casi.</entry> + <entry lang="co" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">AVERTIMENTU : S’è st’ozzione hè disattivata, i vulumi chì cuntenenu schedarii o cartulari aperti ùn puderanu micca esse smuntati autumaticamente.\n\nDa veru, vulete disattivà st’ozzione ?</entry> + <entry lang="co" key="WARN_PREF_AUTO_UNMOUNT">AVERTIMENTU : I vulumi chì cuntenenu schedarii o cartulari aperti ùn seranu MICCA smuntati autumaticamente.\n\nPer impedisce què, attivate quella ozzione in sta finestra di dialogu : « Sfurzà a smuntatura autumatica ancu s’è u vulume cuntene schedarii o cartulari aperti »</entry> + <entry lang="co" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">AVERTIMENTU : S’è a batteria di l’urdinatore purtavule hè debule, Windows pò omette di mandà i messaghji adequati à l’appiecazioni chì funziuneghjanu quandu l’urdinatore entre in u modu d’ecunumia d’energia. In cunsequenza, VeraCrypt pò fiascà à smuntà autumaticamente i vulumi in tale casi.</entry> <entry lang="co" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Avete pianificatu u trattamentu di cifratura o di dicifratura di a partizione o di u vulume. U trattamentu hè hè ancu compiu.\n\nVulete ripiglià u trattamentu subitu ?</entry> @@ -1084,3 +1084,3 @@ Information about Corsican localization: <entry lang="co" key="MOUNT_TC_VOLUME">Muntà un vulume VeraCrypt</entry> - <entry lang="co" key="DISMOUNT_ALL_TC_VOLUMES">Smuntà tutti i vulumi VeraCrypt</entry> + <entry lang="co" key="UNMOUNT_ALL_TC_VOLUMES">Smuntà tutti i vulumi VeraCrypt</entry> <entry lang="co" key="UAC_INIT_ERROR">VeraCrypt ùn pò micca ottene i privileghji d’amministratore.</entry> @@ -1327,4 +1327,4 @@ Information about Corsican localization: <entry lang="co" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">AVERTIMENTU : Stu parametru pò sgradisce e perfurmenze.\n\nDa veru, vulete impiegà stu parametru ?</entry> - <entry lang="co" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Avertimentu : Vulume VeraCrypt smuntatu autumaticamente</entry> - <entry lang="co" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Prima di caccià fisicamente o spenghje un apparechju chì cuntene un vulume muntatu, duvete sempre smuntà, in primu locu, u vulume VeraCrypt nant’à a finestra di l’appiecazione VeraCrypt.\n\nA smuntatura imprevista è spuntanea hè, di solitu, cagiunata da un cavu, lettore (in un armadiu), o un altru materiale chì funziuneghja male.</entry> + <entry lang="co" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Avertimentu : Vulume VeraCrypt smuntatu autumaticamente</entry> + <entry lang="co" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Prima di caccià fisicamente o spenghje un apparechju chì cuntene un vulume muntatu, duvete sempre smuntà, in primu locu, u vulume VeraCrypt nant’à a finestra di l’appiecazione VeraCrypt.\n\nA smuntatura imprevista è spuntanea hè, di solitu, cagiunata da un cavu, lettore (in un armadiu), o un altru materiale chì funziuneghja male.</entry> <entry lang="co" key="UNSUPPORTED_TRUECRYPT_FORMAT">Stu vulume hè statu creatu cù TrueCrypt %x.%x ma VeraCrypt accetta solu i vulumi TrueCrypt creati cù e versioni 6.x/7.x di TrueCrypt</entry> @@ -1474,3 +1474,3 @@ Information about Corsican localization: <entry lang="co" key="TASKICON_PREF_OPEN_VOL">Apre i vulumi muntati</entry> - <entry lang="co" key="TASKICON_PREF_DISMOUNT_VOL">Smuntà i vulumi muntati</entry> + <entry lang="co" key="TASKICON_PREF_UNMOUNT_VOL">Smuntà i vulumi muntati</entry> <entry lang="co" key="DISK_FREE">Spaziu liberu dispunibule : {0}</entry> @@ -1504,6 +1504,6 @@ Information about Corsican localization: <entry lang="co" key="LINUX_SELECT">Sele&zziunà…</entry> - <entry lang="co" key="LINUX_DISMOUNT_ALL_WHEN">Smuntà tutti i vulumi quandu</entry> + <entry lang="co" key="LINUX_UNMOUNT_ALL_WHEN">Smuntà tutti i vulumi quandu</entry> <entry lang="co" key="LINUX_ENTERING_POWERSAVING">U sistema entre in modu d’ecunumia d’energia</entry> <entry lang="co" key="LINUX_LOGIN_ACTION">Azzioni à fà quandu l’utilizatore si cunnette</entry> - <entry lang="co" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Chjode tutte e finestre di l‘espluratore di u vulume chì hè smuntatu</entry> + <entry lang="co" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Chjode tutte e finestre di l‘espluratore di u vulume chì hè smuntatu</entry> <entry lang="co" key="LINUX_HOTKEYS">Tasti di scelta rapida</entry> @@ -1511,3 +1511,3 @@ Information about Corsican localization: <entry lang="co" key="LINUX_SOUND_NOTIFICATION">Sunà un sonu di nutificazione di sistema dopu à una muntatura o una smuntatura</entry> - <entry lang="co" key="LINUX_CONFIRM_AFTER_DISMOUNT">Affissà una finestra di cunfirmazione dopu à una smuntatura</entry> + <entry lang="co" key="LINUX_CONFIRM_AFTER_UNMOUNT">Affissà una finestra di cunfirmazione dopu à una smuntatura</entry> <entry lang="co" key="LINUX_VC_QUITS">VeraCrypt si ne và</entry> @@ -1543,3 +1543,3 @@ Information about Corsican localization: <entry lang="co" key="LINUX_KERNEL_OLD">U vostru sistema impiegheghja una vechja versione di u nocciulu Linux.\n\nPer via d’un prublema in u nocciulu Linux, u vostru sistema puderia piantassi di risponde quandu si scrive i dati nant’à u vulume VeraCrypt. Stu prublema pò esse currettu mittendu à livellu u nocciulu à a versione 2.6.24 o più recente.</entry> - <entry lang="co" key="LINUX_VOL_DISMOUNTED">U vulume {0} hè statu smuntatu.</entry> + <entry lang="co" key="LINUX_VOL_UNMOUNTED">U vulume {0} hè statu smuntatu.</entry> <entry lang="co" key="LINUX_VOL_MOUNTED">U vulume {0} hè statu muntatu.</entry> @@ -1662,2 +1662,5 @@ Information about Corsican localization: <entry lang="co" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">AVERTIMENTU : A chjave principale di u vulume hà una vulnerabilità di sicurità.</entry> + <entry lang="co" key="MOUNTPOINT_BLOCKED">SBAGLIU : U puntu du muntatura di u vulume hè bluccatu perchè ellu rimpiazzeghja un cartulare prutettu di u sistema.\n\nCi vole à sceglie un puntu du muntatura sfarente.</entry> + <entry lang="co" key="MOUNTPOINT_NOTALLOWED">SBAGLIU : U puntu du muntatura di u vulume ùn hè micca permessu perchè ellu rimpiazzeghja un cartulare chì face parte di a variabile d’ambiente PATH.\n\nCi vole à sceglie un puntu du muntatura sfarente.</entry> + <entry lang="co" key="INSECURE_MODE">[MODU NONSICURU]</entry> </localization> diff --git a/Translations/Language.cs.xml b/Translations/Language.cs.xml index e1e3d09c..ed785dec 100644 --- a/Translations/Language.cs.xml +++ b/Translations/Language.cs.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="cs" name="Čeština" en-name="Czech" version="1.3.0" translators="Vítek Moser, Lagardere" /> @@ -137,4 +137,4 @@ <entry lang="cs" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Všeobecné nastavení</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_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_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="cs" key="IDC_PREF_CACHE_PASSWORDS">Uložit hesla do paměti ovladač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_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_LOGON_MOUNT_DEVICES">Připojit všechny svazky na zařízeních</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">Odstranit hesla z mezipaměti a automaticky odpojit</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_EXIT">Odstranit hesla z mezipaměti při ukončení</entry> @@ -271,4 +271,4 @@ <entry lang="cs" key="IDT_AUTORUN">Konfigurace automatického spouštění (autorun.inf)</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_AUTO_UNMOUNT">Automatické odpojení</entry> + <entry lang="cs" key="IDT_AUTO_UNMOUNT_ON">Odpojit vše když:</entry> <entry lang="cs" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Možnosti obrazovky systémového zavaděče</entry> @@ -278,3 +278,3 @@ <entry lang="cs" key="IDT_DEFAULT_MOUNT_OPTIONS">Výchozí možnosti připojení</entry> - <entry lang="cs" key="IDT_DISMOUNT_ACTION">Možnosti klávesových zkratek</entry> + <entry lang="cs" key="IDT_UNMOUNT_ACTION">Možnosti klávesových zkratek</entry> <entry lang="cs" key="IDT_DRIVER_OPTIONS">Konfigurace ovladače</entry> @@ -425,4 +425,4 @@ <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_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í” > „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="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í” > „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="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> @@ -592,3 +592,3 @@ <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_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="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="OPEN_VOL_TITLE">Vyberte svazek VeraCrypt</entry> @@ -731,3 +731,3 @@ <entry lang="cs" key="CANT_MOUNT_VOLUME">Svazek nelze připojit.</entry> - <entry lang="cs" key="CANT_DISMOUNT_VOLUME">Svazek nelze odpojit.</entry> + <entry lang="cs" key="CANT_UNMOUNT_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> @@ -773,3 +773,3 @@ <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_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_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_GET_OUTER_VOL_INFO">Chyba: nelze získat informace o vnějším svazku. Vytváření svazku nemůže pokračovat.</entry> @@ -884,3 +884,3 @@ <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="DISMOUNT_ALL_FIRST">Všechny svazky VeraCrypt musí být odpojeny před instalací nebo odinstalací programu VeraCrypt.</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="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> @@ -905,3 +905,3 @@ <entry lang="cs" key="OPEN">Otevřít</entry> - <entry lang="cs" key="DISMOUNT">Odpojit</entry> + <entry lang="cs" key="UNMOUNT">Odpojit</entry> <entry lang="cs" key="SHOW_TC">Zobrazit VeraCrypt</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">Před pokračováním odpojte prosím svazek.</entry> + <entry lang="cs" key="UNMOUNT_FIRST">Před pokračováním odpojte prosím svazek.</entry> <entry lang="cs" key="CANNOT_SET_TIMER">Chyba: nelze nastavit časovač.</entry> @@ -1011,7 +1011,7 @@ <entry lang="cs" key="HK_AUTOMOUNT_DEVICES">Autom. připojit zařízení</entry> - <entry lang="cs" key="HK_DISMOUNT_ALL">Odpojit vše</entry> + <entry lang="cs" key="HK_UNMOUNT_ALL">Odpojit vše</entry> <entry lang="cs" key="HK_WIPE_CACHE">Vyčistit mezipaměť</entry> - <entry lang="cs" key="HK_DISMOUNT_ALL_AND_WIPE">Odpojit vše & vyčistit mezipaměť</entry> - <entry lang="cs" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Vynutit odpojení všech & Vyčistit mezipaměť</entry> - <entry lang="cs" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Vynutit odpojení všech, Vyčistit mezipaměť & Konec</entry> + <entry lang="cs" key="HK_UNMOUNT_ALL_AND_WIPE">Odpojit vše & vyčistit mezipaměť</entry> + <entry lang="cs" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Vynutit odpojení všech & Vyčistit mezipaměť</entry> + <entry lang="cs" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Vynutit odpojení všech, Vyčistit mezipaměť & Konec</entry> <entry lang="cs" key="HK_MOUNT_FAVORITE_VOLUMES">Připojit oblíbené diskové oddíly</entry> @@ -1027,10 +1027,10 @@ <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_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="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="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_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="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="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> @@ -1065,3 +1065,3 @@ <entry lang="cs" key="MOUNT_TC_VOLUME">Připojit svazek VeraCrypt</entry> - <entry lang="cs" key="DISMOUNT_ALL_TC_VOLUMES">Odpojit všechny svazky VeraCrypt</entry> + <entry lang="cs" key="UNMOUNT_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> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <entry lang="cs" key="TASKICON_PREF_OPEN_VOL">Otevřít připojené svazky</entry> - <entry lang="cs" key="TASKICON_PREF_DISMOUNT_VOL">Odpojit připojené svazky</entry> + <entry lang="cs" key="TASKICON_PREF_UNMOUNT_VOL">Odpojit připojené svazky</entry> <entry lang="cs" key="DISK_FREE">Volné místo k dispozici: {0}</entry> @@ -1485,6 +1485,6 @@ <entry lang="cs" key="LINUX_SELECT">Vy&brat...</entry> - <entry lang="cs" key="LINUX_DISMOUNT_ALL_WHEN">Odpojit všechny svazky, když</entry> + <entry lang="cs" key="LINUX_UNMOUNT_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_DISMOUNT">Zavřít všechna okna Průzkumníka odpojovaného svazku</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_HOTKEYS">Klávesové zkratky</entry> @@ -1492,3 +1492,3 @@ <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_DISMOUNT">Zobrazit okno s potvrzením po odpojení</entry> + <entry lang="cs" key="LINUX_CONFIRM_AFTER_UNMOUNT">Zobrazit okno s potvrzením po odpojení</entry> <entry lang="cs" key="LINUX_VC_QUITS">Ukončení VeraCryptu</entry> @@ -1524,3 +1524,3 @@ <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_DISMOUNTED">Svazek {0} byl odpojen.</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> @@ -1634,11 +1634,14 @@ <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="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="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="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="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> </localization> diff --git a/Translations/Language.da.xml b/Translations/Language.da.xml index d5a79d4e..1f21cd37 100644 --- a/Translations/Language.da.xml +++ b/Translations/Language.da.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="da" name="Dansk" en-name="Danish" version="0.1.0" translators="Lasse Bond" /> @@ -137,4 +137,4 @@ <entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</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="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="da" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="da" key="IDC_PREF_CACHE_PASSWORDS">Gem kodeord i driverhukommelse</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_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_LOGON_MOUNT_DEVICES">Tilslut alle enheds-baserede VeraCrypt bind</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">Slet kodeord i hukommelsen ved auto-afbryd</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_EXIT">Slet kodeord i hukommelsen ved afslut</entry> @@ -271,4 +271,4 @@ <entry lang="da" key="IDT_AUTORUN">AutoRun Konfiguration (autorun.inf)</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="da" key="IDT_AUTO_UNMOUNT">Auto-Afbryd</entry> + <entry lang="da" key="IDT_AUTO_UNMOUNT_ON">Afbryd alle når:</entry> <entry lang="en" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader Screen Options</entry> @@ -278,3 +278,3 @@ <entry lang="da" key="IDT_DEFAULT_MOUNT_OPTIONS">Standard Tilslutning Funktioner</entry> - <entry lang="da" key="IDT_DISMOUNT_ACTION">Genvejstast Funktioner</entry> + <entry lang="da" key="IDT_UNMOUNT_ACTION">Genvejstast Funktioner</entry> <entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry> @@ -425,4 +425,4 @@ <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_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' > '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="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' > '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="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> @@ -592,3 +592,3 @@ <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_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="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="da" key="OPEN_VOL_TITLE">Vælg et VeraCrypt Bind</entry> @@ -731,3 +731,3 @@ <entry lang="da" key="CANT_MOUNT_VOLUME">Kan ikke tilslutte bind.</entry> - <entry lang="da" key="CANT_DISMOUNT_VOLUME">Kan ikke afbryde bind.</entry> + <entry lang="da" key="CANT_UNMOUNT_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> @@ -773,3 +773,3 @@ <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_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_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_GET_OUTER_VOL_INFO">Fejl: Kan ikke finde information om det ydre bind! Oprettelse af bind kan ikke fortsætte.</entry> @@ -884,3 +884,3 @@ <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="DISMOUNT_ALL_FIRST">Alle VeraCrypt bind skal afbrydes inden installation eller afinstallation af VeraCrypt.</entry> + <entry lang="da" key="UNMOUNT_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> @@ -905,3 +905,3 @@ <entry lang="da" key="OPEN">Åben</entry> - <entry lang="da" key="DISMOUNT">Afbryd</entry> + <entry lang="da" key="UNMOUNT">Afbryd</entry> <entry lang="da" key="SHOW_TC">Vis VeraCrypt</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">Afbryd venligst bindet før der fortsættes.</entry> + <entry lang="da" key="UNMOUNT_FIRST">Afbryd venligst bindet før der fortsættes.</entry> <entry lang="da" key="CANNOT_SET_TIMER">Fejl: Kan ikke indstille timer.</entry> @@ -999,3 +999,3 @@ <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 dismount 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 unmount the volume.</entry> <entry lang="da" key="HOMEPAGE">Hjemmeside</entry> @@ -1011,7 +1011,7 @@ <entry lang="da" key="HK_AUTOMOUNT_DEVICES">Auto-Tilslut Enheder</entry> - <entry lang="da" key="HK_DISMOUNT_ALL">Afbryd alle</entry> + <entry lang="da" key="HK_UNMOUNT_ALL">Afbryd alle</entry> <entry lang="da" key="HK_WIPE_CACHE">Ryd hukommelse</entry> - <entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All & Wipe Cache</entry> - <entry lang="da" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Gennemtving afbrydelse af alle & Ryd hukommelse</entry> - <entry lang="da" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Gennemtving afbrydelse af alle, Ryd hukommelse & Afslut</entry> + <entry lang="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All & Wipe Cache</entry> + <entry lang="da" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Gennemtving afbrydelse af alle & Ryd hukommelse</entry> + <entry lang="da" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Gennemtving afbrydelse af alle, Ryd hukommelse & Afslut</entry> <entry lang="da" key="HK_MOUNT_FAVORITE_VOLUMES">Tilslut Favorit Bind</entry> @@ -1027,10 +1027,10 @@ <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_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="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="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> @@ -1042,3 +1042,3 @@ <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' > '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-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">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="da" key="CONFIRM_EXIT_UNIVERSAL">Afslut?</entry> @@ -1065,3 +1065,3 @@ <entry lang="da" key="MOUNT_TC_VOLUME">Tilslut VeraCrypt Bind</entry> - <entry lang="da" key="DISMOUNT_ALL_TC_VOLUMES">Afbryd alle VeraCrypt Bind</entry> + <entry lang="da" key="UNMOUNT_ALL_TC_VOLUMES">Afbryd alle VeraCrypt Bind</entry> <entry lang="da" key="UAC_INIT_ERROR">VeraCrypt fejl i at opnå administrator rettighed.</entry> @@ -1287,4 +1287,4 @@ <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 '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="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="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry> @@ -1294,6 +1294,6 @@ <entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &Device and Mount...</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="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount 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 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="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="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> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <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="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry> <entry lang="en" key="DISK_FREE">Free space available: {0}</entry> @@ -1485,10 +1485,10 @@ <entry lang="en" key="LINUX_SELECT">Se&lect...</entry> - <entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry> + <entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount 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_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</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_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_VC_QUITS">VeraCrypt quits</entry> @@ -1512,3 +1512,3 @@ <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_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_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> @@ -1516,3 +1516,3 @@ <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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry> <entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry> @@ -1524,3 +1524,3 @@ <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_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry> <entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/Translations/Language.de.xml b/Translations/Language.de.xml index 67182669..9bbde318 100644 --- a/Translations/Language.de.xml +++ b/Translations/Language.de.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <!-- Sprachen --> @@ -140,4 +140,4 @@ <entry lang="de" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Globale Einstellungen</entry> - <entry lang="de" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Nach erfolgreichem Trennen per Tastenkombination ein Benachrichtigungsfenster anzeigen</entry> - <entry lang="de" key="IDC_HK_DISMOUNT_PLAY_SOUND">Nach erfolgreichem Trennen per Tastenkombination den Systembenachrichtigungston abspielen</entry> + <entry lang="de" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Nach erfolgreichem Trennen per Tastenkombination ein Benachrichtigungsfenster anzeigen</entry> + <entry lang="de" key="IDC_HK_UNMOUNT_PLAY_SOUND">Nach erfolgreichem Trennen per Tastenkombination den Systembenachrichtigungston abspielen</entry> <entry lang="de" key="IDC_HK_MOD_ALT">Alt</entry> @@ -161,8 +161,8 @@ <entry lang="de" key="IDC_PREF_CACHE_PASSWORDS">Passwörter im &Cache halten</entry> - <entry lang="de" key="IDC_PREF_DISMOUNT_INACTIVE">Bei ausbleibendem Lese-/Schreibzugriff aut&omatisch trennen nach</entry> - <entry lang="de" key="IDC_PREF_DISMOUNT_LOGOFF">Benutzerabmel&dung</entry> - <entry lang="de" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">Benutzersitzung gesperrt</entry> - <entry lang="de" key="IDC_PREF_DISMOUNT_POWERSAVING">Wechsel in Energiesparmod&us</entry> - <entry lang="de" key="IDC_PREF_DISMOUNT_SCREENSAVER">Bildsc&hirmschonerstart</entry> - <entry lang="de" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Automatisches Trennen bei geöffneten Date&ien erzwingen</entry> + <entry lang="de" key="IDC_PREF_UNMOUNT_INACTIVE">Bei ausbleibendem Lese-/Schreibzugriff aut&omatisch trennen nach</entry> + <entry lang="de" key="IDC_PREF_UNMOUNT_LOGOFF">Benutzerabmel&dung</entry> + <entry lang="de" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">Benutzersitzung gesperrt</entry> + <entry lang="de" key="IDC_PREF_UNMOUNT_POWERSAVING">Wechsel in Energiesparmod&us</entry> + <entry lang="de" key="IDC_PREF_UNMOUNT_SCREENSAVER">Bildsc&hirmschonerstart</entry> + <entry lang="de" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Automatisches Trennen bei geöffneten Date&ien erzwingen</entry> <entry lang="de" key="IDC_PREF_LOGON_MOUNT_DEVICES">Alle Datenträger-&Volumes einhängen</entry> @@ -174,3 +174,3 @@ <entry lang="de" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Ein anderes Taskleistensymbol benutzen, wenn Volumes eingehängt sind</entry> - <entry lang="de" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Passwörter im Cache beim auto&matischen Trennen sicher löschen</entry> + <entry lang="de" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Passwörter im Cache beim auto&matischen Trennen sicher löschen</entry> <entry lang="de" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Cache beim Beenden sicher &löschen</entry> @@ -274,4 +274,4 @@ <entry lang="de" key="IDT_AUTORUN">Autostart-Konfiguration („autorun.inf“)</entry> - <entry lang="de" key="IDT_AUTO_DISMOUNT">Automatisches Trennen</entry> - <entry lang="de" key="IDT_AUTO_DISMOUNT_ON">Alle Volumes trennen bei:</entry> + <entry lang="de" key="IDT_AUTO_UNMOUNT">Automatisches Trennen</entry> + <entry lang="de" key="IDT_AUTO_UNMOUNT_ON">Alle Volumes trennen bei:</entry> <entry lang="de" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Optionen des Bootloader-Bildschirms</entry> @@ -281,3 +281,3 @@ <entry lang="de" key="IDT_DEFAULT_MOUNT_OPTIONS">Voreinstellungen beim Einhängen</entry> - <entry lang="de" key="IDT_DISMOUNT_ACTION">Einstellungen für Tastenkombinationen</entry> + <entry lang="de" key="IDT_UNMOUNT_ACTION">Einstellungen für Tastenkombinationen</entry> <entry lang="de" key="IDT_DRIVER_OPTIONS">Treiberkonfiguration</entry> @@ -428,4 +428,4 @@ <entry lang="de" key="DEVICE_IN_USE_INPLACE_ENC">WARNUNG: Die Partition wird vom Betriebssystem oder von einer Anwendung verwendet. Sie sollten jede Anwendung, die möglicherweise die Partition verwendet, schließen (einschließlich Antiviren-Software).\n\nFortfahren?</entry> - <entry lang="de" key="FORMAT_CANT_DISMOUNT_FILESYS">FEHLER: Der Datenträger bzw. die Partition enthält ein Dateisystem, das nicht ausgehängt werden konnte. Das Dateisystem wird möglicherweise vom Betriebssystem verwendet. Das Formatieren würde sehr wahrscheinlich Daten beschädigen und zu Systeminstabilität führen.\n\nEmpfehlungen zur Behebung des Problems: Zuerst die Partition löschen und anschließend die Partition ohne Formatierung neu erstellen.\n\n1) Im Startmenü Rechtsklick auf „Computer“ oder „Arbeitsplatz“ und dann „Verwalten“ auswählen. Das Fenster „Computerverwaltung“ sollte erscheinen.\n2) „Datenspeicher“ > „Datenträgerverwaltung“ im Fenster „Computerverwaltung“ auswählen.\n3) Rechtsklick auf die zu verschlüsselnde Partition und entweder „Partition löschen ...“, „Volume löschen ...“ oder „Logisches Laufwerk löschen ...“ auswählen.\n4) Auf „Ja“ klicken. Sollte Windows zum Neustart des Rechners auffordern, dieser Aufforderung folgen, die Schritte 1 und 2 wiederholen und mit Schritt 5 fortsetzen.\n5) Rechtsklick auf den als „Nicht zugeordnet“/„Freier Speicherplatz“ bezeichneten Bereich und entweder „Neue Partition ...“, „Neues einfaches Volume ...“ oder „Neues logisches Laufwerk ...“ auswählen.\n6) Den Anweisungen des daraufhin erscheinenden Fensters „Assistent zum Erstellen neuer Partitionen“ bzw. „Assistent zum Erstellen neuer einfacher Volumes“ folgen. Auf der Seite „Partition formatieren“ des Assistenten entweder „Diese Partition nicht formatieren“ oder „Dieses Volume nicht formatieren“ auswählen. Anschließend auf „Weiter“ und danach auf „Fertigstellen“ klicken.\n7) Der Name des in VeraCrypt ausgewählten Datenträgers bzw. der Partition ist jetzt u. U. falsch. Schließen Sie deshalb den Assistenten zum Erstellen von VeraCrypt-Volumes (falls dieser noch offen ist) und starten Sie den Assistenten neu.\n8) Versuchen Sie erneut, den Datenträger bzw. die Partition zu verschlüsseln.\n\nSollte sich VeraCrypt erneut weigern, den Datenträger bzw. die Partition zu verschlüsseln, so können Sie stattdessen auch die Erstellung eines Containerdatei-Volumes in Betracht ziehen.</entry> - <entry lang="de" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">FEHLER: Das Dateisystem konnte nicht gesperrt und/oder getrennt werden. Es könnte vom Betriebssystem oder von Programmen verwendet werden (z. B. Backup-Software oder Virenscanner). Die Verschlüsselung der Partition könnte Daten beschädigen oder das System instabil werden lassen.\n\nBitte schließen Sie jede Anwendung, die möglicherweise die Partition verwendet (einschließlich Antiviren-Software), und versuchen Sie es erneut. Wenn dies nicht hilft, folgen Sie bitte den unten stehenden Schritten.</entry> + <entry lang="de" key="FORMAT_CANT_UNMOUNT_FILESYS">FEHLER: Der Datenträger bzw. die Partition enthält ein Dateisystem, das nicht ausgehängt werden konnte. Das Dateisystem wird möglicherweise vom Betriebssystem verwendet. Das Formatieren würde sehr wahrscheinlich Daten beschädigen und zu Systeminstabilität führen.\n\nEmpfehlungen zur Behebung des Problems: Zuerst die Partition löschen und anschließend die Partition ohne Formatierung neu erstellen.\n\n1) Im Startmenü Rechtsklick auf „Computer“ oder „Arbeitsplatz“ und dann „Verwalten“ auswählen. Das Fenster „Computerverwaltung“ sollte erscheinen.\n2) „Datenspeicher“ > „Datenträgerverwaltung“ im Fenster „Computerverwaltung“ auswählen.\n3) Rechtsklick auf die zu verschlüsselnde Partition und entweder „Partition löschen ...“, „Volume löschen ...“ oder „Logisches Laufwerk löschen ...“ auswählen.\n4) Auf „Ja“ klicken. Sollte Windows zum Neustart des Rechners auffordern, dieser Aufforderung folgen, die Schritte 1 und 2 wiederholen und mit Schritt 5 fortsetzen.\n5) Rechtsklick auf den als „Nicht zugeordnet“/„Freier Speicherplatz“ bezeichneten Bereich und entweder „Neue Partition ...“, „Neues einfaches Volume ...“ oder „Neues logisches Laufwerk ...“ auswählen.\n6) Den Anweisungen des daraufhin erscheinenden Fensters „Assistent zum Erstellen neuer Partitionen“ bzw. „Assistent zum Erstellen neuer einfacher Volumes“ folgen. Auf der Seite „Partition formatieren“ des Assistenten entweder „Diese Partition nicht formatieren“ oder „Dieses Volume nicht formatieren“ auswählen. Anschließend auf „Weiter“ und danach auf „Fertigstellen“ klicken.\n7) Der Name des in VeraCrypt ausgewählten Datenträgers bzw. der Partition ist jetzt u. U. falsch. Schließen Sie deshalb den Assistenten zum Erstellen von VeraCrypt-Volumes (falls dieser noch offen ist) und starten Sie den Assistenten neu.\n8) Versuchen Sie erneut, den Datenträger bzw. die Partition zu verschlüsseln.\n\nSollte sich VeraCrypt erneut weigern, den Datenträger bzw. die Partition zu verschlüsseln, so können Sie stattdessen auch die Erstellung eines Containerdatei-Volumes in Betracht ziehen.</entry> + <entry lang="de" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">FEHLER: Das Dateisystem konnte nicht gesperrt und/oder getrennt werden. Es könnte vom Betriebssystem oder von Programmen verwendet werden (z. B. Backup-Software oder Virenscanner). Die Verschlüsselung der Partition könnte Daten beschädigen oder das System instabil werden lassen.\n\nBitte schließen Sie jede Anwendung, die möglicherweise die Partition verwendet (einschließlich Antiviren-Software), und versuchen Sie es erneut. Wenn dies nicht hilft, folgen Sie bitte den unten stehenden Schritten.</entry> <entry lang="de" key="DEVICE_IN_USE_INFO">WARNUNG: Einige der angeschlossenen Datenträger bzw. Partitionen werden bereits verwendet!\n\nDas Ignorieren dieser Meldung kann zu unerwünschten Ergebnissen einschließlich einer Systeminstabilität führen.\n\nEs wird dringend empfohlen, alle Anwendungen, die möglicherweise diese Datenträger bzw. Partitionen verwenden, zu schließen.</entry> @@ -595,3 +595,3 @@ <entry lang="de" key="OPENFILES_LOCK">Das Volume kann nicht gesperrt werden. Einige Dateien auf dem Volume sind noch geöffnet und verhindern dadurch das Trennen.</entry> - <entry lang="de" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt kann das Volume nicht sperren, weil es vom System oder von Programmen verwendet wird (es könnte offene Dateien auf dem Volume geben).\n\nMöchten Sie die Trennung auf dem Volume erzwingen?</entry> + <entry lang="de" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt kann das Volume nicht sperren, weil es vom System oder von Programmen verwendet wird (es könnte offene Dateien auf dem Volume geben).\n\nMöchten Sie die Trennung auf dem Volume erzwingen?</entry> <entry lang="de" key="OPEN_VOL_TITLE">VeraCrypt-Volume auswählen</entry> @@ -734,3 +734,3 @@ <entry lang="de" key="CANT_MOUNT_VOLUME">Fehler beim Einhängen des Volumes.</entry> - <entry lang="de" key="CANT_DISMOUNT_VOLUME">Fehler beim Trennen des Volumes.</entry> + <entry lang="de" key="CANT_UNMOUNT_VOLUME">Fehler beim Trennen des Volumes.</entry> <entry lang="de" key="FORMAT_NTFS_FAILED">Windows konnte das Volume nicht mit NTFS/exFAT/ReFS formatieren.\n\nWählen Sie bitte (falls möglich) einen anderen Dateisystemtyp und versuchen Sie es erneut. Alternativ dazu können Sie das Volume unformatiert lassen (wählen Sie dazu „Keins“ als Dateisystem), beenden diesen Assistenten, hängen das Volume ein und verwenden anschließend ein Systemwerkzeug oder ein Werkzeug eines anderen Anbieters, um das eingehängte Volume zu formatieren. Das Volume bleibt dabei weiterhin verschlüsselt.</entry> @@ -776,3 +776,3 @@ <entry lang="de" key="INPLACE_DEC_GENERIC_ERR">Ein Fehler hinderte VeraCrypt daran, das Volume zu entschlüsseln. Bitte beheben Sie bereits gemeldete Fehler und versuchen es dann erneut, falls möglich.</entry> - <entry lang="de" key="CANT_DISMOUNT_OUTER_VOL">FEHLER: Das äußere Volume kann nicht getrennt werden!\n\nDas Volume kann nicht getrennt werden, solange dessen Dateien oder Verzeichnisse noch von einem Programm oder dem System verwendet werden.\n\nSchließen Sie bitte alle Programme, die möglicherweise Dateien oder Verzeichnisse dieses Volumes verwenden, und klicken Sie anschließend auf „Wiederholen“.</entry> + <entry lang="de" key="CANT_UNMOUNT_OUTER_VOL">FEHLER: Das äußere Volume kann nicht getrennt werden!\n\nDas Volume kann nicht getrennt werden, solange dessen Dateien oder Verzeichnisse noch von einem Programm oder dem System verwendet werden.\n\nSchließen Sie bitte alle Programme, die möglicherweise Dateien oder Verzeichnisse dieses Volumes verwenden, und klicken Sie anschließend auf „Wiederholen“.</entry> <entry lang="de" key="CANT_GET_OUTER_VOL_INFO">FEHLER: Kann keine Informationen über das äußere Volume erhalten! Volume-Erstellung kann nicht fortgeführt werden.</entry> @@ -887,3 +887,3 @@ <entry lang="de" key="CLOSE_TC_FIRST">Der VeraCrypt-Gerätetreiber kann nicht beendet werden.\n\nSchließen Sie bitte zuerst alle offenen VeraCrypt-Fenster. Sollte das nicht genügen, starten Sie bitte Windows neu und probieren Sie es noch einmal.</entry> - <entry lang="de" key="DISMOUNT_ALL_FIRST">Alle VeraCrypt-Volumes müssen vor dem Installieren oder dem Deinstallieren von VeraCrypt getrennt sein.</entry> + <entry lang="de" key="UNMOUNT_ALL_FIRST">Alle VeraCrypt-Volumes müssen vor dem Installieren oder dem Deinstallieren von VeraCrypt getrennt sein.</entry> <entry lang="de" key="UNINSTALL_OLD_VERSION_FIRST">Eine veraltete VeraCrypt-Version ist derzeit auf Ihrem System installiert. Sie muss deinstalliert werden, bevor Sie die neue VeraCrypt-Version installieren können.\n\nSobald Sie dieses Fenster schließen wird die Deinstallation der alten VeraCrypt-Version starten. Bitte beachten Sie, dass kein Volume entschlüsselt wird, wenn Sie VeraCrypt deinstallieren. Starten Sie die Installation der neuen VeraCrypt-Version erneut, nachdem die Deinstallation der alten VeraCrypt-Version beendet ist.</entry> @@ -908,3 +908,3 @@ <entry lang="de" key="OPEN">Öffnen ...</entry> - <entry lang="de" key="DISMOUNT">Trennen</entry> + <entry lang="de" key="UNMOUNT">Trennen</entry> <entry lang="de" key="SHOW_TC">VeraCrypt-Hauptfenster anzeigen</entry> @@ -980,3 +980,3 @@ <entry lang="de" key="SYS_FAVORITES_REQUIRE_PBA">Die Systempartition/das Systemlaufwerk scheint nicht verschlüsselt zu sein.\n\nSystemfavoriten-Volumes können nur mit einem Pre-Boot-Authentifikationspasswort eingehängt werden. Um Systemfavoriten-Volumes zu verwenden, müssen Sie deshalb zuerst die Systempartition/das Systemlaufwerk verschlüsseln.</entry> - <entry lang="de" key="DISMOUNT_FIRST">Trennen Sie bitte zuerst das Volume.</entry> + <entry lang="de" key="UNMOUNT_FIRST">Trennen Sie bitte zuerst das Volume.</entry> <entry lang="de" key="CANNOT_SET_TIMER">FEHLER: Kann Timer nicht einstellen.</entry> @@ -1014,7 +1014,7 @@ <entry lang="de" key="HK_AUTOMOUNT_DEVICES">Alle Datenträger-Volumes automatisch einhängen</entry> - <entry lang="de" key="HK_DISMOUNT_ALL">Alle Volumes trennen</entry> + <entry lang="de" key="HK_UNMOUNT_ALL">Alle Volumes trennen</entry> <entry lang="de" key="HK_WIPE_CACHE">Cache sicher löschen</entry> - <entry lang="de" key="HK_DISMOUNT_ALL_AND_WIPE">Alle Volumes trennen und Cache löschen</entry> - <entry lang="de" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Für alle Volumes Trennen erzwingen und Cache sicher löschen</entry> - <entry lang="de" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Für alle Volumes Trennen erzwingen, Cache sicher löschen, VC beenden</entry> + <entry lang="de" key="HK_UNMOUNT_ALL_AND_WIPE">Alle Volumes trennen und Cache löschen</entry> + <entry lang="de" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Für alle Volumes Trennen erzwingen und Cache sicher löschen</entry> + <entry lang="de" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Für alle Volumes Trennen erzwingen, Cache sicher löschen, VC beenden</entry> <entry lang="de" key="HK_MOUNT_FAVORITE_VOLUMES">Favoriten einhängen</entry> @@ -1030,10 +1030,10 @@ <entry lang="de" key="HIDDEN_OS_HIBERNATION_PREVENTED">Das System konnte nicht in den Ruhezustand versetzt werden.\n\nVeraCrypt unterstützt den Ruhezustand auf versteckten Betriebssystemen mit extra Bootpartition nicht. Bitte beachten Sie, dass die Bootpartition vom Köder-System und dem versteckten Betriebssystem geteilt wird. Um Datenlecks und Probleme während des Aufwachens aus dem Ruhezustand zu vermeiden, muss VeraCrypt das versteckte Betriebssystem daran hindern auf die geteilte Bootpartition zu schreiben oder in den Ruhezustand zu wechseln.</entry> - <entry lang="de" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">Das als %c: eingehängte VeraCrypt-Volume wurde getrennt.</entry> - <entry lang="de" key="MOUNTED_VOLUMES_DISMOUNTED">Alle VeraCrypt-Volumes wurden getrennt.</entry> - <entry lang="de" key="VOLUMES_DISMOUNTED_CACHE_WIPED">Alle VeraCrypt-Volumes wurden getrennt und der Passwort-Cache wurde gelöscht.</entry> - <entry lang="de" key="SUCCESSFULLY_DISMOUNTED">Volume erfolgreich getrennt</entry> + <entry lang="de" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">Das als %c: eingehängte VeraCrypt-Volume wurde getrennt.</entry> + <entry lang="de" key="MOUNTED_VOLUMES_UNMOUNTED">Alle VeraCrypt-Volumes wurden getrennt.</entry> + <entry lang="de" key="VOLUMES_UNMOUNTED_CACHE_WIPED">Alle VeraCrypt-Volumes wurden getrennt und der Passwort-Cache wurde gelöscht.</entry> + <entry lang="de" key="SUCCESSFULLY_UNMOUNTED">Volume erfolgreich getrennt</entry> <entry lang="de" key="CONFIRM_BACKGROUND_TASK_DISABLED">ACHTUNG: Wenn der VeraCrypt-Hintergrunddienst deaktiviert ist, sind die folgenden Funktionen nicht verfügbar:\n\n1) Tastenkombinationen\n2) Automatische Trennung (z. B. beim Abmelden oder unbeabsichtigtem Entfernen eines Host-Geräts)\n3) Automatisches Einhängen von Favoriten-Volumes\n4) Benachrichtigungen (z. B., wenn Beschädigungen an einem versteckten Volume verhindert wurden)\n5) Taskleistensymbol\n\nHinweis: Sie können den Hintergrunddienst jederzeit beenden, indem Sie mit der rechten Maustaste auf das VeraCrypt-Taskleistensymbol klicken und „Beenden“ auswählen.\n\nSind Sie sicher, dass Sie den Hintergrunddienst dauerhaft deaktivieren möchten?</entry> - <entry lang="de" key="CONFIRM_NO_FORCED_AUTODISMOUNT">WARNUNG: Wenn diese Option deaktiviert ist, können keine Volumes mit geöffneten Dateien/Verzeichnissen automatisch getrennt werden.\n\nMöchten Sie diese Option wirklich deaktivieren?</entry> - <entry lang="de" key="WARN_PREF_AUTO_DISMOUNT">WARNUNG: Volumes mit geöffneten Dateien/Verzeichnissen werden NICHT automatisch getrennt.\n\nUm dies zu vermeiden, müssen Sie folgende Option in diesem Dialogfenster aktivieren: „Automatisches Trennen bei geöffneten Dateien erzwingen“</entry> - <entry lang="de" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">WARNUNG: Wenn der Laptop-Akku fast leer ist, kann es passieren, dass Windows nicht die entsprechende Mitteilung an die Anwendungen sendet, wenn der Computer in den Energiesparmodus wechselt. In solchen Fällen kann das automatische Trennen von VeraCrypt-Volumes fehlschlagen.</entry> + <entry lang="de" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">WARNUNG: Wenn diese Option deaktiviert ist, können keine Volumes mit geöffneten Dateien/Verzeichnissen automatisch getrennt werden.\n\nMöchten Sie diese Option wirklich deaktivieren?</entry> + <entry lang="de" key="WARN_PREF_AUTO_UNMOUNT">WARNUNG: Volumes mit geöffneten Dateien/Verzeichnissen werden NICHT automatisch getrennt.\n\nUm dies zu vermeiden, müssen Sie folgende Option in diesem Dialogfenster aktivieren: „Automatisches Trennen bei geöffneten Dateien erzwingen“</entry> + <entry lang="de" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">WARNUNG: Wenn der Laptop-Akku fast leer ist, kann es passieren, dass Windows nicht die entsprechende Mitteilung an die Anwendungen sendet, wenn der Computer in den Energiesparmodus wechselt. In solchen Fällen kann das automatische Trennen von VeraCrypt-Volumes fehlschlagen.</entry> <entry lang="de" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Sie haben den Verschlüsselungsprozess für eine Partition/ein Volume geplant. Der Prozess wurde bis jetzt nicht beendet.\n\nMöchten Sie den Prozess jetzt fortsetzen?</entry> @@ -1068,3 +1068,3 @@ <entry lang="de" key="MOUNT_TC_VOLUME">VeraCrypt-Volume einhängen</entry> - <entry lang="de" key="DISMOUNT_ALL_TC_VOLUMES">Alle VeraCrypt-Volumes trennen</entry> + <entry lang="de" key="UNMOUNT_ALL_TC_VOLUMES">Alle VeraCrypt-Volumes trennen</entry> <entry lang="de" key="UAC_INIT_ERROR">VeraCrypt konnte keine Administratorrechte erhalten.</entry> @@ -1311,4 +1311,4 @@ <entry lang="de" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">WARNUNG: Diese Einstellung kann die Leistung verringern.\n\nSind Sie sicher, dass Sie diese Einstellungen vornehmen möchten?</entry> - <entry lang="de" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">WARNUNG: VeraCrypt-Volume wurde automatisch getrennt.</entry> - <entry lang="de" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Bevor Sie ein Gerät mit einem eingehängten VeraCrypt-Volume entfernen oder ausschalten, sollten Sie immer zuerst das VeraCrypt-Volume trennen.\n\nEine unerwartete plötzliche Trennung wird normalerweise durch versagende Kabel, Festplatten usw. verursacht.</entry> + <entry lang="de" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">WARNUNG: VeraCrypt-Volume wurde automatisch getrennt.</entry> + <entry lang="de" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Bevor Sie ein Gerät mit einem eingehängten VeraCrypt-Volume entfernen oder ausschalten, sollten Sie immer zuerst das VeraCrypt-Volume trennen.\n\nEine unerwartete plötzliche Trennung wird normalerweise durch versagende Kabel, Festplatten usw. verursacht.</entry> <entry lang="de" key="UNSUPPORTED_TRUECRYPT_FORMAT">Das Volume wurde mit TrueCrypt %x.%x erstellt, aber VeraCrypt unterstützt nur TrueCrypt-Volumes, die mit TrueCrypt 6.x/7.x erstellt wurden.</entry> @@ -1458,3 +1458,3 @@ <entry lang="de" key="TASKICON_PREF_OPEN_VOL">Eingehängte Volumes öffnen</entry> - <entry lang="de" key="TASKICON_PREF_DISMOUNT_VOL">Eingehängte Volumes trennen</entry> + <entry lang="de" key="TASKICON_PREF_UNMOUNT_VOL">Eingehängte Volumes trennen</entry> <entry lang="de" key="DISK_FREE">Freier Speicherplatz: {0}</entry> @@ -1488,6 +1488,6 @@ <entry lang="de" key="LINUX_SELECT">Auswählen ...</entry> - <entry lang="de" key="LINUX_DISMOUNT_ALL_WHEN">Alle Volumes aushängen, wenn</entry> + <entry lang="de" key="LINUX_UNMOUNT_ALL_WHEN">Alle Volumes aushängen, wenn</entry> <entry lang="de" key="LINUX_ENTERING_POWERSAVING">System geht in den Energiesparmodus über</entry> <entry lang="de" key="LINUX_LOGIN_ACTION">Aktionen beim Anmelden ausführen</entry> - <entry lang="de" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Alle Explorer-Fenster schließen, wenn das Volume ausgehängt wird</entry> + <entry lang="de" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Alle Explorer-Fenster schließen, wenn das Volume ausgehängt wird</entry> <entry lang="de" key="LINUX_HOTKEYS">Tastenkombinationen</entry> @@ -1495,3 +1495,3 @@ <entry lang="de" key="LINUX_SOUND_NOTIFICATION">Systembenachrichtigungston wird beim Ein- und Aushängen abgespielt</entry> - <entry lang="de" key="LINUX_CONFIRM_AFTER_DISMOUNT">Bestätigungsnachricht nach dem Aushängen anzeigen</entry> + <entry lang="de" key="LINUX_CONFIRM_AFTER_UNMOUNT">Bestätigungsnachricht nach dem Aushängen anzeigen</entry> <entry lang="de" key="LINUX_VC_QUITS">VeraCrypt beendet</entry> @@ -1527,3 +1527,3 @@ <entry lang="de" key="LINUX_KERNEL_OLD">Ihr System verwendet einen alten Linux-Kernel.\n\nWegen eines Fehlers im Linux-Kernel kann es passieren, dass Ihr System beim Schreiben auf ein VeraCrypt-Volume nicht mehr reagiert. Diese Problem kann durch einen Kernel in Version 2.6.24 oder neuer gelöst werden.</entry> - <entry lang="de" key="LINUX_VOL_DISMOUNTED">Volume {0} ausgehängt.</entry> + <entry lang="de" key="LINUX_VOL_UNMOUNTED">Volume {0} ausgehängt.</entry> <entry lang="de" key="LINUX_VOL_MOUNTED">Volume {0} wurde eingehängt.</entry> @@ -1646,2 +1646,5 @@ <entry lang="de" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">WARNUNG: Der Hauptschlüssel des Volumes weist eine Sicherheitslücke auf.</entry> + <entry lang="de" key="MOUNTPOINT_BLOCKED">FEHLER: Der Einhängepunkt ist blockiert, da er ein geschütztes Systemverzeichnis überschreibt.\n\nBitte wählen Sie einen anderen Einhängepunkt.</entry> + <entry lang="de" key="MOUNTPOINT_NOTALLOWED">FEHLER: Der Einhängepunkt ist unzulässig, da er ein Verzeichnis überschreibt, das zur PATH-Umgebungsvariable gehört.\n\nBitte wählen Sie einen anderen Einhängepunkt.</entry> + <entry lang="de" key="INSECURE_MODE">[UNSICHERER MODUS]</entry> </localization> diff --git a/Translations/Language.el.xml b/Translations/Language.el.xml index 108b51a5..4fdd72fa 100644 --- a/Translations/Language.el.xml +++ b/Translations/Language.el.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="el" name="Ελληνικά" en-name="Greek" version="0.1.0" translators="Βασίλης Κοσμίδης" /> @@ -137,4 +137,4 @@ <entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</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="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="el" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="el" key="IDC_PREF_CACHE_PASSWORDS">Αποθ/ση κωδικών στη μνήμη του οδηγού</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_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_LOGON_MOUNT_DEVICES">Φόρτωση όλων των τόμων-συσκευών VeraCrypt</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">Διαγραφή κωδικών από τη μνήμη κατά την αυτοεκφόρτωση</entry> + <entry lang="el" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Διαγραφή κωδικών από τη μνήμη κατά την αυτοεκφόρτωση</entry> <entry lang="el" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Διαγρ. κωδικών από τη μνήμη κατά την έξοδο</entry> @@ -271,4 +271,4 @@ <entry lang="el" key="IDT_AUTORUN">Ρύθμιση αυτόματης εκκίνησης (autorun.inf)</entry> - <entry lang="el" key="IDT_AUTO_DISMOUNT">Αυτοεκφόρτωση</entry> - <entry lang="el" key="IDT_AUTO_DISMOUNT_ON">Εκφόρτωση όλων όταν:</entry> + <entry lang="el" key="IDT_AUTO_UNMOUNT">Αυτοεκφόρτωση</entry> + <entry lang="el" key="IDT_AUTO_UNMOUNT_ON">Εκφόρτωση όλων όταν:</entry> <entry lang="en" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader Screen Options</entry> @@ -278,3 +278,3 @@ <entry lang="el" key="IDT_DEFAULT_MOUNT_OPTIONS">Εξ'ορισμού επιλογές φόρτωσης</entry> - <entry lang="el" key="IDT_DISMOUNT_ACTION">Επιλογές συντομεύσεων</entry> + <entry lang="el" key="IDT_UNMOUNT_ACTION">Επιλογές συντομεύσεων</entry> <entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry> @@ -425,4 +425,4 @@ <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_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="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="DEVICE_IN_USE_INFO">ΠΡΟΣΟΧΗ: Ορισμένες από τις φορτωμένες συσκευές/διαμερίσματα ήταν ήδη σε χρήση!\n\nΗ παράβλεψη μπορεί να οδηγήσει σε ανεπιθύμητα αποτελέσματα και αστάθεια συστήματος.\n\nΣυνιστούμε να κλείσετε κάθε εφαρμογή που μπορεί να χρησιμοποιεί τις συσκευές/διαμερίσματα.</entry> @@ -527,3 +527,3 @@ <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 dismount 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 unmount the volume).</entry> <entry lang="el" key="HIDVOL_HOST_FILLING_HELP">Ο εξωτερικός τόμος δημιουργήθηκε επιτυχώς και φορτώθηκε ως οδηγός %hc:. Σε αυτόν τον τόμο θα πρέπει να γράψετε αρχεία που ΔΕΝ θέλετε να κρύψετε. Τα αρχεία θα είναι εμφανή για όποιον σας εξαναγκάσει να αποκαλύψετε τον κωδικό σας. Θα αποκαλύψετε μόνο τον κωδικό του εξωτερικού τόμου, όχι του κρυφού. Τα πραγματικά σημαντικά σας αρχεία θα είναι στον κρυφό τόμο που θα δημιουργηθεί στη συνέχεια. Όταν τελειώσετε την αντιγραφή πιέστε "Επόμενο". Μην εκφορτώσετε τον τόμο.\n\nΣημείωση: Αφού πιέσετε "Επόμενο", το cluster bitmap του εξωτερικού τόμου θα ανιχνευθεί για να καθορισθεί το μέγεθος του συνεχούς ελεύθερου χώρου του οποίου το τέλος ευθυγραμμίζεται με το τέλος του τόμου. Αυτή η περιοχή θα περιέχει τον κρυφό τόμο, συνεπώς θα περιορίσει το μέγιστο δυνατό του μέγεθος. Η ανίχνευση του cluster bitmap διασφαλίζει ότι δεν θα διαγραφούν δεδομένα του εξωτερικού τόμου από τον κρυφό τόμο.</entry> @@ -592,3 +592,3 @@ <entry lang="el" key="OPENFILES_LOCK">Αδύνατον να κλειδωθεί ο τόμος. Υπάρχουν ακόμα ανοιχτά αρχεία στον τόμο. Γι' αυτό δεν μπορεί να εκφορτωθεί.</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="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="el" key="OPEN_VOL_TITLE">Επιλέξτε έναν τόμο VeraCrypt</entry> @@ -731,3 +731,3 @@ <entry lang="el" key="CANT_MOUNT_VOLUME">Αδύνατη η φόρτωση του τόμου.</entry> - <entry lang="el" key="CANT_DISMOUNT_VOLUME">Αδύνατη η εκφόρτωση του τόμου.</entry> + <entry lang="el" key="CANT_UNMOUNT_VOLUME">Αδύνατη η εκφόρτωση του τόμου.</entry> <entry lang="el" key="FORMAT_NTFS_FAILED">Τα Windows απέτυχαν στη διαμόρφωση του τόμου σε NTFS.\n\nΠαρακαλώ επιλέξτε έναν διαφορετικό τύπο συστήματος αρχείων (αν είναι δυνατόν) και προσπαθήστε ξανά. Εναλλακτικά θα μπορούσατε να αφήσετε τον τόμο αδιαμόρφωτο (επιλέξτε "Κανένα" ως σύστημα αρχείων), βγείτε από αυτόν τον Οδηγό, φορτώστε τον τόμο και κατόπιν χρησιμοποιείστε ένα εργαλείο είτε του συστήματος είτε ενός τρίτου κατασκευαστή για να διαμορφώσετε τον φορτωμένο τόμο (ο τόμος θα παραμείνει κρυπτογραφημένος).</entry> @@ -773,3 +773,3 @@ <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_DISMOUNT_OUTER_VOL">Σφάλμα: Αδυναμία εκφόρτωσης του εξωτερικού τόμου!\n\nΟ τόμος δεν μπορεί να εκφορτωθεί αν περιέχει αρχεία ή φακέλους σε χρήση.\n\nΠαρακαλώ κλείστε κάθε πρόγραμμα που μπορεί να χρησιμοποιεί αρχεία ή φακέλους του τόμου και επιλέξτε "Επανάληψη".</entry> + <entry lang="el" key="CANT_UNMOUNT_OUTER_VOL">Σφάλμα: Αδυναμία εκφόρτωσης του εξωτερικού τόμου!\n\nΟ τόμος δεν μπορεί να εκφορτωθεί αν περιέχει αρχεία ή φακέλους σε χρήση.\n\nΠαρακαλώ κλείστε κάθε πρόγραμμα που μπορεί να χρησιμοποιεί αρχεία ή φακέλους του τόμου και επιλέξτε "Επανάληψη".</entry> <entry lang="el" key="CANT_GET_OUTER_VOL_INFO">Σφάλμα: Αδυναμία ανάκτησης πληροφοριών για τον εξωτερικό τόμο! Η δημιουργία του τόμου δεν μπορεί να συνεχιστεί.</entry> @@ -884,3 +884,3 @@ <entry lang="el" key="CLOSE_TC_FIRST">Ο οδηγός συσκευής του VeraCrypt δεν μπόρεσε να εκφορτωθεί.\n\nΠαρακαλώ κλείστε πρώτα όλα τα ανοιχτά παράθυρα του VeraCrypt. Αν αυτό δε βοηθήσει, επανεκκινήστε τα Windows και δοκιμάστε ξανά.</entry> - <entry lang="el" key="DISMOUNT_ALL_FIRST">Όλοι οι τόμοι VeraCrypt πρέπει να εκφορτωθούν πριν την εγκατάσταση ή απεγκατάσταση του VeraCrypt.</entry> + <entry lang="el" key="UNMOUNT_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> @@ -905,3 +905,3 @@ <entry lang="el" key="OPEN">Άνοιγμα</entry> - <entry lang="el" key="DISMOUNT">Εκφόρτωση</entry> + <entry lang="el" key="UNMOUNT">Εκφόρτωση</entry> <entry lang="el" key="SHOW_TC">Δείξε το VeraCrypt</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">Παρακαλώ εκφορτώστε τον τόμο πριν συνεχίσετε.</entry> + <entry lang="el" key="UNMOUNT_FIRST">Παρακαλώ εκφορτώστε τον τόμο πριν συνεχίσετε.</entry> <entry lang="el" key="CANNOT_SET_TIMER">Σφάλμα: Αδυναμία ορισμού χρονομετρητή.</entry> @@ -999,3 +999,3 @@ <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 dismount 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 unmount the volume.</entry> <entry lang="el" key="HOMEPAGE">Ιστοτόπος</entry> @@ -1011,7 +1011,7 @@ <entry lang="el" key="HK_AUTOMOUNT_DEVICES">Αυτοφόρτωση συσκευών</entry> - <entry lang="el" key="HK_DISMOUNT_ALL">Εκφόρτωση όλων</entry> + <entry lang="el" key="HK_UNMOUNT_ALL">Εκφόρτωση όλων</entry> <entry lang="el" key="HK_WIPE_CACHE">Διαγραφή cache</entry> - <entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All & Wipe Cache</entry> - <entry lang="el" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Εξαναγκασμένη εκφόρτωση όλων & διαγραφή cache</entry> - <entry lang="el" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Εξαναγκασμένη εκφόρτωση όλων, διαγραφή cache & έξοδος</entry> + <entry lang="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All & Wipe Cache</entry> + <entry lang="el" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Εξαναγκασμένη εκφόρτωση όλων & διαγραφή cache</entry> + <entry lang="el" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Εξαναγκασμένη εκφόρτωση όλων, διαγραφή cache & έξοδος</entry> <entry lang="el" key="HK_MOUNT_FAVORITE_VOLUMES">Φόρτωση αγαπημένων τόμων</entry> @@ -1027,10 +1027,10 @@ <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_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="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="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> @@ -1042,3 +1042,3 @@ <entry lang="el" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">Έχετε προγραμματίσει τη διαδικασία κρυπτογράφησης ή αποκρυπτογράφησης του διαμερίσματος/συσκευής του συστήματος. Ωστόσο ο προ-εκκίνησης έλεγχος απέτυχε (ή παρακάμφθηκε).\n\nΣημείωση: Αν αποκρυπτογραφήσατε το διαμέρισμα/συσκευή του συστήματος στο προ-εκκίνησης περιβάλλον, ίσως χρειαστεί να τερματίσετε τη διαδικασία επιλέγοντας 'Σύστημα' > 'Μόνιμη αποκρυπτογράφηση διαμερίσματος/οδηγού συστήματος' από την μπάρα μενού του κύριου παραθύρου του 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-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">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="el" key="CONFIRM_EXIT_UNIVERSAL">Έξοδος;</entry> @@ -1065,3 +1065,3 @@ <entry lang="el" key="MOUNT_TC_VOLUME">Φόρτωση τόμου VeraCrypt</entry> - <entry lang="el" key="DISMOUNT_ALL_TC_VOLUMES">Εκφόρτωση όλων των τόμων VeraCrypt</entry> + <entry lang="el" key="UNMOUNT_ALL_TC_VOLUMES">Εκφόρτωση όλων των τόμων VeraCrypt</entry> <entry lang="el" key="UAC_INIT_ERROR">Το VeraCrypt απέτυχε να αποκτήσει δικαιώματα Διαχειριστή.</entry> @@ -1287,4 +1287,4 @@ <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 '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="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="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry> @@ -1294,6 +1294,6 @@ <entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &Device and Mount...</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="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount 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 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="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="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> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <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="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry> <entry lang="en" key="DISK_FREE">Free space available: {0}</entry> @@ -1485,10 +1485,10 @@ <entry lang="en" key="LINUX_SELECT">Se&lect...</entry> - <entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry> + <entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount 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_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</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_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_VC_QUITS">VeraCrypt quits</entry> @@ -1512,3 +1512,3 @@ <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_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_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> @@ -1516,3 +1516,3 @@ <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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry> <entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry> @@ -1525,3 +1525,3 @@ <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_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry> <entry lang="en" key="LINUX_OOM">Out of memory.</entry> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/Translations/Language.es.xml b/Translations/Language.es.xml index 43a57f08..e46d87d9 100644 --- a/Translations/Language.es.xml +++ b/Translations/Language.es.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="es" name="Español" en-name="Spanish" version="1.0.0" translators="Juan Antonio Auñón Ochando" /> @@ -137,4 +137,4 @@ <entry lang="es" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Configuración global</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_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_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="es" key="IDC_PREF_CACHE_PASSWORDS">Guardar contraseñas en caché</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_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_LOGON_MOUNT_DEVICES">Montar todos los volúmenes alojados en dispositivos</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">Eliminar contraseñas guardadas al desmontar automáticamente</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_EXIT">Eliminar contraseñas guardadas al salir</entry> @@ -271,4 +271,4 @@ <entry lang="es" key="IDT_AUTORUN">Configuración de Autoarranque (autorun.inf)</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_AUTO_UNMOUNT">Desmontar automáticamente</entry> + <entry lang="es" key="IDT_AUTO_UNMOUNT_ON">Desmontar todo cuando:</entry> <entry lang="es" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Opciones de Pantalla del Cargador de Arranque</entry> @@ -278,3 +278,3 @@ <entry lang="es" key="IDT_DEFAULT_MOUNT_OPTIONS">Opciones de Montaje Predeterminadas</entry> - <entry lang="es" key="IDT_DISMOUNT_ACTION">Opciones de Atajos de Teclado</entry> + <entry lang="es" key="IDT_UNMOUNT_ACTION">Opciones de Atajos de Teclado</entry> <entry lang="es" key="IDT_DRIVER_OPTIONS">Configuración del controlador</entry> @@ -425,4 +425,4 @@ <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_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' > '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="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' > '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="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> @@ -592,3 +592,3 @@ <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_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="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="OPEN_VOL_TITLE">Seleccione un volumen VeraCrypt</entry> @@ -731,3 +731,3 @@ <entry lang="es" key="CANT_MOUNT_VOLUME">No se puede montar el volumen.</entry> - <entry lang="es" key="CANT_DISMOUNT_VOLUME">No se puede desmontar el volumen.</entry> + <entry lang="es" key="CANT_UNMOUNT_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> @@ -773,3 +773,3 @@ <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_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_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_GET_OUTER_VOL_INFO">Error: ¡No se puede obtener información acerca del volumen externo! La creación del volumen no puede continuar.</entry> @@ -884,3 +884,3 @@ <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="DISMOUNT_ALL_FIRST">Se deben desmontar todos los volúmenes VeraCrypt antes de instalar/desinstalar VeraCrypt.</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="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> @@ -905,3 +905,3 @@ <entry lang="es" key="OPEN">Abrir</entry> - <entry lang="es" key="DISMOUNT">Desmontar</entry> + <entry lang="es" key="UNMOUNT">Desmontar</entry> <entry lang="es" key="SHOW_TC">Mostrar VeraCrypt</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">Por favor desmonte el volumen antes de continuar.</entry> + <entry lang="es" key="UNMOUNT_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> @@ -1011,7 +1011,7 @@ <entry lang="es" key="HK_AUTOMOUNT_DEVICES">Montar dispositivos autom.</entry> - <entry lang="es" key="HK_DISMOUNT_ALL">Desmontar Todo</entry> + <entry lang="es" key="HK_UNMOUNT_ALL">Desmontar Todo</entry> <entry lang="es" key="HK_WIPE_CACHE">Borrar Caché</entry> - <entry lang="es" key="HK_DISMOUNT_ALL_AND_WIPE">Desmontar Todo & Borrar Caché</entry> - <entry lang="es" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Desmontar Todo & Borrar Caché (forzar)</entry> - <entry lang="es" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Desmontar Todo, Borrar Caché & Salir (forzar)</entry> + <entry lang="es" key="HK_UNMOUNT_ALL_AND_WIPE">Desmontar Todo & Borrar Caché</entry> + <entry lang="es" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Desmontar Todo & Borrar Caché (forzar)</entry> + <entry lang="es" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Desmontar Todo, Borrar Caché & Salir (forzar)</entry> <entry lang="es" key="HK_MOUNT_FAVORITE_VOLUMES">Montar Volúmenes Favoritos</entry> @@ -1027,10 +1027,10 @@ <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_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="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="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_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="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="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> @@ -1065,3 +1065,3 @@ <entry lang="es" key="MOUNT_TC_VOLUME">Montar volumen VeraCrypt</entry> - <entry lang="es" key="DISMOUNT_ALL_TC_VOLUMES">Desmontar todos los volúmenes VeraCrypt</entry> + <entry lang="es" key="UNMOUNT_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> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <entry lang="es" key="TASKICON_PREF_OPEN_VOL">Abrir volúmenes montados</entry> - <entry lang="es" key="TASKICON_PREF_DISMOUNT_VOL">Desmontar 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> @@ -1485,6 +1485,6 @@ <entry lang="es" key="LINUX_SELECT">Seleccionar..."</entry> - <entry lang="es" key="LINUX_DISMOUNT_ALL_WHEN">Desmontar Todos los Volúmenes Cuando</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_DISMOUNT">Cerrar todas las ventanas del Explorador del volumen que se está desmontando</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> @@ -1492,3 +1492,3 @@ <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_DISMOUNT">Mostrar cuadro de mensaje de confirmación después de 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> @@ -1524,3 +1524,3 @@ <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_DISMOUNTED">El volumen {0} ha sido desmontado.</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> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/Translations/Language.et.xml b/Translations/Language.et.xml index 4e6fd3d8..9f3c903b 100644 --- a/Translations/Language.et.xml +++ b/Translations/Language.et.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="et" name="Eesti" en-name="Estonian" version="0.1.0" translators="Maiko Mõtsar" /> @@ -137,4 +137,4 @@ <entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</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="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="et" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="et" key="IDC_PREF_CACHE_PASSWORDS">Hoia salasõna tüüreli mälus</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_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_LOGON_MOUNT_DEVICES">Haagi kõik seadme-baasil VeraCrypt konteinerid</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">Kustuta kogutud salasõnad automaatsel lahtihaakimisel</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_EXIT">Kustuta väljumisel kogutud salasõnad</entry> @@ -271,4 +271,4 @@ <entry lang="et" key="IDT_AUTORUN">AutoRun konfiguratsioon (autorun.inf)</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="et" key="IDT_AUTO_UNMOUNT">Auto-lahtihaakimine</entry> + <entry lang="et" key="IDT_AUTO_UNMOUNT_ON">Haagi kõik lahti kui:</entry> <entry lang="en" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader Screen Options</entry> @@ -278,3 +278,3 @@ <entry lang="et" key="IDT_DEFAULT_MOUNT_OPTIONS">Vaikimisi haakevalikud</entry> - <entry lang="et" key="IDT_DISMOUNT_ACTION">Kiirklahvide valikud</entry> + <entry lang="et" key="IDT_UNMOUNT_ACTION">Kiirklahvide valikud</entry> <entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry> @@ -425,4 +425,4 @@ <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_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' > '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="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' > '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="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> @@ -527,3 +527,3 @@ <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 dismount 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 unmount 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> @@ -537,5 +537,5 @@ <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 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="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="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> @@ -592,3 +592,3 @@ <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_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="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="et" key="OPEN_VOL_TITLE">Vali VeraCrypti konteiner</entry> @@ -731,3 +731,3 @@ <entry lang="et" key="CANT_MOUNT_VOLUME">Ei suuda konteinerit haakida.</entry> - <entry lang="et" key="CANT_DISMOUNT_VOLUME">Ei suuda konteinerit lahti haakida.</entry> + <entry lang="et" key="CANT_UNMOUNT_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> @@ -773,3 +773,3 @@ <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_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="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="en" key="CANT_GET_OUTER_VOL_INFO">Error: Cannot obtain information about the outer volume!\nVolume creation cannot continue.</entry> @@ -884,3 +884,3 @@ <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="DISMOUNT_ALL_FIRST">Kõik VeraCrypti konteinerid peavad olema enne VeraCrypti paigaldamist või eemaldamist lahti haagitud.</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="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> @@ -905,3 +905,3 @@ <entry lang="et" key="OPEN">Ava</entry> - <entry lang="et" key="DISMOUNT">Haagi lahti</entry> + <entry lang="et" key="UNMOUNT">Haagi lahti</entry> <entry lang="et" key="SHOW_TC">Kuva VeraCrypt</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">Jätkamiseks haagi palun konteiner lahti.</entry> + <entry lang="et" key="UNMOUNT_FIRST">Jätkamiseks haagi palun konteiner lahti.</entry> <entry lang="en" key="CANNOT_SET_TIMER">Error: Cannot set timer.</entry> @@ -999,3 +999,3 @@ <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 dismount 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 unmount the volume.</entry> <entry lang="et" key="HOMEPAGE">Koduleht</entry> @@ -1008,10 +1008,10 @@ <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 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="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="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_DISMOUNT_ALL">Haagi kõik lahti</entry> + <entry lang="et" key="HK_UNMOUNT_ALL">Haagi kõik lahti</entry> <entry lang="et" key="HK_WIPE_CACHE">Puhasta vahemälu</entry> - <entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All & Wipe Cache</entry> - <entry lang="et" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Sunni kõiki lahti haakima & Puhasta vahemälu</entry> - <entry lang="et" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Sunni kõiki lahtihaakima, Puhasta vahemälu & Välju</entry> + <entry lang="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All & Wipe Cache</entry> + <entry lang="et" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Sunni kõiki lahti haakima & Puhasta vahemälu</entry> + <entry lang="et" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Sunni kõiki lahtihaakima, Puhasta vahemälu & Välju</entry> <entry lang="et" key="HK_MOUNT_FAVORITE_VOLUMES">Haagi lemmik konteinerid</entry> @@ -1027,10 +1027,10 @@ <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_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="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="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> @@ -1042,3 +1042,3 @@ <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' > '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-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">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_UNIVERSAL">Exit?</entry> @@ -1065,3 +1065,3 @@ <entry lang="et" key="MOUNT_TC_VOLUME">Haagi VeraCrypti konteiner</entry> - <entry lang="et" key="DISMOUNT_ALL_TC_VOLUMES">Haagi lahti kõik VeraCrypti konteinerid</entry> + <entry lang="et" key="UNMOUNT_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> @@ -1287,4 +1287,4 @@ <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 '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="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="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry> @@ -1294,6 +1294,6 @@ <entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &Device and Mount...</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="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount 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 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="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="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> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <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="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry> <entry lang="en" key="DISK_FREE">Free space available: {0}</entry> @@ -1485,10 +1485,10 @@ <entry lang="en" key="LINUX_SELECT">Se&lect...</entry> - <entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry> + <entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount 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_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</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_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_VC_QUITS">VeraCrypt quits</entry> @@ -1512,3 +1512,3 @@ <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_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_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> @@ -1516,3 +1516,3 @@ <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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry> <entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry> @@ -1524,3 +1524,3 @@ <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_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry> <entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/Translations/Language.eu.xml b/Translations/Language.eu.xml index d732a66d..6f36dfde 100644 --- a/Translations/Language.eu.xml +++ b/Translations/Language.eu.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="eu" name="Euskara" en-name="Basque" version="1.0.0" translators="Ander Genua" /> @@ -137,4 +137,4 @@ <entry lang="eu" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Aukera Globalak</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_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_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="eu" key="IDC_PREF_CACHE_PASSWORDS">Pasahitzak gorde gailuaren memorian</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_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_LOGON_MOUNT_DEVICES">Gailuetako VeraCrypt bolumen guztiak muntatu</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">Gordetako pasahitzak ezabatu automatikoki desmuntatzerakoan</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_EXIT">Gordetako pasahitzak ezabatu irtetzerakoan</entry> @@ -271,4 +271,4 @@ <entry lang="eu" key="IDT_AUTORUN">AutoRun-aren Konfigurazioa (autorun.inf)</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_AUTO_UNMOUNT">Auto-Desmuntatu</entry> + <entry lang="eu" key="IDT_AUTO_UNMOUNT_ON">Hauetan guztia desmuntatu:</entry> <entry lang="eu" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Hasieraketa kargatzailearen pantailako aurkerak</entry> @@ -278,3 +278,3 @@ <entry lang="eu" key="IDT_DEFAULT_MOUNT_OPTIONS">Lehenetsitako muntaketa aukerak</entry> - <entry lang="eu" key="IDT_DISMOUNT_ACTION">Tekla berezien aukerak</entry> + <entry lang="eu" key="IDT_UNMOUNT_ACTION">Tekla berezien aukerak</entry> <entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry> @@ -425,4 +425,4 @@ <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_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'>'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="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'>'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="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> @@ -592,3 +592,3 @@ <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_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="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="OPEN_VOL_TITLE">VeraCrypt Bolumena Aukeratu</entry> @@ -731,3 +731,3 @@ <entry lang="eu" key="CANT_MOUNT_VOLUME">Ezin da bolumena muntatu.</entry> - <entry lang="eu" key="CANT_DISMOUNT_VOLUME">Ezin da bolumena desmuntatu.</entry> + <entry lang="eu" key="CANT_UNMOUNT_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> @@ -773,3 +773,3 @@ <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_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_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_GET_OUTER_VOL_INFO">Errorea: Ezin izan da kanpoko bolumenari buruz informazioa eskuratu.\nBolumenaren sorrerak ezin du jarraitu.</entry> @@ -884,3 +884,3 @@ <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="DISMOUNT_ALL_FIRST">VeraCrypt bolumen guztiak desmuntatu behar dira VeraCrypt instalatu edo desinstalatu baino lehen.</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="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> @@ -905,3 +905,3 @@ <entry lang="eu" key="OPEN">Ireki</entry> - <entry lang="eu" key="DISMOUNT">Desmuntatu</entry> + <entry lang="eu" key="UNMOUNT">Desmuntatu</entry> <entry lang="eu" key="SHOW_TC">VeraCrypt Erakutsi</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">Mesedez bolumena desmuntatu jarraitu baino lehen.</entry> + <entry lang="eu" key="UNMOUNT_FIRST">Mesedez bolumena desmuntatu jarraitu baino lehen.</entry> <entry lang="eu" key="CANNOT_SET_TIMER">Errorea: Kronometroa ezin da jarri.</entry> @@ -1011,7 +1011,7 @@ <entry lang="eu" key="HK_AUTOMOUNT_DEVICES">Gailuak Auto-Muntatu</entry> - <entry lang="eu" key="HK_DISMOUNT_ALL">Denak Desmuntatu</entry> + <entry lang="eu" key="HK_UNMOUNT_ALL">Denak Desmuntatu</entry> <entry lang="eu" key="HK_WIPE_CACHE">Katxea Ezabatu</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_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_MOUNT_FAVORITE_VOLUMES">Gogoko Bolumenak Muntatu</entry> @@ -1027,10 +1027,10 @@ <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_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="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="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_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="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="NONSYS_INPLACE_ENC_RESUME_PROMPT">Partizio/Bolumen baten zifraketa programatu duzu. Prozesua oraindik ez da bukatu.\n\nProzesua orain jarraitu nahi al duzu?</entry> @@ -1065,3 +1065,3 @@ <entry lang="eu" key="MOUNT_TC_VOLUME">VeraCrypt bolumena muntatu</entry> - <entry lang="eu" key="DISMOUNT_ALL_TC_VOLUMES">VeraCrypt bolumen guztiak desmuntatu</entry> + <entry lang="eu" key="UNMOUNT_ALL_TC_VOLUMES">VeraCrypt bolumen guztiak desmuntatu</entry> <entry lang="eu" key="UAC_INIT_ERROR">VeraCrypt-ek huts egin du Administratzaile baimenak lortzerakoan.</entry> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <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="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry> <entry lang="en" key="DISK_FREE">Free space available: {0}</entry> @@ -1485,10 +1485,10 @@ <entry lang="en" key="LINUX_SELECT">Se&lect...</entry> - <entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry> + <entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount 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_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</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_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_VC_QUITS">VeraCrypt quits</entry> @@ -1512,3 +1512,3 @@ <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_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_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> @@ -1516,3 +1516,3 @@ <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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry> <entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry> @@ -1524,3 +1524,3 @@ <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_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry> <entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/Translations/Language.fa.xml b/Translations/Language.fa.xml index 82a4837e..31962e00 100644 --- a/Translations/Language.fa.xml +++ b/Translations/Language.fa.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="fa" name="فارسي" en-name="Persian" version="0.1.0" translators="Ali Bitazar, Rodabeh Sarmadi" /> @@ -137,4 +137,4 @@ <entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</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="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="fa" key="IDC_HK_MOD_ALT">Alt كليد</entry> @@ -158,8 +158,8 @@ <entry lang="fa" key="IDC_PREF_CACHE_PASSWORDS">كلمه عبور را در حافظه درايور ذخيره كند</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="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="en" key="IDC_PREF_LOGON_MOUNT_DEVICES">Mount all device-hosted VeraCrypt volumes</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">Wipe cached passwords on auto-dismount</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_EXIT">Wipe cached passwords on exit</entry> @@ -257,4 +257,4 @@ <entry lang="en" key="IDM_TRAVELER">Traveler Disk Setup...</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_UNMOUNTALL">Unmount All Mounted Volumes</entry> + <entry lang="en" key="IDM_UNMOUNT_VOLUME">Unmount Volume</entry> <entry lang="en" key="IDM_VERIFY_RESCUE_DISK">Verify Rescue Disk</entry> @@ -271,4 +271,4 @@ <entry lang="en" key="IDT_AUTORUN">AutoRun Configuration (autorun.inf)</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_AUTO_UNMOUNT">Auto-Unmount</entry> + <entry lang="en" key="IDT_AUTO_UNMOUNT_ON">Unmount all when:</entry> <entry lang="en" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader Screen Options</entry> @@ -278,3 +278,3 @@ <entry lang="en" key="IDT_DEFAULT_MOUNT_OPTIONS">Default Mount Options</entry> - <entry lang="en" key="IDT_DISMOUNT_ACTION">Hot Key Options</entry> + <entry lang="en" key="IDT_UNMOUNT_ACTION">Hot Key Options</entry> <entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry> @@ -425,4 +425,4 @@ <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_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' > '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="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' > '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="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> @@ -527,4 +527,4 @@ <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 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_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_TITLE">Outer Volume Contents</entry> @@ -537,5 +537,5 @@ <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 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="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="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> @@ -568,4 +568,4 @@ <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 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="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="MOUNT_BUTTON">&Mount</entry> @@ -590,5 +590,5 @@ <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 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="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="OPEN_VOL_TITLE">Select a VeraCrypt Volume</entry> @@ -696,6 +696,6 @@ <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 dismount?</entry> - <entry lang="en" key="UNMOUNT_BUTTON">&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="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">&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="NO_VOLUME_MOUNTED_TO_DRIVE">No volume is mounted to the specified drive letter.</entry> @@ -731,3 +731,3 @@ <entry lang="en" key="CANT_MOUNT_VOLUME">Cannot mount volume.</entry> - <entry lang="en" key="CANT_DISMOUNT_VOLUME">Cannot dismount volume.</entry> + <entry lang="en" key="CANT_UNMOUNT_VOLUME">Cannot unmount 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> @@ -773,3 +773,3 @@ <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_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_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_GET_OUTER_VOL_INFO">Error: Cannot obtain information about the outer volume!\nVolume creation cannot continue.</entry> @@ -884,3 +884,3 @@ <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="DISMOUNT_ALL_FIRST">All VeraCrypt volumes must be dismounted before installing or uninstalling VeraCrypt.</entry> + <entry lang="en" key="UNMOUNT_ALL_FIRST">All VeraCrypt volumes must be unmounted 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> @@ -905,3 +905,3 @@ <entry lang="fa" key="OPEN">باز کردن</entry> - <entry lang="en" key="DISMOUNT">Dismount</entry> + <entry lang="en" key="UNMOUNT">Unmount</entry> <entry lang="en" key="SHOW_TC">Show VeraCrypt</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">Please dismount the volume before proceeding.</entry> + <entry lang="en" key="UNMOUNT_FIRST">Please unmount the volume before proceeding.</entry> <entry lang="en" key="CANNOT_SET_TIMER">Error: Cannot set timer.</entry> @@ -999,3 +999,3 @@ <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 dismount 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 unmount the volume.</entry> <entry lang="fa" key="HOMEPAGE">صفحه اصلی</entry> @@ -1008,10 +1008,10 @@ <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 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="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="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_DISMOUNT_ALL">Dismount All</entry> + <entry lang="en" key="HK_UNMOUNT_ALL">Unmount All</entry> <entry lang="en" key="HK_WIPE_CACHE">Wipe Cache</entry> - <entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All & Wipe Cache</entry> - <entry lang="en" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Force Dismount All & Wipe Cache</entry> - <entry lang="en" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Force Dismount All, Wipe Cache & Exit</entry> + <entry lang="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All & Wipe Cache</entry> + <entry lang="en" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Force Unmount All & Wipe Cache</entry> + <entry lang="en" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Force Unmount All, Wipe Cache & Exit</entry> <entry lang="en" key="HK_MOUNT_FAVORITE_VOLUMES">Mount Favorite Volumes</entry> @@ -1027,10 +1027,10 @@ <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_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="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="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> @@ -1042,3 +1042,3 @@ <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' > '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-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">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="fa" key="CONFIRM_EXIT_UNIVERSAL">خروج؟</entry> @@ -1065,3 +1065,3 @@ <entry lang="en" key="MOUNT_TC_VOLUME">Mount VeraCrypt volume</entry> - <entry lang="en" key="DISMOUNT_ALL_TC_VOLUMES">Dismount all VeraCrypt volumes</entry> + <entry lang="en" key="UNMOUNT_ALL_TC_VOLUMES">Unmount all VeraCrypt volumes</entry> <entry lang="en" key="UAC_INIT_ERROR">VeraCrypt failed to obtain Administrator privileges.</entry> @@ -1287,4 +1287,4 @@ <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 '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="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="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry> @@ -1294,6 +1294,6 @@ <entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &Device and Mount...</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="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount 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 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="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="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> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <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="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry> <entry lang="en" key="DISK_FREE">Free space available: {0}</entry> @@ -1485,10 +1485,10 @@ <entry lang="en" key="LINUX_SELECT">Se&lect...</entry> - <entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry> + <entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount 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_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</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_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_VC_QUITS">VeraCrypt quits</entry> @@ -1512,3 +1512,3 @@ <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_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_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> @@ -1516,3 +1516,3 @@ <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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry> <entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry> @@ -1524,3 +1524,3 @@ <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_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry> <entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/Translations/Language.fi.xml b/Translations/Language.fi.xml index a8e11418..a6667859 100644 --- a/Translations/Language.fi.xml +++ b/Translations/Language.fi.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="fi" name="Suomi" en-name="Finnish" version="0.4.0" translators="Matti Ruhanen, Jertzukka" /> @@ -137,4 +137,4 @@ <entry lang="fi" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Yleiset asetukset</entry> - <entry lang="fi" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Näytä kuplavihje, kun taltio irrotetaan pikanäppäimellä onnistuneesti</entry> - <entry lang="fi" key="IDC_HK_DISMOUNT_PLAY_SOUND">Toista järjestelmän ilmoitusääni, kun taltio irrotetaan pikanäppäimellä onnistuneesti</entry> + <entry lang="fi" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Näytä kuplavihje, kun taltio irrotetaan pikanäppäimellä onnistuneesti</entry> + <entry lang="fi" key="IDC_HK_UNMOUNT_PLAY_SOUND">Toista järjestelmän ilmoitusääni, kun taltio irrotetaan pikanäppäimellä onnistuneesti</entry> <entry lang="fi" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="fi" key="IDC_PREF_CACHE_PASSWORDS">Tallenna salasanat ajurin välimuistiin</entry> - <entry lang="fi" key="IDC_PREF_DISMOUNT_INACTIVE">Irrota taltio automaattisesti kun dataa ei ole luettu/kirjoitettu aikaan</entry> - <entry lang="fi" key="IDC_PREF_DISMOUNT_LOGOFF">Käyttäjän uloskirjautuessa</entry> - <entry lang="fi" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">Käyttäjän istunnon lukkiutuessa</entry> - <entry lang="fi" key="IDC_PREF_DISMOUNT_POWERSAVING">Siirryttäessä virransäästötilaan</entry> - <entry lang="fi" key="IDC_PREF_DISMOUNT_SCREENSAVER">Siirtyessä näytönsäästäjään</entry> - <entry lang="fi" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Pakota automaattinen irrottaminen vaikka taltiolla olisi avoimia tiedostoja tai hakemistoja</entry> + <entry lang="fi" key="IDC_PREF_UNMOUNT_INACTIVE">Irrota taltio automaattisesti kun dataa ei ole luettu/kirjoitettu aikaan</entry> + <entry lang="fi" key="IDC_PREF_UNMOUNT_LOGOFF">Käyttäjän uloskirjautuessa</entry> + <entry lang="fi" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">Käyttäjän istunnon lukkiutuessa</entry> + <entry lang="fi" key="IDC_PREF_UNMOUNT_POWERSAVING">Siirryttäessä virransäästötilaan</entry> + <entry lang="fi" key="IDC_PREF_UNMOUNT_SCREENSAVER">Siirtyessä näytönsäästäjään</entry> + <entry lang="fi" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Pakota automaattinen irrottaminen vaikka taltiolla olisi avoimia tiedostoja tai hakemistoja</entry> <entry lang="fi" key="IDC_PREF_LOGON_MOUNT_DEVICES">Liitä kaikki laiteisännöidyt VeraCrypt-taltiot</entry> @@ -171,3 +171,3 @@ <entry lang="fi" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Käytä erilaista työkalupalkin kuvaketta kun taltioita on liitettynä</entry> - <entry lang="fi" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Tyhjennä välimuistiin tallennetut salasanat automaattisissa irrottamisissa</entry> + <entry lang="fi" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Tyhjennä välimuistiin tallennetut salasanat automaattisissa irrottamisissa</entry> <entry lang="fi" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Pyyhi tallennetut salasanat suljettaessa</entry> @@ -271,4 +271,4 @@ <entry lang="fi" key="IDT_AUTORUN">Automaattisen käynnistyksen konfiguraatio (autorun.inf)</entry> - <entry lang="fi" key="IDT_AUTO_DISMOUNT">Automaattinen irrottaminen</entry> - <entry lang="fi" key="IDT_AUTO_DISMOUNT_ON">Irrota kaikki:</entry> + <entry lang="fi" key="IDT_AUTO_UNMOUNT">Automaattinen irrottaminen</entry> + <entry lang="fi" key="IDT_AUTO_UNMOUNT_ON">Irrota kaikki:</entry> <entry lang="fi" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Käynnistysohjelmiston näytön asetukset</entry> @@ -278,3 +278,3 @@ <entry lang="fi" key="IDT_DEFAULT_MOUNT_OPTIONS">Liittämisen oletusasetukset</entry> - <entry lang="fi" key="IDT_DISMOUNT_ACTION">Pikanäppäinten asetukset</entry> + <entry lang="fi" key="IDT_UNMOUNT_ACTION">Pikanäppäinten asetukset</entry> <entry lang="fi" key="IDT_DRIVER_OPTIONS">Ajurien asetukset</entry> @@ -425,4 +425,4 @@ <entry lang="fi" key="DEVICE_IN_USE_INPLACE_ENC">Varoitus: Osio on käyttöjärjestelmän tai sovelluksien käytössä. Sinun tulee sulkea kaikki sovellukset jotka mahdollisesti käyttävät osiota (mukaanlukien antivirusohjelmisto).\n\nJatketaanko?</entry> - <entry lang="fi" key="FORMAT_CANT_DISMOUNT_FILESYS">Virhe: Laite/osio sisältää tiedostojärjestelmän jota ei voida irrottaa. Tiedostojärjestelmä saattaa olla käyttöjärjestelmän käytössä. Laitteen/osion alustaminen suurella todennäköisyydellä aiheuttaa datan vioittumisen ja järjestelmän epävakauden.\n\nOngelman ratkaisemiseksi, suosittelemme, että ensiksi poistat osion ja luot sen uudelleen ilman alustusta. Näin tehdäksesi, seuraa vaiheita: 1) Klikkaa hiiren oikealla 'Tämä tietokone' (tai 'My Computer') ikonia 'Käynnistä' menusta ja valitse 'Hallitse'. 'Tietokone hallinta' ikkuna ilmestyy. 2) 'Tietokoneen hallinta' -ikkunassa, valitse 'Storage' > 'Disk Management'. 3) Klikkaa hiiren oikealla osio jonka haluat salata ja valitse joko 'Poista Osio', tai 'Poista Taltio', tai 'Poista Looginen Asema'. 4) Paina 'Kyllä'. Jos Windows pyytää sinua käynnistämään tietokoneen uudelleen, tee niin. Sitten toista kohdat 1 ja 2 ja jatka kohtaan 5. 5) Klikkaa hiiren oikealla allokoimaton/vapaa tilan alue ja valitse joko 'Uusi Osio', tai 'Uusi Yksinkertainen Taltio', tai 'Uusi Looginen Asema'. 6) 'Uuden Osio Ohjattutoiminto' tai 'Uuden Yksinkertaisen Taltion Ohjattutoiminto' ikkuna pitäisi nyt ilmestyä; seuraa sen ohjeita. Ohjattutoiminto sivulla nimetty 'Alusta Osio', valitse joko 'Älä alusta tätä osiota' tai 'Älä alusta tätä taltiota'. Samassa opastuksessa, paina 'Seuraava' ja sitten 'Valmis'. 7) Huomioi, että laitteen polku jonka valitsit VeraCryptissä voi nyt olla väärä. Tästä johtuen, poistu VeraCrypt-ohjelman Opastetusta Taltion Luonnista (jos se edelleen auki) ja aloita uudelleen. 8) Yritä salata laite/osio uudelleen.\n\nJos VeraCrypt toistuvasti epäonnistuu laitteen/osion salauksessa, kannattaa harkita tiedostosäilön luomista sen sijaan.</entry> - <entry lang="fi" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Virhe: Tiedostojärjestelmää ei voitu lukita ja/tai irrottaa. Se saattaa olla käyttöjärjestelmän tai sovelluksien (esimerkiksi, virustentorjuntaohjelmiston) käytössä. Osion salaus saattaa aiheuttaa korruptoitumisen ja järjestelmän epävakauden.\n\nOle hyvä ja sulje sovellukset jotka saattavat olla tiedostojärjestelmän käytössä (ml. virustentorjuntaohjelman) ja yritä uudelleen. Jos tämä ei auta, ole hyvä ja seuraa alla olevia ohjeita.</entry> + <entry lang="fi" key="FORMAT_CANT_UNMOUNT_FILESYS">Virhe: Laite/osio sisältää tiedostojärjestelmän jota ei voida irrottaa. Tiedostojärjestelmä saattaa olla käyttöjärjestelmän käytössä. Laitteen/osion alustaminen suurella todennäköisyydellä aiheuttaa datan vioittumisen ja järjestelmän epävakauden.\n\nOngelman ratkaisemiseksi, suosittelemme, että ensiksi poistat osion ja luot sen uudelleen ilman alustusta. Näin tehdäksesi, seuraa vaiheita: 1) Klikkaa hiiren oikealla 'Tämä tietokone' (tai 'My Computer') ikonia 'Käynnistä' menusta ja valitse 'Hallitse'. 'Tietokone hallinta' ikkuna ilmestyy. 2) 'Tietokoneen hallinta' -ikkunassa, valitse 'Storage' > 'Disk Management'. 3) Klikkaa hiiren oikealla osio jonka haluat salata ja valitse joko 'Poista Osio', tai 'Poista Taltio', tai 'Poista Looginen Asema'. 4) Paina 'Kyllä'. Jos Windows pyytää sinua käynnistämään tietokoneen uudelleen, tee niin. Sitten toista kohdat 1 ja 2 ja jatka kohtaan 5. 5) Klikkaa hiiren oikealla allokoimaton/vapaa tilan alue ja valitse joko 'Uusi Osio', tai 'Uusi Yksinkertainen Taltio', tai 'Uusi Looginen Asema'. 6) 'Uuden Osio Ohjattutoiminto' tai 'Uuden Yksinkertaisen Taltion Ohjattutoiminto' ikkuna pitäisi nyt ilmestyä; seuraa sen ohjeita. Ohjattutoiminto sivulla nimetty 'Alusta Osio', valitse joko 'Älä alusta tätä osiota' tai 'Älä alusta tätä taltiota'. Samassa opastuksessa, paina 'Seuraava' ja sitten 'Valmis'. 7) Huomioi, että laitteen polku jonka valitsit VeraCryptissä voi nyt olla väärä. Tästä johtuen, poistu VeraCrypt-ohjelman Opastetusta Taltion Luonnista (jos se edelleen auki) ja aloita uudelleen. 8) Yritä salata laite/osio uudelleen.\n\nJos VeraCrypt toistuvasti epäonnistuu laitteen/osion salauksessa, kannattaa harkita tiedostosäilön luomista sen sijaan.</entry> + <entry lang="fi" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Virhe: Tiedostojärjestelmää ei voitu lukita ja/tai irrottaa. Se saattaa olla käyttöjärjestelmän tai sovelluksien (esimerkiksi, virustentorjuntaohjelmiston) käytössä. Osion salaus saattaa aiheuttaa korruptoitumisen ja järjestelmän epävakauden.\n\nOle hyvä ja sulje sovellukset jotka saattavat olla tiedostojärjestelmän käytössä (ml. virustentorjuntaohjelman) ja yritä uudelleen. Jos tämä ei auta, ole hyvä ja seuraa alla olevia ohjeita.</entry> <entry lang="fi" key="DEVICE_IN_USE_INFO">VAROITUS: Jotkin liitetyt laitteet/osiot ovat jo käytössä!\n\nTämän huomiotta jättäminen saattaa aiheuttaa epätoivottuja vaikutuksia ja järjestelmän epävakautta.\n\nSuosittelemme vakavasti että suljet kaikki sovellukset jotka mahdollisesti käyttävät tätä laitetta/osiota.</entry> @@ -592,3 +592,3 @@ <entry lang="fi" key="OPENFILES_LOCK">Taltiota ei voida lukita, sillä se sisältää vielä avoimia tiedostoja. Tästä johtuen sitä ei voida irrottaa.</entry> - <entry lang="fi" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt ei voi lukita taltiota, koska se on järjestelmän tai muiden ohjelmien käytössä (taltiolla saattaa olla avoimia tiedostoja).\n\nHaluatko pakottaa taltion irrottamisen?</entry> + <entry lang="fi" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt ei voi lukita taltiota, koska se on järjestelmän tai muiden ohjelmien käytössä (taltiolla saattaa olla avoimia tiedostoja).\n\nHaluatko pakottaa taltion irrottamisen?</entry> <entry lang="fi" key="OPEN_VOL_TITLE">Valitse VeraCrypt-taltio</entry> @@ -731,3 +731,3 @@ <entry lang="fi" key="CANT_MOUNT_VOLUME">Taltiota ei voida liittää.</entry> - <entry lang="fi" key="CANT_DISMOUNT_VOLUME">Taltiota ei voida irrottaa.</entry> + <entry lang="fi" key="CANT_UNMOUNT_VOLUME">Taltiota ei voida irrottaa.</entry> <entry lang="fi" key="FORMAT_NTFS_FAILED">Windows epäonnistui alustamaan taltiota NTFS/exFAT/ReFS.\n\nValitse toinen tiedostojärjestelmän tyyppi (jos mahdollista) ja yritä uudelleen. Vaihtoehtoisesti voit jättää taltio alustamatta (valitse 'Ei mitään' tiedostojärjestelmäksi), poistu tästä opastetusta toiminnosta, liitä taltio, ja sitten käytä joko järjestelmän tai kolmannen osapuolen työkalua alustaaksesi liitetyn taltion (asema pysyy yhä salattuna).</entry> @@ -773,3 +773,3 @@ <entry lang="fi" key="INPLACE_DEC_GENERIC_ERR">Virhe esti VeraCryptiä purkamasta taltion salausta. Yritä korjata kaikki aikaisemmin ilmoitetut ongelmat ja yritä sitten uudelleen, jos mahdollista.</entry> - <entry lang="fi" key="CANT_DISMOUNT_OUTER_VOL">Virhe: Ulompaa taltiota ei voida irrottaa!\n\nTaltiolta ei voida irrottaa jos se sisältää tiedostoja tai hakemistoja, jotka ovat jonkin ohjelman tai järjestelmän käytössä.\n\nSulje ohjelmat jotka mahdollisesti käyttävät tiedostoja tai hakemistoja taltiolta ja paina Yritä uudelleen.</entry> + <entry lang="fi" key="CANT_UNMOUNT_OUTER_VOL">Virhe: Ulompaa taltiota ei voida irrottaa!\n\nTaltiolta ei voida irrottaa jos se sisältää tiedostoja tai hakemistoja, jotka ovat jonkin ohjelman tai järjestelmän käytössä.\n\nSulje ohjelmat jotka mahdollisesti käyttävät tiedostoja tai hakemistoja taltiolta ja paina Yritä uudelleen.</entry> <entry lang="fi" key="CANT_GET_OUTER_VOL_INFO">Virhe: Ulomman taltion tietoja ei voida noutaa!\nTaltion luontia ei voida jatkaa.</entry> @@ -884,3 +884,3 @@ <entry lang="fi" key="CLOSE_TC_FIRST">VeraCryptin laiteajuria ei voitu poistaa käytöstä.\n\nSuljethan kaikki avoimet VeraCrypt ikkunat ensin. Jos tämä ei auta, käynnistä Windows uudelleen ja yritä taas.</entry> - <entry lang="fi" key="DISMOUNT_ALL_FIRST">Kaikki VeraCrypt-taltiot tulee irrottaa ennen VeraCryptin asennusta tai poistoa.</entry> + <entry lang="fi" key="UNMOUNT_ALL_FIRST">Kaikki VeraCrypt-taltiot tulee irrottaa ennen VeraCryptin asennusta tai poistoa.</entry> <entry lang="fi" key="UNINSTALL_OLD_VERSION_FIRST">Tällä järjestelmällä on tällä hetkellä asennettuna vanhentunut VeraCrypt-versio. Se on poistettava ennen kuin voit asentaa tämän uuden VeraCrypt-version.\n\nHeti kun suljet tämän viestikentän, vanhojen versioiden poistaminen käynnistetään. Huomaa, ettei mitään taltiota pureta, kun poistat VeraCryptin. Kun olet poistanut VeraCryptin vanhan version, suorita VeraCryptin uuden version asennusohjelma uudestaan.</entry> @@ -905,3 +905,3 @@ <entry lang="fi" key="OPEN">Avaa</entry> - <entry lang="fi" key="DISMOUNT">Irrota</entry> + <entry lang="fi" key="UNMOUNT">Irrota</entry> <entry lang="fi" key="SHOW_TC">Näytä VeraCrypt</entry> @@ -977,3 +977,3 @@ <entry lang="fi" key="SYS_FAVORITES_REQUIRE_PBA">Järjestelmäosio/asema ei näytä olevan salattu.\n\nJärjestelmän suosikkitaltiot voidaan liittää vain käyttäen käynnistystä edeltävän tunnistautumisen salasanaa. Siksi, voidaksesi käyttää järjestelmän suosikkitaltioita, sinun tulee ensin salata järjestelmäosio/asema.</entry> - <entry lang="fi" key="DISMOUNT_FIRST">Irrota taltio ennen jatkamista.</entry> + <entry lang="fi" key="UNMOUNT_FIRST">Irrota taltio ennen jatkamista.</entry> <entry lang="fi" key="CANNOT_SET_TIMER">Virhe: Ajastinta ei voida asettaa.</entry> @@ -1011,7 +1011,7 @@ <entry lang="fi" key="HK_AUTOMOUNT_DEVICES">Liitä laitteet automaattisesti</entry> - <entry lang="fi" key="HK_DISMOUNT_ALL">Irrota liitetyt taltiot</entry> + <entry lang="fi" key="HK_UNMOUNT_ALL">Irrota liitetyt taltiot</entry> <entry lang="fi" key="HK_WIPE_CACHE">Tyhjennä välimuisti</entry> - <entry lang="fi" key="HK_DISMOUNT_ALL_AND_WIPE">Irrota kaikki & tyhjennä välimuisti</entry> - <entry lang="fi" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Pakota kaikkien liitoksien irrotus & tyhjennä välimuisti</entry> - <entry lang="fi" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Pakota kaikkien irrotus, tyhjennä välimuisti & poistu</entry> + <entry lang="fi" key="HK_UNMOUNT_ALL_AND_WIPE">Irrota kaikki & tyhjennä välimuisti</entry> + <entry lang="fi" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Pakota kaikkien liitoksien irrotus & tyhjennä välimuisti</entry> + <entry lang="fi" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Pakota kaikkien irrotus, tyhjennä välimuisti & poistu</entry> <entry lang="fi" key="HK_MOUNT_FAVORITE_VOLUMES">Liitä suosikkitaltiot</entry> @@ -1027,10 +1027,10 @@ <entry lang="fi" key="HIDDEN_OS_HIBERNATION_PREVENTED">Horrostila on estetty.\n\nVeraCrypt ei tue horrostilaa piilotetulla käyttöjärjestelmällä, joka käyttää lisäkäynnistysosiota. Varmista, että käynnistysosio on jaettu sekä harhautusjärjestelmän osion, että piilotetun järjestelmän kesken. Tietovuotojen ja ongelmien välttämiseksi horrostilasta palatessa, VeraCryptin täytyy estää piilotetun järjestelmän kirjoittamasta jaetulle käynnistysosiolle ja siirtymästä horrostilaan.</entry> - <entry lang="fi" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">VeraCrypt-taltio joka oli liitettynä %c: on nyt irrotettu.</entry> - <entry lang="fi" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt-taltiot on irrotettu.</entry> - <entry lang="fi" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt-taltiot on nyt irrotettu ja salasanat on pyyhitty välimuistista.</entry> - <entry lang="fi" key="SUCCESSFULLY_DISMOUNTED">Onnistuneesti irrotettu</entry> + <entry lang="fi" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">VeraCrypt-taltio joka oli liitettynä %c: on nyt irrotettu.</entry> + <entry lang="fi" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt-taltiot on irrotettu.</entry> + <entry lang="fi" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt-taltiot on nyt irrotettu ja salasanat on pyyhitty välimuistista.</entry> + <entry lang="fi" key="SUCCESSFULLY_UNMOUNTED">Onnistuneesti irrotettu</entry> <entry lang="fi" key="CONFIRM_BACKGROUND_TASK_DISABLED">VAROITUS: Jos VeraCryptin taustaohjelma on poistettu käytöstä, seuraavat toiminnot poistetaan käytöstä:\n\n1) Pikanäppäimet\n2) Automaattinen irrottaminen (esim. kun kirjaudutaan ulos, tahaton isännöivän laitteen irrottaminen, aikakatkaisu jne.)\n3) Suosikkitaltioiden automaattinen liittäminen\n4) Ilmoitukset (esim. kun piilotettu VeraCrypt-taltio suojataan vaurioiden välttämiseksi)\n5) Tehtäväpalkin kuvake\n\nHuom: Voit sulkea taustaohjelman milloin tahansa napsauttamalla VeraCrypt-kuvaketta hiiren oikealla kakkospainikkeella ja valitsemalla 'Poistu'.\n\nHaluatko varmasti poistaa VeraCryptin taustaohjelman käytöstä?</entry> - <entry lang="fi" key="CONFIRM_NO_FORCED_AUTODISMOUNT">VAROITUS: Jos tämä valinta otetaan pois käytöstä, taltioita jotka sisältävät avoimia tiedostoja/hakemistoja ei voida automaattisesti irrottaa.\n\nOletko varma, että haluat ottaa tämän pois käytöstä?</entry> - <entry lang="fi" key="WARN_PREF_AUTO_DISMOUNT">VAROITUS: Taltioita jotka sisältävät avoinna olevia tiedostoja/hakemistoja EI tulla irrottamaan automaattisesti.\n\nVälttääksesi tämän, ota käyttöön tästä dialogi-ikkunasta vaihtoehto: 'Pakota automaattinen irrottaminen vaikka taltiolla olisi avoimia tiedostoja tai hakemistoja'</entry> - <entry lang="fi" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">VAROITUS: Kun kannettavan akun virta on alhainen, Windows saattaa jättää lähettämättä tarkoituksenmukaisia viestejä käynnissä oleville ohjelmistoille, kun tietokone siirtyy virransäästötilaan. Siksi, VeraCrypt saattaa epäonnistua taltioiden automaattisessa irrottamisessa näissä tapauksissa.</entry> + <entry lang="fi" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">VAROITUS: Jos tämä valinta otetaan pois käytöstä, taltioita jotka sisältävät avoimia tiedostoja/hakemistoja ei voida automaattisesti irrottaa.\n\nOletko varma, että haluat ottaa tämän pois käytöstä?</entry> + <entry lang="fi" key="WARN_PREF_AUTO_UNMOUNT">VAROITUS: Taltioita jotka sisältävät avoinna olevia tiedostoja/hakemistoja EI tulla irrottamaan automaattisesti.\n\nVälttääksesi tämän, ota käyttöön tästä dialogi-ikkunasta vaihtoehto: 'Pakota automaattinen irrottaminen vaikka taltiolla olisi avoimia tiedostoja tai hakemistoja'</entry> + <entry lang="fi" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">VAROITUS: Kun kannettavan akun virta on alhainen, Windows saattaa jättää lähettämättä tarkoituksenmukaisia viestejä käynnissä oleville ohjelmistoille, kun tietokone siirtyy virransäästötilaan. Siksi, VeraCrypt saattaa epäonnistua taltioiden automaattisessa irrottamisessa näissä tapauksissa.</entry> <entry lang="fi" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Olet ajastanut osion/taltion salaus- tai salauksen purkuprosessin. Prosessia ei ole vielä suoritettu loppuun.\n\nHaluatko jatkaa prosessia nyt?</entry> @@ -1065,3 +1065,3 @@ <entry lang="fi" key="MOUNT_TC_VOLUME">Liitä VeraCrypt-taltio</entry> - <entry lang="fi" key="DISMOUNT_ALL_TC_VOLUMES">Irrota kaikki VeraCrypt-taltiot</entry> + <entry lang="fi" key="UNMOUNT_ALL_TC_VOLUMES">Irrota kaikki VeraCrypt-taltiot</entry> <entry lang="fi" key="UAC_INIT_ERROR">VeraCrypt ei onnistunut saamaan järjestelmänvalvojan oikeuksia.</entry> @@ -1308,4 +1308,4 @@ <entry lang="fi" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">VAROITUS: Tämä asetus saattaa heikentää suorituskykyä.\n\nHaluatko varmasti käyttää tätä asetusta?</entry> - <entry lang="fi" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Varoitus: VeraCrypt-taltio on automaattisesti irrotettu</entry> - <entry lang="fi" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Ennen kuin fyysisesti irrotat tai sammutat laitteen joka sisältää liitetyn taltion, sinun tulisi aina irrottaa taltio ensin VeraCryptissä.\n\nOdottamaton yhtäkkinen irrotus johtuu yleensä ajoittain oireilevasta viallisesta kaapelista, levystä (kotelo), jne.</entry> + <entry lang="fi" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Varoitus: VeraCrypt-taltio on automaattisesti irrotettu</entry> + <entry lang="fi" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Ennen kuin fyysisesti irrotat tai sammutat laitteen joka sisältää liitetyn taltion, sinun tulisi aina irrottaa taltio ensin VeraCryptissä.\n\nOdottamaton yhtäkkinen irrotus johtuu yleensä ajoittain oireilevasta viallisesta kaapelista, levystä (kotelo), jne.</entry> <entry lang="fi" key="UNSUPPORTED_TRUECRYPT_FORMAT">Tämä taltio luotiin TrueCrypt %x.%x:lla, mutta VeraCrypt tukee vain TrueCrypt-taltioita, jotka on luotu TrueCrypt 6.x/7.x -sarjoilla</entry> @@ -1455,3 +1455,3 @@ <entry lang="fi" key="TASKICON_PREF_OPEN_VOL">Avaa liitetyt taltiot</entry> - <entry lang="fi" key="TASKICON_PREF_DISMOUNT_VOL">Irrota liitetyt taltiot</entry> + <entry lang="fi" key="TASKICON_PREF_UNMOUNT_VOL">Irrota liitetyt taltiot</entry> <entry lang="fi" key="DISK_FREE">Tilaa vapaana: {0}</entry> @@ -1485,6 +1485,6 @@ <entry lang="fi" key="LINUX_SELECT">&Valitse...</entry> - <entry lang="fi" key="LINUX_DISMOUNT_ALL_WHEN">Irrota kaikki taltiot kun</entry> + <entry lang="fi" key="LINUX_UNMOUNT_ALL_WHEN">Irrota kaikki taltiot kun</entry> <entry lang="fi" key="LINUX_ENTERING_POWERSAVING">Järjestelmä on siirtymässä virransäästötilaan</entry> <entry lang="fi" key="LINUX_LOGIN_ACTION">Suoritettavat toiminnot kun käyttäjä kirjautuu sisään</entry> - <entry lang="fi" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Sulje kaikki irrotettavan taltion tiedostonhallintaohjelmien ikkunat</entry> + <entry lang="fi" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Sulje kaikki irrotettavan taltion tiedostonhallintaohjelmien ikkunat</entry> <entry lang="fi" key="LINUX_HOTKEYS">Pikanäppäimet</entry> @@ -1492,3 +1492,3 @@ <entry lang="fi" key="LINUX_SOUND_NOTIFICATION">Soita järjestelmän ilmoitusääni liitoksen luomisesta ja poistamisesta</entry> - <entry lang="fi" key="LINUX_CONFIRM_AFTER_DISMOUNT">Näytä varmistus liitoksen poistamisen jälkeen</entry> + <entry lang="fi" key="LINUX_CONFIRM_AFTER_UNMOUNT">Näytä varmistus liitoksen poistamisen jälkeen</entry> <entry lang="fi" key="LINUX_VC_QUITS">VeraCrypt sammuu</entry> @@ -1524,3 +1524,3 @@ <entry lang="fi" key="LINUX_KERNEL_OLD">Järjestelmässäsi on käytössä vanha Linux-ydin.\n\nLinux-ytimessä olevan vian vuoksi järjestelmäsi voi lakata vastaamasta kirjoittaessasi dataa VeraCrypt taltioon. Tämä ongelma voidaan ratkaista päivittämällä Linux-ydin versioon 2.6.24 tai uudempaan.</entry> - <entry lang="fi" key="LINUX_VOL_DISMOUNTED">Taltion {0} liitos on poistettu.</entry> + <entry lang="fi" key="LINUX_VOL_UNMOUNTED">Taltion {0} liitos on poistettu.</entry> <entry lang="fi" key="LINUX_VOL_MOUNTED">Taltio {0} on liitetty.</entry> @@ -1643,2 +1643,5 @@ <entry lang="fi" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">VAROITUS: Taltion pääavaimessa on tietoturvahaavoittuvuus.</entry> + <entry lang="fi" key="MOUNTPOINT_BLOCKED">VIRHE: Taltion liitoskohta on estetty, koska se korvaa suojatun järjestelmäkansion.\n\nValitse toinen liitoskohta.</entry> + <entry lang="fi" key="MOUNTPOINT_NOTALLOWED">VIRHE: Taltion liitoskohta ei ole sallittu, koska se korvaa PATH-ympäristömuuttujaan kuuluvan sijainnin.\n\nValitse toinen liitoskohta.</entry> + <entry lang="fi" key="INSECURE_MODE">[EPÄTURVALLINEN TILA]</entry> </localization> diff --git a/Translations/Language.fr.xml b/Translations/Language.fr.xml index 35db5c14..b23493d3 100644 --- a/Translations/Language.fr.xml +++ b/Translations/Language.fr.xml @@ -2,4 +2,4 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> - <language langid="fr" name="Français" en-name="French" version="0.3.0" translators="Stéphane S., Olivier M., Thierry T" /> + <localization prog-version= "1.26.20"> + <language langid="fr" name="Français" en-name="French" version="0.3.0" translators="Stéphane S., Olivier M., Thierry T, Mounir IDRASSI" /> <font lang="fr" class="normal" size="11" face="default" /> @@ -137,4 +137,4 @@ <entry lang="fr" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Paramètres globaux</entry> - <entry lang="fr" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Afficher une infobulle après un démontage par raccourci réussi</entry> - <entry lang="fr" key="IDC_HK_DISMOUNT_PLAY_SOUND">Jouer un son de notification système après un démontage par raccourci réussi</entry> + <entry lang="fr" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Afficher une infobulle après un démontage par raccourci réussi</entry> + <entry lang="fr" key="IDC_HK_UNMOUNT_PLAY_SOUND">Jouer un son de notification système après un démontage par raccourci réussi</entry> <entry lang="fr" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="fr" key="IDC_PREF_CACHE_PASSWORDS">Mots de passe en cache</entry> - <entry lang="fr" key="IDC_PREF_DISMOUNT_INACTIVE">Démontage automatique quand aucune donnée n’a été lue/écrite durant</entry> - <entry lang="fr" key="IDC_PREF_DISMOUNT_LOGOFF">L’utilisateur se déconnecte</entry> - <entry lang="fr" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">L’utilisateur verrouille la session</entry> - <entry lang="fr" key="IDC_PREF_DISMOUNT_POWERSAVING">Le PC passe en mise en veille</entry> - <entry lang="fr" key="IDC_PREF_DISMOUNT_SCREENSAVER">L’écran de veille est activé</entry> - <entry lang="fr" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Forcer le démontage automatique même s’il y a encore des fichiers ouverts</entry> + <entry lang="fr" key="IDC_PREF_UNMOUNT_INACTIVE">Démontage automatique quand aucune donnée n’a été lue/écrite durant</entry> + <entry lang="fr" key="IDC_PREF_UNMOUNT_LOGOFF">L’utilisateur se déconnecte</entry> + <entry lang="fr" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">L’utilisateur verrouille la session</entry> + <entry lang="fr" key="IDC_PREF_UNMOUNT_POWERSAVING">Le PC passe en mise en veille</entry> + <entry lang="fr" key="IDC_PREF_UNMOUNT_SCREENSAVER">L’écran de veille est activé</entry> + <entry lang="fr" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Forcer le démontage automatique même s’il y a encore des fichiers ouverts</entry> <entry lang="fr" key="IDC_PREF_LOGON_MOUNT_DEVICES">Monter tous les volumes VeraCrypt</entry> @@ -171,3 +171,3 @@ <entry lang="fr" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Utiliser une icône de barre des tâches différente quand il y a des volumes montés</entry> - <entry lang="fr" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Vider le cache des mots de passe au démontage</entry> + <entry lang="fr" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Vider le cache des mots de passe au démontage</entry> <entry lang="fr" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Vider le cache des mots de passe en quittant</entry> @@ -271,4 +271,4 @@ <entry lang="fr" key="IDT_AUTORUN">Configuration de l’exécution automatique (autorun.inf)</entry> - <entry lang="fr" key="IDT_AUTO_DISMOUNT">Démontage automatique</entry> - <entry lang="fr" key="IDT_AUTO_DISMOUNT_ON">Tout démonter si :</entry> + <entry lang="fr" key="IDT_AUTO_UNMOUNT">Démontage automatique</entry> + <entry lang="fr" key="IDT_AUTO_UNMOUNT_ON">Tout démonter si :</entry> <entry lang="fr" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Options de l’écran du chargeur d’amorçage</entry> @@ -278,3 +278,3 @@ <entry lang="fr" key="IDT_DEFAULT_MOUNT_OPTIONS">Options de montage par défaut</entry> - <entry lang="fr" key="IDT_DISMOUNT_ACTION">Options de raccourci</entry> + <entry lang="fr" key="IDT_UNMOUNT_ACTION">Options de raccourci</entry> <entry lang="fr" key="IDT_DRIVER_OPTIONS">Configuration du pilote</entry> @@ -425,4 +425,4 @@ <entry lang="fr" key="DEVICE_IN_USE_INPLACE_ENC">AVERTISSEMENT : La partition est utilisée par le système ou une application. Vous devriez fermer toute application qui pourrait utiliser la partition (logiciel antivirus inclus).\n\nContinuer ?</entry> - <entry lang="fr" key="FORMAT_CANT_DISMOUNT_FILESYS">Erreur : Le périphérique/la partition contient un système de fichiers qui n’a pas pu être démonté. Le système de fichiers peut être utilisé par le système d’exploitation. Formater le périphérique/la partition peut conduire à la corruption des données et à l’instabilité du système.\n\n Pour résoudre ce problème, il est recommandé de supprimer la partition puis de la recréer sans la formater. Pour ce faire, faites comme suit : 1) Cliquez-droit sur ’Poste de Travail’, sélectionnez ’Gérer’. La fenêtre ’Gestion de l’ordinateur’ devrait apparaître. 2) Dans ’Gestion de l’ordinateur’ sélectionnez ’Stockage’ > ’Gestion des disques’. 3) Cliquez-droit sur la partition à chiffrer puis choisissez soit ’Supprimer la partition’ soit ’Supprimer le volume’ ou ’Supprimer le disque logique’. 4) Cliquez ’Oui’. Si Windows propose de redémarrer, faites-le. Puis répétez les étapes 1 et 2 puis continuez à partir de l’étape 5. 5) Cliquez-droit sur l’espace libre et choisissez soit ’Nouvelle partition’ soit ’Nouveau volume simple’ ou ’Nouveau disque logique’. 6) La fenêtre d’un assistant apparaît, suivez ses instructions. Sur la page de l’assistant intitulée ’Formater la partition’ choisissez soit ’Ne pas formater cette partition’ ou ’Ne pas formater ce volume’. Cliquez sur ’Suivant’. Puis sur ’Terminer’. 7) Notez que le chemin du périphérique sélectionné dans VeraCrypt peut être désormais erroné. Aussi quittez l’assistant de création de volume VeraCrypt si besoin est et relancez-le. 8) Dans VeraCrypt, essayez à nouveau de chiffrer le périphérique/la partition.\n\nSi VeraCrypt continue d’échouer lors du chiffrement, pensez alors à créer un fichier conteneur à la place.</entry> - <entry lang="fr" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Erreur : Le système de fichiers ne peut pas être verrouillé ou démonté. Il peut être utilisé par le système d’exploitation ou des applications (comme un logiciel antivirus). Chiffrer la partition pourrait causer une corruption de données et une instabilité du système.\n\nVeuillez fermer toute application pouvant utiliser le système de fichiers et essayez à nouveau. Si cela ne résout pas le problème, veuillez suivre les étapes ci-dessous.</entry> + <entry lang="fr" key="FORMAT_CANT_UNMOUNT_FILESYS">Erreur : Le périphérique/la partition contient un système de fichiers qui n’a pas pu être démonté. Le système de fichiers peut être utilisé par le système d’exploitation. Formater le périphérique/la partition peut conduire à la corruption des données et à l’instabilité du système.\n\n Pour résoudre ce problème, il est recommandé de supprimer la partition puis de la recréer sans la formater. Pour ce faire, faites comme suit : 1) Cliquez-droit sur ’Poste de Travail’, sélectionnez ’Gérer’. La fenêtre ’Gestion de l’ordinateur’ devrait apparaître. 2) Dans ’Gestion de l’ordinateur’ sélectionnez ’Stockage’ > ’Gestion des disques’. 3) Cliquez-droit sur la partition à chiffrer puis choisissez soit ’Supprimer la partition’ soit ’Supprimer le volume’ ou ’Supprimer le disque logique’. 4) Cliquez ’Oui’. Si Windows propose de redémarrer, faites-le. Puis répétez les étapes 1 et 2 puis continuez à partir de l’étape 5. 5) Cliquez-droit sur l’espace libre et choisissez soit ’Nouvelle partition’ soit ’Nouveau volume simple’ ou ’Nouveau disque logique’. 6) La fenêtre d’un assistant apparaît, suivez ses instructions. Sur la page de l’assistant intitulée ’Formater la partition’ choisissez soit ’Ne pas formater cette partition’ ou ’Ne pas formater ce volume’. Cliquez sur ’Suivant’. Puis sur ’Terminer’. 7) Notez que le chemin du périphérique sélectionné dans VeraCrypt peut être désormais erroné. Aussi quittez l’assistant de création de volume VeraCrypt si besoin est et relancez-le. 8) Dans VeraCrypt, essayez à nouveau de chiffrer le périphérique/la partition.\n\nSi VeraCrypt continue d’échouer lors du chiffrement, pensez alors à créer un fichier conteneur à la place.</entry> + <entry lang="fr" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Erreur : Le système de fichiers ne peut pas être verrouillé ou démonté. Il peut être utilisé par le système d’exploitation ou des applications (comme un logiciel antivirus). Chiffrer la partition pourrait causer une corruption de données et une instabilité du système.\n\nVeuillez fermer toute application pouvant utiliser le système de fichiers et essayez à nouveau. Si cela ne résout pas le problème, veuillez suivre les étapes ci-dessous.</entry> <entry lang="fr" key="DEVICE_IN_USE_INFO">AVERTISSEMENT : Certains périphériques/partitions étaient déjà en cours d’utilisation !\n\nL’ignorer peut causer des résultats indésirables.\n\nNous vous recommandons de fermer toutes les applications pouvant utiliser les périphériques/les partitions.</entry> @@ -592,3 +592,3 @@ <entry lang="fr" key="OPENFILES_LOCK">Impossible de verrouiller le volume. Il y a encore des fichiers ouverts sur le volume. Aussi il ne sera pas démonté.</entry> - <entry lang="fr" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt ne peut pas verrouiller le volume car il est utilisé par le système ou des applications (il peut y avoir des fichiers ouverts sur le volume).\n\n Voulez-vous forcer pour le démontage du volume ?</entry> + <entry lang="fr" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt ne peut pas verrouiller le volume car il est utilisé par le système ou des applications (il peut y avoir des fichiers ouverts sur le volume).\n\n Voulez-vous forcer pour le démontage du volume ?</entry> <entry lang="fr" key="OPEN_VOL_TITLE">Sélectionner un volume VeraCrypt</entry> @@ -731,3 +731,3 @@ <entry lang="fr" key="CANT_MOUNT_VOLUME">Impossible de monter le volume.</entry> - <entry lang="fr" key="CANT_DISMOUNT_VOLUME">Impossible de démonter le volume.</entry> + <entry lang="fr" key="CANT_UNMOUNT_VOLUME">Impossible de démonter le volume.</entry> <entry lang="fr" key="FORMAT_NTFS_FAILED">Windows n’a pas pu formater le volume en NTFS/exFAT.\n\nSélectionnez un type de système de fichiers différent (si possible) et essayez à nouveau. Vous pouvez aussi laisser le volume non formaté (sélectionnez ’Aucun’ comme système de fichiers), quittez cet assistant, montez le volume puis utilisez soit un outil système soit un outil tiers pour formater le volume monté (le volume restera chiffré).</entry> @@ -773,3 +773,3 @@ <entry lang="fr" key="INPLACE_DEC_GENERIC_ERR">Une erreur a empêché VeraCrypt de déchiffrer le volume. Essayez de résoudre les problèmes référencés antérieurement puis essayez à nouveau si possible.</entry> - <entry lang="fr" key="CANT_DISMOUNT_OUTER_VOL">Erreur : Impossible de démonter le volume externe !\n\nLe volume ne peut pas être démonté s’il contient des fichiers ou des dossiers utilisés par le système ou par une application.\n\nFermez tout programme qui utilise les fichiers ou les dossiers sur le volume puis cliquez sur ’Recommencer’.</entry> + <entry lang="fr" key="CANT_UNMOUNT_OUTER_VOL">Erreur : Impossible de démonter le volume externe !\n\nLe volume ne peut pas être démonté s’il contient des fichiers ou des dossiers utilisés par le système ou par une application.\n\nFermez tout programme qui utilise les fichiers ou les dossiers sur le volume puis cliquez sur ’Recommencer’.</entry> <entry lang="fr" key="CANT_GET_OUTER_VOL_INFO">Erreur : Impossible d’obtenir des informations sur le volume externe ! La création du volume ne peut pas continuer.</entry> @@ -884,3 +884,3 @@ <entry lang="fr" key="CLOSE_TC_FIRST">Le pilote de périphérique VeraCrypt n’a pas pu être déchargé.\n\nFermez toutes les fenêtres VeraCrypt en premier. Si cela n’aide pas, redémarrez Windows et essayez à nouveau.</entry> - <entry lang="fr" key="DISMOUNT_ALL_FIRST">Tous les volumes VeraCrypt doivent être démontés avant d’installer ou de désinstaller VeraCrypt.</entry> + <entry lang="fr" key="UNMOUNT_ALL_FIRST">Tous les volumes VeraCrypt doivent être démontés avant d’installer ou de désinstaller VeraCrypt.</entry> <entry lang="fr" key="UNINSTALL_OLD_VERSION_FIRST">Une version obsolète de VeraCrypt est installée sur ce système. Elle doit être désinstallée avant d’installer cette nouvelle version de VeraCrypt.\n\nDès que vous fermerez ce message, le programme de désinstallation de l’ancienne version sera lancé. Notez qu’aucun volume n’est déchiffré lorsque vous désinstallez VeraCrypt. Après avoir désinstallé l’ancienne version de VeraCrypt, réexécutez le programme d’installation de la nouvelle version de VeraCrypt.</entry> @@ -905,3 +905,3 @@ <entry lang="fr" key="OPEN">Ouvrir</entry> - <entry lang="fr" key="DISMOUNT">Démonter</entry> + <entry lang="fr" key="UNMOUNT">Démonter</entry> <entry lang="fr" key="SHOW_TC">Montrer VeraCrypt</entry> @@ -977,3 +977,3 @@ <entry lang="fr" key="SYS_FAVORITES_REQUIRE_PBA">La partition/le lecteur système ne semble pas être chiffré.\n\nLes volumes système favoris peuvent être montés en utilisant seulement un mot de passe d’authentification de préamorçage. Par conséquent, pour activer l’utilisation des volumes système favoris, vous devez d’abord chiffrer la partition/le lecteur système.</entry> - <entry lang="fr" key="DISMOUNT_FIRST">Démontez le volume avant de commencer</entry> + <entry lang="fr" key="UNMOUNT_FIRST">Démontez le volume avant de commencer</entry> <entry lang="fr" key="CANNOT_SET_TIMER">Erreur : Impossible de paramétrer l’horloge.</entry> @@ -1011,7 +1011,7 @@ <entry lang="fr" key="HK_AUTOMOUNT_DEVICES">Montage automatique des périphériques</entry> - <entry lang="fr" key="HK_DISMOUNT_ALL">Tout démonter</entry> + <entry lang="fr" key="HK_UNMOUNT_ALL">Tout démonter</entry> <entry lang="fr" key="HK_WIPE_CACHE">Vider le cache</entry> - <entry lang="fr" key="HK_DISMOUNT_ALL_AND_WIPE">Tout démonter et vider le cache</entry> - <entry lang="fr" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Forcer le démontage & vider le cache</entry> - <entry lang="fr" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Forcer le démontage, vider le cache & quitter</entry> + <entry lang="fr" key="HK_UNMOUNT_ALL_AND_WIPE">Tout démonter et vider le cache</entry> + <entry lang="fr" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Forcer le démontage & vider le cache</entry> + <entry lang="fr" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Forcer le démontage, vider le cache & quitter</entry> <entry lang="fr" key="HK_MOUNT_FAVORITE_VOLUMES">Monter les volumes favoris</entry> @@ -1027,10 +1027,10 @@ <entry lang="fr" key="HIDDEN_OS_HIBERNATION_PREVENTED">L’hibernation a été empêchée.\n\nVeraCrypt ne supporte pas la mise en veille prolongée sur les systèmes d’exploitation cachés qui utilisent une partition de démarrage supplémentaires. La partition de démarrage est partagée par le leurre et le système caché. Par conséquent, afin d’éviter les fuites de données et les problèmes à la sortie de l’hibernation, VeraCrypt a empêché le système caché d’écrire sur la partition de démarrage partagée et d’hiberner.</entry> - <entry lang="fr" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">Le volume VeraCrypt monté en tant que %c: a été démontée.</entry> - <entry lang="fr" key="MOUNTED_VOLUMES_DISMOUNTED">Les volumes VeraCrypt ont été démontés.</entry> - <entry lang="fr" key="VOLUMES_DISMOUNTED_CACHE_WIPED">Les volumes VeraCrypt ont été démontés et le cache de mot de passe a été nettoyé.</entry> - <entry lang="fr" key="SUCCESSFULLY_DISMOUNTED">Démonté avec succès.</entry> + <entry lang="fr" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">Le volume VeraCrypt monté en tant que %c: a été démontée.</entry> + <entry lang="fr" key="MOUNTED_VOLUMES_UNMOUNTED">Les volumes VeraCrypt ont été démontés.</entry> + <entry lang="fr" key="VOLUMES_UNMOUNTED_CACHE_WIPED">Les volumes VeraCrypt ont été démontés et le cache de mot de passe a été nettoyé.</entry> + <entry lang="fr" key="SUCCESSFULLY_UNMOUNTED">Démonté avec succès.</entry> <entry lang="fr" key="CONFIRM_BACKGROUND_TASK_DISABLED">AVERTISSEMENT : Si la tâche d’arrière-plan VeraCrypt est désactivée, les fonctions suivantes seront désactivées : \n\n1) Les raccourcis clavier\n2) Le démontage automatique des volumes (p. ex., sur fermeture de session, suppression du périphérique hôte involontaire, délai d’attente, etc.)\n3) Montage automatique des volumes préférés\n4) Les notifications (par exemple, les dommages empêchés pour le volume caché) \n5) L’icône de la zone de notification\n\nRemarque : vous pouvez arrêter la tâche d’arrière-plan à tout moment en double-cliquant sur l’icône VeraCrypt située dans la zone de notification et en sélectionnant "Quitter".\n\nÊtes-vous sûr de vouloir désactiver de façon permanente la tâche d’arrière-plan VeraCrypt ?</entry> - <entry lang="fr" key="CONFIRM_NO_FORCED_AUTODISMOUNT">AVERTISSEMENT : Si cette option est désactivée, les volumes contenant des fichiers/des répertoires ouverts ne pourront pas être démontés automatiquement.\n\nÊtes-vous sûr de vouloir désactiver cette option ?</entry> - <entry lang="fr" key="WARN_PREF_AUTO_DISMOUNT">AVERTISSEMENT : Les volumes contenant des fichiers/des répertoires ouverts ne seront PAS démontés automatiquement.\n\nPour éviter cela, activez l’option suivante : ’Forcer le démontage automatique même s’il y a encore des fichiers ouverts’</entry> - <entry lang="fr" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">AVERTISSEMENT : Lorsque la batterie de l’ordinateur portable est faible, Windows peut omettre d’envoyer les messages appropriés pour l’exécution d’applications lorsque l’ordinateur est entré mode économie. Par conséquent, dans un tel cas, VeraCrypt peut ne pas démonter automatiquement les volumes.</entry> + <entry lang="fr" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">AVERTISSEMENT : Si cette option est désactivée, les volumes contenant des fichiers/des répertoires ouverts ne pourront pas être démontés automatiquement.\n\nÊtes-vous sûr de vouloir désactiver cette option ?</entry> + <entry lang="fr" key="WARN_PREF_AUTO_UNMOUNT">AVERTISSEMENT : Les volumes contenant des fichiers/des répertoires ouverts ne seront PAS démontés automatiquement.\n\nPour éviter cela, activez l’option suivante : ’Forcer le démontage automatique même s’il y a encore des fichiers ouverts’</entry> + <entry lang="fr" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">AVERTISSEMENT : Lorsque la batterie de l’ordinateur portable est faible, Windows peut omettre d’envoyer les messages appropriés pour l’exécution d’applications lorsque l’ordinateur est entré mode économie. Par conséquent, dans un tel cas, VeraCrypt peut ne pas démonter automatiquement les volumes.</entry> <entry lang="fr" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Vous avez planifié le processus de chiffrement d’une partition ou d’un volume. Le processus n’a pas encore été terminé.\n\nSouhaitez-vous reprendre le processus maintenant ?</entry> @@ -1065,3 +1065,3 @@ <entry lang="fr" key="MOUNT_TC_VOLUME">Monter un volume VeraCrypt</entry> - <entry lang="fr" key="DISMOUNT_ALL_TC_VOLUMES">Démonter tous les volumes VeraCrypt</entry> + <entry lang="fr" key="UNMOUNT_ALL_TC_VOLUMES">Démonter tous les volumes VeraCrypt</entry> <entry lang="fr" key="UAC_INIT_ERROR">VeraCrypt n’a pas pu obtenir les privilèges d’administrateur.</entry> @@ -1308,4 +1308,4 @@ <entry lang="fr" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">AVERTISSEMENT : Ce paramètre peut nuire aux performances.\n\nÊtes-vous certain de vouloir utiliser ce paramètre ?</entry> - <entry lang="fr" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">AVERTISSEMENT: Volume VeraCrypt auto-démonté</entry> - <entry lang="fr" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Avant de retirer physiquement ou d’éteindre un appareil contenant un volume monté, vous devriez d’abord toujours démonter le volume dans VeraCrypt.\n\nLe démontage spontané inattendue est habituellement causé par un câble se déconnectant par intermittence, disques (rack), etc.</entry> + <entry lang="fr" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">AVERTISSEMENT: Volume VeraCrypt auto-démonté</entry> + <entry lang="fr" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Avant de retirer physiquement ou d’éteindre un appareil contenant un volume monté, vous devriez d’abord toujours démonter le volume dans VeraCrypt.\n\nLe démontage spontané inattendue est habituellement causé par un câble se déconnectant par intermittence, disques (rack), etc.</entry> <entry lang="fr" key="UNSUPPORTED_TRUECRYPT_FORMAT">Ce volume a été créé par TrueCrypt %x.%x mais VeraCrypt supporte seulement les volumes TrueCrypt créés avec les version 6.x/7.x de TrueCrypt</entry> @@ -1450,122 +1450,122 @@ <entry lang="fr" key="CONFIRM_DISABLE_FAST_STARTUP">AVERTISSEMENT: Le démarrage rapide de Windows est activé, ce qui peut causer des problèmes lors de l'utilisation de VeraCrypt. Il est conseillé de le désactiver pour améliorer la sécurité et l'utilisabilité de VeraCrypt.\n\nVoulez-vous désactiver le démarrage rapide de Windows?</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="fr" key="QUICK_FORMAT_HELP">Pour permettre à votre système d'exploitation de monter votre nouveau volume, il doit être formaté avec un système de fichiers. Veuillez sélectionner un type de système de fichiers.\n\nSi votre volume est hébergé sur un appareil ou une partition, vous pouvez utiliser le 'Formatage rapide' pour éviter le chiffrement de l'espace libre du volume.</entry> <entry lang="fr" key="IDC_ENABLE_HARDWARE_ENCRYPTION_NEG">Ne pas utiliser les instructions AES du processeur pour accélérer le chiffrement/déchiffrement AES</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 &using system encryption (preboot authentication)</entry> - <entry lang="en" key="LINUX_DO_NOT_MOUNT">Do &not mount</entry> - <entry lang="en" key="LINUX_MOUNT_AT_DIR">Mount at directory:</entry> - <entry lang="en" key="LINUX_SELECT">Se&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="fr" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">Ajouter tous les volumes montés aux favoris...</entry> + <entry lang="fr" key="TASKICON_PREF_MENU_ITEMS">Éléments du menu de l'icône de tâche</entry> + <entry lang="fr" key="TASKICON_PREF_OPEN_VOL">Ouvrir les volumes montés</entry> + <entry lang="fr" key="TASKICON_PREF_UNMOUNT_VOL">Démonter les volumes montés</entry> + <entry lang="fr" key="DISK_FREE">Espace libre disponible : {0}</entry> + <entry lang="fr" key="VOLUME_SIZE_HELP">Veuillez spécifier la taille du conteneur à créer. Notez que la taille minimale possible d'un volume est de 292 KiB.</entry> + <entry lang="fr" key="LINUX_CONFIRM_INNER_VOLUME_CALC">AVERTISSEMENT : Vous avez sélectionné un système de fichiers autre que FAT pour le volume externe.\nVeuillez noter que dans ce cas, VeraCrypt ne peut pas calculer la taille maximale exacte permise pour le volume caché et n'utilisera qu'une estimation qui peut être incorrecte.\nPar conséquent, il est de votre responsabilité d'utiliser une valeur adéquate pour la taille du volume caché afin qu'il ne chevauche pas le volume externe.\n\nVoulez-vous continuer à utiliser le système de fichiers sélectionné pour le volume externe ?</entry> + <entry lang="fr" key="LINUX_PREF_TAB_SECURITY">Sécurité</entry> + <entry lang="fr" key="LINUX_PREF_TAB_MOUNT_OPTIONS">Options de montage</entry> + <entry lang="fr" key="LINUX_PREF_TAB_BACKGROUND_TASK">Tâche en arrière-plan</entry> + <entry lang="fr" key="LINUX_PREF_TAB_SYSTEM_INTEGRATION">Intégration au système</entry> + <entry lang="fr" key="LINUX_PREF_TAB_SYSTEM_INTEGRATION_EXPLORER">Explorateur de fichiers</entry> + <entry lang="fr" key="LINUX_PREF_TAB_PERFORMANCE">Performance</entry> + <entry lang="fr" key="LINUX_PREF_TAB_KEYFILES">Fichiers-clés</entry> + <entry lang="fr" key="LINUX_PREF_TAB_TOKENS">Jetons de sécurité</entry> + <entry lang="fr" key="LINUX_PREF_KERNEL_SERVICES">Services du noyau</entry> + <entry lang="fr" key="LINUX_PREF_KERNEL_CRYPT">Ne pas utiliser les services cryptographiques du noyau</entry> + <entry lang="fr" key="LINUX_PREF_TAB_MOUNT_OPTIONS_FS">Système de fichiers</entry> + <entry lang="fr" key="IDT_LINUX_PREF_TAB_MOUNT_OPTIONS">Options de montage :</entry> + <entry lang="fr" key="LINUX_CROSS_SUPPORT">Compatibilité multiplateforme</entry> + <entry lang="fr" key="LINUX_CROSS_SUPPORT_OTHER">Je monterai le volume sur d'autres plateformes</entry> + <entry lang="fr" key="LINUX_CROSS_SUPPORT_OTHER_HELP">Choisissez cette option si vous devez utiliser le volume sur d'autres plateformes.</entry> + <entry lang="fr" key="LINUX_CROSS_SUPPORT_ONLY">Je monterai le volume uniquement sur {0}</entry> + <entry lang="fr" key="LINUX_CROSS_SUPPORT_ONLY_HELP">Choisissez cette option si vous n'avez pas besoin d'utiliser le volume sur d'autres plateformes.</entry> + <entry lang="fr" key="LINUX_DESELECT">Désélectionner</entry> + <entry lang="fr" key="LINUX_ADMIN_PW_QUERY">Entrez votre mot de passe utilisateur ou administrateur :</entry> + <entry lang="fr" key="LINUX_ADMIN_PW_QUERY_TITLE">Privilèges administrateur requis</entry> + <entry lang="fr" key="LINUX_VC_RUNNING_ALREADY">VeraCrypt est déjà en cours d'exécution.</entry> + <entry lang="fr" key="LINUX_SYSTEM_ENC_PW_LENGTH_NOTE">Le mot de passe de chiffrement système contient plus de {0} caractères.</entry> + <entry lang="fr" key="LINUX_MOUNT_SYSTEM_ENC_PREBOOT">Monter la partition &en utilisant le chiffrement système (authentification pré-démarrage)</entry> + <entry lang="fr" key="LINUX_DO_NOT_MOUNT">Ne &pas monter</entry> + <entry lang="fr" key="LINUX_MOUNT_AT_DIR">Monter dans le répertoire :</entry> + <entry lang="fr" key="LINUX_SELECT">Sé&lectionner...</entry> + <entry lang="fr" key="LINUX_UNMOUNT_ALL_WHEN">Démonter tous les volumes lorsque</entry> + <entry lang="fr" key="LINUX_ENTERING_POWERSAVING">Le système passe en mode économie d'énergie</entry> + <entry lang="fr" key="LINUX_LOGIN_ACTION">Actions à effectuer lors de la connexion utilisateur</entry> + <entry lang="fr" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Fermer toutes les fenêtres de l'explorateur pour le volume en cours de démontage</entry> + <entry lang="fr" key="LINUX_HOTKEYS">Raccourcis clavier</entry> + <entry lang="fr" key="LINUX_SYSTEM_HOTKEYS">Raccourcis clavier système</entry> + <entry lang="fr" key="LINUX_SOUND_NOTIFICATION">Jouer un son de notification système après le montage/démontage</entry> + <entry lang="fr" key="LINUX_CONFIRM_AFTER_UNMOUNT">Afficher un message de confirmation après le démontage</entry> + <entry lang="fr" key="LINUX_VC_QUITS">VeraCrypt se ferme</entry> + <entry lang="fr" key="LINUX_OPEN_FINDER">Ouvrir une fenêtre Finder pour le volume monté avec succès</entry> + <entry lang="fr" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Notez que ce paramètre prend effet uniquement si l'utilisation des services cryptographiques du noyau est désactivée.</entry> + <entry lang="fr" key="LINUX_DISABLE_KERNEL_CRYPT_CONFIRM">La désactivation de l'utilisation des services cryptographiques du noyau peut entraîner une dégradation des performances.\n\nÊtes-vous sûr(e) ?</entry> + <entry lang="fr" key="LINUX_KERNEL_CRYPT_OPTION_CHANGE_MOUNTED_HINT">Notez que désactiver cette option peut ne pas avoir d'effet sur les volumes montés utilisant les services cryptographiques du noyau.</entry> + <entry lang="fr" key="LINUX_REMOUNT_BECAUSEOF_SETTING">Notez que tous les volumes actuellement montés doivent être démontés puis remontés avant que ce paramètre ne puisse être appliqué.</entry> + <entry lang="fr" key="LINUX_UNKNOWN_EXC_OCCURRED">Une exception inconnue s'est produite.</entry> + <entry lang="fr" key="LINUX_FIRST_AID">L'utilitaire de disque sera lancé après avoir appuyé sur 'OK'.\n\nVeuillez sélectionner votre volume dans la fenêtre de l'utilitaire de disque et cliquer sur le bouton 'Vérifier le disque' ou 'Réparer le disque' dans l'onglet 'Premiers secours'.</entry> <entry lang="fr" key="LINUX_MOUNT_ALL_DEV">Tout Monter</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_VOL_MOUNTED">Volume {0} has been mounted.</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="fr" key="LINUX_ERROR_LOADING_CONFIG">Erreur lors du chargement des fichiers de configuration situés dans </entry> + <entry lang="fr" key="LINUX_SELECT_FREE_SLOT">Veuillez sélectionner un emplacement de lecteur libre dans la liste.</entry> + <entry lang="fr" key="LINUX_MESSAGE_ON_MOUNT_AGAIN">\n\nVoulez-vous afficher ce message lors du prochain montage d'un tel volume ?</entry> + <entry lang="fr" key="LINUX_WARNING">Avertissement</entry> + <entry lang="fr" key="LINUX_ERROR">Erreur</entry> + <entry lang="fr" key="LINUX_ONLY_TEXTMODE">Cette fonctionnalité est actuellement prise en charge uniquement en mode texte.</entry> + <entry lang="fr" key="LINUX_FREE_SPACE_ON_DRIVE">Espace libre sur le lecteur {0} : {1}.</entry> + <entry lang="fr" key="LINUX_DYNAMIC_NOTICE">Notez que si votre système d'exploitation n'alloue pas les fichiers depuis le début de l'espace libre, la taille maximale possible du volume caché peut être bien inférieure à celle de l'espace libre sur le volume externe. Ce n'est pas un bogue de VeraCrypt, mais une limitation du système d'exploitation.</entry> + <entry lang="fr" key="LINUX_MAX_HIDDEN_SIZE">La taille maximale possible du volume caché pour ce volume est de {0}.</entry> + <entry lang="fr" key="LINUX_OPEN_OUTER_VOL">Ouvrir le volume externe</entry> + <entry lang="fr" key="LINUX_OUTER_VOL_IS_MOUNTED">Le volume externe a été créé et monté avec succès sous '{0}'. Sur ce volume, copiez des fichiers sensibles en apparence que vous ne souhaitez PAS réellement cacher. Ces fichiers seront visibles pour toute personne vous forçant à divulguer votre mot de passe. Vous ne révélerez que le mot de passe de ce volume externe, pas celui du volume caché. Les fichiers que vous voulez réellement protéger seront stockés dans le volume caché, qui sera créé ultérieurement. Une fois la copie terminée, cliquez sur Suivant. Ne démontez pas le volume.\n\nRemarque : Après avoir cliqué sur Suivant, le volume externe sera analysé pour déterminer la taille de l'espace libre ininterrompu dont la fin est alignée avec celle du volume. Cet espace accueillera le volume caché, ce qui limitera sa taille maximale possible. Cette procédure garantit qu'aucune donnée du volume externe ne sera écrasée par le volume caché.</entry> + <entry lang="fr" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">Erreur : Vous essayez de chiffrer un disque système.\n\nVeraCrypt ne peut chiffrer un disque système que sous Windows.</entry> + <entry lang="fr" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">Erreur : Vous essayez de chiffrer une partition système.\n\nVeraCrypt ne peut chiffrer les partitions système que sous Windows.</entry> + <entry lang="fr" key="LINUX_WARNING_FORMAT_DESTROY_FS">AVERTISSEMENT : Le formatage de l'appareil détruira toutes les données sur le système de fichiers '{0}'.\n\nVoulez-vous continuer ?</entry> + <entry lang="fr" key="LINUX_MOUNTET_HINT">Le système de fichiers de l'appareil sélectionné est actuellement monté. Veuillez démonter '{0}' avant de continuer.</entry> + <entry lang="fr" key="LINUX_HIDDEN_PASS_NO_DIFF">Le volume caché ne peut pas avoir le même mot de passe, PIM et fichiers-clés que le volume externe.</entry> + <entry lang="fr" key="LINUX_NOT_FAT_HINT">Notez que le volume ne sera pas formaté avec un système de fichiers FAT et, par conséquent, vous pourriez devoir installer des pilotes supplémentaires sur des plateformes autres que {0} pour pouvoir monter le volume.</entry> + <entry lang="fr" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Erreur : Le volume caché à créer est plus grand que {0} To ({1} Go).\n\nSolutions possibles :\n- Créez un conteneur ou une partition plus petit(e) que {0} To.\n</entry> + <entry lang="fr" key="LINUX_MAX_SIZE_HINT">- Utilisez un lecteur avec des secteurs de 4096 octets pour pouvoir créer des volumes cachés jusqu'à 16 To.</entry> + <entry lang="fr" key="LINUX_DOT_LF">.\n</entry> + <entry lang="fr" key="LINUX_NOT_SUPPORTED"> (non pris en charge par les composants disponibles sur cette plateforme).\n</entry> + <entry lang="fr" key="LINUX_KERNEL_OLD">Votre système utilise une ancienne version du noyau Linux.\n\nEn raison d'un bogue dans le noyau Linux, votre système peut cesser de répondre lors de l'écriture de données sur un volume VeraCrypt. Ce problème peut être résolu en mettant à jour le noyau vers la version 2.6.24 ou ultérieure.</entry> + <entry lang="fr" key="LINUX_VOL_UNMOUNTED">Le volume {0} a été démonté.</entry> + <entry lang="fr" key="LINUX_VOL_MOUNTED">Le volume {0} a été monté.</entry> + <entry lang="fr" key="LINUX_OOM">Mémoire insuffisante.</entry> + <entry lang="fr" key="LINUX_CANT_GET_ADMIN_PRIV">Impossible d'obtenir les privilèges administrateur</entry> + <entry lang="fr" key="LINUX_COMMAND_GET_ERROR">La commande {0} a renvoyé l'erreur {1}.</entry> + <entry lang="fr" key="LINUX_CMD_HELP">Aide en ligne de commande VeraCrypt</entry> + <entry lang="fr" key="LINUX_HIDDEN_FILES_PRESENT_IN_KEYFILE_PATH">\n\nAvertissement : Des fichiers cachés sont présents dans le chemin des fichiers-clés. Pour les utiliser comme fichiers-clés, retirez le point initial de leurs noms. Les fichiers cachés sont visibles uniquement si cette option est activée dans les paramètres système.</entry> + <entry lang="fr" key="LINUX_EX2MSG_DEVICESECTORSIZEMISMATCH">Incompatibilité entre la taille des secteurs de l'appareil de stockage et celle du volume VeraCrypt.</entry> + <entry lang="fr" key="LINUX_EX2MSG_ENCRYPTEDSYSTEMREQUIRED">Cette opération doit être effectuée uniquement lorsque le système hébergé sur le volume est en cours d'exécution.</entry> + <entry lang="fr" key="LINUX_EX2MSG_INSUFFICIENTDATA">Données insuffisantes disponibles.</entry> + <entry lang="fr" key="LINUX_EX2MSG_KERNELCRYPTOSERVICETESTFAILED">Échec du test des services cryptographiques du noyau. Le service cryptographique de votre noyau ne prend probablement pas en charge les volumes de plus de 2 To.\n\nSolutions possibles :\n- Mettez à jour le noyau Linux vers la version 2.6.33 ou ultérieure.\n- Désactivez l'utilisation des services cryptographiques du noyau (Paramètres > Préférences > Intégration du système) ou utilisez l'option de montage 'nokernelcrypto' en ligne de commande.</entry> + <entry lang="fr" key="LINUX_EX2MSG_LOOPDEVICESETUPFAILED">Échec de la configuration de l'appareil en boucle.</entry> + <entry lang="fr" key="LINUX_EX2MSG_MISSINGARGUMENT">Un argument requis est manquant.</entry> + <entry lang="fr" key="LINUX_EX2MSG_MISSINGVOLUMEDATA">Données du volume manquantes.</entry> + <entry lang="fr" key="LINUX_EX2MSG_MOUNTPOINTREQUIRED">Un point de montage est requis.</entry> + <entry lang="fr" key="LINUX_EX2MSG_MOUNTPOINTUNAVAILABLE">Le point de montage est déjà utilisé.</entry> + <entry lang="fr" key="LINUX_EX2MSG_PASSWORDEMPTY">Aucun mot de passe ou fichier-clé spécifié.</entry> + <entry lang="fr" key="LINUX_EX2MSG_PASSWORDORKEYBOARDLAYOUTINCORRECT">\n\nNotez que les mots de passe pour l'authentification avant le démarrage doivent être saisis dans un environnement où les dispositions de clavier non américaines ne sont pas disponibles. Par conséquent, ces mots de passe doivent toujours être saisis en utilisant la disposition standard du clavier américain (sinon, le mot de passe sera incorrect dans la plupart des cas). Cependant, vous n'avez PAS besoin d'un clavier américain réel ; il suffit de changer la disposition du clavier dans votre système d'exploitation.</entry> + <entry lang="fr" key="LINUX_EX2MSG_PASSWORDORMOUNTOPTIONSINCORRECT">\n\nRemarque : Si vous tentez de monter une partition située sur un disque système chiffré sans authentification avant le démarrage ou de monter la partition système chiffrée d'un système d'exploitation qui n'est pas en cours d'exécution, vous pouvez le faire en sélectionnant « Options > » > « Monter la partition en utilisant le chiffrement système ».</entry> + <entry lang="fr" key="LINUX_EX2MSG_PASSWORDTOOLONG">Le mot de passe contient plus de {0} caractères.</entry> + <entry lang="fr" key="LINUX_EX2MSG_PARTITIONDEVICEREQUIRED">Un périphérique de partition est requis.</entry> + <entry lang="fr" key="LINUX_EX2MSG_PROTECTIONPASSWORDINCORRECT">Mot de passe incorrect pour le volume caché protégé ou le volume caché n'existe pas.</entry> + <entry lang="fr" key="LINUX_EX2MSG_PROTECTIONPASSWORDKEYFILESINCORRECT">Fichier(s)-clé(s) ou mot de passe incorrect(s) pour le volume caché protégé, ou le volume caché n'existe pas.</entry> + <entry lang="fr" key="LINUX_EX2MSG_STRINGCONVERSIONFAILED">Caractères invalides rencontrés.</entry> + <entry lang="fr" key="LINUX_EX2MSG_STRINGFORMATTEREXCEPTION">Erreur lors de l'analyse de la chaîne formatée.</entry> + <entry lang="fr" key="LINUX_EX2MSG_TEMPORARYDIRECTORYFAILURE">Échec de la création d'un fichier ou d'un répertoire dans un répertoire temporaire.\n\nVeuillez vérifier que le répertoire temporaire existe, que ses permissions de sécurité vous permettent d'y accéder, et qu'il y a suffisamment d'espace disque.</entry> + <entry lang="fr" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZEHIDDENVOLUMEPROTECTION">Erreur : Le disque utilise une taille de secteur autre que 512 octets.\n\nEn raison des limitations des composants disponibles sur votre plateforme, les volumes externes hébergés sur ce disque ne peuvent pas être montés avec la protection du volume caché.\n\nSolutions possibles :\n- Utilisez un disque avec des secteurs de 512 octets.\n- Créez un volume hébergé dans un fichier (conteneur) sur le disque.\n- Sauvegardez le contenu du volume caché, puis mettez à jour le volume externe.</entry> + <entry lang="fr" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZENOKERNELCRYPTO">Erreur : Le disque utilise une taille de secteur autre que 512 octets.\n\nEn raison des limitations des composants disponibles sur votre plateforme, les volumes hébergés sur une partition ou un périphérique sur ce disque ne peuvent être montés qu'en utilisant les services cryptographiques du noyau.\n\nSolutions possibles :\n- Activez l'utilisation des services cryptographiques du noyau (Préférences > Intégration système).\n- Utilisez un disque avec des secteurs de 512 octets.\n- Créez un volume hébergé dans un fichier (conteneur) sur le disque.</entry> + <entry lang="fr" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Erreur : Le disque utilise une taille de secteur autre que 512 octets.\n\nEn raison des limitations des composants disponibles sur votre plateforme, les volumes hébergés sur une partition ou un périphérique ne peuvent pas être créés/utilisés sur ce disque.\n\nSolutions possibles :\n- Créez un volume hébergé dans un fichier (conteneur) sur le disque.\n- Utilisez un disque avec des secteurs de 512 octets.\n- Utilisez VeraCrypt sur une autre plateforme.</entry> + <entry lang="fr" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">Le fichier/périphérique hôte est déjà utilisé.</entry> + <entry lang="fr" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">L'emplacement du volume est indisponible.</entry> + <entry lang="fr" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt nécessite OSXFUSE 2.5 ou une version ultérieure.</entry> + <entry lang="fr" key="EXCEPTION_OCCURRED">Une exception s'est produite</entry> + <entry lang="fr" key="ENTER_PASSWORD">Entrez le mot de passe</entry> + <entry lang="fr" key="ENTER_TC_VOL_PASSWORD">Entrez le mot de passe du volume VeraCrypt</entry> + <entry lang="fr" key="MOUNT">Monter</entry> + <entry lang="fr" key="MOUNT_POINT">Répertoire de montage</entry> + <entry lang="fr" key="NO_VOLUMES_MOUNTED">Aucun volume monté.</entry> + <entry lang="fr" key="OPEN_NEW_VOLUME">Spécifiez un nouveau volume VeraCrypt</entry> + <entry lang="fr" key="PARAMETER_INCORRECT">Paramètre incorrect</entry> + <entry lang="fr" key="SELECT_KEYFILES">Sélectionnez les fichiers-clés</entry> + <entry lang="fr" key="START_TC">Démarrer VeraCrypt</entry> + <entry lang="fr" key="VOLUME_ALREADY_MOUNTED">Le volume {0} est déjà monté.</entry> + <entry lang="fr" key="UNKNOWN_OPTION">Option inconnue</entry> + <entry lang="fr" key="VOLUME_LOCATION">Emplacement du volume</entry> + <entry lang="fr" key="VOLUME_HOST_IN_USE">AVERTISSEMENT : Le fichier/périphérique hôte {0} est déjà utilisé !\n\nIgnorer cela peut entraîner des résultats indésirables, y compris une instabilité du système. Toutes les applications susceptibles d'utiliser le fichier/périphérique hôte doivent être fermées avant de monter le volume.\n\nContinuer le montage ?</entry> <entry lang="fr" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt a déjà été installé à l'aide d'un package MSI et de ce fait il ne peut pas être mis à jour à l'aide du programme d'installation standard.\n\nVeuillez utiliser le package MSI pour mettre à jour votre installation VeraCrypt.</entry> @@ -1575,64 +1575,64 @@ <entry lang="fr" key="IDM_MOUNT_NO_CACHE">Monter sans 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="fr" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nÉtendre un volume VeraCrypt à la volée sans reformater\n\n\nTous les types de volumes (fichiers conteneurs, disques et partitions) formatés en NTFS sont pris en charge. La seule condition est qu'il y ait suffisamment d'espace libre sur le lecteur ou périphérique hôte du volume VeraCrypt.\n\nN'utilisez pas ce logiciel pour étendre un volume extérieur contenant un volume caché, car cela détruira le volume caché !\n</entry> + <entry lang="fr" key="IDC_STEPSEXPAND">1. Sélectionnez le volume VeraCrypt à étendre\n2. Cliquez sur le bouton « Monter »</entry> + <entry lang="fr" key="IDT_VOL_NAME">Volume : </entry> + <entry lang="fr" key="IDT_FILE_SYS">Système de fichiers : </entry> + <entry lang="fr" key="IDT_CURRENT_SIZE">Taille actuelle : </entry> + <entry lang="fr" key="IDT_NEW_SIZE">Nouvelle taille : </entry> + <entry lang="fr" key="IDT_NEW_SIZE_BOX_TITLE">Entrez la nouvelle taille du volume</entry> + <entry lang="fr" key="IDC_INIT_NEWSPACE">Remplir le nouvel espace avec des données aléatoires</entry> + <entry lang="fr" key="IDC_QUICKEXPAND">Extension rapide</entry> + <entry lang="fr" key="IDT_INIT_SPACE">Remplir le nouvel espace : </entry> + <entry lang="fr" key="EXPANDER_FREE_SPACE">%s d'espace libre disponible sur le lecteur hôte</entry> + <entry lang="fr" key="EXPANDER_HELP_DEVICE">Il s'agit d'un volume VeraCrypt basé sur un périphérique.\n\nLa nouvelle taille du volume sera automatiquement choisie comme étant la taille du périphérique hôte.</entry> + <entry lang="fr" key="EXPANDER_HELP_FILE">Veuillez spécifier la nouvelle taille du volume VeraCrypt (doit être au moins %I64u Ko plus grande que la taille actuelle).</entry> + <entry lang="fr" key="QUICK_EXPAND_WARNING">AVERTISSEMENT : Vous ne devez utiliser l'extension rapide que dans les cas suivants :\n\n1) Le périphérique où le conteneur de fichiers est situé ne contient aucune donnée sensible et vous n'avez pas besoin de déni plausible.\n2) Le périphérique où le conteneur de fichiers est situé a déjà été sécurisé et entièrement chiffré.\n\nÊtes-vous sûr de vouloir utiliser l'extension rapide ?</entry> + <entry lang="fr" key="EXPANDER_STATUS_TEXT">IMPORTANT : Déplacez votre souris de manière aussi aléatoire que possible dans cette fenêtre. Plus vous le ferez longtemps, mieux ce sera. Cela améliore significativement la solidité cryptographique des clés de chiffrement. Cliquez ensuite sur « Continuer » pour étendre le volume.</entry> + <entry lang="fr" key="EXPANDER_STATUS_TEXT_LEGACY">Cliquez sur « Continuer » pour étendre le volume.</entry> + <entry lang="fr" key="EXPANDER_FINISH_ERROR">Erreur : échec de l'extension du volume.</entry> + <entry lang="fr" key="EXPANDER_FINISH_ABORT">Erreur : opération annulée par l'utilisateur.</entry> + <entry lang="fr" key="EXPANDER_FINISH_OK">Terminé. Volume étendu avec succès.</entry> + <entry lang="fr" key="EXPANDER_CANCEL_WARNING">Attention : L'extension du volume est en cours !\n\nL'arrêt maintenant peut entraîner un volume endommagé.\n\nVoulez-vous vraiment annuler ?</entry> + <entry lang="fr" key="EXPANDER_STARTING_STATUS">Démarrage de l'extension du volume...\n</entry> + <entry lang="fr" key="EXPANDER_HIDDEN_VOLUME_ERROR">Un volume extérieur contenant un volume caché ne peut pas être étendu, car cela détruirait le volume caché.\n</entry> + <entry lang="fr" key="EXPANDER_SYSTEM_VOLUME_ERROR">Un volume système VeraCrypt ne peut pas être étendu.</entry> + <entry lang="fr" key="EXPANDER_NO_FREE_SPACE">Pas assez d'espace libre pour étendre le volume</entry> + <entry lang="fr" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Attention : Le fichier conteneur est plus grand que la zone de volume VeraCrypt. Les données après la zone de volume VeraCrypt seront écrasées.\n\nVoulez-vous continuer ?</entry> + <entry lang="fr" key="EXPANDER_WARNING_FAT">Attention : Le volume VeraCrypt contient un système de fichiers FAT !\n\nSeul le volume VeraCrypt lui-même sera étendu, mais pas le système de fichiers.\n\nVoulez-vous continuer ?</entry> + <entry lang="fr" key="EXPANDER_WARNING_EXFAT">Attention : Le volume VeraCrypt contient un système de fichiers exFAT !\n\nSeul le volume VeraCrypt lui-même sera étendu, mais pas le système de fichiers.\n\nVoulez-vous continuer ?</entry> + <entry lang="fr" key="EXPANDER_WARNING_UNKNOWN_FS">Attention : Le volume VeraCrypt contient un système de fichiers inconnu ou aucun système de fichiers !\n\nSeul le volume VeraCrypt lui-même sera étendu, le système de fichiers restera inchangé.\n\nVoulez-vous continuer ?</entry> + <entry lang="fr" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">Nouvelle taille de volume trop petite, doit être au moins %I64u Ko plus grande que la taille actuelle.</entry> + <entry lang="fr" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">Nouvelle taille de volume trop grande, espace insuffisant sur le lecteur hôte.</entry> + <entry lang="fr" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">Taille maximale de fichier de %I64u Mo sur le lecteur hôte dépassée.</entry> + <entry lang="fr" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Erreur : Échec pour obtenir les privilèges nécessaires pour activer l'extension rapide !\nVeuillez décocher l'option extension rapide et réessayer.</entry> + <entry lang="fr" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Taille maximale du volume VeraCrypt de %I64u To dépassée !\n</entry> + <entry lang="fr" key="FULL_FORMAT">Formatage complet</entry> + <entry lang="fr" key="FAST_CREATE">Création rapide</entry> + <entry lang="fr" key="WARN_FAST_CREATE">AVERTISSEMENT : Vous devez utiliser la création rapide uniquement dans les cas suivants :\n\n1) Le périphérique ne contient aucune donnée sensible et vous n'avez pas besoin de déni plausible.\n2) Le périphérique a déjà été chiffré de manière sécurisée et complète.\n\nÊtes-vous sûr de vouloir utiliser la création rapide ?</entry> + <entry lang="fr" key="IDC_ENABLE_EMV_SUPPORT">Activer la prise en charge EMV</entry> + <entry lang="fr" key="COMMAND_APDU_INVALID">La commande APDU envoyée à la carte n'est pas valide.</entry> + <entry lang="fr" key="EXTENDED_APDU_UNSUPPORTED">Les commandes APDU étendues ne peuvent pas être utilisées avec le jeton actuel.</entry> + <entry lang="fr" key="SCARD_MODULE_INIT_FAILED">Erreur lors du chargement de la bibliothèque WinSCard / PCSC.</entry> + <entry lang="fr" key="EMV_UNKNOWN_CARD_TYPE">La carte dans le lecteur n'est pas une carte EMV prise en charge.</entry> + <entry lang="fr" key="EMV_SELECT_AID_FAILED">L'AID de la carte dans le lecteur n'a pas pu être sélectionné.</entry> + <entry lang="fr" key="EMV_ICC_CERT_NOTFOUND">Le certificat de clé publique ICC n'a pas été trouvé dans la carte.</entry> + <entry lang="fr" key="EMV_ISSUER_CERT_NOTFOUND">Le certificat de clé publique de l'émetteur n'a pas été trouvé dans la carte.</entry> + <entry lang="fr" key="EMV_CPLC_NOTFOUND">Le CPLC n'a pas été trouvé dans la carte EMV.</entry> + <entry lang="fr" key="EMV_PAN_NOTFOUND">Aucun numéro de compte principal (PAN) trouvé dans la carte EMV.</entry> + <entry lang="fr" key="INVALID_EMV_PATH">Le chemin EMV est invalide.</entry> + <entry lang="fr" key="EMV_KEYFILE_DATA_NOTFOUND">Impossible de créer un fichier clé à partir des données de la carte EMV.\n\nUn ou plusieurs des éléments suivants sont manquants :\n- Certificat de clé publique ICC.\n- Certificat de clé publique de l'émetteur.\n- Données CPLC.</entry> + <entry lang="fr" key="SCARD_W_REMOVED_CARD">Aucune carte dans le lecteur.\n\nVeuillez vous assurer que la carte est correctement insérée.</entry> + <entry lang="fr" key="FORMAT_EXTERNAL_FAILED">La commande Windows format.com a échoué à formater le volume en NTFS/exFAT/ReFS : Erreur 0x%.8X.\n\nRetour à l'utilisation de l'API FormatEx de Windows.</entry> + <entry lang="fr" key="FORMATEX_API_FAILED">L'API FormatEx de Windows a échoué à formater le volume en NTFS/exFAT/ReFS.\n\nÉtat de l'échec = %s.</entry> + <entry lang="fr" key="EXPANDER_WRITING_RANDOM_DATA">Écriture de données aléatoires dans le nouvel espace ...\n</entry> + <entry lang="fr" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Écriture de l'en-tête de sauvegarde re-chiffré ...\n</entry> + <entry lang="fr" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Écriture de l'en-tête principal re-chiffré ...\n</entry> + <entry lang="fr" key="EXPANDER_WIPING_OLD_HEADER">Effacement de l'ancien en-tête de sauvegarde ...\n</entry> + <entry lang="fr" key="EXPANDER_MOUNTING_VOLUME">Montage du volume...\n</entry> + <entry lang="fr" key="EXPANDER_UNMOUNTING_VOLUME">Démontage du volume...\n</entry> + <entry lang="fr" key="EXPANDER_EXTENDING_FILESYSTEM">Extension du système de fichiers...\n</entry> <entry lang="fr" key="PARTIAL_SYSENC_MOUNT_READONLY">AVERTISSEMENT : La partition système que vous avez tenté de monter n'était pas entièrement chiffrée. Comme mesure de sécurité pour prévenir une éventuelle corruption ou des modifications non désirées, le volume « %s » a été monté en lecture seule.</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="fr" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Informations importantes sur l'utilisation des extensions de fichiers tiers</entry> + <entry lang="fr" key="IDC_DISABLE_MEMORY_PROTECTION">Désactiver la protection mémoire pour la compatibilité avec les outils d'accessibilité</entry> + <entry lang="fr" key="DISABLE_MEMORY_PROTECTION_WARNING">AVERTISSEMENT : Désactiver la protection mémoire réduit considérablement la sécurité. Activez cette option UNIQUEMENT si vous utilisez des outils d'accessibilité, comme les lecteurs d'écran, pour interagir avec l'interface de VeraCrypt.</entry> <entry lang="fr" key="LINUX_LANGUAGE">Langue</entry> @@ -1643,2 +1643,5 @@ <entry lang="fr" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">AVERTISSEMENT : La clé principale du volume présente une vulnérabilité de sécurité.</entry> + <entry lang="fr" key="MOUNTPOINT_BLOCKED">ERREUR : Le point de montage du volume est bloqué car il remplace un répertoire système protégé.\n\nVeuillez choisir un autre point de montage.</entry> + <entry lang="fr" key="MOUNTPOINT_NOTALLOWED">ERREUR : Le point de montage du volume n'est pas autorisé car il remplace un répertoire faisant partie de la variable d'environnement PATH.\n\nVeuillez choisir un autre point de montage.</entry> + <entry lang="fr" key="INSECURE_MODE">[MODE NON SÉCURISÉ]</entry> </localization> diff --git a/Translations/Language.he.xml b/Translations/Language.he.xml index fc898994..2cbdedea 100644 --- a/Translations/Language.he.xml +++ b/Translations/Language.he.xml @@ -2,3 +2,3 @@ <VeraCrypt xmlns:xs="http://www.w3.org/2001/XMLSchema"> - <localization prog-version="1.26.17"> + <localization prog-version="1.26.20"> <language langid="he" name="עברית" en-name="Hebrew" version="0.1.0" translators="thewh1teagle" /> @@ -137,4 +137,4 @@ <entry lang="he" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">הגדרות כלליות</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_UNMOUNT_BALLOON_TOOLTIP">הצגת טיפ לאחר הניתוק המהיר</entry> + <entry lang="he" key="IDC_HK_UNMOUNT_PLAY_SOUND">הפעל צליל התראה למערכת לאחר ניתוק בעזרת קיצור מקלדת</entry> <entry lang="he" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="he" key="IDC_PREF_CACHE_PASSWORDS">סיסמאות מטמון בזיכרון מנהל ההתקן</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_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_LOGON_MOUNT_DEVICES">לטעון את כל אמצעי האחסון המארחים VeraCrypt</entry> @@ -171,3 +171,3 @@ <entry lang="he" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">השתמש בסמל של שורת המשימות אחרת כשיש אמצעי אחסון מותקנים</entry> - <entry lang="he" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">מחק סיסמאות שנשמרו במטמון בניתוק אוטומטי</entry> + <entry lang="he" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">מחק סיסמאות שנשמרו במטמון בניתוק אוטומטי</entry> <entry lang="he" key="IDC_PREF_WIPE_CACHE_ON_EXIT">מחק סיסמאות במטמון בעת היציאה</entry> @@ -271,4 +271,4 @@ <entry lang="he" key="IDT_AUTORUN">תצורת הפעלה אוטומטית (autorun.inf)</entry> - <entry lang="he" key="IDT_AUTO_DISMOUNT">ניתוק אוטומטי</entry> - <entry lang="he" key="IDT_AUTO_DISMOUNT_ON">בטל הכל כאשר:</entry> + <entry lang="he" key="IDT_AUTO_UNMOUNT">ניתוק אוטומטי</entry> + <entry lang="he" key="IDT_AUTO_UNMOUNT_ON">בטל הכל כאשר:</entry> <entry lang="he" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">אפשרויות מסך מטעין אתחול</entry> @@ -278,3 +278,3 @@ <entry lang="he" key="IDT_DEFAULT_MOUNT_OPTIONS">אפשרויות ברירת מחדל להתקנה</entry> - <entry lang="he" key="IDT_DISMOUNT_ACTION">אפשרויות קיצורי מקלדת</entry> + <entry lang="he" key="IDT_UNMOUNT_ACTION">אפשרויות קיצורי מקלדת</entry> <entry lang="he" key="IDT_DRIVER_OPTIONS">תצורת מנהל התקן</entry> @@ -425,4 +425,4 @@ <entry lang="he" key="DEVICE_IN_USE_INPLACE_ENC">אזהרה: המחיצה נמצאת בשימוש על ידי מערכת ההפעלה או האפליקציות.עליך לסגור יישומים שעשויים להשתמש במחיצה (כולל תוכנת אנטי-וירוס). \n \n להמשיך?</entry> - <entry lang="he" key="FORMAT_CANT_DISMOUNT_FILESYS">שגיאה: ההתקן / המחיצה מכילה מערכת קבצים שלא ניתן היה לנתק אותה. מערכת הקבצים עשויה להיות בשימוש על ידי מערכת ההפעלה. עיצוב ההתקן / המחיצה עלול ככל הנראה לגרום לשחיתות נתונים ולחוסר יציבות במערכת. \n \n כדי לפתור בעיה זו, אנו ממליצים למחוק תחילה את המחיצה ואז ליצור אותה מחדש ללא עיצוב. לשם כך, בצע את השלבים הבאים: \n1) לחץ באמצעות לחצן העכבר הימני על סמל &apos;המחשב&apos; (או &apos;המחשב שלי&apos;) ב&apos;תפריט התחל &apos;ובחר&apos; נהל &apos;. חלון &apos;ניהול מחשבים&apos; אמור להופיע. \n2) בחלון &apos;ניהול מחשבים&apos; בחר &apos;אחסון&apos;> &apos;ניהול דיסקים&apos;. \n3) לחץ באמצעות לחצן העכבר הימני על המחיצה שברצונך להצפין ובחר באפשרות &apos;מחק מחיצה&apos;, או &apos;מחק אמצעי אחסון&apos;, או &apos;מחק כונן לוגי&apos;. \n4) לחץ על &apos;כן&apos;. אם Windows מבקש ממך להפעיל מחדש את המחשב, עשה זאת. לאחר מכן חזור על שלבים 1 ו- 2 והמשיך משלב 5. \n5) לחץ באמצעות לחצן העכבר הימני על אזור השטח הלא מוקצה / פנוי ובחר &apos;מחיצה חדשה&apos;, או &apos;אמצעי אחסון פשוט חדש&apos;, או &apos;כונן לוגי חדש&apos;. \n6 ) החלון &apos;אשף המחיצה החדש&apos; או &apos;אשף אמצעי אחסון פשוט חדש&apos; אמור להופיע כעת; עקוב אחר הוראותיו. בדף האשף שכותרתו &apos;פורמט מחיצה&apos;, בחר באפשרות &apos;אל תפרמט מחיצה זו&apos; או &apos;אל תפרמט אמצעי אחסון זה&apos;. באותו אשף, לחץ על &apos;הבא&apos; ואז על &apos;סיום&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="FORMAT_CANT_UNMOUNT_FILESYS">שגיאה: ההתקן / המחיצה מכילה מערכת קבצים שלא ניתן היה לנתק אותה. מערכת הקבצים עשויה להיות בשימוש על ידי מערכת ההפעלה. עיצוב ההתקן / המחיצה עלול ככל הנראה לגרום לשחיתות נתונים ולחוסר יציבות במערכת. \n \n כדי לפתור בעיה זו, אנו ממליצים למחוק תחילה את המחיצה ואז ליצור אותה מחדש ללא עיצוב. לשם כך, בצע את השלבים הבאים: \n1) לחץ באמצעות לחצן העכבר הימני על סמל &apos;המחשב&apos; (או &apos;המחשב שלי&apos;) ב&apos;תפריט התחל &apos;ובחר&apos; נהל &apos;. חלון &apos;ניהול מחשבים&apos; אמור להופיע. \n2) בחלון &apos;ניהול מחשבים&apos; בחר &apos;אחסון&apos;> &apos;ניהול דיסקים&apos;. \n3) לחץ באמצעות לחצן העכבר הימני על המחיצה שברצונך להצפין ובחר באפשרות &apos;מחק מחיצה&apos;, או &apos;מחק אמצעי אחסון&apos;, או &apos;מחק כונן לוגי&apos;. \n4) לחץ על &apos;כן&apos;. אם Windows מבקש ממך להפעיל מחדש את המחשב, עשה זאת. לאחר מכן חזור על שלבים 1 ו- 2 והמשיך משלב 5. \n5) לחץ באמצעות לחצן העכבר הימני על אזור השטח הלא מוקצה / פנוי ובחר &apos;מחיצה חדשה&apos;, או &apos;אמצעי אחסון פשוט חדש&apos;, או &apos;כונן לוגי חדש&apos;. \n6 ) החלון &apos;אשף המחיצה החדש&apos; או &apos;אשף אמצעי אחסון פשוט חדש&apos; אמור להופיע כעת; עקוב אחר הוראותיו. בדף האשף שכותרתו &apos;פורמט מחיצה&apos;, בחר באפשרות &apos;אל תפרמט מחיצה זו&apos; או &apos;אל תפרמט אמצעי אחסון זה&apos;. באותו אשף, לחץ על &apos;הבא&apos; ואז על &apos;סיום&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="DEVICE_IN_USE_INFO">אזהרה: חלק מההתקנים / מחיצות המותקנות כבר היו בשימוש! \n \n התעלמות מכך עלולה לגרום לתוצאות לא רצויות כולל חוסר יציבות במערכת. \n \n אנו ממליצים בחום לסגור כל יישום שעשוי להשתמש בהתקנים / מחיצות.</entry> @@ -592,3 +592,3 @@ <entry lang="he" key="OPENFILES_LOCK">לא ניתן לנעול את אמצעי האחסון.עדיין יש קבצים פתוחים בעוצמת הקול.לכן, לא ניתן לנתק אותו.</entry> - <entry lang="he" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt לא יכול לנעול את אמצעי האחסון מכיוון שהוא נמצא בשימוש על ידי המערכת או היישומים (יתכן שישנם קבצים פתוחים בעוצמת הקול). \n \n האם ברצונך לכפות הורדה על אמצעי האחסון?</entry> + <entry lang="he" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt לא יכול לנעול את אמצעי האחסון מכיוון שהוא נמצא בשימוש על ידי המערכת או היישומים (יתכן שישנם קבצים פתוחים בעוצמת הקול). \n \n האם ברצונך לכפות הורדה על אמצעי האחסון?</entry> <entry lang="he" key="OPEN_VOL_TITLE">בחר אמצעי אחסון VeraCrypt</entry> @@ -731,3 +731,3 @@ <entry lang="he" key="CANT_MOUNT_VOLUME">לא ניתן לעלות על אמצעי האחסון.</entry> - <entry lang="he" key="CANT_DISMOUNT_VOLUME">לא ניתן להוריד את אמצעי האחסון.</entry> + <entry lang="he" key="CANT_UNMOUNT_VOLUME">לא ניתן להוריד את אמצעי האחסון.</entry> <entry lang="he" key="FORMAT_NTFS_FAILED">Windows לא הצליח לעצב את אמצעי האחסון כ- NTFS / exFAT / ReFS. \n \n אנא בחר סוג אחר של מערכת קבצים (אם ניתן) ונסה שוב.לחלופין, אתה יכול להשאיר את אמצעי האחסון ללא עיצוב (בחר &apos;ללא&apos; כמערכת הקבצים), לצאת מאשף זה, לעלות על אמצעי האחסון ואז להשתמש במערכת או בכלי של צד שלישי כדי לעצב את אמצעי האחסון המותקנת (אמצעי האחסון תישאר מוצפנת).</entry> @@ -773,3 +773,3 @@ <entry lang="he" key="INPLACE_DEC_GENERIC_ERR">שגיאה מנעה מ- VeraCrypt לפענח את אמצעי האחסון.נסה לתקן את הבעיות שדווחו בעבר ואז נסה שוב במידת האפשר.</entry> - <entry lang="he" key="CANT_DISMOUNT_OUTER_VOL">שגיאה: לא ניתן לנתק את אמצעי האחסון החיצונית! \n \n לא ניתן לנתק את אמצעי האחסון אם הוא מכיל קבצים או תיקיות המשמשים תוכנית או המערכת. \n \n אנא סגור כל תוכנית שעשויה להשתמש בקבצים או ספריות בכרך ולחץ על נסה שוב.</entry> + <entry lang="he" key="CANT_UNMOUNT_OUTER_VOL">שגיאה: לא ניתן לנתק את אמצעי האחסון החיצונית! \n \n לא ניתן לנתק את אמצעי האחסון אם הוא מכיל קבצים או תיקיות המשמשים תוכנית או המערכת. \n \n אנא סגור כל תוכנית שעשויה להשתמש בקבצים או ספריות בכרך ולחץ על נסה שוב.</entry> <entry lang="he" key="CANT_GET_OUTER_VOL_INFO">שגיאה: לא ניתן לקבל מידע על אמצעי האחסון החיצוני! \n יצירת אמצעי אחסון אינה יכולה להמשיך.</entry> @@ -884,3 +884,3 @@ <entry lang="he" key="CLOSE_TC_FIRST">לא ניתן לנתק את מנהל ההתקן של VeraCrypt. \n \n סגור תחילה את כל חלונות VeraCrypt הפתוחים.אם זה לא עוזר, אנא הפעל מחדש את Windows ואז נסה שוב.</entry> - <entry lang="he" key="DISMOUNT_ALL_FIRST">יש לנתק את כל אמצעי האחסון של VeraCrypt לפני התקנת או התקנת VeraCrypt.</entry> + <entry lang="he" key="UNMOUNT_ALL_FIRST">יש לנתק את כל אמצעי האחסון של VeraCrypt לפני התקנת או התקנת VeraCrypt.</entry> <entry lang="he" key="UNINSTALL_OLD_VERSION_FIRST">גרסה מיושנת של VeraCrypt מותקנת כעת במערכת זו.יש להסיר את ההתקנה לפני שתוכל להתקין גרסה חדשה זו של VeraCrypt. \n \n ברגע שתסגור את תיבת ההודעה הזו, מסיר ההתקנה של הגרסה הישנה יושק.שים לב שאף אמצעי אחסון לא יפענח בעת הסרת ההתקנה של VeraCrypt.לאחר שתסיר את ההתקנה של הגרסה הישנה של VeraCrypt, הפעל שוב את מתקין הגירסה החדשה של VeraCrypt.</entry> @@ -905,3 +905,3 @@ <entry lang="he" key="OPEN">פתיחה</entry> - <entry lang="he" key="DISMOUNT">ניתוק</entry> + <entry lang="he" key="UNMOUNT">ניתוק</entry> <entry lang="he" key="SHOW_TC">הצג את VeraCrypt</entry> @@ -977,3 +977,3 @@ <entry lang="he" key="SYS_FAVORITES_REQUIRE_PBA">מחיצת המערכת / כונן לא נראה מוצפן. \n \n ניתן להתקין אמצעי אחסון מועדפים באמצעות סיסמת אימות לפני האתחול בלבד.לכן, כדי לאפשר שימוש באמצעי אחסון המועדפים על המערכת, עליך קודם להצפין את מחיצת המערכת / כונן המערכת.</entry> - <entry lang="he" key="DISMOUNT_FIRST">אנא הורד את אמצעי האחסון לפני שתמשיך.</entry> + <entry lang="he" key="UNMOUNT_FIRST">אנא הורד את אמצעי האחסון לפני שתמשיך.</entry> <entry lang="he" key="CANNOT_SET_TIMER">שגיאה: לא ניתן להגדיר טיימר.</entry> @@ -1011,7 +1011,7 @@ <entry lang="he" key="HK_AUTOMOUNT_DEVICES">טעינה אוטומטית של התקןים</entry> - <entry lang="he" key="HK_DISMOUNT_ALL">לנתק הכל</entry> + <entry lang="he" key="HK_UNMOUNT_ALL">לנתק הכל</entry> <entry lang="he" key="HK_WIPE_CACHE">מחק את המטמון</entry> - <entry lang="he" key="HK_DISMOUNT_ALL_AND_WIPE">בטל טעינה של כולם & נקה מטמון</entry> - <entry lang="he" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">אלץ ביטול טעינה של כולם & נקה מטמון</entry> - <entry lang="he" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">אל ביטול טעינה של כולם, נקה מטמון & יציאה</entry> + <entry lang="he" key="HK_UNMOUNT_ALL_AND_WIPE">בטל טעינה של כולם & נקה מטמון</entry> + <entry lang="he" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">אלץ ביטול טעינה של כולם & נקה מטמון</entry> + <entry lang="he" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">אל ביטול טעינה של כולם, נקה מטמון & יציאה</entry> <entry lang="he" key="HK_MOUNT_FAVORITE_VOLUMES">טען אמצעי אחסון אהובים</entry> @@ -1027,10 +1027,10 @@ <entry lang="he" key="HIDDEN_OS_HIBERNATION_PREVENTED">מצב שינה נמנע. \n \n VeraCrypt אינו תומך במצב שינה במערכות הפעלה נסתרות המשתמשות במחיצת אתחול נוספת.שים לב כי מחיצת האתחול משותפת הן לפיתוי והן למערכת הנסתרת.לכן, על מנת למנוע דליפות נתונים ובעיות בעת חידוש מצב שינה, על VeraCrypt למנוע מהמערכת הנסתרת לכתוב למחיצת האתחול המשותפת ולמצב שינה.</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="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="CONFIRM_BACKGROUND_TASK_DISABLED">אזהרה: אם משימת הרקע של VeraCrypt אינה זמינה, הפונקציות הבאות יושבתו: \n \n1) קיצורי מקלדת \n2) הורדה אוטומטית (למשל, בעת התנתקות, הסרת התקני מארח בשוגג, פסק זמן וכו &apos;) \n3) טעינה אוטומטית של אמצעי האחסון המועדפים \n4) התראות (למשל, כאשר נמנעת פגיעה באמצעי אחסון מוסתר) \n5) סמל מגש \n \n הערה: ניתן לכבות את משימת הרקע בכל עת על ידי לחיצה ימנית על סמל מגש VeraCrypt ובחירה&apos;יציאה&apos;. \n \n האם אתה בטוח שברצונך להשבית לצמיתות את משימת הרקע של VeraCrypt?</entry> - <entry lang="he" key="CONFIRM_NO_FORCED_AUTODISMOUNT">אזהרה: אם אפשרות זו מושבתת, לא ניתן יהיה לפרוק אוטומטית אמצעי אחסון המכילים קבצים / ספריות פתוחים. \n \n האם אתה בטוח שברצונך להשבית אפשרות זו?</entry> - <entry lang="he" key="WARN_PREF_AUTO_DISMOUNT">אזהרה: אמצעי אחסון המכילים קבצים / ספריות פתוחות לא יפורקו אוטומטית. \n \n כדי למנוע זאת, הפעל את האפשרות הבאה בחלון דו-שיח זה: &apos;כפה על הורדה אוטומטית גם אם אמצעי האחסון מכיל קבצים פתוחים או ספריות&apos;.</entry> - <entry lang="he" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">אזהרה: כאשר הסוללה במחשב הנייד נמוכה, Windows עשויה להשמיט את שליחת ההודעות המתאימות ליישומים פועלים כאשר המחשב עובר למצב חיסכון בחשמל.לכן, VeraCrypt עלול להיכשל בניתוק אוטומטי של אמצעי אחסון במקרים כאלה.</entry> + <entry lang="he" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">אזהרה: אם אפשרות זו מושבתת, לא ניתן יהיה לפרוק אוטומטית אמצעי אחסון המכילים קבצים / ספריות פתוחים. \n \n האם אתה בטוח שברצונך להשבית אפשרות זו?</entry> + <entry lang="he" key="WARN_PREF_AUTO_UNMOUNT">אזהרה: אמצעי אחסון המכילים קבצים / ספריות פתוחות לא יפורקו אוטומטית. \n \n כדי למנוע זאת, הפעל את האפשרות הבאה בחלון דו-שיח זה: &apos;כפה על הורדה אוטומטית גם אם אמצעי האחסון מכיל קבצים פתוחים או ספריות&apos;.</entry> + <entry lang="he" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">אזהרה: כאשר הסוללה במחשב הנייד נמוכה, Windows עשויה להשמיט את שליחת ההודעות המתאימות ליישומים פועלים כאשר המחשב עובר למצב חיסכון בחשמל.לכן, VeraCrypt עלול להיכשל בניתוק אוטומטי של אמצעי אחסון במקרים כאלה.</entry> <entry lang="he" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">קבעתם את תהליך ההצפנה / פענוח של מחיצה / אמצעי אחסון.התהליך עדיין לא הושלם. \n \n האם ברצונך לחדש את התהליך כעת?</entry> @@ -1065,3 +1065,3 @@ <entry lang="he" key="MOUNT_TC_VOLUME">טען VeraCrypt אמצעי אחסון</entry> - <entry lang="he" key="DISMOUNT_ALL_TC_VOLUMES">בטל את כל אמצעי האחסון של VeraCrypt</entry> + <entry lang="he" key="UNMOUNT_ALL_TC_VOLUMES">בטל את כל אמצעי האחסון של VeraCrypt</entry> <entry lang="he" key="UAC_INIT_ERROR">VeraCrypt לא הצליח להשיג הרשאות מנהל.</entry> @@ -1308,4 +1308,4 @@ <entry lang="he" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">אזהרה: הגדרה זו עשויה לפגוע בביצועים. \n \n האם אתה בטוח שברצונך להשתמש בהגדרה זו?</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 הורדה ספונטנית בלתי צפויה נגרמת בדרך כלל מכבל, כונן (מארז) וכו &apos;.</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 הורדה ספונטנית בלתי צפויה נגרמת בדרך כלל מכבל, כונן (מארז) וכו &apos;.</entry> <entry lang="he" key="UNSUPPORTED_TRUECRYPT_FORMAT">אמצעי אחסון זה נוצר באמצעות TrueCrypt%x.%X אך VeraCrypt תומך רק בכמויות TrueCrypt שנוצרו באמצעות סדרת TrueCrypt 6.x / 7.x</entry> @@ -1455,3 +1455,3 @@ <entry lang="he" key="TASKICON_PREF_OPEN_VOL">אמצעי אחסון רכובים פתוחים</entry> - <entry lang="he" key="TASKICON_PREF_DISMOUNT_VOL">לנתק אמצעי אחסון רכובים</entry> + <entry lang="he" key="TASKICON_PREF_UNMOUNT_VOL">לנתק אמצעי אחסון רכובים</entry> <entry lang="he" key="DISK_FREE">מקום פנוי בדיסק: {0}</entry> @@ -1486,6 +1486,6 @@ <entry lang="he" key="LINUX_SELECT">בחר..</entry> - <entry lang="he" key="LINUX_DISMOUNT_ALL_WHEN">נתק את כל האמצעי אחסון מתי</entry> + <entry lang="he" key="LINUX_UNMOUNT_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_DISMOUNT">סגור את כל חלונות ה- Explorer של אמצעי האחסון הנפרדת</entry> + <entry lang="he" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">סגור את כל חלונות ה- Explorer של אמצעי האחסון הנפרדת</entry> <entry lang="he" key="LINUX_HOTKEYS">מקשי קיצור</entry> @@ -1493,3 +1493,3 @@ <entry lang="he" key="LINUX_SOUND_NOTIFICATION">השמע צליל התראה למערכת לאחר טעינה / הפעלה</entry> - <entry lang="he" key="LINUX_CONFIRM_AFTER_DISMOUNT">הצג את תיבת הודעת האישור לאחר ההורדה</entry> + <entry lang="he" key="LINUX_CONFIRM_AFTER_UNMOUNT">הצג את תיבת הודעת האישור לאחר ההורדה</entry> <entry lang="he" key="LINUX_VC_QUITS">VeraCrypt מסתיים</entry> @@ -1525,3 +1525,3 @@ <entry lang="he" key="LINUX_KERNEL_OLD">המערכת שלך משתמשת בגרסה ישנה של ליבת לינוקס. \n \n בשל באג בליבת הלינוקס, המערכת שלך עשויה להפסיק להגיב בעת כתיבת נתונים לאמצעי אחסון VeraCrypt.ניתן לפתור בעיה זו על ידי שדרוג הגרעין לגרסה 2.6.24 ואילך.</entry> - <entry lang="he" key="LINUX_VOL_DISMOUNTED">אמצעי האחסון {0} הוסר.</entry> + <entry lang="he" key="LINUX_VOL_UNMOUNTED">אמצעי האחסון {0} הוסר.</entry> <entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry> @@ -1644,2 +1644,5 @@ <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> </localization> diff --git a/Translations/Language.hu.xml b/Translations/Language.hu.xml index a0a54f4b..01b53302 100644 --- a/Translations/Language.hu.xml +++ b/Translations/Language.hu.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="hu" name="Magyar" en-name="Hungarian" version="1.0.0" translators="Nyul Balazs > Szaki, Zityi's Translator Te@m" /> @@ -137,4 +137,4 @@ <entry lang="hu" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Globális beállítások</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_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_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <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_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_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_LOGON_MOUNT_DEVICES">Az összes eszköz által tárolt VeraCrypt kötet csatlakoztatása</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">Gyorsítótárazott jelszavak törlése automatikus leválasztáskor</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_EXIT">Gyorsítótárazott jelszavak törlése kilépéskor</entry> @@ -271,4 +271,4 @@ <entry lang="hu" key="IDT_AUTORUN">Automatikus futtatás konfigurációja (autorun.inf)</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_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_BOOT_LOADER_SCREEN_OPTIONS">Rendszertöltő képernyő opciók</entry> @@ -278,3 +278,3 @@ <entry lang="hu" key="IDT_DEFAULT_MOUNT_OPTIONS">Alapértelmezett csatolási lehetőségek</entry> - <entry lang="hu" key="IDT_DISMOUNT_ACTION">Gyorsbillentyűk opciók</entry> + <entry lang="hu" key="IDT_UNMOUNT_ACTION">Gyorsbillentyűk opciók</entry> <entry lang="hu" key="IDT_DRIVER_OPTIONS">Illesztőprogram-konfiguráció</entry> @@ -425,4 +425,4 @@ <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_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' > '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="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' > '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="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> @@ -592,3 +592,3 @@ <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_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="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="OPEN_VOL_TITLE">Válasszon egy VeraCrypt kötetet</entry> @@ -731,3 +731,3 @@ <entry lang="hu" key="CANT_MOUNT_VOLUME">A kötet nem csatlakoztatható.</entry> - <entry lang="hu" key="CANT_DISMOUNT_VOLUME">Nem lehet leválasztani a kötetet.</entry> + <entry lang="hu" key="CANT_UNMOUNT_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> @@ -773,3 +773,3 @@ <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_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_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_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> @@ -884,3 +884,3 @@ <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="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="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="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> @@ -905,3 +905,3 @@ <entry lang="hu" key="OPEN">Megnyitás</entry> - <entry lang="hu" key="DISMOUNT">Leválasztás</entry> + <entry lang="hu" key="UNMOUNT">Leválasztás</entry> <entry lang="hu" key="SHOW_TC">VeraCrypt megjelenítése</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">Folytatás előtt válassza le a kötetet.</entry> + <entry lang="hu" key="UNMOUNT_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> @@ -1011,7 +1011,7 @@ <entry lang="hu" key="HK_AUTOMOUNT_DEVICES">Eszközök automatikus csatolása</entry> - <entry lang="hu" key="HK_DISMOUNT_ALL">Összes leválasztása</entry> + <entry lang="hu" key="HK_UNMOUNT_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_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_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_MOUNT_FAVORITE_VOLUMES">Kedvenc kötetek csatolása</entry> @@ -1027,10 +1027,10 @@ <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_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="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="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_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="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="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> @@ -1065,3 +1065,3 @@ <entry lang="hu" key="MOUNT_TC_VOLUME">VeraCrypt kötet csatolása</entry> - <entry lang="hu" key="DISMOUNT_ALL_TC_VOLUMES">Az összes VeraCrypt kötet leválasztása</entry> + <entry lang="hu" key="UNMOUNT_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> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <entry lang="hu" key="TASKICON_PREF_OPEN_VOL">Csatolt kötetek megnyitása</entry> - <entry lang="hu" key="TASKICON_PREF_DISMOUNT_VOL">Csatolt kötetek leválasztása</entry> + <entry lang="hu" key="TASKICON_PREF_UNMOUNT_VOL">Csatolt kötetek leválasztása</entry> <entry lang="hu" key="DISK_FREE">Elérhető szabad hely: {0}</entry> @@ -1485,6 +1485,6 @@ <entry lang="hu" key="LINUX_SELECT">Válassza ki...</entry> - <entry lang="hu" key="LINUX_DISMOUNT_ALL_WHEN">Minden kötet leválasztása, amikor</entry> + <entry lang="hu" key="LINUX_UNMOUNT_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_DISMOUNT">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_UNMOUNT">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> @@ -1492,3 +1492,3 @@ <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_DISMOUNT">Megerősítési üzenetablak megjelenítése a leválasztást követően</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_VC_QUITS">A VeraCrypt kilép</entry> @@ -1524,3 +1524,3 @@ <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_DISMOUNTED">A(z) {0} kötet le van választva.</entry> + <entry lang="hu" key="LINUX_VOL_UNMOUNTED">A(z) {0} kötet le van választva.</entry> <entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/Translations/Language.id.xml b/Translations/Language.id.xml index 4915c298..12ee64e9 100644 --- a/Translations/Language.id.xml +++ b/Translations/Language.id.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="id" name="Bahasa Indonesia" en-name="Indonesian" version="1.0.0" translators="Tajuddin N. F.; Transifex contributors" /> @@ -137,4 +137,4 @@ <entry lang="id" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Pengaturan Global</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_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_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="id" key="IDC_PREF_CACHE_PASSWORDS">Singgahkan kata sandi dalam memori driver</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_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_LOGON_MOUNT_DEVICES">Kait semua volume VeraCrypt yang diwadahi peranti</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">Bersihkan kata sandi yang disinggahkan saat lepas kait otomatis</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_EXIT">Bersihkan kata sandi yang disinggahkan saat keluar</entry> @@ -271,4 +271,4 @@ <entry lang="id" key="IDT_AUTORUN">Konfigurasi JalanOtomatis (autorun.inf)</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_AUTO_UNMOUNT">Pemutusan otomatis</entry> + <entry lang="id" key="IDT_AUTO_UNMOUNT_ON">Lepas kait semua saat:</entry> <entry lang="id" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Opsi Layar Boot Loader</entry> @@ -278,3 +278,3 @@ <entry lang="id" key="IDT_DEFAULT_MOUNT_OPTIONS">Opsi Kait Baku</entry> - <entry lang="id" key="IDT_DISMOUNT_ACTION">Opsi Tombol Pintas</entry> + <entry lang="id" key="IDT_UNMOUNT_ACTION">Opsi Tombol Pintas</entry> <entry lang="id" key="IDT_DRIVER_OPTIONS">Konfigurasi Driver</entry> @@ -425,4 +425,4 @@ <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_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' > '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="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' > '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="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> @@ -592,3 +592,3 @@ <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_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="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="OPEN_VOL_TITLE">Pilih sebuah Volume VeraCrypt</entry> @@ -731,3 +731,3 @@ <entry lang="id" key="CANT_MOUNT_VOLUME">Tidak bisa mengait volume.</entry> - <entry lang="id" key="CANT_DISMOUNT_VOLUME">Tidak bisa melepas kait volume.</entry> + <entry lang="id" key="CANT_UNMOUNT_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> @@ -773,3 +773,3 @@ <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_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_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_GET_OUTER_VOL_INFO">Galat: Tidak bisa memperoleh informasi tentang volume luar!\nPembuatan volume tidak dapat dilanjutkan.</entry> @@ -884,3 +884,3 @@ <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="DISMOUNT_ALL_FIRST">Semua volume VeraCrypt harus dilepas kait sebelum memasang atau menghapus instalasi VeraCrypt.</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="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> @@ -905,3 +905,3 @@ <entry lang="id" key="OPEN">Buka</entry> - <entry lang="id" key="DISMOUNT">Lepas Kait</entry> + <entry lang="id" key="UNMOUNT">Lepas Kait</entry> <entry lang="id" key="SHOW_TC">Tampilkan VeraCrypt</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">Silakan lepas kait volume sebelum melanjutkan.</entry> + <entry lang="id" key="UNMOUNT_FIRST">Silakan lepas kait volume sebelum melanjutkan.</entry> <entry lang="id" key="CANNOT_SET_TIMER">Galat: Tak bisa mengatur timer.</entry> @@ -1011,7 +1011,7 @@ <entry lang="id" key="HK_AUTOMOUNT_DEVICES">Perangkat Auto-Mount</entry> - <entry lang="id" key="HK_DISMOUNT_ALL">Lepas Kait Semua</entry> + <entry lang="id" key="HK_UNMOUNT_ALL">Lepas Kait Semua</entry> <entry lang="id" key="HK_WIPE_CACHE">Hapus Cache</entry> - <entry lang="id" key="HK_DISMOUNT_ALL_AND_WIPE">Lepas Kait Semua & Hapus Singgahan</entry> - <entry lang="id" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Paksa Turunkan Semua &Hapus Cache</entry> - <entry lang="id" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Paksa Turunkan Semua, Hapus Cache &Keluar</entry> + <entry lang="id" key="HK_UNMOUNT_ALL_AND_WIPE">Lepas Kait Semua & Hapus Singgahan</entry> + <entry lang="id" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Paksa Turunkan Semua &Hapus Cache</entry> + <entry lang="id" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Paksa Turunkan Semua, Hapus Cache &Keluar</entry> <entry lang="id" key="HK_MOUNT_FAVORITE_VOLUMES">Kait Volume Favorit</entry> @@ -1027,10 +1027,10 @@ <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_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="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="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_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="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="NONSYS_INPLACE_ENC_RESUME_PROMPT">Anda telah menjadwalkan proses enkripsi/dekripsi partisi/volume. Prosesnya belum selesai.\n\nApakah Anda ingin melanjutkan prosesnya sekarang?</entry> @@ -1065,3 +1065,3 @@ <entry lang="id" key="MOUNT_TC_VOLUME">Volume Mount VeraCrypt</entry> - <entry lang="id" key="DISMOUNT_ALL_TC_VOLUMES">Lepas kait semua volume VeraCrypt</entry> + <entry lang="id" key="UNMOUNT_ALL_TC_VOLUMES">Lepas kait semua volume VeraCrypt</entry> <entry lang="id" key="UAC_INIT_ERROR">VeraCrypt gagal mendapatkan hak Administrator.</entry> @@ -1288,3 +1288,3 @@ <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 'Dismount All', fungsi 'Auto-Dismount', 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 'Unmount All', fungsi 'Auto-Unmount', 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> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <entry lang="id" key="TASKICON_PREF_OPEN_VOL">Buka Volume Terpasang</entry> - <entry lang="id" key="TASKICON_PREF_DISMOUNT_VOL">Turunkan Volume yang Dipasang</entry> + <entry lang="id" key="TASKICON_PREF_UNMOUNT_VOL">Turunkan Volume yang Dipasang</entry> <entry lang="id" key="DISK_FREE">Ruang kosong yang tersedia: {0}</entry> @@ -1485,10 +1485,10 @@ <entry lang="id" key="LINUX_SELECT">Pi&lih...</entry> - <entry lang="id" key="LINUX_DISMOUNT_ALL_WHEN">Turunkan Semua Volume Saat</entry> + <entry lang="id" key="LINUX_UNMOUNT_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_DISMOUNT">Tutup semua jendela volume Explorer yang turun</entry> + <entry lang="id" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">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/dismount</entry> - <entry lang="id" key="LINUX_CONFIRM_AFTER_DISMOUNT">Menampilkan kotak pesan konfirmasi setelah turun</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_VC_QUITS">VeraCrypt berhenti</entry> @@ -1524,3 +1524,3 @@ <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_DISMOUNTED">Volume {0} telah turun.</entry> + <entry lang="id" key="LINUX_VOL_UNMOUNTED">Volume {0} telah turun.</entry> <entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/Translations/Language.it.xml b/Translations/Language.it.xml index 8e2d12aa..c51a9387 100644 --- a/Translations/Language.it.xml +++ b/Translations/Language.it.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="it" name="Italiano" en-name="Italian" version="1.0.1" translators="Maurizio Ballo, Consiglio Gaetano" /> @@ -137,4 +137,4 @@ <entry lang="it" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Impostazioni globali</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_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_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="it" key="IDC_PREF_CACHE_PASSWORDS">Mantieni le password nella cache</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_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_LOGON_MOUNT_DEVICES">Monta tutti i volumi VeraCrypt residenti sulle unità</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">Azzera le password nella cache allo smontaggio automatico</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_EXIT">Azzera le password nella cache in uscita</entry> @@ -271,4 +271,4 @@ <entry lang="it" key="IDT_AUTORUN">Configurazione di avvio automatico (autorun.inf)</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_AUTO_UNMOUNT">Smontaggio automatico</entry> + <entry lang="it" key="IDT_AUTO_UNMOUNT_ON">Smonta tutti quando:</entry> <entry lang="it" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Opzioni schermata di boot per VeraCrypt</entry> @@ -278,3 +278,3 @@ <entry lang="it" key="IDT_DEFAULT_MOUNT_OPTIONS">Opzioni di montaggio predefinite</entry> - <entry lang="it" key="IDT_DISMOUNT_ACTION">Opzioni tasti rapidi</entry> + <entry lang="it" key="IDT_UNMOUNT_ACTION">Opzioni tasti rapidi</entry> <entry lang="it" key="IDT_DRIVER_OPTIONS">Configurazione del driver</entry> @@ -425,4 +425,4 @@ <entry lang="it" key="DEVICE_IN_USE_INPLACE_ENC">ATTENZIONE: l’unità è 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_DISMOUNT_FILESYS">ERRORE: l’unità/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 l’unità/partizione.\n\nSe VeraCrypt non riesce ripetutamente a codificare l’unità/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 l’instabilità 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_UNMOUNT_FILESYS">ERRORE: l’unità/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 l’unità/partizione.\n\nSe VeraCrypt non riesce ripetutamente a codificare l’unità/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 l’instabilità 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> @@ -592,3 +592,3 @@ <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_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="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="OPEN_VOL_TITLE">Selezionare un volume VeraCrypt</entry> @@ -731,3 +731,3 @@ <entry lang="it" key="CANT_MOUNT_VOLUME">Impossibile montare il volume.</entry> - <entry lang="it" key="CANT_DISMOUNT_VOLUME">Impossibile smontare il volume.</entry> + <entry lang="it" key="CANT_UNMOUNT_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> @@ -773,3 +773,3 @@ <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_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_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_GET_OUTER_VOL_INFO">ERRORE: Non si possono ottenere le informazioni a proposito del volume esterno! La creazione del volume non può proseguire.</entry> @@ -884,3 +884,3 @@ <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="DISMOUNT_ALL_FIRST">Tutti i volumi devono essere smontati prima di installare o disinstallare VeraCrypt.</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="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> @@ -905,3 +905,3 @@ <entry lang="it" key="OPEN">Apri</entry> - <entry lang="it" key="DISMOUNT">Smonta</entry> + <entry lang="it" key="UNMOUNT">Smonta</entry> <entry lang="it" key="SHOW_TC">Visualizza VeraCrypt</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">Smontare il volume prima di procedere.</entry> + <entry lang="it" key="UNMOUNT_FIRST">Smontare il volume prima di procedere.</entry> <entry lang="it" key="CANNOT_SET_TIMER">ERRORE: Impossibile impostare il timer.</entry> @@ -1011,7 +1011,7 @@ <entry lang="it" key="HK_AUTOMOUNT_DEVICES">Montaggio automatico delle unità</entry> - <entry lang="it" key="HK_DISMOUNT_ALL">Smonta tutti</entry> + <entry lang="it" key="HK_UNMOUNT_ALL">Smonta tutti</entry> <entry lang="it" key="HK_WIPE_CACHE">Azzera la cache</entry> - <entry lang="it" key="HK_DISMOUNT_ALL_AND_WIPE">Smonta tutte & Cache ripulite</entry> - <entry lang="it" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Forza lo smontaggio di tutti i volumi & 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 & esci</entry> + <entry lang="it" key="HK_UNMOUNT_ALL_AND_WIPE">Smonta tutte & Cache ripulite</entry> + <entry lang="it" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Forza lo smontaggio di tutti i volumi & 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 & esci</entry> <entry lang="it" key="HK_MOUNT_FAVORITE_VOLUMES">Monta i volumi preferiti</entry> @@ -1027,10 +1027,10 @@ <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_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="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="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_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="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="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> @@ -1065,3 +1065,3 @@ <entry lang="it" key="MOUNT_TC_VOLUME">Montare un volume VeraCrypt</entry> - <entry lang="it" key="DISMOUNT_ALL_TC_VOLUMES">Smonta tutti i volumi VeraCrypt</entry> + <entry lang="it" key="UNMOUNT_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> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <entry lang="it" key="TASKICON_PREF_OPEN_VOL">Apri volumi montati</entry> - <entry lang="it" key="TASKICON_PREF_DISMOUNT_VOL">Smonta volumi montati</entry> + <entry lang="it" key="TASKICON_PREF_UNMOUNT_VOL">Smonta volumi montati</entry> <entry lang="it" key="DISK_FREE">Spazio libero disponibile: {0}</entry> @@ -1485,6 +1485,6 @@ <entry lang="it" key="LINUX_SELECT">Se&leziona...</entry> - <entry lang="it" key="LINUX_DISMOUNT_ALL_WHEN">Smonta tutti i volumi quando</entry> + <entry lang="it" key="LINUX_UNMOUNT_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_DISMOUNT">Chiudi tutte le finestre di Explorer del volume da smontare</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_HOTKEYS">Tasti rapidi</entry> @@ -1492,3 +1492,3 @@ <entry lang="it" key="LINUX_SOUND_NOTIFICATION">Riproduci suono notifica sistema dopo montaggio/smontaggio</entry> - <entry lang="it" key="LINUX_CONFIRM_AFTER_DISMOUNT">Visualizza finestra messaggio di conferma dopo smontaggio</entry> + <entry lang="it" key="LINUX_CONFIRM_AFTER_UNMOUNT">Visualizza finestra messaggio di conferma dopo smontaggio</entry> <entry lang="it" key="LINUX_VC_QUITS">Uscita da VeraCrypt</entry> @@ -1524,3 +1524,3 @@ <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_DISMOUNTED">Il volume {0} è stato smontato.</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> @@ -1643,2 +1643,5 @@ <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\nSi prega di scegliere 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\nSi prega di scegliere un punto di montaggio diverso.</entry> + <entry lang="it" key="INSECURE_MODE">[MODALITÀ NON SICURA]</entry> </localization> diff --git a/Translations/Language.ja.xml b/Translations/Language.ja.xml index 05fe5339..a17703ee 100644 --- a/Translations/Language.ja.xml +++ b/Translations/Language.ja.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="ja" name="日本語" en-name="Japanese" version="1.1.0" translators="OGOSHI Masayuki, Transifex contributors" /> @@ -137,4 +137,4 @@ <entry lang="ja" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">全体設定</entry> - <entry lang="ja" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">ホットキーでのアンマウントに成功したときバルーンを表示</entry> - <entry lang="ja" key="IDC_HK_DISMOUNT_PLAY_SOUND">ホットキーでのアンマウントに成功したとき音を鳴らす</entry> + <entry lang="ja" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">ホットキーでのアンマウントに成功したときバルーンを表示</entry> + <entry lang="ja" key="IDC_HK_UNMOUNT_PLAY_SOUND">ホットキーでのアンマウントに成功したとき音を鳴らす</entry> <entry lang="ja" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="ja" key="IDC_PREF_CACHE_PASSWORDS">パスワードをドライバのメモリに記憶する</entry> - <entry lang="ja" key="IDC_PREF_DISMOUNT_INACTIVE">右に示す時間内に読み書きがなければ自動的にアンマウント</entry> - <entry lang="ja" key="IDC_PREF_DISMOUNT_LOGOFF">ユーザがログオフしたとき</entry> - <entry lang="ja" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">ユーザーセッションがロックされたとき</entry> - <entry lang="ja" key="IDC_PREF_DISMOUNT_POWERSAVING">省電力モードに入ったとき</entry> - <entry lang="ja" key="IDC_PREF_DISMOUNT_SCREENSAVER">スクリーンセーバの起動時</entry> - <entry lang="ja" key="IDC_PREF_FORCE_AUTO_DISMOUNT">ボリュームに開かれたファイルやフォルダがあっても強制的にアンマウント</entry> + <entry lang="ja" key="IDC_PREF_UNMOUNT_INACTIVE">右に示す時間内に読み書きがなければ自動的にアンマウント</entry> + <entry lang="ja" key="IDC_PREF_UNMOUNT_LOGOFF">ユーザがログオフしたとき</entry> + <entry lang="ja" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">ユーザーセッションがロックされたとき</entry> + <entry lang="ja" key="IDC_PREF_UNMOUNT_POWERSAVING">省電力モードに入ったとき</entry> + <entry lang="ja" key="IDC_PREF_UNMOUNT_SCREENSAVER">スクリーンセーバの起動時</entry> + <entry lang="ja" key="IDC_PREF_FORCE_AUTO_UNMOUNT">ボリュームに開かれたファイルやフォルダがあっても強制的にアンマウント</entry> <entry lang="ja" key="IDC_PREF_LOGON_MOUNT_DEVICES">すべてのデバイス型ボリュームをマウント</entry> @@ -171,3 +171,3 @@ <entry lang="ja" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">マウントされたボリュームがあるときにタスクバーアイコンを変える</entry> - <entry lang="ja" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">自動アンマウントの際に記憶していたパスワードを消去</entry> + <entry lang="ja" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">自動アンマウントの際に記憶していたパスワードを消去</entry> <entry lang="ja" key="IDC_PREF_WIPE_CACHE_ON_EXIT">終了時に記憶していたパスワードを消去</entry> @@ -271,4 +271,4 @@ <entry lang="ja" key="IDT_AUTORUN">自動実行ファイル(Autorun.inf)の設定</entry> - <entry lang="ja" key="IDT_AUTO_DISMOUNT">自動アンマウント</entry> - <entry lang="ja" key="IDT_AUTO_DISMOUNT_ON">右に示すときに \nすべてアンマウント:</entry> + <entry lang="ja" key="IDT_AUTO_UNMOUNT">自動アンマウント</entry> + <entry lang="ja" key="IDT_AUTO_UNMOUNT_ON">右に示すときに \nすべてアンマウント:</entry> <entry lang="ja" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">ブートローダー画面オプション</entry> @@ -278,3 +278,3 @@ <entry lang="ja" key="IDT_DEFAULT_MOUNT_OPTIONS">デフォルトのマウントオプション</entry> - <entry lang="ja" key="IDT_DISMOUNT_ACTION">ホットキーオプション</entry> + <entry lang="ja" key="IDT_UNMOUNT_ACTION">ホットキーオプション</entry> <entry lang="ja" key="IDT_DRIVER_OPTIONS">ドライバー構成</entry> @@ -425,4 +425,4 @@ <entry lang="ja" key="DEVICE_IN_USE_INPLACE_ENC">警告:そのパーティションはOSかアプリケーションで使用中です。まず使用されているパーティション上のすべてのアプリケーションを終了してください(アンチウィルスソフトも含みます)。\n\n続けますか?</entry> - <entry lang="ja" key="FORMAT_CANT_DISMOUNT_FILESYS">エラー:指定されたデバイスあるいはパーティションに、アンマウントできないファイルシステムが含まれています。このファイルシステムはおそらくOSで使用されており、このデバイスあるいはパーティションをフォーマットすると、そのデータが破壊されてシステムが不安定になる可能性が高いです。\n\nこの問題を解決するためには、まず最初にパーティションを削除し、フォーマットをせずにパーティションを再作成することをお勧めします。そのためには以下の手順を行ってください。\n\n1) コンピュータ(マイコンピュータ)アイコンを右クリックして「管理」を選択し、「コンピュータの管理」画面を開く。 2) 「記憶域」>「ディスクの管理」を選択。 3) 暗号化したいパーティションを選んで右クリックし、「パーティションの削除」「ボリュームの削除」「論理ドライブの削除」のいずれかを選択。 4) 「はい」をクリック。もし再起動を要求されたら再起動し、手順(1)と(2)を行い(5)に進む。 5) 空き領域/未割り当て領域を右クリックし、「新しいパーティション」「新しいシンプルボリューム」「新しい論理ドライブ」のいずれかを選択。 6) 「新しいパーティションウィザード」か「新しいシンプルボリュームウィザード」が開くので、表示された内容に従って進める。ウィザードが「パーティションのフォーマット」まで進んだら、「このパーティションをフォーマットしない」「このボリュームをフォーマットしない」のいずれかを選択する。続いて「次へ」をクリックし、最後に「終了」をクリック。 7)この時点でVeraCryptで指定されているデバイスの位置がずれていると思われるので、(もしまだ実行中なら)VeraCryptボリューム作成ウィザードをいったん終了し、再び実行する。 8) VeraCryptに戻って、再びデバイスあるいはパーティションの暗号化を試す。\n\nもしVeraCryptが再度暗号化に失敗したときは、代わりにコンテナファイルの作成を検討してください。</entry> - <entry lang="ja" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">エラー:ファイルシステムのロックを取得できないかアンマウントできません。おそらくOSかアプリケーションが使用中です(例:アンチウィルスソフトなど)。このパーティションの暗号化を続けるとデータが破壊されてシステムが不安定になるかもしれません。\n\nまず使用されているパーティション上のすべてのアプリケーションを終了してから(アンチウィルスソフトも含みます)、改めて試してください。方法がわからない場合は、以下の手順に従ってください。</entry> + <entry lang="ja" key="FORMAT_CANT_UNMOUNT_FILESYS">エラー:指定されたデバイスあるいはパーティションに、アンマウントできないファイルシステムが含まれています。このファイルシステムはおそらくOSで使用されており、このデバイスあるいはパーティションをフォーマットすると、そのデータが破壊されてシステムが不安定になる可能性が高いです。\n\nこの問題を解決するためには、まず最初にパーティションを削除し、フォーマットをせずにパーティションを再作成することをお勧めします。そのためには以下の手順を行ってください。\n\n1) コンピュータ(マイコンピュータ)アイコンを右クリックして「管理」を選択し、「コンピュータの管理」画面を開く。 2) 「記憶域」>「ディスクの管理」を選択。 3) 暗号化したいパーティションを選んで右クリックし、「パーティションの削除」「ボリュームの削除」「論理ドライブの削除」のいずれかを選択。 4) 「はい」をクリック。もし再起動を要求されたら再起動し、手順(1)と(2)を行い(5)に進む。 5) 空き領域/未割り当て領域を右クリックし、「新しいパーティション」「新しいシンプルボリューム」「新しい論理ドライブ」のいずれかを選択。 6) 「新しいパーティションウィザード」か「新しいシンプルボリュームウィザード」が開くので、表示された内容に従って進める。ウィザードが「パーティションのフォーマット」まで進んだら、「このパーティションをフォーマットしない」「このボリュームをフォーマットしない」のいずれかを選択する。続いて「次へ」をクリックし、最後に「終了」をクリック。 7)この時点でVeraCryptで指定されているデバイスの位置がずれていると思われるので、(もしまだ実行中なら)VeraCryptボリューム作成ウィザードをいったん終了し、再び実行する。 8) VeraCryptに戻って、再びデバイスあるいはパーティションの暗号化を試す。\n\nもしVeraCryptが再度暗号化に失敗したときは、代わりにコンテナファイルの作成を検討してください。</entry> + <entry lang="ja" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">エラー:ファイルシステムのロックを取得できないかアンマウントできません。おそらくOSかアプリケーションが使用中です(例:アンチウィルスソフトなど)。このパーティションの暗号化を続けるとデータが破壊されてシステムが不安定になるかもしれません。\n\nまず使用されているパーティション上のすべてのアプリケーションを終了してから(アンチウィルスソフトも含みます)、改めて試してください。方法がわからない場合は、以下の手順に従ってください。</entry> <entry lang="ja" key="DEVICE_IN_USE_INFO">警告:マウントされたデバイスあるいはパーティションのいくつかはすでに使用中です!\n\nこれを無視して進めるとシステムが不安定になるなどの望まれない結果を引き起こす可能性があります。\n\nそのデバイスあるいはパーティションを使用していると思われるアプリケーションを終了させることを強く推奨します。</entry> @@ -592,3 +592,3 @@ <entry lang="ja" key="OPENFILES_LOCK">ボリュームのロックができません。ボリューム上のいくつかのファイルが開かれたままです。そのためにアンマウントできません。</entry> - <entry lang="ja" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">システムかアプリケーションがボリュームを使用中のため、ボリュームのロックに失敗しました(おそらくボリューム上のファイルが開かれています)。\n\nこのボリュームを強制的にアンマウントしますか?</entry> + <entry lang="ja" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">システムかアプリケーションがボリュームを使用中のため、ボリュームのロックに失敗しました(おそらくボリューム上のファイルが開かれています)。\n\nこのボリュームを強制的にアンマウントしますか?</entry> <entry lang="ja" key="OPEN_VOL_TITLE">VeraCryptボリュームの選択</entry> @@ -731,3 +731,3 @@ <entry lang="ja" key="CANT_MOUNT_VOLUME">ボリュームをマウントできません。</entry> - <entry lang="ja" key="CANT_DISMOUNT_VOLUME">ボリュームをアンマウントできません。</entry> + <entry lang="ja" key="CANT_UNMOUNT_VOLUME">ボリュームをアンマウントできません。</entry> <entry lang="ja" key="FORMAT_NTFS_FAILED">WindowsはボリュームをNFTSでフォーマットすることに失敗しました。\n\n可能なら別のファイルシステムを選択してから再度試してください。あるいは、ボリュームをフォーマットせず(ファイルシステムなしを指定する)にウィザードを終了し、そのボリュームをマウントしてから、システムあるいはサードパーティのフォーマットツールを使ってみることもできます。ボリュームの暗号化状態は維持されます。</entry> @@ -773,3 +773,3 @@ <entry lang="ja" key="INPLACE_DEC_GENERIC_ERR">エラーが発生したため、VeraCryptはボリュームを復号できませんでした。以前に報告された問題を解決してから、可能であればもう一度お試しください。</entry> - <entry lang="ja" key="CANT_DISMOUNT_OUTER_VOL">エラー:外殻ボリュームをアンマウントできません!\n\nボリューム内にプログラムやシステムで使用中のファイルあるいはフォルダがあると、ボリュームのアンマウントができません。\n\nファイルやフォルダを使用していると思われるプログラムを終了させてから「再試行」をクリックしてください。</entry> + <entry lang="ja" key="CANT_UNMOUNT_OUTER_VOL">エラー:外殻ボリュームをアンマウントできません!\n\nボリューム内にプログラムやシステムで使用中のファイルあるいはフォルダがあると、ボリュームのアンマウントができません。\n\nファイルやフォルダを使用していると思われるプログラムを終了させてから「再試行」をクリックしてください。</entry> <entry lang="ja" key="CANT_GET_OUTER_VOL_INFO">エラー:外殻ボリュームの情報を取得できませんでした! ボリュームの作成を続行できません。</entry> @@ -884,3 +884,3 @@ <entry lang="ja" key="CLOSE_TC_FIRST">VeraCryptのデバイスドライバをメモリ上から解放できませんでした。\n\nまず先にVeraCryptのウィンドウをすべて閉じてください。うまくいかないようでしたら、Windowsを再起動してからもう一度試してみてください。</entry> - <entry lang="ja" key="DISMOUNT_ALL_FIRST">インストールあるいはアンインストールを続ける前に、VeraCryptのすべてのボリュームをアンマウントしなくてはなりません。</entry> + <entry lang="ja" key="UNMOUNT_ALL_FIRST">インストールあるいはアンインストールを続ける前に、VeraCryptのすべてのボリュームをアンマウントしなくてはなりません。</entry> <entry lang="ja" key="UNINSTALL_OLD_VERSION_FIRST">VeraCryptの古いバージョンがこのシステムにインストールされています。VeraCryptの新しいバージョンをインストールする前に古いバージョンをアンインストールする必要があります。\n\nこのメッセージウィンドウを閉じると、古いバージョンのアンインストーラーがすぐに起動します。なおVeraCryptのアンインストール中に暗号化ボリュームが復号されることはありません。古いVeraCryptをアンインストールしてから、再びこの新しいバージョンのVeraCryptインストーラーを実行してください。</entry> @@ -905,3 +905,3 @@ <entry lang="ja" key="OPEN">開く</entry> - <entry lang="ja" key="DISMOUNT">アンマウント</entry> + <entry lang="ja" key="UNMOUNT">アンマウント</entry> <entry lang="ja" key="SHOW_TC">メインウィンドウを表示</entry> @@ -977,3 +977,3 @@ <entry lang="ja" key="SYS_FAVORITES_REQUIRE_PBA">システムパーティション/ドライブは暗号化されてないようです。\n\nシステムお気に入りボリュームは起動前認証用のパスワードでのみマウントできます。したがって、システムお気に入りボリュームを使用するためには、先にシステムパーティション/ドライブを暗号化しておく必要があります。</entry> - <entry lang="ja" key="DISMOUNT_FIRST">先に進む前にボリュームをアンマウントしてください。</entry> + <entry lang="ja" key="UNMOUNT_FIRST">先に進む前にボリュームをアンマウントしてください。</entry> <entry lang="ja" key="CANNOT_SET_TIMER">タイマーをセットできませんでした。</entry> @@ -1011,7 +1011,7 @@ <entry lang="ja" key="HK_AUTOMOUNT_DEVICES">デバイスの自動マウント</entry> - <entry lang="ja" key="HK_DISMOUNT_ALL">すべてアンマウント</entry> + <entry lang="ja" key="HK_UNMOUNT_ALL">すべてアンマウント</entry> <entry lang="ja" key="HK_WIPE_CACHE">記憶したパスワードの消去</entry> - <entry lang="ja" key="HK_DISMOUNT_ALL_AND_WIPE">すべてアンマウント→記憶したパスワードを消去</entry> - <entry lang="ja" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">すべて強制アンマウント→記憶したパスワードを消去</entry> - <entry lang="ja" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">すべて強制アンマウント→記憶したパスワードを消去→終了</entry> + <entry lang="ja" key="HK_UNMOUNT_ALL_AND_WIPE">すべてアンマウント→記憶したパスワードを消去</entry> + <entry lang="ja" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">すべて強制アンマウント→記憶したパスワードを消去</entry> + <entry lang="ja" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">すべて強制アンマウント→記憶したパスワードを消去→終了</entry> <entry lang="ja" key="HK_MOUNT_FAVORITE_VOLUMES">お気に入りをマウント</entry> @@ -1027,10 +1027,10 @@ <entry lang="ja" key="HIDDEN_OS_HIBERNATION_PREVENTED">休止状態は阻止されました。\n\nVeraCryptは追加のブートパーティションを利用している隠しOS上での休止状態をサポートしていません。ブートパーティションは囮と隠しの両システムで共用されていることに留意してください。データの漏出防止と休止状態からの復帰時の問題に対処するため、VeraCryptは隠しシステムについて共用ブートパーティションへの書き込みおよびシステム休止を禁止する必要があるのです。</entry> - <entry lang="ja" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">%c: ドライブとしてマウントされていたVeraCryptボリュームがアンマウントされました。</entry> - <entry lang="ja" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCryptボリュームがアンマウントされました。</entry> - <entry lang="ja" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCryptボリュームがアンマウントされ、記憶されていたパスワードは抹消されました。</entry> - <entry lang="ja" key="SUCCESSFULLY_DISMOUNTED">アンマウントに成功しました</entry> + <entry lang="ja" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">%c: ドライブとしてマウントされていたVeraCryptボリュームがアンマウントされました。</entry> + <entry lang="ja" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCryptボリュームがアンマウントされました。</entry> + <entry lang="ja" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCryptボリュームがアンマウントされ、記憶されていたパスワードは抹消されました。</entry> + <entry lang="ja" key="SUCCESSFULLY_UNMOUNTED">アンマウントに成功しました</entry> <entry lang="ja" key="CONFIRM_BACKGROUND_TASK_DISABLED">警告:VeraCryptの常駐を無効にすると次の機能も無効になります:\n\n1) ホットキー\n2) 自動アンマウント(例:ログオフしたとき、不用意にホストにしていたデバイスを外したとき、タイムアウト時など)\n3) お気に入りボリュームの自動マウント\n4) 通知機能(例:隠しボリュームの保護機能が働いたときなど)\n5) トレイアイコンの表示\n\n注:トレイアイコンを右クリックして「終了」を選べば、いつでも常駐を終了できます。\n\n本当にVeraCryptの常駐機能を無効にしますか?</entry> - <entry lang="ja" key="CONFIRM_NO_FORCED_AUTODISMOUNT">警告:もしこのオプションを無効にすると、ボリューム上に開かれているファイルやフォルダがあった場合に、自動アンマウントできなくなります。\n\n本当にこのオプションを無効にしますか?</entry> - <entry lang="ja" key="WARN_PREF_AUTO_DISMOUNT">警告:今の設定では開かれたファイルやフォルダが含まれるボリュームは、自動アンマウントされません。\n\nこれを防ぐには、この設定画面の「ボリュームに開かれたファイルやフォルダがあっても強制的にアンマウント」のチェックを有効にしてください。</entry> - <entry lang="ja" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">警告:ノート型PCのバッテリー残量が低下したとき、Windowsは、実行中のアプリケーションへコンピュータが省電力モードに入ったときに通知すべきメッセージを送り損なう可能性があります。そのため、そのような場合にはVeraCryptがボリュームの自動アンマウントに失敗するかもしれません。</entry> + <entry lang="ja" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">警告:もしこのオプションを無効にすると、ボリューム上に開かれているファイルやフォルダがあった場合に、自動アンマウントできなくなります。\n\n本当にこのオプションを無効にしますか?</entry> + <entry lang="ja" key="WARN_PREF_AUTO_UNMOUNT">警告:今の設定では開かれたファイルやフォルダが含まれるボリュームは、自動アンマウントされません。\n\nこれを防ぐには、この設定画面の「ボリュームに開かれたファイルやフォルダがあっても強制的にアンマウント」のチェックを有効にしてください。</entry> + <entry lang="ja" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">警告:ノート型PCのバッテリー残量が低下したとき、Windowsは、実行中のアプリケーションへコンピュータが省電力モードに入ったときに通知すべきメッセージを送り損なう可能性があります。そのため、そのような場合にはVeraCryptがボリュームの自動アンマウントに失敗するかもしれません。</entry> <entry lang="ja" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">中断中のパーティション/ボリュームの暗号化処理があります。この処理は未完了です。\n\n今すぐ処理を再開しますか?</entry> @@ -1065,3 +1065,3 @@ <entry lang="ja" key="MOUNT_TC_VOLUME">VeraCryptボリュームのマウント</entry> - <entry lang="ja" key="DISMOUNT_ALL_TC_VOLUMES">VeraCryptボリュームのアンマウント</entry> + <entry lang="ja" key="UNMOUNT_ALL_TC_VOLUMES">VeraCryptボリュームのアンマウント</entry> <entry lang="ja" key="UAC_INIT_ERROR">VeraCryptは管理者権限の取得に失敗しました。</entry> @@ -1308,4 +1308,4 @@ <entry lang="ja" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">警告:この設定はパフォーマンスを低下させます。\n\n本当にこの設定を使用しますか?</entry> - <entry lang="ja" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">警告:VeraCryptボリュームの自動的アンマウント</entry> - <entry lang="ja" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">マウント中のボリュームが存在するデバイスを物理的に取り外したり電源を切ったりする先に、常にまずVeraCryptボリュームをアンマウントすべきです。\n\n想定外に勝手にアンマウントされるのは、ケーブルやドライブ等が断続的につながらなくなっているのが大抵の原因です。</entry> + <entry lang="ja" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">警告:VeraCryptボリュームの自動的アンマウント</entry> + <entry lang="ja" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">マウント中のボリュームが存在するデバイスを物理的に取り外したり電源を切ったりする先に、常にまずVeraCryptボリュームをアンマウントすべきです。\n\n想定外に勝手にアンマウントされるのは、ケーブルやドライブ等が断続的につながらなくなっているのが大抵の原因です。</entry> <entry lang="ja" key="UNSUPPORTED_TRUECRYPT_FORMAT">このボリュームはTrueCrypt %x.%xで作成されましたが、VeraCryptはTrueCrypt 6.x/7.xシリーズで作成されたTrueCryptボリュームのみをサポートしています。</entry> @@ -1455,3 +1455,3 @@ <entry lang="ja" key="TASKICON_PREF_OPEN_VOL">マウント済みボリュームを開く</entry> - <entry lang="ja" key="TASKICON_PREF_DISMOUNT_VOL">マウント済みボリュームをアンマウント</entry> + <entry lang="ja" key="TASKICON_PREF_UNMOUNT_VOL">マウント済みボリュームをアンマウント</entry> <entry lang="ja" key="DISK_FREE">利用可能な空き容量: {0}</entry> @@ -1485,6 +1485,6 @@ <entry lang="ja" key="LINUX_SELECT">選択...</entry> - <entry lang="ja" key="LINUX_DISMOUNT_ALL_WHEN">以下の場合にすべてのボリュームをマウント解除する</entry> + <entry lang="ja" key="LINUX_UNMOUNT_ALL_WHEN">以下の場合にすべてのボリュームをマウント解除する</entry> <entry lang="ja" key="LINUX_ENTERING_POWERSAVING">システムが省電力モードに入る時</entry> <entry lang="ja" key="LINUX_LOGIN_ACTION">ユーザーがログオンしたときに実行するアクション</entry> - <entry lang="ja" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">マウント解除中のボリュームのすべてのエクスプローラーウィンドウを閉じる</entry> + <entry lang="ja" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">マウント解除中のボリュームのすべてのエクスプローラーウィンドウを閉じる</entry> <entry lang="ja" key="LINUX_HOTKEYS">ホットキー</entry> @@ -1492,3 +1492,3 @@ <entry lang="ja" key="LINUX_SOUND_NOTIFICATION">マウント/アンマウント後にシステム通知音を鳴らす</entry> - <entry lang="ja" key="LINUX_CONFIRM_AFTER_DISMOUNT">マウント解除後に確認メッセージボックスを表示する</entry> + <entry lang="ja" key="LINUX_CONFIRM_AFTER_UNMOUNT">マウント解除後に確認メッセージボックスを表示する</entry> <entry lang="ja" key="LINUX_VC_QUITS">VeraCrypt が終了します</entry> @@ -1524,3 +1524,3 @@ <entry lang="ja" key="LINUX_KERNEL_OLD">システムは古いバージョンの Linux カーネルを使用しています。\n\nLinux カーネルのバグにより、VeraCrypt ボリュームにデータを書き込むときにシステムが応答を停止することがあります。この問題は、カーネルをバージョン 2.6.24 以降にアップグレードすることで解決できます。</entry> - <entry lang="ja" key="LINUX_VOL_DISMOUNTED">ボリューム {0} がマウント解除されました。</entry> + <entry lang="ja" key="LINUX_VOL_UNMOUNTED">ボリューム {0} がマウント解除されました。</entry> <entry lang="ja" key="LINUX_VOL_MOUNTED">ボリューム {0} がマウントされました。</entry> @@ -1643,2 +1643,5 @@ <entry lang="ja" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">警告: ボリュームのマスターキーにセキュリティの脆弱性があります。</entry> + <entry lang="ja" key="MOUNTPOINT_BLOCKED">エラー: ボリュームのマウントポイントは、保護されたシステムディレクトリと競合するためブロックされました。\n\n別のマウントポイントを選択してください。</entry> + <entry lang="ja" key="MOUNTPOINT_NOTALLOWED">エラー: ボリュームのマウントポイントは、PATH環境変数に含まれるディレクトリを上書きするため使用できません。\n\n別のマウントポイントを選択してください。</entry> + <entry lang="ja" key="INSECURE_MODE">[非セキュアモード]</entry> </localization> diff --git a/Translations/Language.ka.xml b/Translations/Language.ka.xml index cbedfdc5..a809aa46 100644 --- a/Translations/Language.ka.xml +++ b/Translations/Language.ka.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="ka" name="ქართული" en-name="Georgian" version="0.1.0" translators="Kakha Lomiashvili" /> @@ -137,4 +137,4 @@ <entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</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="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="ka" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="ka" key="IDC_PREF_CACHE_PASSWORDS">პაროლების ქეშირება მეხსიერებაში</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_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_LOGON_MOUNT_DEVICES">ყველა ტომის მიერთება მოწყობილობაზე</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">პაროლების ქეშის წაშლა ავტოგამოერთებისას</entry> + <entry lang="ka" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">პაროლების ქეშის წაშლა ავტოგამოერთებისას</entry> <entry lang="ka" key="IDC_PREF_WIPE_CACHE_ON_EXIT">პაროლების ქეშის წაშლა გასვლისას</entry> @@ -271,4 +271,4 @@ <entry lang="ka" key="IDT_AUTORUN">ავტოგაშვების ფაილის (autorun.inf) გამართვა</entry> - <entry lang="ka" key="IDT_AUTO_DISMOUNT">ავტოგამოერთება</entry> - <entry lang="ka" key="IDT_AUTO_DISMOUNT_ON">ყველა ტომის გამოერთება:</entry> + <entry lang="ka" key="IDT_AUTO_UNMOUNT">ავტოგამოერთება</entry> + <entry lang="ka" key="IDT_AUTO_UNMOUNT_ON">ყველა ტომის გამოერთება:</entry> <entry lang="en" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader Screen Options</entry> @@ -278,3 +278,3 @@ <entry lang="ka" key="IDT_DEFAULT_MOUNT_OPTIONS">ტომების მიერთების საწყისი პარამეტრები</entry> - <entry lang="ka" key="IDT_DISMOUNT_ACTION">დამატებითი პარამეტრები</entry> + <entry lang="ka" key="IDT_UNMOUNT_ACTION">დამატებითი პარამეტრები</entry> <entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry> @@ -425,4 +425,4 @@ <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_DISMOUNT_FILESYS">შეცდომა: მოწყობილობა/განაყოფი შეიცავს ფაილურ სისტემას, რომლის გამოერთებაც შეუძლებელია. ეს ფაილური სისტემა შესაძლოა გამოიყენება ოპერაციული სისტემის მიერ. მოწყობილობა/განაყოფის ფორმატირება გამოიწვევს მონაცემთა დაკარგვას და სისტემის არასტაბილურობას.\n\n პრობლემის გადასაჭრელად რეკომენდირებულია ამ განაყოფის გაუქმება, შემდეგ მისი კვლავ შექმნა ფორმატირების გარეშე. ინსტრუქცია: 1) მაუსის მარჯვენა ღილაკით დაწკაპეთ ხატულაზე "My computer" და აირჩიეთ მენიუ "Manage". 2) ფანჯარაში "Computer Management" აირჩიეთ "Storage"> "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="FORMAT_CANT_UNMOUNT_FILESYS">შეცდომა: მოწყობილობა/განაყოფი შეიცავს ფაილურ სისტემას, რომლის გამოერთებაც შეუძლებელია. ეს ფაილური სისტემა შესაძლოა გამოიყენება ოპერაციული სისტემის მიერ. მოწყობილობა/განაყოფის ფორმატირება გამოიწვევს მონაცემთა დაკარგვას და სისტემის არასტაბილურობას.\n\n პრობლემის გადასაჭრელად რეკომენდირებულია ამ განაყოფის გაუქმება, შემდეგ მისი კვლავ შექმნა ფორმატირების გარეშე. ინსტრუქცია: 1) მაუსის მარჯვენა ღილაკით დაწკაპეთ ხატულაზე "My computer" და აირჩიეთ მენიუ "Manage". 2) ფანჯარაში "Computer Management" აირჩიეთ "Storage"> "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="DEVICE_IN_USE_INFO">ყურადღება მიერთებული მოწყობილობები/განაყოფებიდან ზოგიერთი უკვე გამოიყენება.\n\nმის იგნორირებამ შეიძლება გამოიწვიოს არასასურველი შედეგები, სისტემის არასტაბილურობის ჩათვლით.\n\nრეკომენდებულია დახუროთ ყველა პროგრამა, რომელიც იყენებს ამ მოწყობილობას/განაყოფს.</entry> @@ -527,3 +527,3 @@ <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 dismount 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 unmount the volume).</entry> <entry lang="ka" key="HIDVOL_HOST_FILLING_HELP">გარე ტომი შექმნილია და მიერთებულია, როგორც დისკი %hc:. ამ ტომში საჭიროა გადმოიწეროს რაიმე ფაილები, რომლებიც არ შეიცავენ თქვენთვის მნიშვნელოვან რაიმე ინფორმაციას, რათა შეცდომაში შეიყვანოთ უცხო პირი, თუკი ის გარე ტომის პაროლს გამოგძალავთ. ამ შემთხვევაში თქვენ მას გადასცემთ მხოლოდ გარე, და არა ფარული ტომის, პაროლს. ფაილები, თქვენთვის ნამდვილად ღირებული ინფორმაციით, შეინახება ფარულ ტომზე. როდესაც მორჩებით ფაილების გადმოწერას,დააჭირეთ "შემდეგ"-ს'. არ გამოაერთოთ ეს ტომი. შენიშვნა: "შემდეგ"-ზე დაჭერა გაუშვებს გარე ტომის კლასტერების რუკის სკანირების პროცესს, უწყვეტი თავისუფალი სივრცის გამოსავლენად, რომლის დაბოლოება ახალი ტომის დაბოლოება გახდება. ეს მონაკვეთი გამოყენებულ იქნება ფარული ტომის განსათავსებლად, ანუ მისი ზომით განისაზღვრება ფარული ტომის მაქსიმალური მოცულობა. კლასტერების რუკის სკანირება იმის გარანტია, რომ გარე ტომის მონაცემები არ დაზიანდება ფარული ტომში მომხდარი ჩანაწერების შედეგად.</entry> @@ -592,3 +592,3 @@ <entry lang="ka" key="OPENFILES_LOCK">ტომის ბლოკირება შეუძლებელია. მასზე განთავსებულია ფარული ფაილებია, ამიტომ მისი გამოერთება არ შეიძლება.</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="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="ka" key="OPEN_VOL_TITLE">აირჩიეთ VeraCrypt-ის ტომი</entry> @@ -731,3 +731,3 @@ <entry lang="ka" key="CANT_MOUNT_VOLUME">ტომის მიერთება შეუძლებელია.</entry> - <entry lang="ka" key="CANT_DISMOUNT_VOLUME">ტომის გამოერთება შეუძლებელია.</entry> + <entry lang="ka" key="CANT_UNMOUNT_VOLUME">ტომის გამოერთება შეუძლებელია.</entry> <entry lang="ka" key="FORMAT_NTFS_FAILED">Windows ვერ აფორმატირებს ამ ტომს, როგორც NTFS.\n\nაირჩიეთ სხვა ფაილური სისტემა და გაიმეორეთ ცდა. ან შეგიძლიათ დასტოვოთ ეს ტომი დაუფორმატებელი (ფაილური სისტემის არჩევის ველში მიუთითეთ "არა"), დახურეტ ოსტატის ფანჯარა, მიაერთეთ ტომი, შემდეგ კი სისტემური ან სხვა უტილიტის დააფორმატირეთ მიერთებული ტომი (ამ დროს ტომი დაშიფრული რჩება).</entry> @@ -773,3 +773,3 @@ <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_DISMOUNT_OUTER_VOL">შეცდომა! გარე ტომის გამოერთება შეუძლებელია.\n\nტომის გამოერთება შეუძლებელია, თუ იგი შეიცავს ფაილებს ან ფოლდერებს, რომლებიც გამოიყენება სისტემის ან სხვა პროგრამის მიერ.\n\nდახურეთ ყველა პროგრამა, რომლებიც შესაძლოა იყენებენ ფაილებს ამ ტომში, და დააჭირეთ "გამეორება"-ს.</entry> + <entry lang="ka" key="CANT_UNMOUNT_OUTER_VOL">შეცდომა! გარე ტომის გამოერთება შეუძლებელია.\n\nტომის გამოერთება შეუძლებელია, თუ იგი შეიცავს ფაილებს ან ფოლდერებს, რომლებიც გამოიყენება სისტემის ან სხვა პროგრამის მიერ.\n\nდახურეთ ყველა პროგრამა, რომლებიც შესაძლოა იყენებენ ფაილებს ამ ტომში, და დააჭირეთ "გამეორება"-ს.</entry> <entry lang="ka" key="CANT_GET_OUTER_VOL_INFO">შეცდომა: გარე ტომის შესახებ ინფორმაციის მიღება ვერ ხერხდება! ტომის შექმნის პროცესი შეწყვეტილია.</entry> @@ -884,3 +884,3 @@ <entry lang="ka" key="CLOSE_TC_FIRST">VeraCrypt-ის დრაივერის ამოტვირთვა შეუძლებელია.\n\nდახურეთ VeraCrypt-ის ყველა გახსნილი ფანჯარა. თუ შედეგი არ არის, გადატვირთეთ Windows და სცადეთ ხელახლა.</entry> - <entry lang="ka" key="DISMOUNT_ALL_FIRST">ინსტალაციის გაგრძელებამდე, საჭიროა VeraCrypt-ის ყველა მიერთებული ტომის გამოერთება.</entry> + <entry lang="ka" key="UNMOUNT_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> @@ -905,3 +905,3 @@ <entry lang="ka" key="OPEN">გახსნა</entry> - <entry lang="ka" key="DISMOUNT">გამოერთება</entry> + <entry lang="ka" key="UNMOUNT">გამოერთება</entry> <entry lang="ka" key="SHOW_TC">VeraCrypt-ის ჩვენება</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">გაგრძელებამდე, გამოაერთეთ ტომი.</entry> + <entry lang="ka" key="UNMOUNT_FIRST">გაგრძელებამდე, გამოაერთეთ ტომი.</entry> <entry lang="ka" key="CANNOT_SET_TIMER">შეცდომა: ტაიმერის დაყენება ვერ ხერხდება.</entry> @@ -999,3 +999,3 @@ <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 dismount 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 unmount the volume.</entry> <entry lang="ka" key="HOMEPAGE">ვებ-გვერდი</entry> @@ -1011,7 +1011,7 @@ <entry lang="ka" key="HK_AUTOMOUNT_DEVICES">მოწყობილობების ავტომიერთება</entry> - <entry lang="ka" key="HK_DISMOUNT_ALL">ყველას გამოერთება</entry> + <entry lang="ka" key="HK_UNMOUNT_ALL">ყველას გამოერთება</entry> <entry lang="ka" key="HK_WIPE_CACHE">კეშის წაშლა</entry> - <entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All & 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="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All & 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="ka" key="HK_MOUNT_FAVORITE_VOLUMES">რჩეული ტომების მიერთება</entry> @@ -1027,10 +1027,10 @@ <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_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="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="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> @@ -1042,3 +1042,3 @@ <entry lang="ka" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">თქვენ დაგეგმილი გაქვთ სისტემური განაყოფის/დისკის შიფრაცია ან დეშიფრაცია. თუმცა ჩატვირთვისწინა აუთენტიფიკაცია ჩაიშალა ან არ გამოიტოვა.\n\nშენიშვნა: თუ ჩატვირთვის დროს სისტემურ განაყოფს/დისკს დეშიფრაცია გაუკეთეთ, მაშინ დაასრულეთ პროცესი - აირჩიეთ მენიუში "სისტემა">"სისტემური განაყოფის/დისკის სამუდამო დეშიფრაცია".</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">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="ka" key="CONFIRM_EXIT_UNIVERSAL">გამოვიდეთ?</entry> @@ -1065,3 +1065,3 @@ <entry lang="ka" key="MOUNT_TC_VOLUME">VeraCrypt-ის ტომის მიერთება</entry> - <entry lang="ka" key="DISMOUNT_ALL_TC_VOLUMES">VeraCrypt-ის ყველა ტომის გამოერთება</entry> + <entry lang="ka" key="UNMOUNT_ALL_TC_VOLUMES">VeraCrypt-ის ყველა ტომის გამოერთება</entry> <entry lang="ka" key="UAC_INIT_ERROR"> VeraCrypt-მა ვერ მოიპოვა ადმინისტრატორის პრივილეგიები.</entry> @@ -1287,4 +1287,4 @@ <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 '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="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="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry> @@ -1294,6 +1294,6 @@ <entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &Device and Mount...</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="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount 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 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="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="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> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <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="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry> <entry lang="en" key="DISK_FREE">Free space available: {0}</entry> @@ -1485,10 +1485,10 @@ <entry lang="en" key="LINUX_SELECT">Se&lect...</entry> - <entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry> + <entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount 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_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</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_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_VC_QUITS">VeraCrypt quits</entry> @@ -1512,3 +1512,3 @@ <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_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_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> @@ -1516,3 +1516,3 @@ <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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry> <entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry> @@ -1524,3 +1524,3 @@ <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_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry> <entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/Translations/Language.ko.xml b/Translations/Language.ko.xml index 586f5e6c..3f9ab7b4 100644 --- a/Translations/Language.ko.xml +++ b/Translations/Language.ko.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="ko" name="한국어" en-name="Korean" version="0.2.0" translators="Kieaer, Herbert Shin, BaekMu" /> @@ -137,4 +137,4 @@ <entry lang="ko" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">전역 설정</entry> - <entry lang="ko" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">단축키 분리 성공 후 말풍선 툴팁 표시</entry> - <entry lang="ko" key="IDC_HK_DISMOUNT_PLAY_SOUND">단축키 분리 성공 후 시스템 알림 소리 재생</entry> + <entry lang="ko" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">단축키 분리 성공 후 말풍선 툴팁 표시</entry> + <entry lang="ko" key="IDC_HK_UNMOUNT_PLAY_SOUND">단축키 분리 성공 후 시스템 알림 소리 재생</entry> <entry lang="en" key="IDC_HK_MOD_ALT">ALT</entry> @@ -158,8 +158,8 @@ <entry lang="ko" key="IDC_PREF_CACHE_PASSWORDS">드라이버 메모리에 암호 캐시</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_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_LOGON_MOUNT_DEVICES">디바이스 호스팅된 모든 VeraCrypt 볼륨 마운트</entry> @@ -171,3 +171,3 @@ <entry lang="ko" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">마운트된 볼륨이 있는 경우 다른 작업 표시줄 아이콘 사용</entry> - <entry lang="ko" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">자동 마운트 해제 시 캐시된 암호 지우기</entry> + <entry lang="ko" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">자동 마운트 해제 시 캐시된 암호 지우기</entry> <entry lang="ko" key="IDC_PREF_WIPE_CACHE_ON_EXIT">종료 시 캐시된 암호 지우기</entry> @@ -271,4 +271,4 @@ <entry lang="ko" key="IDT_AUTORUN">자동 실행 설정 (autorun.inf)</entry> - <entry lang="ko" key="IDT_AUTO_DISMOUNT">자동으로 마운트 해제</entry> - <entry lang="ko" key="IDT_AUTO_DISMOUNT_ON">다음과 같은 경우 모두 해제:</entry> + <entry lang="ko" key="IDT_AUTO_UNMOUNT">자동으로 마운트 해제</entry> + <entry lang="ko" key="IDT_AUTO_UNMOUNT_ON">다음과 같은 경우 모두 해제:</entry> <entry lang="ko" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">부트 로더 화면 옵션</entry> @@ -278,3 +278,3 @@ <entry lang="ko" key="IDT_DEFAULT_MOUNT_OPTIONS">기본 마운트 옵션</entry> - <entry lang="ko" key="IDT_DISMOUNT_ACTION">단축키 옵션</entry> + <entry lang="ko" key="IDT_UNMOUNT_ACTION">단축키 옵션</entry> <entry lang="ko" key="IDT_DRIVER_OPTIONS">드라이버 설정</entry> @@ -425,4 +425,4 @@ <entry lang="ko" key="DEVICE_IN_USE_INPLACE_ENC">경고: 운영 체제 또는 응용 프로그램에서 파티션을 사용 중입니다. 파티션을 사용하고있는 응용 프로그램 (바이러스 백신 소프트웨어 포함)을 닫아야합니다.\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="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="DEVICE_IN_USE_INFO">주의: 마운트된 일부 장치/파티션이 현재 사용 중입니다!\n\n이를 무시하면 시스템 불안정을 포함한 바람직하지 않은 결과를 초래할 수 있습니다.\n\n장치/파티션을 사용 중인 프로그램을 닫을 것을 권장합니다.</entry> @@ -592,3 +592,3 @@ <entry lang="ko" key="OPENFILES_LOCK">볼륨을 잠글 수 없습니다. 볼륨에 아직 열린 파일이 있어서 마운트 해제 할 수 없습니다.</entry> - <entry lang="ko" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt는 시스템 또는 응용 프로그램에서 사용 중이기 때문에 볼륨을 잠글 수 없습니다(볼륨에 열린 파일이있을 수 있음).\n\n볼륨에서 강제로 마운트 해제 하시겠습니까?</entry> + <entry lang="ko" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt는 시스템 또는 응용 프로그램에서 사용 중이기 때문에 볼륨을 잠글 수 없습니다(볼륨에 열린 파일이있을 수 있음).\n\n볼륨에서 강제로 마운트 해제 하시겠습니까?</entry> <entry lang="ko" key="OPEN_VOL_TITLE">VeraCrypt 볼륨 선택</entry> @@ -731,3 +731,3 @@ <entry lang="ko" key="CANT_MOUNT_VOLUME">볼륨을 마운트 할 수 없습니다.</entry> - <entry lang="ko" key="CANT_DISMOUNT_VOLUME">볼륨을 마운트 해제 할 수 없습니다.</entry> + <entry lang="ko" key="CANT_UNMOUNT_VOLUME">볼륨을 마운트 해제 할 수 없습니다.</entry> <entry lang="ko" key="FORMAT_NTFS_FAILED">Windows에서 볼륨을 NTFS/exFAT/ReFS로 포맷하지 못했습니다.\n\n가능한 경우 다른 유형의 파일 시스템을 선택하고 다시 시도하세요. 또는 볼륨을 포맷하지 않고 (파일 시스템으로 '없음'을 선택)이 마법사를 종료하고 볼륨을 마운트 한 다음 시스템 또는 타사 도구를 사용하여 마운트 된 볼륨을 포맷 할 수 있습니다(볼륨은 암호화 된 상태로 유지됨).</entry> @@ -773,3 +773,3 @@ <entry lang="ko" key="INPLACE_DEC_GENERIC_ERR">VeraCrypt가 볼륨을 해독하지 못하게하는 오류가 발생했습니다. 이전에보고 된 문제를 수정하고 가능한 경우 다시 시도하세요.</entry> - <entry lang="ko" key="CANT_DISMOUNT_OUTER_VOL">오류: 외부 볼륨을 마운트 해제 할 수 없습니다!\n\n볼륨에 프로그램이나 시스템에서 사용중인 파일이나 폴더가 포함되어 있으면 볼륨을 마운트 해제 할 수 없습니다.\n\n볼륨에서 파일이나 디렉토리를 사용하고있는 프로그램을 닫고 재시도를 클릭하세요..</entry> + <entry lang="ko" key="CANT_UNMOUNT_OUTER_VOL">오류: 외부 볼륨을 마운트 해제 할 수 없습니다!\n\n볼륨에 프로그램이나 시스템에서 사용중인 파일이나 폴더가 포함되어 있으면 볼륨을 마운트 해제 할 수 없습니다.\n\n볼륨에서 파일이나 디렉토리를 사용하고있는 프로그램을 닫고 재시도를 클릭하세요..</entry> <entry lang="ko" key="CANT_GET_OUTER_VOL_INFO">오류: 외부 볼륨에 대한 정보를 얻을 수 없습니다!\n볼륨 생성을 계속할 수 없습니다.</entry> @@ -884,3 +884,3 @@ <entry lang="ko" key="CLOSE_TC_FIRST">VeraCrypt 장치 드라이버를 언로드 할 수 없습니다.\n\n열려있는 모든 VeraCrypt 창을 먼저 닫으세요. 문제가 해결되지 않으면 Windows를 다시 시작한 다음 다시 시도하세요.</entry> - <entry lang="ko" key="DISMOUNT_ALL_FIRST">VeraCrypt를 설치하거나 제거하기 전에 모든 VeraCrypt 볼륨의 마운트를 해제해야합니다.</entry> + <entry lang="ko" key="UNMOUNT_ALL_FIRST">VeraCrypt를 설치하거나 제거하기 전에 모든 VeraCrypt 볼륨의 마운트를 해제해야합니다.</entry> <entry lang="ko" key="UNINSTALL_OLD_VERSION_FIRST">VeraCrypt의 구식 버전이 현재이 시스템에 설치되어 있습니다. 이 새 버전의 VeraCrypt를 설치하려면 먼저 제거해야합니다.\n\n이 메시지 상자를 닫으면 이전 버전의 제거 프로그램이 시작됩니다. VeraCrypt를 제거 할 때 볼륨이 암호 해독되지 않습니다. VeraCrypt의 이전 버전을 제거한 후 새 버전의 VeraCrypt 설치 프로그램을 다시 실행하세요.</entry> @@ -905,3 +905,3 @@ <entry lang="ko" key="OPEN">열기</entry> - <entry lang="ko" key="DISMOUNT">마운트 해제</entry> + <entry lang="ko" key="UNMOUNT">마운트 해제</entry> <entry lang="ko" key="SHOW_TC">VeraCrypt 표시</entry> @@ -977,3 +977,3 @@ <entry lang="ko" key="SYS_FAVORITES_REQUIRE_PBA">시스템 파티션/드라이브가 암호화되지 않은 것 같습니다.\n\n시스템 부팅 볼륨 사전 인증 암호 만 사용하여 시스템 선호 볼륨을 마운트 할 수 있습니다. 따라서 시스템 즐겨 찾기 볼륨을 사용하려면 먼저 시스템 파티션/드라이브를 암호화해야합니다.</entry> - <entry lang="ko" key="DISMOUNT_FIRST">진행하기 전에 볼륨의 마운트를 해제하세요.</entry> + <entry lang="ko" key="UNMOUNT_FIRST">진행하기 전에 볼륨의 마운트를 해제하세요.</entry> <entry lang="ko" key="CANNOT_SET_TIMER">오류: 타이머를 설정할 수 없습니다.</entry> @@ -1011,7 +1011,7 @@ <entry lang="ko" key="HK_AUTOMOUNT_DEVICES">자동 마운트 장치</entry> - <entry lang="ko" key="HK_DISMOUNT_ALL">모두 마운트 해제</entry> + <entry lang="ko" key="HK_UNMOUNT_ALL">모두 마운트 해제</entry> <entry lang="ko" key="HK_WIPE_CACHE">캐시 지우기</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_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> @@ -1027,10 +1027,10 @@ <entry lang="ko" key="HIDDEN_OS_HIBERNATION_PREVENTED">최대 절전 모드가 차단되었습니다.\n\nVeraCrypt는 추가 부팅 파티션을 사용하는 숨겨진 운영 체제에서 최대 절전 모드를 지원하지 않습니다. 부팅 파티션은 미끼와 숨겨진 시스템에서 공유됩니다. 따라서 최대 절전 모드에서 다시 시작하는 동안 데이터 누출 및 문제를 방지하기 위해 VeraCrypt는 숨겨진 시스템이 공유 부팅 파티션에 쓰거나 최대 절전 모드로 전환하는 것을 방지해야합니다.</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="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="CONFIRM_BACKGROUND_TASK_DISABLED">경고: VeraCrypt 백그라운드 작업을 사용하지 않으면 다음 기능이 비활성화됩니다.\n\n1) 핫 키\n2) 자동 마운트 해제 (예: 로그 오프, 부주의 한 호스트 장치 제거, 시간 초과 등)\n3 ) 좋아하는 볼륨의 자동 마운트\n4) 알림 (예: 숨겨진 볼륨의 손상이 방지 된 경우)\n5) 트레이 아이콘\n\n참고: VeraCrypt 트레이 아이콘을 마우스 오른쪽 버튼으로 클릭하고 백그라운드 작업을 종료 할 수 있습니다. '종료'를 선택하세요.\n\nVeraCrypt 백그라운드 작업을 영구적으로 비활성화 하시겠습니까?</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="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="NONSYS_INPLACE_ENC_RESUME_PROMPT">파티션/볼륨의 암호화/암호 해독 프로세스를 예약했습니다. 프로세스가 아직 완료되지 않았습니다.\n\n지금 프로세스를 재개 하시겠습니까?</entry> @@ -1065,3 +1065,3 @@ <entry lang="ko" key="MOUNT_TC_VOLUME">VeraCrypt 볼륨을 마운트</entry> - <entry lang="ko" key="DISMOUNT_ALL_TC_VOLUMES">모든 VeraCrypt 볼륨 마운트 해제</entry> + <entry lang="ko" key="UNMOUNT_ALL_TC_VOLUMES">모든 VeraCrypt 볼륨 마운트 해제</entry> <entry lang="ko" key="UAC_INIT_ERROR">VeraCrypt가 관리자 권한을 얻지 못했습니다.</entry> @@ -1308,4 +1308,4 @@ <entry lang="ko" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">경고: 이 설정은 성능을 저하시킬 수 있습니다.\n\n이 설정을 사용하시겠습니까?</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="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">경고: VeraCrypt 볼륨이 자동으로 마운트 해제되었습니다.</entry> + <entry lang="ko" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">마운트된 볼륨이 포함된 디바이스를 물리적으로 제거하거나 끄기 전에 항상 VeraCrypt에서 볼륨을 먼저 마운트 해제해야 합니다.\nn예상치 않은 자발적 하차는 일반적으로 간헐적으로 케이블, 드라이브(인클로저)에 장애가 발생하여 발생합니다.</entry> <entry lang="ko" key="UNSUPPORTED_TRUECRYPT_FORMAT">이 볼륨은 TrueCrypt %x를 사용하여 생성되었습니다. 하지만 VeraCrypt는 TrueCrypt 6.x/7.x 시리즈로 생성된 TrueCrypt 볼륨만 지원합니다.</entry> @@ -1455,3 +1455,3 @@ <entry lang="ko" key="TASKICON_PREF_OPEN_VOL">마운트된 볼륨들 열기</entry> - <entry lang="ko" key="TASKICON_PREF_DISMOUNT_VOL">마운트된 볼륨들 마운트 해제</entry> + <entry lang="ko" key="TASKICON_PREF_UNMOUNT_VOL">마운트된 볼륨들 마운트 해제</entry> <entry lang="ko" key="DISK_FREE">남은 공간: {0}</entry> @@ -1485,6 +1485,6 @@ <entry lang="ko" key="LINUX_SELECT">선택...</entry> - <entry lang="ko" key="LINUX_DISMOUNT_ALL_WHEN">이 때에 모든 볼륨 마운트 해제:</entry> + <entry lang="ko" key="LINUX_UNMOUNT_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_DISMOUNT">마운트 해제되는 모든 파일 탐색기 창 종료</entry> + <entry lang="ko" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">마운트 해제되는 모든 파일 탐색기 창 종료</entry> <entry lang="ko" key="LINUX_HOTKEYS">단축키</entry> @@ -1492,3 +1492,3 @@ <entry lang="ko" key="LINUX_SOUND_NOTIFICATION">마운트/마운트 해제 후에 시스템 알림 소리 재생</entry> - <entry lang="ko" key="LINUX_CONFIRM_AFTER_DISMOUNT">마운트 해제 후에 확인 메세지 창 표시</entry> + <entry lang="ko" key="LINUX_CONFIRM_AFTER_UNMOUNT">마운트 해제 후에 확인 메세지 창 표시</entry> <entry lang="ko" key="LINUX_VC_QUITS">VeraCrypt 종료</entry> @@ -1524,3 +1524,3 @@ <entry lang="ko" key="LINUX_KERNEL_OLD">시스템이 오래된 Linux 커널을 사용하고 있습니다.\n\nLinux 커널의 버그로 인해, VeraCrypt 볼륨으로 데이터 작성 중에 시스템이 응답을 중단할 수도 있습니다. 이 문제는 커널을 2.6.24 혹은 더 높은 버전으로 업그레이드하면 해결됩니다.</entry> - <entry lang="ko" key="LINUX_VOL_DISMOUNTED">{0} 볼륨이 마운트 해제되었습니다.</entry> + <entry lang="ko" key="LINUX_VOL_UNMOUNTED">{0} 볼륨이 마운트 해제되었습니다.</entry> <entry lang="ko" key="LINUX_VOL_MOUNTED">{0} 볼륨이 마운트되었습니다.</entry> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/Translations/Language.lv.xml b/Translations/Language.lv.xml index d04dfdf3..a5d66a26 100644 --- a/Translations/Language.lv.xml +++ b/Translations/Language.lv.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="lv" name="Latviešu" en-name="Latvian" version="0.1.0" translators="Edmunds Melkers" /> @@ -137,4 +137,4 @@ <entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</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="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="lv" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="lv" key="IDC_PREF_CACHE_PASSWORDS">Ierakstīt paroles dziņa kešatmiņā</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_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_LOGON_MOUNT_DEVICES">Uzstādīt visus ierīčveida VeraCrypt apgab.</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">Auto-demontējot, iznīcināt kešatmiņā ierakstītās paroles</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_EXIT">Aizverot, iznīcināt kešatmiņā ier. paroles</entry> @@ -271,4 +271,4 @@ <entry lang="lv" key="IDT_AUTORUN">Auto-palaišanas konfigurācija (autorun.inf)</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="lv" key="IDT_AUTO_UNMOUNT">Auto-demontēšana</entry> + <entry lang="lv" key="IDT_AUTO_UNMOUNT_ON">Demontēt visus kad</entry> <entry lang="en" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader Screen Options</entry> @@ -278,3 +278,3 @@ <entry lang="lv" key="IDT_DEFAULT_MOUNT_OPTIONS">Noklusētās uzstādīšanas iespējas</entry> - <entry lang="lv" key="IDT_DISMOUNT_ACTION">Karsto taustiņu iespējas</entry> + <entry lang="lv" key="IDT_UNMOUNT_ACTION">Karsto taustiņu iespējas</entry> <entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry> @@ -425,4 +425,4 @@ <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_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' > '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="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' > '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="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> @@ -527,4 +527,4 @@ <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 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_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_TITLE">Outer Volume Contents</entry> @@ -537,5 +537,5 @@ <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 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="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="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> @@ -568,4 +568,4 @@ <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 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="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="lv" key="MOUNT_BUTTON">Uzstādīt izvēlēto</entry> @@ -590,5 +590,5 @@ <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 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="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="OPEN_VOL_TITLE">Select a VeraCrypt Volume</entry> @@ -696,6 +696,6 @@ <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 dismount?</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="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 dismount?</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="en" key="NO_VOLUME_MOUNTED_TO_DRIVE">No volume is mounted to the specified drive letter.</entry> @@ -731,3 +731,3 @@ <entry lang="lv" key="CANT_MOUNT_VOLUME">Nav iespējams uzstādīt apgabalu.</entry> - <entry lang="lv" key="CANT_DISMOUNT_VOLUME">Nav iespējams demontēt apgabalu.</entry> + <entry lang="lv" key="CANT_UNMOUNT_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> @@ -773,3 +773,3 @@ <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_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_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_GET_OUTER_VOL_INFO">Error: Cannot obtain information about the outer volume!\nVolume creation cannot continue.</entry> @@ -884,3 +884,3 @@ <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="DISMOUNT_ALL_FIRST">All VeraCrypt volumes must be dismounted before installing or uninstalling VeraCrypt.</entry> + <entry lang="en" key="UNMOUNT_ALL_FIRST">All VeraCrypt volumes must be unmounted 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> @@ -905,3 +905,3 @@ <entry lang="lv" key="OPEN">Atvērt</entry> - <entry lang="lv" key="DISMOUNT">Demontēt</entry> + <entry lang="lv" key="UNMOUNT">Demontēt</entry> <entry lang="lv" key="SHOW_TC">Parādīt VeraCrypt</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">Lai turpinātu, vispirms demontējiet apgabalu.</entry> + <entry lang="lv" key="UNMOUNT_FIRST">Lai turpinātu, vispirms demontējiet apgabalu.</entry> <entry lang="en" key="CANNOT_SET_TIMER">Error: Cannot set timer.</entry> @@ -999,3 +999,3 @@ <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 dismount 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 unmount the volume.</entry> <entry lang="lv" key="HOMEPAGE">Mājaslapa</entry> @@ -1008,10 +1008,10 @@ <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 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="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="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_DISMOUNT_ALL">Dismount All</entry> + <entry lang="en" key="HK_UNMOUNT_ALL">Unmount All</entry> <entry lang="en" key="HK_WIPE_CACHE">Wipe Cache</entry> - <entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All & Wipe Cache</entry> - <entry lang="en" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Force Dismount All & Wipe Cache</entry> - <entry lang="en" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Force Dismount All, Wipe Cache & Exit</entry> + <entry lang="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All & Wipe Cache</entry> + <entry lang="en" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Force Unmount All & Wipe Cache</entry> + <entry lang="en" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Force Unmount All, Wipe Cache & Exit</entry> <entry lang="en" key="HK_MOUNT_FAVORITE_VOLUMES">Mount Favorite Volumes</entry> @@ -1027,10 +1027,10 @@ <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_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="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="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> @@ -1042,3 +1042,3 @@ <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' > '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-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">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_UNIVERSAL">Exit?</entry> @@ -1065,3 +1065,3 @@ <entry lang="en" key="MOUNT_TC_VOLUME">Mount VeraCrypt volume</entry> - <entry lang="en" key="DISMOUNT_ALL_TC_VOLUMES">Dismount all VeraCrypt volumes</entry> + <entry lang="en" key="UNMOUNT_ALL_TC_VOLUMES">Unmount all VeraCrypt volumes</entry> <entry lang="en" key="UAC_INIT_ERROR">VeraCrypt failed to obtain Administrator privileges.</entry> @@ -1287,4 +1287,4 @@ <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 '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="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="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry> @@ -1294,6 +1294,6 @@ <entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &Device and Mount...</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="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount 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 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="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="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> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <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="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry> <entry lang="en" key="DISK_FREE">Free space available: {0}</entry> @@ -1485,10 +1485,10 @@ <entry lang="en" key="LINUX_SELECT">Se&lect...</entry> - <entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry> + <entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount 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_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</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_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_VC_QUITS">VeraCrypt quits</entry> @@ -1512,3 +1512,3 @@ <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_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_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> @@ -1516,3 +1516,3 @@ <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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry> <entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry> @@ -1524,3 +1524,3 @@ <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_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry> <entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/Translations/Language.my.xml b/Translations/Language.my.xml index 7b0098f1..600fd661 100644 --- a/Translations/Language.my.xml +++ b/Translations/Language.my.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="my" name="မြန်မာ" en-name="Burmese" version="2.0.0" translators="Zaw Myo Htet; Transifex contributors" /> @@ -137,4 +137,4 @@ <entry lang="my" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">ဘုံသုံး ချိန်ညှိချက်များ</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_UNMOUNT_BALLOON_TOOLTIP">အထူး ကီးကို အောင်မြင်စွာ အဆုံးသတ်ပြီးပါက ပူပေါင်း လမ်းညွှန်ကို ပြပါ</entry> + <entry lang="my" key="IDC_HK_UNMOUNT_PLAY_SOUND">အထူး ကီးကို အောင်မြင်စွာ အဆုံးသတ်ပြီးပါက စက် အချက်ပြ အသံကို ဖွင့်ပါ</entry> <entry lang="my" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="my" key="IDC_PREF_CACHE_PASSWORDS">စကားဝှက်ကို ဒရိုင်ဘာ မှတ်ဉာဏ်ထဲ၌ ခေတ္တ သိမ်းဆည်းရန်</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_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_LOGON_MOUNT_DEVICES">စက်ထဲရှိ VeraCrypt volumes အားလုံးကို အစပျိုးရန်</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">အလိုအလျောက် အဆုံးသတ်သည့်အခါ ခေတ္တ မှတ်ထားသော စကားဝှက်များကို ရှင်းလင်းရန်</entry> + <entry lang="my" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">အလိုအလျောက် အဆုံးသတ်သည့်အခါ ခေတ္တ မှတ်ထားသော စကားဝှက်များကို ရှင်းလင်းရန်</entry> <entry lang="my" key="IDC_PREF_WIPE_CACHE_ON_EXIT">ထွက်သည့်အခါ ခေတ္တ မှတ်ထားသော စကားဝှက်များကို ရှင်းလင်းရန်</entry> @@ -271,4 +271,4 @@ <entry lang="my" key="IDT_AUTORUN">AutoRun ပြုပြင်ဖန်တီးမှု (autorun.inf)</entry> - <entry lang="my" key="IDT_AUTO_DISMOUNT">အလိုအလျောက် အဆုံးသတ်ရန်</entry> - <entry lang="my" key="IDT_AUTO_DISMOUNT_ON">အားလုံး အဆုံးသတ်မည့် အချိန် -</entry> + <entry lang="my" key="IDT_AUTO_UNMOUNT">အလိုအလျောက် အဆုံးသတ်ရန်</entry> + <entry lang="my" key="IDT_AUTO_UNMOUNT_ON">အားလုံး အဆုံးသတ်မည့် အချိန် -</entry> <entry lang="my" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader မျက်နှာပြင် ရွေးစရာများ</entry> @@ -278,3 +278,3 @@ <entry lang="my" key="IDT_DEFAULT_MOUNT_OPTIONS">မူလ အစပျိုး ရွေးစရာများ</entry> - <entry lang="my" key="IDT_DISMOUNT_ACTION">အထူး ကီး ရွေးစရာများ</entry> + <entry lang="my" key="IDT_UNMOUNT_ACTION">အထူး ကီး ရွေးစရာများ</entry> <entry lang="my" key="IDT_DRIVER_OPTIONS">ဒရိုက်ဗာ အစိတ်အပိုင်းများဖွဲ့စည်းပုံ</entry> @@ -425,4 +425,4 @@ <entry lang="my" key="DEVICE_IN_USE_INPLACE_ENC">သတိပေးချက် - စက်ပစ္စည်း/အခန်းကန့်ကို OS မှ (သို့) အပ္ပလီကေးရှင်းများမှ အသုံးပြုထားသည်။ အခန်းကန့်ကို အသုံးပြုသော အပ္ပလီကေးရှင်းများ (ဗိုင်းရပ်စ်သတ် ဆော့ဗ်ဝဲ အပါအဝင်)ကို ပိတ်ထားပါ။\n\n ဆက်လုပ်မည်လား?</entry> - <entry lang="my" key="FORMAT_CANT_DISMOUNT_FILESYS">ချို့ယွင်းချက် - စက်ပစ္စည်း/အခန်းကန့်၌ အဆုံးသတ်၍ မရနိုင်သော ဖိုင်စနစ် တစ်ခု ပါရှိနေသည်။ ၎င်းဖိုင်စနစ်ကို စက်လည်ပတ်မှုစနစ်က အသုံးပြုထားနိုင်သည်။ စက်ပစ္စည်း/အခန်းကန့်ကို ဖော်မက်ချခြင်းဖြင့် ဒေတာ ပျက်စီခြင်းနှင့် စက်လည်ပတ်မှုစနစ် မတည်ငြိမ်မှုများ ဖြစ်ပေါ်စေနိုင်သည်။\n\nဤပြဿနာကို ဖြေရှင်းရန်၊ ထိုအခန်းကန့်ကို ဦးစွာ ပယ်ဖျက်ပြီး ၄င်းကို ဖော်မက်ချစရာ မလိုပဲ အသစ် ပြန်ဖန်တီးပါ။ ထိုသို့ ဆောင်ရွတ်ရန်၊ အောက်ပါ အဆင့်များကို လုပ်ဆောင်ပါ -\n၁) 'Start Menu' ရှိ 'Computer' ပုံကို ညာဖက် နှိပ်ပြီး 'Manage' ကို ရွေးပါ။ 'Computer Management' ၀င်းဒိုး ပေါ်လာလိမ့်မည်။\n၂) 'Disk Management' ဝင်းဒိုးထဲ၌ 'Storage' > '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="FORMAT_CANT_UNMOUNT_FILESYS">ချို့ယွင်းချက် - စက်ပစ္စည်း/အခန်းကန့်၌ အဆုံးသတ်၍ မရနိုင်သော ဖိုင်စနစ် တစ်ခု ပါရှိနေသည်။ ၎င်းဖိုင်စနစ်ကို စက်လည်ပတ်မှုစနစ်က အသုံးပြုထားနိုင်သည်။ စက်ပစ္စည်း/အခန်းကန့်ကို ဖော်မက်ချခြင်းဖြင့် ဒေတာ ပျက်စီခြင်းနှင့် စက်လည်ပတ်မှုစနစ် မတည်ငြိမ်မှုများ ဖြစ်ပေါ်စေနိုင်သည်။\n\nဤပြဿနာကို ဖြေရှင်းရန်၊ ထိုအခန်းကန့်ကို ဦးစွာ ပယ်ဖျက်ပြီး ၄င်းကို ဖော်မက်ချစရာ မလိုပဲ အသစ် ပြန်ဖန်တီးပါ။ ထိုသို့ ဆောင်ရွတ်ရန်၊ အောက်ပါ အဆင့်များကို လုပ်ဆောင်ပါ -\n၁) 'Start Menu' ရှိ 'Computer' ပုံကို ညာဖက် နှိပ်ပြီး 'Manage' ကို ရွေးပါ။ 'Computer Management' ၀င်းဒိုး ပေါ်လာလိမ့်မည်။\n၂) 'Disk Management' ဝင်းဒိုးထဲ၌ 'Storage' > '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="DEVICE_IN_USE_INFO">သတိပေးချက် - အစပျိုးထားသော စက်ပစ္စည်းများ/အခန်းကန့်များ အချို့ကို သုံးစွဲထားပြီး ဖြစ်နိုင်သည်။\n\n ၎င်းကို လျှစ်လျှူရှုခြင်းဖြင့် စက်လည်ပတ်ရာ၌ မတည်ငြိမ်မှုများကဲ့သို့ မလိုလားအပ်သော ရလဒ်များကို ဖြစ်ပေါ်စေနိုင်သည်။\n\n စက်ပစ္စည်းများ/အခန်းကန့်များကို အသုံးပြုနေနိုင်သော အပ္ပလီကေးရှင်းများကို ပိတ်ထားရန် အလေးအနက် အကြံပြုလိုပါသည်။</entry> @@ -593,3 +593,3 @@ <entry lang="my" key="OPENFILES_LOCK">Volume ကို ပိတ်ထား၌ မရပါ။ Volume ထဲ၌ ဖွင့်နေဆဲ ဖိုင်များ ရှိနေသေးသည်။ ထိုကြောင့်၊ ၄င်းကို အဆုံးသတ်၍ မရပါ။</entry> - <entry lang="my" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt သည် volume ကို ပိတ်ထား၍ မရပါ၊ အဘယ်ကြောင့် ဆိုသော် ၄င်းကို ကွန်ပျူတာစနစ်က (သို့) အပ္ပလီကေးရှင်း () က အသုံးပြုနေသည်။\n\nVolume ကို အတင်း အဆုံးသတ်လိုသလား?</entry> + <entry lang="my" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt သည် volume ကို ပိတ်ထား၍ မရပါ၊ အဘယ်ကြောင့် ဆိုသော် ၄င်းကို ကွန်ပျူတာစနစ်က (သို့) အပ္ပလီကေးရှင်း () က အသုံးပြုနေသည်။\n\nVolume ကို အတင်း အဆုံးသတ်လိုသလား?</entry> <entry lang="my" key="OPEN_VOL_TITLE">VeraCrypt Volume တစ်ခု ရွေးချယ်ရန်</entry> @@ -733,3 +733,3 @@ <entry lang="my" key="CANT_MOUNT_VOLUME">Volume ကို အစပျိုး၍ မရပါ။</entry> - <entry lang="my" key="CANT_DISMOUNT_VOLUME">Volume ကို အဆုံးသတ်၍ မရပါ။</entry> + <entry lang="my" key="CANT_UNMOUNT_VOLUME">Volume ကို အဆုံးသတ်၍ မရပါ။</entry> <entry lang="my" key="FORMAT_NTFS_FAILED">ဝင်းဒိုးသည် volume ကို NTFS ဖော်မက်ချ၍ မရပါ။\n\nဖြစ်နိုင်ပါက အခြား ဖိုင်စနစ် အမျိုးအစား တစ်ခုခုကို ရွေးပြီး ထပ်ကြိုးစားပါ။ တနည်းအားဖြင့်၊ volume ကို ဖော်မက်မချပဲ ('ဘာမျှမရှိ' ဖိုင်စနစ်အဖြစ် ရွေးပြီး)၊ ဤအညွှန်းမှ ထွက်ပါ၊ volume ကို အစပျိုးပြီး၊ အစပျိုးထားသော volume ကို ဖော်မက်ချရန် ကွန်ပျူတာစနစ် တစ်ခု (သို့) အခြား ကိရိယာ တစ်ခုကို သုံးပါ (volume သည် ဆက်ပြီး စာဝှက်နေမည် ဖြစ်သည်)</entry> @@ -775,3 +775,3 @@ <entry lang="my" key="INPLACE_DEC_GENERIC_ERR">ပြဿနာတစ်ခုက VeraCrypt အား volume ကို ပြန်မဖြည်နိုင်အောင် တားဆီးထားသည်။ ကျေးဇူးပြု၍ ယခင်က အစီရင်ခံထားသော ပြဿနာများကို ပြင်ကြည့်ပြီးနောက် ဖြစ်နိုင်ပါက ထပ်မံကြိုးစားပါ။</entry> - <entry lang="my" key="CANT_DISMOUNT_OUTER_VOL">ချို့ယွင်းချက် - ပြင်ပ volume ကို အဆုံးသတ်၍ မရပါ!\n\nVolume သည် ၄င်း၌ ပါသော ဖိုင်များ (သို့) ဖိုင်တွဲများကို ပရိုဂရမ် တစ်ခုခု (သို့) ကွန်ပျူတာစနစ် တစ်ခုခုက အသုံးပြုနေပါက အဆုံးသတ်၍ ရမည် မဟုတ်ပါ။\n\nVolume ထဲမှ ဖိုင်များ (သို့) ဖိုင်တွဲများကို သုံးစွဲနေသော ပရိုဂရမ်ကို ပိတ်ပြီး ထပ်ကြိုးစားပါ။</entry> + <entry lang="my" key="CANT_UNMOUNT_OUTER_VOL">ချို့ယွင်းချက် - ပြင်ပ volume ကို အဆုံးသတ်၍ မရပါ!\n\nVolume သည် ၄င်း၌ ပါသော ဖိုင်များ (သို့) ဖိုင်တွဲများကို ပရိုဂရမ် တစ်ခုခု (သို့) ကွန်ပျူတာစနစ် တစ်ခုခုက အသုံးပြုနေပါက အဆုံးသတ်၍ ရမည် မဟုတ်ပါ။\n\nVolume ထဲမှ ဖိုင်များ (သို့) ဖိုင်တွဲများကို သုံးစွဲနေသော ပရိုဂရမ်ကို ပိတ်ပြီး ထပ်ကြိုးစားပါ။</entry> <entry lang="my" key="CANT_GET_OUTER_VOL_INFO">ချို့ယွင်းချက် - ပြင်ပ volume နှင့်ပါတ်သက်သော အချက်အလက် မရနိုင်ပါ!\n\nVolume ကို ဆက်လက် မဖန်တီးနိုင်ပါ။</entry> @@ -886,3 +886,3 @@ <entry lang="my" key="CLOSE_TC_FIRST">VeraCrypt device ဒရိုင်ဘာကို ရပ်တန့်၍ မရပါ။\n\n ဦးစွာ VeraCrypt ဝင်းဒိုး အားလုံးကို ပိတ်ပါ။ အကယ်၍ အလုပ်မဖြစ်ပါက၊ ၀င်းဒိုးကို ပြန်ဖွင့်ပြီး ထပ်ကြိုးစားပါ။</entry> - <entry lang="my" key="DISMOUNT_ALL_FIRST">VeraCrypt ကို စက်ထဲ မထည့်သွင်းမီ (သို့) ဖယ်ထုတ်ခြင်း မပြုမီ VeraCrypt volumes အားလုံကို အဆုံးသတ်ပါ။</entry> + <entry lang="my" key="UNMOUNT_ALL_FIRST">VeraCrypt ကို စက်ထဲ မထည့်သွင်းမီ (သို့) ဖယ်ထုတ်ခြင်း မပြုမီ VeraCrypt volumes အားလုံကို အဆုံးသတ်ပါ။</entry> <entry lang="my" key="UNINSTALL_OLD_VERSION_FIRST">တိမ်ကောနေပြီ ဖြစ်သော VeraCrypt ဗားရှင်း တစ်ခုကို ဤစက်ထဲတွင် သုံးစွဲနေသည်။ VeraCrypt ဗားရှင်း မသွင်းမီ ၄င်းကို ဖယ်ထုတ်ရမည် ဖြစ်သည်။\n\n ဤစာပုံးကို သင် ပိတ်သည့်အခါ၊ ဗားရှင်း အဟောင်၏ ဆော့ဗ်ဝဲ ဖယ်ထုတ်စနစ် ပွင့်လာလိမ့်မည်။ VeraCrypt ကို ဖယ်ထုတ်နေစဉ် မည်သည့် volume ကိုမျှ စာဝှက်ပေးမည် မဟုတ်ပါ။ VeraCrypt ဗားရှင်း အဟောင်းကို ဖယ်ထုတ်ပြီးနောက်၊ ဗားရှင်းအသစ်ကို ထည့်သွင်းပါ။</entry> @@ -907,3 +907,3 @@ <entry lang="my" key="OPEN">ဖွင့်ရန်</entry> - <entry lang="my" key="DISMOUNT">အဆုံးသတ်ရန်</entry> + <entry lang="my" key="UNMOUNT">အဆုံးသတ်ရန်</entry> <entry lang="my" key="SHOW_TC">VeraCrypt ကို ပြန်ရန်</entry> @@ -979,3 +979,3 @@ <entry lang="my" key="SYS_FAVORITES_REQUIRE_PBA">ကွန်ပျူတာစနစ် အခန်းကန့်/drive ကို စာဝှက်ထားပုံ မပေါ်ပါ။\n\nကွန်ပျူတာစနစ် စိတ်ကြိုက် volumes ကို စက်မဖွင့်မီ အတည်ပြု စကားဝှက်ဖြင့်သာ အစပျိုးနိုင်မည် ဖြစ်သည်။ ထို့ကြောင့်၊ ကွန်ပျူတာစနစ် စိတ်ကြိုက် volumes များကို ဖွင့်ရန်၊ ကွန်ပျူတာစနစ် အခန်းကန့်/drive ကို အရင် စာဝှက်ထားရန် လိုသည်။</entry> - <entry lang="my" key="DISMOUNT_FIRST">ဆက်မလုပ်မီ volume ကို အဆုံးသတ်လိုက်ပါ။</entry> + <entry lang="my" key="UNMOUNT_FIRST">ဆက်မလုပ်မီ volume ကို အဆုံးသတ်လိုက်ပါ။</entry> <entry lang="my" key="CANNOT_SET_TIMER">ချို့ယွင်းချက် - အချိန် သတ်မှတ်၍ မရပါ။</entry> @@ -1013,7 +1013,7 @@ <entry lang="my" key="HK_AUTOMOUNT_DEVICES">အလိုလို-အစပျိုးသော Devices များ</entry> - <entry lang="my" key="HK_DISMOUNT_ALL">အားလုံးကို အဆုံးသတ်ရန်</entry> + <entry lang="my" key="HK_UNMOUNT_ALL">အားလုံးကို အဆုံးသတ်ရန်</entry> <entry lang="my" key="HK_WIPE_CACHE">ကေ့ချ်ကို ရှင်းလင်းရန်</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">အားလုံးကို အတင်း အဆုံးသတ်ပါ၊ ကေ့ချ်ကို ရှင်းလင်းပါ & ထွက်ပါ</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">အားလုံးကို အတင်း အဆုံးသတ်ပါ၊ ကေ့ချ်ကို ရှင်းလင်းပါ & ထွက်ပါ</entry> <entry lang="my" key="HK_MOUNT_FAVORITE_VOLUMES">စိတ်ကြိုက် Volumes များ အစပျိုးရန်</entry> @@ -1029,10 +1029,10 @@ <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_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="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="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_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="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="NONSYS_INPLACE_ENC_RESUME_PROMPT">သင်သည် အခန်းကန့်/volume တစ်ခုခု စာဝှက်နေမှု လုပ်ငန်းစဉ်အတွက် အချိန်သတ်မှတ်ထားပြီး။ ၄င်းလုပ်ငန်းစဉ်သည် မပြီးဆုံးသေးပါ။\n\nလုပ်ငန်းစဉ်ကို ယခု ပြန်စတင်ရန် အလိုရှိသလား?</entry> @@ -1067,3 +1067,3 @@ <entry lang="my" key="MOUNT_TC_VOLUME">VeraCrypt volume ကို အစပျိုးရန်</entry> - <entry lang="my" key="DISMOUNT_ALL_TC_VOLUMES">VeraCrypt volume အားလုံးကို အဆုံးသတ်ရန်</entry> + <entry lang="my" key="UNMOUNT_ALL_TC_VOLUMES">VeraCrypt volume အားလုံးကို အဆုံးသတ်ရန်</entry> <entry lang="my" key="UAC_INIT_ERROR">VeraCrypt သည် စီမံခန့်ခွဲသူ လုပ်ပိုင်ခွင့်များ မရရှိနိုင်ပါ။</entry> @@ -1289,3 +1289,3 @@ <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 ပင်ပ အပ္ပလီကေးရှင်း ၀င်းဒိုးရှိ 'Dismount All'အခွင့်အရေးများ (Windows Vista နှင့် နောက်ထွက်တွင် ပုံမှန် ပါရှိသည်) မပါဘဲ ဖွင့်သည့်အခါ VeraCrypt အသုံးချဆော့ဖ်ဝဲလ်အဓိကဝင်းဒိုးထဲရှိ drive အက္ခရာစာရင်းတွင် ဖေါ်ပြလာမည် မဟုတ်ပါ။</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_WARNING">အရေးကြီးချက် - အကယ်၍ ဤရွေးစရာကို ဖွင့်ထားပြီး VeraCrypt ၌ စီမံခန့်ခွဲသူ လုပ်ပိုင်ခွင့် မရှိပါက၊ အစပျိုးထားသော ကွန်ပျူတာစနစ် စိတ်ကြိုက် volumes များကို VeraCrypt အပ္ပလီကေးရှင်းတွင် မြင်တွေ့ရမည် မဟုတ်ပါ၊ ၄င်းတို့ကို အဆုံးသတ်နိုင်မည် မဟုတ်ပါ။ ထို့ကြောင့်၊ ကွန်ပျူတာစနစ် စိတ်ကြိုက် volume ကို အဆုံးသတ်လိုပါက၊ VeraCrypt အိုင်ကွန် (Start မီနူးထဲ) ၌ ညာဖက်နှိပ်ပြီး ပထမဦးဆုံး 'စီမံခန့်ခွဲသူ အဖြစ် ဖွင့်ရန်' ကို ရွေးချယ်ပါ။ အလားတူ ကန့်သတ်ချက်သည် 'အားလုံး အဆုံးသတ်ရန်' ဖန်ရှင်၊ 'အလိုလို-အဆုံးသတ်ရန်' ဖန်ရှင်များ၊ 'အားလုံး အဆုံးသတ်ရန်' အထူးကီးများ၊ စသည်တို့၌ အကျုံးဝင်သည်။</entry> @@ -1310,4 +1310,4 @@ <entry lang="my" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">သတိပေးချက် - ဤချိန်ညှိချက်သည် စွမ်းဆောင်ရည်ကို နိမ့်ကျစေနိုင်သည်။\n\nဤချိန်ညှိချက်ကို သင်တကယ် အသုံးပြုလိုသလား?</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="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="UNSUPPORTED_TRUECRYPT_FORMAT">ဤ volume ကို TrueCrypt %x.%x ဖြင့် ဖန်တီးခဲ့သည်။ သို့သော် VeraCrypt သည် TrueCrypt 6.x/7.x စီးရီးဖြင့် ဖန်တီးထားသော TrueCrypt volume များကိုသာ ပံ့ပိုးပါသည်။</entry> @@ -1457,3 +1457,3 @@ <entry lang="my" key="TASKICON_PREF_OPEN_VOL">အစပျိုးထားသော Volume များကို ဖွင့်ပါ</entry> - <entry lang="my" key="TASKICON_PREF_DISMOUNT_VOL">အစပျိုးထားသော Volume များကို အဆုံးသတ်ပါ</entry> + <entry lang="my" key="TASKICON_PREF_UNMOUNT_VOL">အစပျိုးထားသော Volume များကို အဆုံးသတ်ပါ</entry> <entry lang="my" key="DISK_FREE">နေရာလွတ် ရရှိနိုင်သည် - {0}</entry> @@ -1487,6 +1487,6 @@ <entry lang="my" key="LINUX_SELECT">ရွေးချယ်ရန်…</entry> - <entry lang="my" key="LINUX_DISMOUNT_ALL_WHEN">ဤအချိန်တွင် Volume အားလုံးကို အဆုံးသတ်ပါ</entry> + <entry lang="my" key="LINUX_UNMOUNT_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_DISMOUNT">အဆုံးသတ်နေသော volume ၏ Explorer windows အားလုံးကို ပိတ်ပါ</entry> + <entry lang="my" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">အဆုံးသတ်နေသော volume ၏ Explorer windows အားလုံးကို ပိတ်ပါ</entry> <entry lang="my" key="LINUX_HOTKEYS">အထူးကီးများ</entry> @@ -1494,3 +1494,3 @@ <entry lang="my" key="LINUX_SOUND_NOTIFICATION">အစပျိုးပြီးနောက်/အဆုံးသတ်ပြီးနောက် စနစ်အသိပေးချက်အသံကို ဖွင့်ပါ</entry> - <entry lang="my" key="LINUX_CONFIRM_AFTER_DISMOUNT">အဆုံးသတ်ပြီးနောက် အတည်ပြုမက်ဆေ့ချ်အကွက်ကို ပြသပါ</entry> + <entry lang="my" key="LINUX_CONFIRM_AFTER_UNMOUNT">အဆုံးသတ်ပြီးနောက် အတည်ပြုမက်ဆေ့ချ်အကွက်ကို ပြသပါ</entry> <entry lang="my" key="LINUX_VC_QUITS">VeraCrypt ထွက်ပါပြီ</entry> @@ -1526,3 +1526,3 @@ <entry lang="my" key="LINUX_KERNEL_OLD">သင့်စနစ်သည် Linux kernel ၏ ဗားရှင်းဟောင်းကို အသုံးပြုသည်။\n\nLinux kernel ရှိ ပြဿနာတစ်ခုကြောင့် VeraCrypt volume တစ်ခုသို့ ဒေတာရေးစဉ် သင့်စနစ် ရပ်သွားနိုင်သည်။ ဤပြဿနာကို ဖြေရှင်းရန် kernel ကို ဗားရှင်း ၂.၆.၂၄ သို့မဟုတ် နောက်ပိုင်းဗားရှင်းသို့ အဆင့်မြှင့်နိုင်သည်။</entry> - <entry lang="my" key="LINUX_VOL_DISMOUNTED">Volume {0} ကို အဆုံးသတ်လိုက်ပါပြီ။</entry> + <entry lang="my" key="LINUX_VOL_UNMOUNTED">Volume {0} ကို အဆုံးသတ်လိုက်ပါပြီ။</entry> <entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry> @@ -1645,2 +1645,5 @@ <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> </localization> diff --git a/Translations/Language.nb.xml b/Translations/Language.nb.xml index d6259627..e9194245 100644 --- a/Translations/Language.nb.xml +++ b/Translations/Language.nb.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="nb" name="Norsk Bokmål" en-name="Norwegian (Bokmål)" version="0.1.0" translators="Marius Kjærstad" /> @@ -137,4 +137,4 @@ <entry lang="nb" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Globale Innstillinger</entry> - <entry lang="nb" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Vis ballongverktøytips etter vellykket snarvei-avmontering</entry> - <entry lang="nb" key="IDC_HK_DISMOUNT_PLAY_SOUND">Spill systemvarsellyd etter vellykket snarvei-avmontering</entry> + <entry lang="nb" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Vis ballongverktøytips etter vellykket snarvei-avmontering</entry> + <entry lang="nb" key="IDC_HK_UNMOUNT_PLAY_SOUND">Spill systemvarsellyd etter vellykket snarvei-avmontering</entry> <entry lang="nb" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="nb" key="IDC_PREF_CACHE_PASSWORDS">Lagre passord i driverminnet</entry> - <entry lang="nb" key="IDC_PREF_DISMOUNT_INACTIVE">Automonter volum etter at det ikke har blitt lest/skrevet data til det på</entry> - <entry lang="nb" key="IDC_PREF_DISMOUNT_LOGOFF">Bruker logger av</entry> - <entry lang="nb" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">Bruker sesjon låst</entry> - <entry lang="nb" key="IDC_PREF_DISMOUNT_POWERSAVING">Går inn i strømsparemodus</entry> - <entry lang="nb" key="IDC_PREF_DISMOUNT_SCREENSAVER">Skjermsparer lanseres</entry> - <entry lang="nb" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Tvinge automatisk avmontering selv om volumet inneholder åpne filer eller kataloger</entry> + <entry lang="nb" key="IDC_PREF_UNMOUNT_INACTIVE">Automonter volum etter at det ikke har blitt lest/skrevet data til det på</entry> + <entry lang="nb" key="IDC_PREF_UNMOUNT_LOGOFF">Bruker logger av</entry> + <entry lang="nb" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">Bruker sesjon låst</entry> + <entry lang="nb" key="IDC_PREF_UNMOUNT_POWERSAVING">Går inn i strømsparemodus</entry> + <entry lang="nb" key="IDC_PREF_UNMOUNT_SCREENSAVER">Skjermsparer lanseres</entry> + <entry lang="nb" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Tvinge automatisk avmontering selv om volumet inneholder åpne filer eller kataloger</entry> <entry lang="nb" key="IDC_PREF_LOGON_MOUNT_DEVICES">Monter alle enhetsbaserte VeraCrypt volum</entry> @@ -171,3 +171,3 @@ <entry lang="nb" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Bruk en annen systemstatusfelt ikon når det er monterte volum</entry> - <entry lang="nb" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Slett cachede passord ved automatisk avmontering</entry> + <entry lang="nb" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Slett cachede passord ved automatisk avmontering</entry> <entry lang="nb" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Slett cachede passord ved avslutning</entry> @@ -271,4 +271,4 @@ <entry lang="nb" key="IDT_AUTORUN">AutoKjør Konfigurasjon (autorun.inf)</entry> - <entry lang="nb" key="IDT_AUTO_DISMOUNT">Automatisk Avmontering</entry> - <entry lang="nb" key="IDT_AUTO_DISMOUNT_ON">Avmonter alt når:</entry> + <entry lang="nb" key="IDT_AUTO_UNMOUNT">Automatisk Avmontering</entry> + <entry lang="nb" key="IDT_AUTO_UNMOUNT_ON">Avmonter alt når:</entry> <entry lang="nb" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Valg for oppstartslaster-skjerm</entry> @@ -278,3 +278,3 @@ <entry lang="nb" key="IDT_DEFAULT_MOUNT_OPTIONS">Standard Monteringsvalg</entry> - <entry lang="nb" key="IDT_DISMOUNT_ACTION">Snarvei Alternativer</entry> + <entry lang="nb" key="IDT_UNMOUNT_ACTION">Snarvei Alternativer</entry> <entry lang="nb" key="IDT_DRIVER_OPTIONS">Driver Konfigurasjon</entry> @@ -425,4 +425,4 @@ <entry lang="nb" key="DEVICE_IN_USE_INPLACE_ENC">Advarsel: Partisjonen er i bruk av operativsystemet eller programmer. Du bør lukke eventuelle programmer som kan bruke partisjonen (inkludert antivirusprogramvare).\n\nFortsette?</entry> - <entry lang="nb" key="FORMAT_CANT_DISMOUNT_FILESYS">Feil: Enheten/partisjonen inneholder et filsystem som ikke kunne avmonteres. Filsystemet kan være i bruk av operativsystemet. Formatering av enheten/partisjonen vil sannsynligvis føre til datakorrupsjon og systemstabilitet.\n\nFor å løse dette problemet anbefaler vi å først slette partisjonen og deretter gjenopprette den uten å formatere. Følg disse trinnene:\n1) Høyreklikk på 'Datamaskin' (eller 'Min datamaskin')-ikonet i 'Start Menyen' og velg 'Behandle'. 'Datamaskinhåndtering'-vinduet skal vises.\n2) I 'Datamaskinhåndtering'-vinduet velger du 'Lagring' > 'Diskhåndtering'.\n3) Høyreklikk på partisjonen du vil kryptere og velg enten 'Slett Partisjon', eller 'Slett Volum', eller 'Slett Logisk Enhet'.\n4) Klikk 'Ja'. Hvis Windows spør deg om å starte datamaskinen, gjør det. Gjenta deretter trinn 1 og 2 og fortsett fra trinn 5.\n5) Høyreklikk på det ikke-allokerte/frie områdeområdet og velg enten 'Ny Partisjon', eller 'Nytt Enkelt Volum', eller 'Ny Logisk Enhet'.\n6) 'Ny Partisjonsveiviser' eller 'Nytt Enkelt Volum veiviser'-vinduet skal nå vises; følg instruksjonene. På veivisersiden med tittelen 'Formater Partisjon', velg enten 'Ikke formater denne partisjonen' eller 'Ikke formatere dette volumet'. I samme veiviseren, klikk 'Neste' og deretter 'Fullfør'.\n7) Merk at enhetsbanen du har valgt i VeraCrypt kan være feil nå. Avslutt derfor VeraCrypt Volumopprettelse Veiviser (hvis den fortsatt kjører) og start den på nytt.\n8) Prøv å kryptere enheten/partisjonen igjen.\n\nHvis VeraCrypt gjentatte ganger mislykkes med å kryptere enheten/partisjonen, kan du vurdere å opprette en filbeholder i stedet.</entry> - <entry lang="nb" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Feil: Filsystemet kunne ikke låses eller avmonteres. Det kan være i bruk av operativsystemet eller programmer (for eksempel antivirusprogramvare). Kryptering av partisjonen kan føre til datakorrupsjon og systemstabilitet.\n\nLukk eventuelle programmer som kan bruke filsystemet (inkludert antivirusprogramvare) og prøv igjen. Hvis dette ikke hjelper, følg stegene nedenfor.</entry> + <entry lang="nb" key="FORMAT_CANT_UNMOUNT_FILESYS">Feil: Enheten/partisjonen inneholder et filsystem som ikke kunne avmonteres. Filsystemet kan være i bruk av operativsystemet. Formatering av enheten/partisjonen vil sannsynligvis føre til datakorrupsjon og systemstabilitet.\n\nFor å løse dette problemet anbefaler vi å først slette partisjonen og deretter gjenopprette den uten å formatere. Følg disse trinnene:\n1) Høyreklikk på 'Datamaskin' (eller 'Min datamaskin')-ikonet i 'Start Menyen' og velg 'Behandle'. 'Datamaskinhåndtering'-vinduet skal vises.\n2) I 'Datamaskinhåndtering'-vinduet velger du 'Lagring' > 'Diskhåndtering'.\n3) Høyreklikk på partisjonen du vil kryptere og velg enten 'Slett Partisjon', eller 'Slett Volum', eller 'Slett Logisk Enhet'.\n4) Klikk 'Ja'. Hvis Windows spør deg om å starte datamaskinen, gjør det. Gjenta deretter trinn 1 og 2 og fortsett fra trinn 5.\n5) Høyreklikk på det ikke-allokerte/frie områdeområdet og velg enten 'Ny Partisjon', eller 'Nytt Enkelt Volum', eller 'Ny Logisk Enhet'.\n6) 'Ny Partisjonsveiviser' eller 'Nytt Enkelt Volum veiviser'-vinduet skal nå vises; følg instruksjonene. På veivisersiden med tittelen 'Formater Partisjon', velg enten 'Ikke formater denne partisjonen' eller 'Ikke formatere dette volumet'. I samme veiviseren, klikk 'Neste' og deretter 'Fullfør'.\n7) Merk at enhetsbanen du har valgt i VeraCrypt kan være feil nå. Avslutt derfor VeraCrypt Volumopprettelse Veiviser (hvis den fortsatt kjører) og start den på nytt.\n8) Prøv å kryptere enheten/partisjonen igjen.\n\nHvis VeraCrypt gjentatte ganger mislykkes med å kryptere enheten/partisjonen, kan du vurdere å opprette en filbeholder i stedet.</entry> + <entry lang="nb" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Feil: Filsystemet kunne ikke låses eller avmonteres. Det kan være i bruk av operativsystemet eller programmer (for eksempel antivirusprogramvare). Kryptering av partisjonen kan føre til datakorrupsjon og systemstabilitet.\n\nLukk eventuelle programmer som kan bruke filsystemet (inkludert antivirusprogramvare) og prøv igjen. Hvis dette ikke hjelper, følg stegene nedenfor.</entry> <entry lang="nb" key="DEVICE_IN_USE_INFO">ADVARSEL: Noen av de monterte enhetene/partisjonene var allerede i bruk!\n\nÅ ignorere dette kan føre til uønskede resultater inkludert systemstabilitet.\n\nVi anbefaler sterkt at du lukker eventuelle programmer som kan bruke enhetene/partisjonene.</entry> @@ -592,3 +592,3 @@ <entry lang="nb" key="OPENFILES_LOCK">Kan ikke låse volumet. Det er fortsatt åpne filer på volumet. Derfor kan det ikke avmonteres.</entry> - <entry lang="nb" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt kan ikke låse volumet fordi det er i bruk av systemet eller programmer (det kan være åpne filer på volumet).\n\nVil du tvinge avmontering av volumet?</entry> + <entry lang="nb" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt kan ikke låse volumet fordi det er i bruk av systemet eller programmer (det kan være åpne filer på volumet).\n\nVil du tvinge avmontering av volumet?</entry> <entry lang="nb" key="OPEN_VOL_TITLE">Velg et VeraCrypt Volum</entry> @@ -731,3 +731,3 @@ <entry lang="nb" key="CANT_MOUNT_VOLUME">Kan ikke montere volum.</entry> - <entry lang="nb" key="CANT_DISMOUNT_VOLUME">Kan ikke avmontere volum.</entry> + <entry lang="nb" key="CANT_UNMOUNT_VOLUME">Kan ikke avmontere volum.</entry> <entry lang="nb" key="FORMAT_NTFS_FAILED">Windows feilet ved å formatere volumet som NTFS/exFAT/ReFS.\n\nVelg et annet filsystem (hvis mulig) og prøv igjen. Alternativt kan du la volumet uformatert (velg 'Ingen' som filsystem), avslutte denne veiviseren, montere volumet og deretter bruke et system eller et tredjeparts verktøy for å formatere det monterte volumet (volumet forblir kryptert.</entry> @@ -773,3 +773,3 @@ <entry lang="nb" key="INPLACE_DEC_GENERIC_ERR">En feil hindret VeraCrypt fra å dekryptere volumet. Vennligst prøv å rette eventuelle tidligere rapporterte problemer og prøv deretter igjen om mulig.</entry> - <entry lang="nb" key="CANT_DISMOUNT_OUTER_VOL">Feil: Kan ikke avmontere det ytre volumet!\n\nVolumet kan ikke avmonteres hvis det inneholder filer eller mapper som fortsatt er åpne.\n\nVennligst lukk alle programmer som eventuelt bruker frekvensinnhold og klikk Prøv igjen.</entry> + <entry lang="nb" key="CANT_UNMOUNT_OUTER_VOL">Feil: Kan ikke avmontere det ytre volumet!\n\nVolumet kan ikke avmonteres hvis det inneholder filer eller mapper som fortsatt er åpne.\n\nVennligst lukk alle programmer som eventuelt bruker frekvensinnhold og klikk Prøv igjen.</entry> <entry lang="nb" key="CANT_GET_OUTER_VOL_INFO">Feil: Kan ikke få informasjon om det ytre volumet!\nVolumoppretting kan ikke fortsette.</entry> @@ -884,3 +884,3 @@ <entry lang="nb" key="CLOSE_TC_FIRST">VeraCrypt enhetsdriveren kan ikke lastes av.\n\nLukk alle åpne VeraCrypt vinduer først. Hvis dette ikke hjelper, vennligst restart Windows og prøv igjen.</entry> - <entry lang="nb" key="DISMOUNT_ALL_FIRST">Alle VeraCrypt volumer må avmonteres før installasjon eller avinstallering av VeraCrypt.</entry> + <entry lang="nb" key="UNMOUNT_ALL_FIRST">Alle VeraCrypt volumer må avmonteres før installasjon eller avinstallering av VeraCrypt.</entry> <entry lang="nb" key="UNINSTALL_OLD_VERSION_FIRST">En foreldet versjon av VeraCrypt er installert på dette systemet. Den må avinstalleres før du kan installere denne nye versjonen av VeraCrypt.\n\nSå snart du lukker denne meldingsboksen, vil avinstalleringsprogrammet for den gamle versjonen starte. Merk at ingen volum vil dekrypteres når du avinstallerer VeraCrypt. Etter å ha avinstallert den gamle versjonen av VeraCrypt, kjør installasjonsprogrammet for den nye versjonen av VeraCrypt igjen.</entry> @@ -905,3 +905,3 @@ <entry lang="nb" key="OPEN">Åpne</entry> - <entry lang="nb" key="DISMOUNT">Avmonter</entry> + <entry lang="nb" key="UNMOUNT">Avmonter</entry> <entry lang="nb" key="SHOW_TC">Vis VeraCrypt</entry> @@ -977,3 +977,3 @@ <entry lang="nb" key="SYS_FAVORITES_REQUIRE_PBA">Systempartisjonen/disken ser ikke ut til å være kryptert.\n\nSystemfavorittvolum kan bare monteres ved bruk av et pre-boot autentiseringspassord. Derfor, for å aktivere bruken av systemfavorittvolum, må du kryptere systempartisjonen/disken først.</entry> - <entry lang="nb" key="DISMOUNT_FIRST">Vennligst avmonter volumet før du fortsetter.</entry> + <entry lang="nb" key="UNMOUNT_FIRST">Vennligst avmonter volumet før du fortsetter.</entry> <entry lang="nb" key="CANNOT_SET_TIMER">Feil: Kan ikke sette tidtaker.</entry> @@ -1011,7 +1011,7 @@ <entry lang="nb" key="HK_AUTOMOUNT_DEVICES">Automonter Enheter</entry> - <entry lang="nb" key="HK_DISMOUNT_ALL">Avmonter Alle</entry> + <entry lang="nb" key="HK_UNMOUNT_ALL">Avmonter Alle</entry> <entry lang="nb" key="HK_WIPE_CACHE">Slett Cache</entry> - <entry lang="nb" key="HK_DISMOUNT_ALL_AND_WIPE">Avmonter Alle & Slett Cache</entry> - <entry lang="nb" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Tving Avmontering av Alle & Slett Cache</entry> - <entry lang="nb" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Tving Avmontering av Alle, Slett Cache & Avslutt</entry> + <entry lang="nb" key="HK_UNMOUNT_ALL_AND_WIPE">Avmonter Alle & Slett Cache</entry> + <entry lang="nb" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Tving Avmontering av Alle & Slett Cache</entry> + <entry lang="nb" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Tving Avmontering av Alle, Slett Cache & Avslutt</entry> <entry lang="nb" key="HK_MOUNT_FAVORITE_VOLUMES">Monter Favorittvolumer</entry> @@ -1027,10 +1027,10 @@ <entry lang="nb" key="HIDDEN_OS_HIBERNATION_PREVENTED">Dvalemodus har blitt forhindret.\n\nVeraCrypt støtter ikke dvalemodus på skjulte operativsystemer som bruker en ekstra oppstartspartisjon. Vennligst vær oppmerksom på at oppstartspartisjonen deles av både avlednings- og skjulte systemer. Derfor, for å hindre datalekkasjer og problemer mens du fornyer fra dvalemodus, må VeraCrypt forhindre at det skjulte systemet skriver til den delte oppstartspartisjonen og fra å gå i dvale.</entry> - <entry lang="nb" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">VeraCrypt-volumet som var montert som %c: har blitt avmontert.</entry> - <entry lang="nb" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt-volumene har blitt avmontert.</entry> - <entry lang="nb" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt-volumene har blitt avmontert og passordcache har blitt slettet.</entry> - <entry lang="nb" key="SUCCESSFULLY_DISMOUNTED">Vellykket avmontert</entry> + <entry lang="nb" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">VeraCrypt-volumet som var montert som %c: har blitt avmontert.</entry> + <entry lang="nb" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt-volumene har blitt avmontert.</entry> + <entry lang="nb" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt-volumene har blitt avmontert og passordcache har blitt slettet.</entry> + <entry lang="nb" key="SUCCESSFULLY_UNMOUNTED">Vellykket avmontert</entry> <entry lang="nb" key="CONFIRM_BACKGROUND_TASK_DISABLED">ADVARSEL: Hvis VeraCrypt Bakgrunnsoppgave er deaktivert, vil følgende funksjoner bli deaktivert:\n\n1) Snarveier\n2) Automatisk avmontering (f.eks. ved avlogging, utilsiktet fjerning av vertenhet, tidsavbrudd osv.)\n3) Automatisk montering av favorittvolumer\n4) Varsler (f.eks. når skade på skjult volum er forhindret)\n5) Skuffikon\n\nMerk: Du kan når som helst avslutte Bakgrunnsoppgaven ved å høyreklikke VeraCrypt-skuffikonet og velge 'Avslutt'.\n\nEr du sikker på at du vil permanent deaktivere VeraCrypt Bakgrunnsoppgave?</entry> - <entry lang="nb" key="CONFIRM_NO_FORCED_AUTODISMOUNT">ADVARSEL: Hvis dette alternativet deaktiveres, vil det ikke være mulig å automatisk avmontere volumer som inneholder åpne filer/kataloger.\n\nEr du sikker på at du vil deaktivere dette alternativet?</entry> - <entry lang="nb" key="WARN_PREF_AUTO_DISMOUNT">ADVARSEL: Volumer som inneholder åpne filer/kataloger vil IKKE bli automatisk avmontert.\n\nFor å forhindre dette, aktiver følgende alternativ i denne dialogen: 'Tving automatisk avmonter selv om volumet inneholder åpne filer eller kataloger'</entry> - <entry lang="nb" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">ADVARSEL: Når batteriet til den bærbare datamaskinen er lavt, kan det hende at Windows ikke sender de riktige meldingene til kjørende applikasjoner når datamaskinen går inn i strømsparingsmodus. Derfor kan VeraCrypt mislykkes i å automatisk avmontere volumer i slike tilfeller.</entry> + <entry lang="nb" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">ADVARSEL: Hvis dette alternativet deaktiveres, vil det ikke være mulig å automatisk avmontere volumer som inneholder åpne filer/kataloger.\n\nEr du sikker på at du vil deaktivere dette alternativet?</entry> + <entry lang="nb" key="WARN_PREF_AUTO_UNMOUNT">ADVARSEL: Volumer som inneholder åpne filer/kataloger vil IKKE bli automatisk avmontert.\n\nFor å forhindre dette, aktiver følgende alternativ i denne dialogen: 'Tving automatisk avmonter selv om volumet inneholder åpne filer eller kataloger'</entry> + <entry lang="nb" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">ADVARSEL: Når batteriet til den bærbare datamaskinen er lavt, kan det hende at Windows ikke sender de riktige meldingene til kjørende applikasjoner når datamaskinen går inn i strømsparingsmodus. Derfor kan VeraCrypt mislykkes i å automatisk avmontere volumer i slike tilfeller.</entry> <entry lang="nb" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Du har planlagt prosessen med kryptering/dekryptering av en partisjon/volum. Prosessen er ikke fullført ennå.\n\nVil du gjenoppta prosessen nå?</entry> @@ -1065,3 +1065,3 @@ <entry lang="nb" key="MOUNT_TC_VOLUME">Monter VeraCrypt-volum</entry> - <entry lang="nb" key="DISMOUNT_ALL_TC_VOLUMES">Avmonter alle VeraCrypt-volumer</entry> + <entry lang="nb" key="UNMOUNT_ALL_TC_VOLUMES">Avmonter alle VeraCrypt-volumer</entry> <entry lang="nb" key="UAC_INIT_ERROR">VeraCrypt klarte ikke å få administratorrettigheter.</entry> @@ -1308,4 +1308,4 @@ <entry lang="nb" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">ADVARSEL: Denne innstillingen kan redusere ytelsen.\n\nEr du sikker på at du vil bruke denne innstillingen?</entry> - <entry lang="nb" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Advarsel: VeraCrypt-volumet ble automatisk demontert</entry> - <entry lang="nb" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Før du fysisk fjerner eller slår av en enhet som inneholder et montert volum, bør du alltid demontere volumet i VeraCrypt først.\n\nUventet spontan demontering er vanligvis forårsaket av en intermittently sviktende kabel, enhet (innkapsling), etc.</entry> + <entry lang="nb" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Advarsel: VeraCrypt-volumet ble automatisk demontert</entry> + <entry lang="nb" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Før du fysisk fjerner eller slår av en enhet som inneholder et montert volum, bør du alltid demontere volumet i VeraCrypt først.\n\nUventet spontan demontering er vanligvis forårsaket av en intermittently sviktende kabel, enhet (innkapsling), etc.</entry> <entry lang="nb" key="UNSUPPORTED_TRUECRYPT_FORMAT">Dette volumet ble opprettet med TrueCrypt %x.%x, men VeraCrypt støtter bare TrueCrypt-volumer opprettet med TrueCrypt 6.x/7.x-seriene.</entry> @@ -1455,3 +1455,3 @@ <entry lang="nb" key="TASKICON_PREF_OPEN_VOL">Åpne Monterte Volumer</entry> - <entry lang="nb" key="TASKICON_PREF_DISMOUNT_VOL">Demonter Monterte Volumer</entry> + <entry lang="nb" key="TASKICON_PREF_UNMOUNT_VOL">Demonter Monterte Volumer</entry> <entry lang="nb" key="DISK_FREE">Ledig plass tilgjengelig: {0}</entry> @@ -1485,6 +1485,6 @@ <entry lang="nb" key="LINUX_SELECT">Velg</entry> - <entry lang="nb" key="LINUX_DISMOUNT_ALL_WHEN">Demonter alle volumer når</entry> + <entry lang="nb" key="LINUX_UNMOUNT_ALL_WHEN">Demonter alle volumer når</entry> <entry lang="nb" key="LINUX_ENTERING_POWERSAVING">Systemet går inn i strømsparingsmodus</entry> <entry lang="nb" key="LINUX_LOGIN_ACTION">Handlinger å utføre når brukeren logger inn</entry> - <entry lang="nb" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Lukk alle Utforsker-vinduer til volumet som demonteres</entry> + <entry lang="nb" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Lukk alle Utforsker-vinduer til volumet som demonteres</entry> <entry lang="nb" key="LINUX_HOTKEYS">Hurtigtaster</entry> @@ -1492,3 +1492,3 @@ <entry lang="nb" key="LINUX_SOUND_NOTIFICATION">Spill av systemvarsellyd etter montering/demontering</entry> - <entry lang="nb" key="LINUX_CONFIRM_AFTER_DISMOUNT">Vis bekreftelsesmeldingsboks etter demontering</entry> + <entry lang="nb" key="LINUX_CONFIRM_AFTER_UNMOUNT">Vis bekreftelsesmeldingsboks etter demontering</entry> <entry lang="nb" key="LINUX_VC_QUITS">VeraCrypt avsluttes</entry> @@ -1524,3 +1524,3 @@ <entry lang="nb" key="LINUX_KERNEL_OLD">Systemet ditt bruker en gammel versjon av Linux-kjernen.\n\nPå grunn av en feil i Linux-kjernen kan systemet ditt slutte å svare når du skriver data til et VeraCrypt-volum. Dette problemet kan løses ved å oppgradere kjernen til versjon 2.6.24 eller senere.</entry> - <entry lang="nb" key="LINUX_VOL_DISMOUNTED">Volum {0} har blitt demontert.</entry> + <entry lang="nb" key="LINUX_VOL_UNMOUNTED">Volum {0} har blitt demontert.</entry> <entry lang="nb" key="LINUX_VOL_MOUNTED">Volum {0} har blitt montert.</entry> @@ -1643,2 +1643,5 @@ <entry lang="nb" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">ADVARSEL: Volumets hovednøkkel har en sikkerhetssårbarhet.</entry> + <entry lang="nb" key="MOUNTPOINT_BLOCKED">FEIL: Volumets monteringspunkt er blokkert fordi det overstyrer en beskyttet systemkatalog.\n\nVennligst velg et annet monteringspunkt.</entry> + <entry lang="nb" key="MOUNTPOINT_NOTALLOWED">FEIL: Volumets monteringspunkt er ikke tillatt fordi det overstyrer en katalog som er en del av PATH-miljøvariabelen.\n\nVennligst velg et annet monteringspunkt.</entry> + <entry lang="nb" key="INSECURE_MODE">[USIKKER MODUS]</entry> </localization> diff --git a/Translations/Language.nl.xml b/Translations/Language.nl.xml index 07ffadeb..b7dcbea1 100644 --- a/Translations/Language.nl.xml +++ b/Translations/Language.nl.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="nl" name="Nederlands" en-name="Dutch" version="0.0.0" translators="Jan van der Wal, Peter Tak, Thomas De Rocker"/> @@ -137,4 +137,4 @@ <entry lang="nl" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Globale instellingen</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_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_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="nl" key="IDC_PREF_CACHE_PASSWORDS">Wachtw. in stuurprog.-geheugen opslaan</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_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_LOGON_MOUNT_DEVICES">Alle apparaat-gehoste VeraCrypt-volumes koppelen</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">Opgeslagen wachtwoorden wissen bij auto-ontkoppelen</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_EXIT">Opgeslagen wachtwoorden wissen bij afsluiten</entry> @@ -271,4 +271,4 @@ <entry lang="nl" key="IDT_AUTORUN">AutoRun-configuratie (autorun.inf)</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_AUTO_UNMOUNT">Automatisch ontkoppelen</entry> + <entry lang="nl" key="IDT_AUTO_UNMOUNT_ON">Alles ontkoppelen als:</entry> <entry lang="nl" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Opties bootloaderscherm</entry> @@ -278,3 +278,3 @@ <entry lang="nl" key="IDT_DEFAULT_MOUNT_OPTIONS">Standaard koppelopties</entry> - <entry lang="nl" key="IDT_DISMOUNT_ACTION">Sneltoetsopties</entry> + <entry lang="nl" key="IDT_UNMOUNT_ACTION">Sneltoetsopties</entry> <entry lang="nl" key="IDT_DRIVER_OPTIONS">Stuurprogrammaconfiguratie</entry> @@ -425,4 +425,4 @@ <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_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' > '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="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' > '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="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> @@ -592,3 +592,3 @@ <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_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="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="OPEN_VOL_TITLE">Selecteer een VeraCrypt-volume</entry> @@ -731,3 +731,3 @@ <entry lang="nl" key="CANT_MOUNT_VOLUME">Kan volume niet koppelen.</entry> - <entry lang="nl" key="CANT_DISMOUNT_VOLUME">Kan volume niet ontkoppelen.</entry> + <entry lang="nl" key="CANT_UNMOUNT_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> @@ -773,3 +773,3 @@ <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_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_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_GET_OUTER_VOL_INFO">Fout: Kan geen informatie krijgen over het buitenste volume!\nHet aanmaken van het volume kan niet doorgaan.</entry> @@ -884,3 +884,3 @@ <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="DISMOUNT_ALL_FIRST">Alle VeraCrypt-volumes moeten worden ontkoppeld voordat u VeraCrypt installeert of verwijdert.</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="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> @@ -905,3 +905,3 @@ <entry lang="nl" key="OPEN">Openen</entry> - <entry lang="nl" key="DISMOUNT">Ontkoppelen</entry> + <entry lang="nl" key="UNMOUNT">Ontkoppelen</entry> <entry lang="nl" key="SHOW_TC">VeraCrypt weergeven</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">Ontkoppel het volume voordat u verder gaat.</entry> + <entry lang="nl" key="UNMOUNT_FIRST">Ontkoppel het volume voordat u verder gaat.</entry> <entry lang="nl" key="CANNOT_SET_TIMER">Fout: kan de timer niet instellen.</entry> @@ -1011,7 +1011,7 @@ <entry lang="nl" key="HK_AUTOMOUNT_DEVICES">Automatisch koppelen</entry> - <entry lang="nl" key="HK_DISMOUNT_ALL">Alles ontkoppelen</entry> + <entry lang="nl" key="HK_UNMOUNT_ALL">Alles ontkoppelen</entry> <entry lang="nl" key="HK_WIPE_CACHE">Cache wissen</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_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_MOUNT_FAVORITE_VOLUMES">Favoriete volumes koppelen</entry> @@ -1027,10 +1027,10 @@ <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_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="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="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_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="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="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> @@ -1065,3 +1065,3 @@ <entry lang="nl" key="MOUNT_TC_VOLUME">VeraCrypt-volume koppelen</entry> - <entry lang="nl" key="DISMOUNT_ALL_TC_VOLUMES">Alle VeraCrypt-volumes ontkoppelen</entry> + <entry lang="nl" key="UNMOUNT_ALL_TC_VOLUMES">Alle VeraCrypt-volumes ontkoppelen</entry> <entry lang="nl" key="UAC_INIT_ERROR">VeraCrypt kon geen beheerdersrechten verkrijgen.</entry> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <entry lang="nl" key="TASKICON_PREF_OPEN_VOL">Gekoppelde volumes openen</entry> - <entry lang="nl" key="TASKICON_PREF_DISMOUNT_VOL">Gekoppelde volumes ontkoppelen</entry> + <entry lang="nl" key="TASKICON_PREF_UNMOUNT_VOL">Gekoppelde volumes ontkoppelen</entry> <entry lang="nl" key="DISK_FREE">Beschikbare vrije ruimte: {0}</entry> @@ -1485,6 +1485,6 @@ <entry lang="nl" key="LINUX_SELECT">Selecteren...</entry> - <entry lang="nl" key="LINUX_DISMOUNT_ALL_WHEN">Alle volumes ontkoppelen als</entry> + <entry lang="nl" key="LINUX_UNMOUNT_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_DISMOUNT">Alle verkennervensters sluiten van volume dat ontkoppeld wordt</entry> + <entry lang="nl" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Alle verkennervensters sluiten van volume dat ontkoppeld wordt</entry> <entry lang="nl" key="LINUX_HOTKEYS">Sneltoetsen</entry> @@ -1492,3 +1492,3 @@ <entry lang="nl" key="LINUX_SOUND_NOTIFICATION">Systeemgeluid afspelen na koppelen/ontkoppelen</entry> - <entry lang="nl" key="LINUX_CONFIRM_AFTER_DISMOUNT">Bevestiging via berichtvenster weergeven na ontkoppelen</entry> + <entry lang="nl" key="LINUX_CONFIRM_AFTER_UNMOUNT">Bevestiging via berichtvenster weergeven na ontkoppelen</entry> <entry lang="nl" key="LINUX_VC_QUITS">VeraCrypt is aan het afsluiten</entry> @@ -1524,3 +1524,3 @@ <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_DISMOUNTED">Volume {0} is ontkoppeld.</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> @@ -1643,2 +1643,5 @@ <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 beschermde systeemdirectory overschrijft.\n\nKies een ander koppelpunt.</entry> + <entry lang="nl" key="MOUNTPOINT_NOTALLOWED">FOUT: Het koppelpunt van het volume is niet toegestaan omdat het een directory overschrijft die deel uitmaakt van de PATH-omgevingsvariabele.\n\nKies een ander koppelpunt.</entry> + <entry lang="nl" key="INSECURE_MODE">[ONVEILIGE MODUS]</entry> </localization> diff --git a/Translations/Language.nn.xml b/Translations/Language.nn.xml index 84c0192d..7a181a6f 100644 --- a/Translations/Language.nn.xml +++ b/Translations/Language.nn.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="nn" name="Norsk Nynorsk" en-name="Norwegian (Nynorsk)" version="0.1.0" translators="Kjell Rune Helland" /> @@ -137,4 +137,4 @@ <entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</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="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="nn" key="IDC_HK_MOD_ALT">alt</entry> @@ -158,8 +158,8 @@ <entry lang="nn" key="IDC_PREF_CACHE_PASSWORDS">Snøgglagra passord i drivar minne</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_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_LOGON_MOUNT_DEVICES">Monter alle einings-verta VeraCrypt volum</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">Slett snøgglagra passord ved automatisk avmontering</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_EXIT">Slett snøgglagra passord ved avslutning</entry> @@ -271,4 +271,4 @@ <entry lang="nn" key="IDT_AUTORUN">AutoKøyr Konfigurasjon (autorun.inf)</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="nn" key="IDT_AUTO_UNMOUNT">Auto-Avmonter</entry> + <entry lang="nn" key="IDT_AUTO_UNMOUNT_ON">Avmonter alle når:</entry> <entry lang="en" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader Screen Options</entry> @@ -278,3 +278,3 @@ <entry lang="nn" key="IDT_DEFAULT_MOUNT_OPTIONS">Standard Monternigs Alternativ</entry> - <entry lang="nn" key="IDT_DISMOUNT_ACTION">Snøggtast Alternativ</entry> + <entry lang="nn" key="IDT_UNMOUNT_ACTION">Snøggtast Alternativ</entry> <entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry> @@ -425,4 +425,4 @@ <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_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' > '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="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' > '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="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> @@ -527,4 +527,4 @@ <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 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_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="nn" key="HIDVOL_HOST_FILLING_TITLE">Innhald på Ytre Volum</entry> @@ -537,5 +537,5 @@ <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 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="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="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> @@ -592,3 +592,3 @@ <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_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="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="nn" key="OPEN_VOL_TITLE">Vel eit VeraCrypt Volum</entry> @@ -731,3 +731,3 @@ <entry lang="nn" key="CANT_MOUNT_VOLUME">Kan ikkje montera volum.</entry> - <entry lang="nn" key="CANT_DISMOUNT_VOLUME">Kan ikkje demontera volum.</entry> + <entry lang="nn" key="CANT_UNMOUNT_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> @@ -773,3 +773,3 @@ <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_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_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_GET_OUTER_VOL_INFO">Error: Cannot obtain information about the outer volume!\nVolume creation cannot continue.</entry> @@ -884,3 +884,3 @@ <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="DISMOUNT_ALL_FIRST">Alle VeraCrypt volum må demonterast før du installerar eller avinstallerar VeraCrypt.</entry> + <entry lang="nn" key="UNMOUNT_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> @@ -905,3 +905,3 @@ <entry lang="nn" key="OPEN">Opne</entry> - <entry lang="nn" key="DISMOUNT">Demonter</entry> + <entry lang="nn" key="UNMOUNT">Demonter</entry> <entry lang="nn" key="SHOW_TC">Vis VeraCrypt</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">Ver venleg å demonter volum før du held fram.</entry> + <entry lang="nn" key="UNMOUNT_FIRST">Ver venleg å demonter volum før du held fram.</entry> <entry lang="en" key="CANNOT_SET_TIMER">Error: Cannot set timer.</entry> @@ -999,3 +999,3 @@ <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 dismount 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 unmount the volume.</entry> <entry lang="nn" key="HOMEPAGE">Heimeside</entry> @@ -1008,10 +1008,10 @@ <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 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="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="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_DISMOUNT_ALL">Demonter alle</entry> + <entry lang="nn" key="HK_UNMOUNT_ALL">Demonter alle</entry> <entry lang="nn" key="HK_WIPE_CACHE">Slett snøgglager</entry> - <entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All & Wipe Cache</entry> - <entry lang="nn" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Tving demontering av alle & 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 & Avslutt</entry> + <entry lang="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All & Wipe Cache</entry> + <entry lang="nn" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Tving demontering av alle & 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 & Avslutt</entry> <entry lang="nn" key="HK_MOUNT_FAVORITE_VOLUMES">Monter Favoritt Volum</entry> @@ -1027,10 +1027,10 @@ <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_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="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="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> @@ -1042,3 +1042,3 @@ <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' > '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-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">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_UNIVERSAL">Exit?</entry> @@ -1065,3 +1065,3 @@ <entry lang="nn" key="MOUNT_TC_VOLUME">Mounter VeraCrypt volum</entry> - <entry lang="nn" key="DISMOUNT_ALL_TC_VOLUMES">Demonter alle VeraCrypt volum</entry> + <entry lang="nn" key="UNMOUNT_ALL_TC_VOLUMES">Demonter alle VeraCrypt volum</entry> <entry lang="nn" key="UAC_INIT_ERROR">VeraCrypt kunne ikkje skaffa Administrator rettigheiter.</entry> @@ -1287,4 +1287,4 @@ <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 '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="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="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry> @@ -1294,6 +1294,6 @@ <entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &Device and Mount...</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="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount 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 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="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="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> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <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="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry> <entry lang="en" key="DISK_FREE">Free space available: {0}</entry> @@ -1485,10 +1485,10 @@ <entry lang="en" key="LINUX_SELECT">Se&lect...</entry> - <entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry> + <entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount 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_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</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_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_VC_QUITS">VeraCrypt quits</entry> @@ -1512,3 +1512,3 @@ <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_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_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> @@ -1516,3 +1516,3 @@ <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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry> <entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry> @@ -1524,3 +1524,3 @@ <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_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry> <entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/Translations/Language.pl.xml b/Translations/Language.pl.xml index b8260b03..2c736d45 100644 --- a/Translations/Language.pl.xml +++ b/Translations/Language.pl.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="pl" name="Polski" en-name="Polish" version="1.0.0" translators="Mirek Druchowicz, Janusz Zamecki, Sobiesław Antolak, Begina Felicysym" /> @@ -137,4 +137,4 @@ <entry lang="pl" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Ustawienia ogólne</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_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_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="pl" key="IDC_PREF_CACHE_PASSWORDS">Przechowuj hasła w pamięci sterownika</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_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_LOGON_MOUNT_DEVICES">Podłącz wszystkie wolumeny VC w urządzeniach</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">Wyczyść pamięć haseł po automatycznym odłączeniu</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_EXIT">Wyczyść pamięć haseł przy wyjściu</entry> @@ -223,3 +223,3 @@ <entry lang="pl" key="IDM_HELP">Podręcznik użytkownika</entry> - <entry lang="pl" key="IDM_HOMEPAGE">St&rona WWW </entry> + <entry lang="pl" key="IDM_HOMEPAGE">St&rona WWW</entry> <entry lang="pl" key="IDM_HOTKEY_SETTINGS">Skróty klawiaturowe...</entry> @@ -271,4 +271,4 @@ <entry lang="pl" key="IDT_AUTORUN">Konfiguracja automatycznego uruchamiania (autorun.inf)</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_AUTO_UNMOUNT">Automatyczne odłączanie</entry> + <entry lang="pl" key="IDT_AUTO_UNMOUNT_ON">Odłącz wszystko, gdy:</entry> <entry lang="pl" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Opcje obrazu 'Programu startowego'</entry> @@ -278,3 +278,3 @@ <entry lang="pl" key="IDT_DEFAULT_MOUNT_OPTIONS">Domyślne opcje podłączania</entry> - <entry lang="pl" key="IDT_DISMOUNT_ACTION">Opcje klawiatury</entry> + <entry lang="pl" key="IDT_UNMOUNT_ACTION">Opcje klawiatury</entry> <entry lang="pl" key="IDT_DRIVER_OPTIONS">Konfiguracja sterownika</entry> @@ -385,3 +385,3 @@ <entry lang="pl" key="MENU_HELP">Pomo&c</entry> - <entry lang="pl" key="MENU_WEBSITE"> St&rona WWW </entry> + <entry lang="pl" key="MENU_WEBSITE">St&rona WWW</entry> <entry lang="pl" key="ABOUTBOX">I&nformacje...</entry> @@ -425,4 +425,4 @@ <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_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' > '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="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' > '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="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> @@ -592,3 +592,3 @@ <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_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="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="OPEN_VOL_TITLE">Wybierz wolumen VeraCrypt</entry> @@ -731,3 +731,3 @@ <entry lang="pl" key="CANT_MOUNT_VOLUME">Nie można podłączyć wolumenu.</entry> - <entry lang="pl" key="CANT_DISMOUNT_VOLUME">Nie można odłączyć wolumenu.</entry> + <entry lang="pl" key="CANT_UNMOUNT_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> @@ -773,3 +773,3 @@ <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_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_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_GET_OUTER_VOL_INFO">Błąd: Nie można uzyskać informacji o wolumenie zewnętrznym! Tworzenie wolumenu nie może być kontynuowane.</entry> @@ -884,3 +884,3 @@ <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="DISMOUNT_ALL_FIRST">Wszystkie wolumeny programu VeraCrypt muszą zostać odłączone przed instalacją lub odinstalowaniem programu VeraCrypt.</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="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> @@ -905,3 +905,3 @@ <entry lang="pl" key="OPEN">Otwórz</entry> - <entry lang="pl" key="DISMOUNT">Odłącz</entry> + <entry lang="pl" key="UNMOUNT">Odłącz</entry> <entry lang="pl" key="SHOW_TC">Pokaż VeraCrypt</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">Odłącz wolumen przed przejściem dalej.</entry> + <entry lang="pl" key="UNMOUNT_FIRST">Odłącz wolumen przed przejściem dalej.</entry> <entry lang="pl" key="CANNOT_SET_TIMER">Błąd: Nie można ustawić stopera.</entry> @@ -1011,7 +1011,7 @@ <entry lang="pl" key="HK_AUTOMOUNT_DEVICES">Automatycznie podłączanie urządzeń</entry> - <entry lang="pl" key="HK_DISMOUNT_ALL">Odłącz wszystko</entry> + <entry lang="pl" key="HK_UNMOUNT_ALL">Odłącz wszystko</entry> <entry lang="pl" key="HK_WIPE_CACHE">Wyczyść pamięć podręczną</entry> - <entry lang="pl" key="HK_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_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_MOUNT_FAVORITE_VOLUMES">Podłącz wolumeny ulubione</entry> @@ -1027,10 +1027,10 @@ <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_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="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="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_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="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="NONSYS_INPLACE_ENC_RESUME_PROMPT">Zaplanowano proces szyfrowania partycji/wolumenu. Proces jeszcze nie został zakończony.\n\nCzy chcesz teraz wznowić proces?</entry> @@ -1065,3 +1065,3 @@ <entry lang="pl" key="MOUNT_TC_VOLUME">Podłącz wolumen VeraCrypt</entry> - <entry lang="pl" key="DISMOUNT_ALL_TC_VOLUMES">Odłącz wszystkie wolumeny VeraCrypt</entry> + <entry lang="pl" key="UNMOUNT_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> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <entry lang="pl" key="TASKICON_PREF_OPEN_VOL">Otwórz podłączone wolumeny</entry> - <entry lang="pl" key="TASKICON_PREF_DISMOUNT_VOL">Odłącz podłączone wolumeny</entry> + <entry lang="pl" key="TASKICON_PREF_UNMOUNT_VOL">Odłącz podłączone wolumeny</entry> <entry lang="pl" key="DISK_FREE">Dostępna wolna przestrzeń: {0}</entry> @@ -1485,6 +1485,6 @@ <entry lang="pl" key="LINUX_SELECT">Wyb&ierz...</entry> - <entry lang="pl" key="LINUX_DISMOUNT_ALL_WHEN">Odłącz wszystkie wolumeny, gdy</entry> + <entry lang="pl" key="LINUX_UNMOUNT_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_DISMOUNT">Zamknij wszystkie okna Eksploratora odłączanego wolumenu</entry> + <entry lang="pl" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Zamknij wszystkie okna Eksploratora odłączanego wolumenu</entry> <entry lang="pl" key="LINUX_HOTKEYS">Skróty klawiszowe</entry> @@ -1492,3 +1492,3 @@ <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_DISMOUNT">Wyświetl okno komunikatu potwierdzenia po 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_VC_QUITS">VeraCrypt kończy pracę</entry> @@ -1524,3 +1524,3 @@ <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_DISMOUNTED">Wolumen {0} został odłączony.</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> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/Translations/Language.pt-br.xml b/Translations/Language.pt-br.xml index 9092f7e8..de26baf6 100644 --- a/Translations/Language.pt-br.xml +++ b/Translations/Language.pt-br.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="pt-br" name="Português-Brasil" en-name="Portuguese (Brazil)" version="0.2.0" translators="Thiago C. L. Mendes, Lecidio S. Alencar , Lucas C. Ferreira, Daniel Dias Rodrigues, Transifex contributors" /> @@ -120,4 +120,4 @@ <entry lang="pt-br" key="IDC_DISABLE_BOOT_LOADER_OUTPUT">Não mo&strar quaisquer textos na tela de autenticação pré-boot (exceto a mensagem personalizada abaixo)</entry> - <entry lang="en" key="IDC_DISABLE_EVIL_MAID_ATTACK_DETECTION">Disable "Evil Maid" attack detection</entry> - <entry lang="en" key="IDC_ENABLE_HARDWARE_ENCRYPTION">Accelerate AES encryption/decryption by using the AES instructions of the processor (if available)</entry> + <entry lang="pt-br" key="IDC_DISABLE_EVIL_MAID_ATTACK_DETECTION">Desativar a detecção de ataques "Evil Maid"</entry> + <entry lang="pt-br" key="IDC_ENABLE_HARDWARE_ENCRYPTION">Acelerar a criptografia/descriptografia AES usando as instruções AES do processador (se disponível)</entry> <entry lang="pt-br" key="IDC_ENABLE_KEYFILES">Usar arquivos-chave</entry> @@ -125,16 +125,16 @@ <entry lang="pt-br" key="IDC_EXIT">Sai&r</entry> - <entry lang="en" key="IDC_FAVORITES_HELP_LINK">Help on favorite volumes</entry> - <entry lang="en" key="IDC_FAVORITE_DISABLE_HOTKEY">Do not mount selected volume when 'Mount Favorite Volumes' &hot key is pressed</entry> - <entry lang="en" key="IDC_FAVORITE_MOUNT_ON_ARRIVAL">Mount selected volume when its host device gets &connected</entry> - <entry lang="en" key="IDC_FAVORITE_MOUNT_ON_LOGON">Mount selected volume upon log&on</entry> - <entry lang="en" key="IDC_FAVORITE_MOUNT_READONLY">Mount selected volume as read-o&nly</entry> - <entry lang="en" key="IDC_FAVORITE_MOUNT_REMOVABLE">Mount selected volume as remo&vable medium</entry> + <entry lang="pt-br" key="IDC_FAVORITES_HELP_LINK">Ajuda sobre volumes favoritos</entry> + <entry lang="pt-br" key="IDC_FAVORITE_DISABLE_HOTKEY">Não montar o volume selecionado quando a tecla de atalho 'Montar Volumes Favoritos' for pressionada</entry> + <entry lang="pt-br" key="IDC_FAVORITE_MOUNT_ON_ARRIVAL">Montar o volume selecionado quando seu dispositivo host for &conectado</entry> + <entry lang="pt-br" key="IDC_FAVORITE_MOUNT_ON_LOGON">Montar o volume selecionado ao fazer lo&gin</entry> + <entry lang="pt-br" key="IDC_FAVORITE_MOUNT_READONLY">Montar o volume selecionado como somente leit&ura</entry> + <entry lang="pt-br" key="IDC_FAVORITE_MOUNT_REMOVABLE">Montar o volume selecionado como mídia remo&vível</entry> <entry lang="pt-br" key="IDC_FAVORITE_MOVE_DOWN">Mover para &Baixo</entry> <entry lang="pt-br" key="IDC_FAVORITE_MOVE_UP">Mover para &Cima</entry> - <entry lang="en" key="IDC_FAVORITE_OPEN_EXPLORER_WIN_ON_MOUNT">Open &Explorer window for selected volume when successfully mounted</entry> + <entry lang="pt-br" key="IDC_FAVORITE_OPEN_EXPLORER_WIN_ON_MOUNT">Abrir uma janela do &Explorador para o volume selecionado quando montado com sucesso</entry> <entry lang="pt-br" key="IDC_FAVORITE_REMOVE">&Remover</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_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="pt-br" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">Usar o rótulo favorito como rótulo de unidade no Explorador</entry> + <entry lang="pt-br" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Configurações Globais</entry> + <entry lang="pt-br" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Exibir dica de balão após desmontagem bem-sucedida com tecla de atalho</entry> + <entry lang="pt-br" key="IDC_HK_UNMOUNT_PLAY_SOUND">Tocar som de notificação do sistema após desmontagem bem-sucedida com tecla de atalho</entry> <entry lang="pt-br" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="pt-br" key="IDC_PREF_CACHE_PASSWORDS">Manter as senhas na memória do driver</entry> - <entry lang="pt-br" key="IDC_PREF_DISMOUNT_INACTIVE">Desmontar volume automaticamente se nenhum dado for lido/escrito por</entry> - <entry lang="pt-br" key="IDC_PREF_DISMOUNT_LOGOFF">Usuário fizer log-off</entry> - <entry lang="pt-br" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">Sessão do usuário bloqueada</entry> - <entry lang="pt-br" key="IDC_PREF_DISMOUNT_POWERSAVING">Entrar em modo de economia de energia</entry> - <entry lang="pt-br" key="IDC_PREF_DISMOUNT_SCREENSAVER">Protetor de tela for ativado</entry> - <entry lang="pt-br" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Forçar desmonte automático mesmo que o volume tenha arquivos ou diretórios abertos</entry> + <entry lang="pt-br" key="IDC_PREF_UNMOUNT_INACTIVE">Desmontar volume automaticamente se nenhum dado for lido/escrito por</entry> + <entry lang="pt-br" key="IDC_PREF_UNMOUNT_LOGOFF">Usuário fizer log-off</entry> + <entry lang="pt-br" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">Sessão do usuário bloqueada</entry> + <entry lang="pt-br" key="IDC_PREF_UNMOUNT_POWERSAVING">Entrar em modo de economia de energia</entry> + <entry lang="pt-br" key="IDC_PREF_UNMOUNT_SCREENSAVER">Protetor de tela for ativado</entry> + <entry lang="pt-br" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Forçar desmonte automático mesmo que o volume tenha arquivos ou diretórios abertos</entry> <entry lang="pt-br" key="IDC_PREF_LOGON_MOUNT_DEVICES">Montar todos os volumes armazenados no dispositivo</entry> @@ -171,3 +171,3 @@ <entry lang="pt-br" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Use um ícone diferente na barra de tarefas quando houver volumes montados</entry> - <entry lang="pt-br" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Apagar senhas ao desmontar automaticamente</entry> + <entry lang="pt-br" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Apagar senhas ao desmontar automaticamente</entry> <entry lang="pt-br" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Apagar senhas ao sair</entry> @@ -271,4 +271,4 @@ <entry lang="pt-br" key="IDT_AUTORUN">Configuração de Execução Automática (autorun.inf)</entry> - <entry lang="pt-br" key="IDT_AUTO_DISMOUNT">Desmontar Automaticamente</entry> - <entry lang="pt-br" key="IDT_AUTO_DISMOUNT_ON">Desmontar todos quando:</entry> + <entry lang="pt-br" key="IDT_AUTO_UNMOUNT">Desmontar Automaticamente</entry> + <entry lang="pt-br" key="IDT_AUTO_UNMOUNT_ON">Desmontar todos quando:</entry> <entry lang="pt-br" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Opções da Tela de Carregamento do Boot</entry> @@ -278,9 +278,9 @@ <entry lang="pt-br" key="IDT_DEFAULT_MOUNT_OPTIONS">Opções Padrão de Montagem</entry> - <entry lang="pt-br" key="IDT_DISMOUNT_ACTION">Opções de Atalhos</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> + <entry lang="pt-br" key="IDT_UNMOUNT_ACTION">Opções de Atalhos</entry> + <entry lang="pt-br" key="IDT_DRIVER_OPTIONS">Configurações do Driver</entry> + <entry lang="pt-br" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">Ativar suporte estendido a códigos de controle de disco</entry> + <entry lang="pt-br" key="IDT_FAVORITE_LABEL">Rótulo do volume favorito selecionado:</entry> <entry lang="pt-br" key="IDT_FILE_SETTINGS">Configurações de Arquivo</entry> <entry lang="pt-br" key="IDT_HOTKEY_KEY">Chave a atribuir:</entry> - <entry lang="en" key="IDT_HW_AES_SUPPORTED_BY_CPU">Processor (CPU) in this computer supports hardware acceleration for AES:</entry> + <entry lang="pt-br" key="IDT_HW_AES_SUPPORTED_BY_CPU">O processador (CPU) neste computador suporta aceleração por hardware para AES:</entry> <entry lang="pt-br" key="IDT_LOGON">Ações a executar ao logar no Windows</entry> @@ -291,9 +291,9 @@ <entry lang="pt-br" key="IDT_NEW_PASSWORD">Senha:</entry> - <entry lang="en" key="IDT_PARALLELIZATION_OPTIONS">Thread-Based Parallelization</entry> + <entry lang="pt-br" key="IDT_PARALLELIZATION_OPTIONS">Paralelização baseada em threads</entry> <entry lang="pt-br" key="IDT_PKCS11_LIB_PATH">Caminho da Biblioteca PKCS #11</entry> <entry lang="pt-br" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry> - <entry lang="en" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry> + <entry lang="pt-br" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</entry> <entry lang="pt-br" key="IDT_PW_CACHE_OPTIONS">Cache de senhas</entry> <entry lang="pt-br" key="IDT_SECURITY_OPTIONS">Opções de Segurança</entry> - <entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry> + <entry lang="pt-br" key="IDT_EMV_OPTIONS">Opções de EMV</entry> <entry lang="pt-br" key="IDT_TASKBAR_ICON">Execução em Segundo Plano</entry> @@ -392,3 +392,3 @@ <entry lang="pt-br" key="ADMIN_PRIVILEGES_WARN_DEVICES">Para criptografar/Descriptografar/formatar uma partição/dispositivo você deve estar logado em uma conta com privilégios de administrador.\n\nIsto não se aplica a volumes armazenados em arquivos.</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="pt-br" key="ADMIN_PRIVILEGES_WARN_MANAGE_VOLUME">Não foi possível ativar a criação rápida de arquivos: privilégios de administrador são necessários.\nPor favor, reinicie o programa como Administrador para habilitar este recurso.\n\nVocê gostaria de continuar sem a criação rápida de arquivos?</entry> <entry lang="pt-br" key="ADMIN_PRIVILEGES_WARN_HIDVOL">Para criar um disco oculto, você deve estar logado em uma conta com privilégios de administrador.\n\nDeseja continuar?</entry> @@ -400,3 +400,3 @@ <entry lang="pt-br" key="ERR_HARDWARE_ERROR">A unidade está danificada (há um defeito físico) ou um cabo está danificado, ou a memória está com problemas .\n\nPor favor note que este é um problema com seu hardware, e não com VeraCrypt. Portanto, por favor, NÃO reporte isto como um erro/problema no VeraCrypt e NÃO peça ajuda sobre isto nos Fóruns do VeraCrypt. Entre em contato com o suporte técnico do fornecedor do computador para assistência. Obrigado.\n\nNota: Se o erro ocorrer repetidamente no mesmo local, muito provavelmente é causado por um bloco defeituoso do disco, o que deve ser possível corrigir usando softwares de terceiros (note que, em muitos casos, o comando 'cchkdsk /r' não o corrige, porque ele só funciona no nível de sistema de arquivos; em alguns casos, o 'chkdsk' nem mesmo pode detectá-lo).</entry> - <entry lang="en" key="DEVICE_NOT_READY_ERROR">If you are accessing a drive for removable media, please make sure that a medium is inserted in the drive. The drive/medium may also be damaged (there may be a physical defect on it) or a cable may be damaged/disconnected.</entry> + <entry lang="pt-br" key="DEVICE_NOT_READY_ERROR">Se você está acessando uma unidade para mídia removível, certifique-se de que há um meio inserido na unidade. A unidade/mídia também pode estar danificada (pode haver um defeito físico nela) ou um cabo pode estar danificado/desconectado.</entry> <entry lang="pt-br" key="WHOLE_DRIVE_ENCRYPTION_PREVENTED_BY_DRIVERS">O seu sistema parece usar drivers personalizados de chipset que contêm um erro que impede a criptografia de toda a unidade de sistema.\n\nTente atualizar ou desinstalar qualquer driver personalizado de chipset antes de prosseguir. Se isso não ajudar, tente criptografar somente a partição do sistema.</entry> @@ -425,4 +425,4 @@ <entry lang="pt-br" key="DEVICE_IN_USE_INPLACE_ENC">Aviso: A partição está em uso pelo sistema operacional ou aplicações. Você deve fechar todas as aplicações que possam estar utilizando a partição (incluindo software antivírus) .\n\nContinuar?</entry> - <entry lang="pt-br" key="FORMAT_CANT_DISMOUNT_FILESYS">Erro: O dispositivo/partição contém um sistema de arquivo que não pôde ser desmontado. O sistema de arquivo pode estar em uso pelo sistema operacional. Formatar o dispositivo/partição provavelmente causaria corrupção de dados e instabilidade do sistema.\n\nPara resolver esse problema, recomendamos que você primeiro exclua a partição e depois a recrie sem formatar. Para isso, siga os seguintes passos: 1) Clique com o botão direito no ícone 'Meu Computador' no 'Menu Iniciar' e selecione 'Gerenciar'. A janela 'Gerenciamento do Computador' deverá aparecer. 2) Na janela 'Gerenciamento do Computador', selecione 'Armazenamento' e 'Gerenciamento de Disco'. 3) Clique na partição que você deseja criptografar e selecione 'Excluir Partição', 'Excluir Volume', ou 'Excluir Unidade Lógica'. 4) Clique 'Sim'. Se o Windows solicitar, reinicie o computador. Depois, repita os passos 1 e 2 e continue a partir do 5. 5) Clique no espaço não-alocado/livre e selecione 'Nova Partição', 'Novo Volume Simples', ou 'Nova Unidade Logica'. 6) O 'Assistente para Novas Partições' ou 'Assistente para Novo Volume' deverá aparecer agora; siga as instruções. Na página 'Formatar Partição', selecione 'Não formatar esta partição' ou 'Não formatar este volume'. No mesmo assistente, clique em 'Avançar' e em 'Concluir'. 7) Observe que o caminho de dispositivo que você selecionou no VeraCrypt pode estar errado agora. Por isso, saia do Assistente de Criação de Volume do VeraCrypt (se ainda estiver aberto) e abra novamente. 8) Tente criptografar o dispositivo/partição novamente.\n\nSe o VeraCrypt nao conseguir criptografar o dispositivo/partição novamente, você pode tentar criar um arquivo recipiente.</entry> - <entry lang="pt-br" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Erro: O sistema de arquivos não pôde ser bloqueado e/ou desmontado. Ele pode estar em uso pelo sistema operacional ou aplicativos (por exemplo, um software antivírus). Criptografar a partição pode causar corrupção de dados e instabilidade do sistema.\n\nPor favor, feche todos os programas que estejam usando o sistema de arquivos (incluindo antivírus) e tente novamente. Se isso não funcionar, siga os passos abaixo.</entry> + <entry lang="pt-br" key="FORMAT_CANT_UNMOUNT_FILESYS">Erro: O dispositivo/partição contém um sistema de arquivo que não pôde ser desmontado. O sistema de arquivo pode estar em uso pelo sistema operacional. Formatar o dispositivo/partição provavelmente causaria corrupção de dados e instabilidade do sistema.\n\nPara resolver esse problema, recomendamos que você primeiro exclua a partição e depois a recrie sem formatar. Para isso, siga os seguintes passos: 1) Clique com o botão direito no ícone 'Meu Computador' no 'Menu Iniciar' e selecione 'Gerenciar'. A janela 'Gerenciamento do Computador' deverá aparecer. 2) Na janela 'Gerenciamento do Computador', selecione 'Armazenamento' e 'Gerenciamento de Disco'. 3) Clique na partição que você deseja criptografar e selecione 'Excluir Partição', 'Excluir Volume', ou 'Excluir Unidade Lógica'. 4) Clique 'Sim'. Se o Windows solicitar, reinicie o computador. Depois, repita os passos 1 e 2 e continue a partir do 5. 5) Clique no espaço não-alocado/livre e selecione 'Nova Partição', 'Novo Volume Simples', ou 'Nova Unidade Logica'. 6) O 'Assistente para Novas Partições' ou 'Assistente para Novo Volume' deverá aparecer agora; siga as instruções. Na página 'Formatar Partição', selecione 'Não formatar esta partição' ou 'Não formatar este volume'. No mesmo assistente, clique em 'Avançar' e em 'Concluir'. 7) Observe que o caminho de dispositivo que você selecionou no VeraCrypt pode estar errado agora. Por isso, saia do Assistente de Criação de Volume do VeraCrypt (se ainda estiver aberto) e abra novamente. 8) Tente criptografar o dispositivo/partição novamente.\n\nSe o VeraCrypt nao conseguir criptografar o dispositivo/partição novamente, você pode tentar criar um arquivo recipiente.</entry> + <entry lang="pt-br" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Erro: O sistema de arquivos não pôde ser bloqueado e/ou desmontado. Ele pode estar em uso pelo sistema operacional ou aplicativos (por exemplo, um software antivírus). Criptografar a partição pode causar corrupção de dados e instabilidade do sistema.\n\nPor favor, feche todos os programas que estejam usando o sistema de arquivos (incluindo antivírus) e tente novamente. Se isso não funcionar, siga os passos abaixo.</entry> <entry lang="pt-br" key="DEVICE_IN_USE_INFO">AVISO: Algumas das partições/dispositivos montados já estavam em uso!\n\nIgnorar este fato pode causar resultados indesejáveis, incluindo instabilidade do sistema.\n\nRecomendamos que você feche qualquer aplicativo que possa estar usando os dispositivos/partições.</entry> @@ -430,4 +430,4 @@ <entry lang="pt-br" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">O dispositivo não-sistema selecionado contém partições.\n\nVolumes VeraCrypt em dispositivos criptografados podem ser criados dentro de dispositivos que não contenham partições (incluindo discos rígidos e drives de estado sólido). Um dispositivo que contém partições pode ser totalmente criptografado num local (utilizando uma única chave mestra), apenas se ele for a unidade onde o Windows está instalado e de onde ele inicializa .\n\nSe você quiser criptografar o dispositivo não-sistema selecionado usando uma única chave-mestra, será necessário remover todas as partições no dispositivo primeiro a fim de permitir que o VeraCrypt possa formatá-lo com segurança (formatar um dispositivo que contém partições poderia causar instabilidade no sistema e/ou corrupção de dados). Alternativamente, você pode criptografar cada partição na unidade individualmente (cada partição será criptografada usando uma chave mestra diferente).\n\nNota: Se você quiser remover todas as partições de um disco GPT, pode ser necessário convertê-lo para um disco MBR (por exemplo, usando a ferramenta Gerenciamento do computador), a fim de remover partições ocultas.</entry> - <entry lang="en" key="WHOLE_NONSYS_DEVICE_ENC_CONFIRM">Warning: If you encrypt the entire device (as opposed to encrypting only a partition on it), operating systems will consider the device as new, empty, and unformatted (as it will contain no partition table) and may spontaneously initialize the device (or ask you if you want to do so), which may damage the volume. Furthermore, it will not be possible to consistently mount the volume as favorite (e.g. when the drive number changes) or to assign a favorite-volume label to it.\n\nTo avoid that you may want to consider creating a partition on the device and encrypting the partition instead.\n\nAre you sure want to encrypt the entire device?</entry> - <entry lang="en" key="AFTER_FORMAT_DRIVE_LETTER_WARN">IMPORTANT: Please keep in mind that this volume can NOT be mounted/accessed using the drive letter %c:, which is currently assigned to it!\n\nTo mount this volume, click 'Auto-Mount Devices' in the main VeraCrypt window (alternatively, in the main VeraCrypt window, click 'Select Device', then select this partition/device, and click 'Mount'). The volume will be mounted to a different drive letter, which you select from the list in the main VeraCrypt window.\n\nThe original drive letter %c: should be used only in case you need to remove encryption from the partition/device (e.g., if you no longer need encryption). In such a case, right-click the drive letter %c: in the 'Computer' (or 'My Computer') list and select 'Format'. Otherwise, the drive letter %c: should never be used (unless you remove it, as described e.g. in the VeraCrypt FAQ, and assign it to another partition/device).</entry> + <entry lang="pt-br" key="WHOLE_NONSYS_DEVICE_ENC_CONFIRM">Aviso: Se você criptografar o dispositivo inteiro (em vez de criptografar apenas uma partição nele), os sistemas operacionais irão considerar o dispositivo como novo, vazio e não formatado (pois ele não conterá uma tabela de partição) e podem inicializar espontaneamente o dispositivo (ou perguntar se você deseja fazê-lo), o que pode danificar o volume. Além disso, não será possível montar consistentemente o volume como favorito (por exemplo, quando o número da unidade mudar) ou atribuir a ele uma etiqueta de volume favorito.\n\nPara evitar isso, você pode considerar criar uma partição no dispositivo e criptografar a partição em vez disso.\n\nVocê tem certeza de que deseja criptografar o dispositivo inteiro?</entry> + <entry lang="pt-br" key="AFTER_FORMAT_DRIVE_LETTER_WARN">IMPORTANTE: Por favor, lembre-se de que este volume NÃO pode ser montado/acessado usando a letra de unidade %c:, que está atualmente atribuída a ele!\n\nPara montar este volume, clique em 'Montar Dispositivos Automaticamente' na janela principal do VeraCrypt (alternativamente, na janela principal do VeraCrypt, clique em 'Selecionar Dispositivo', depois selecione esta partição/dispositivo e clique em 'Montar'). O volume será montado em uma letra de unidade diferente, que você selecionará na lista na janela principal do VeraCrypt.\n\nA letra de unidade original %c: deve ser usada apenas caso você precise remover a criptografia da partição/dispositivo (por exemplo, se você não precisar mais de criptografia). Nesse caso, clique com o botão direito na letra de unidade %c: na lista 'Computador' (ou 'Meu Computador') e selecione 'Formatar'. Caso contrário, a letra de unidade %c: nunca deve ser usada (a menos que você a remova, como descrito, por exemplo, no FAQ do VeraCrypt, e a atribua a outra partição/dispositivo).</entry> <entry lang="pt-br" key="OS_NOT_SUPPORTED_FOR_NONSYS_INPLACE_ENC">A criptografia in-place de volumes sem sistema não é suportada na versão do sistema operacional que você está usando (suportada apenas no Windows Vista e versões posteriores).\n\nO motivo é que esta versão do Windows não suporta compactação do sistema de arquivos (ele precisa ser compactado para criar espaço para o cabeçalho do volume e para o cabeçalho de backup).</entry> @@ -449,3 +449,3 @@ <entry lang="pt-br" key="DRIVER_NOT_FOUND">Erro: Driver do VeraCrypt não encontrado.\n\nFavor copiar os arquivos 'veracrypt.sys' e 'veracrypt-x64.sys' para a pasta onde o programa principal do VeraCrypt (VeraCrypt.exe) está localizado.</entry> - <entry lang="en" key="DRIVER_VERSION">Error: An incompatible version of the VeraCrypt driver is currently running.\n\nIf you are trying to run VeraCrypt in portable mode (i.e. without installing it) and a different version of VeraCrypt is already installed, you must uninstall it first (or upgrade it using the VeraCrypt installer). To uninstall it, follow these steps: On Windows Vista or later, select 'Start Menu' > Computer > 'Uninstall or change a program' > VeraCrypt > Uninstall; on Windows XP, select 'Start Menu' > Settings > 'Control Panel' > 'Add Or Remove Programs' > VeraCrypt > Remove.\n\nSimilarly, if you are trying to run VeraCrypt in portable mode (i.e. without installing it) and a different version of VeraCrypt is already running in portable mode, you must restart the system first and then run only this new version.</entry> + <entry lang="pt-br" key="DRIVER_VERSION">Erro: Uma versão incompatível do driver do VeraCrypt está em execução no momento.\n\nSe você está tentando executar o VeraCrypt no modo portátil (ou seja, sem instalá-lo) e uma versão diferente do VeraCrypt já está instalada, você deve desinstalá-la primeiro (ou atualizá-la usando o instalador do VeraCrypt). Para desinstalá-la, siga estes passos: No Windows Vista ou posterior, selecione 'Menu Iniciar' > Computador > 'Desinstalar ou alterar um programa' > VeraCrypt > Desinstalar; no Windows XP, selecione 'Menu Iniciar' > Configurações > 'Painel de Controle' > 'Adicionar ou Remover Programas' > VeraCrypt > Remover.\n\nDa mesma forma, se você está tentando executar o VeraCrypt no modo portátil (ou seja, sem instalá-lo) e uma versão diferente do VeraCrypt já está sendo executada no modo portátil, você deve reiniciar o sistema primeiro e depois executar apenas esta nova versão.</entry> <entry lang="pt-br" key="ERR_CIPHER_INIT_FAILURE">Erro: Falha ao iniciar a cifra.</entry> @@ -454,15 +454,15 @@ <entry lang="pt-br" key="EXCEPTION_REPORT_EXT">Um erro crítico ocorreu e o VeraCrypt deve ser encerrado.\n\nNote que este erro não foi causado pelo VeraCrypt (por isso seus desenvolvedores não pode corrigí-lo). Por favor, verifique o seu sistema para possíveis problemas (por exemplo, configuração de sistema, conexões de rede, falha em componentes de hardware).</entry> - <entry lang="en" key="EXCEPTION_REPORT_EXT_FILESEL">A critical error has occurred in your system, which requires VeraCrypt to be terminated.\n\nIf this problem persists, you may want to try disabling or uninstalling applications that could potentially be causing this issue, such as antivirus or Internet security software, system "enhancers", "optimizers" or "tweakers", etc. If it does not help, you may want to try reinstalling your operating system (this problem may also be caused by malware).</entry> + <entry lang="pt-br" key="EXCEPTION_REPORT_EXT_FILESEL">Um erro crítico ocorreu em seu sistema, o que exige que o VeraCrypt seja encerrado.\n\nSe este problema persistir, você pode tentar desativar ou desinstalar aplicativos que possam estar causando este problema, como antivírus ou softwares de segurança da Internet, "otimizadores" do sistema, "ajustadores" ou outros. Se isso não ajudar, você pode tentar reinstalar seu sistema operacional (este problema também pode ser causado por malware).</entry> <entry lang="pt-br" key="EXCEPTION_REPORT_TITLE">Erro Crítico do VeraCrypt</entry> - <entry lang="en" key="SYSTEM_CRASHED_ASK_REPORT">VeraCrypt detected that the operating system recently crashed. There are many potential reasons why the system could have crashed (for example, a failing hardware component, a bug in a device driver, etc.)\n\nDo you want VeraCrypt to check whether a bug in VeraCrypt could have caused the system crash?</entry> - <entry lang="en" key="ASK_KEEP_DETECTING_SYSTEM_CRASH">Do you want VeraCrypt to continue detecting system crashes?</entry> - <entry lang="en" key="NO_MINIDUMP_FOUND">VeraCrypt found no system crash minidump file.</entry> - <entry lang="en" key="ASK_DELETE_KERNEL_CRASH_DUMP">Do you want to delete the Windows crash dump file to free up disk space?</entry> - <entry lang="en" key="ASK_DEBUGGER_INSTALL">In order to analyze the system crash, VeraCrypt needs to install Microsoft Debugging Tools for Windows first.\n\nAfter you click OK, the Windows installer will download the Microsoft Debugging Tools installation package (16 MB) from a Microsoft server and install it (the Windows installer will be forwarded to the Microsoft server URL from the veracrypt.org server, which ensures that this feature works even if Microsoft changes the location of the installation package).</entry> - <entry lang="en" key="SYSTEM_CRASH_ANALYSIS_INFO">After you click OK, VeraCrypt will analyze the system crash. This may take up to several minutes.</entry> - <entry lang="en" key="DEBUGGER_NOT_FOUND">Please make sure the environment variable 'PATH' includes the path to 'kd.exe' (Kernel Debugger).</entry> - <entry lang="en" key="SYSTEM_CRASH_NO_VERACRYPT">It appears that VeraCrypt most likely did not cause the system crash. There are many potential reasons why the system could have crashed (for example, a failing hardware component, a bug in a device driver, etc.)</entry> - <entry lang="en" key="SYSTEM_CRASH_UPDATE_DRIVER">Results of the analysis indicate that updating the following driver might solve this issue: </entry> - <entry lang="en" key="SYSTEM_CRASH_REPORT">To help us determine whether there is a bug in VeraCrypt, you can send us an automatically generated error report containing the following items:\n- Program version\n- Operating system version\n- Type of CPU\n- Error category\n- Driver name and version\n- System call stack\n\nIf you select 'Yes', the following URL (which contains the entire error report) will be opened in your default Internet browser.</entry> - <entry lang="en" key="ASK_SEND_ERROR_REPORT">Do you want to send us the above error report?</entry> + <entry lang="pt-br" key="SYSTEM_CRASHED_ASK_REPORT">O VeraCrypt detectou que o sistema operacional travou recentemente. Há muitas possíveis razões para o travamento do sistema (por exemplo, um componente de hardware com defeito, um erro em um driver de dispositivo, etc.).\n\nVocê deseja que o VeraCrypt verifique se um problema no próprio VeraCrypt pode ter causado o travamento?</entry> + <entry lang="pt-br" key="ASK_KEEP_DETECTING_SYSTEM_CRASH">Você deseja que o VeraCrypt continue monitorando travamentos do sistema?</entry> + <entry lang="pt-br" key="NO_MINIDUMP_FOUND">O VeraCrypt não encontrou nenhum arquivo de minidump relacionado ao travamento do sistema.</entry> + <entry lang="pt-br" key="ASK_DELETE_KERNEL_CRASH_DUMP">Deseja excluir o arquivo de despejo de travamento do Windows para liberar espaço no disco?</entry> + <entry lang="pt-br" key="ASK_DEBUGGER_INSTALL">Para analisar o travamento do sistema, o VeraCrypt precisa instalar as Ferramentas de Depuração do Windows da Microsoft.\n\nApós clicar em OK, o instalador do Windows fará o download do pacote de instalação das Ferramentas de Depuração da Microsoft (16 MB) de um servidor da Microsoft e realizará a instalação. (O instalador do Windows será redirecionado para a URL do servidor da Microsoft através do servidor veracrypt.org, garantindo que este recurso funcione mesmo que a Microsoft altere a localização do pacote de instalação.)</entry> + <entry lang="pt-br" key="SYSTEM_CRASH_ANALYSIS_INFO">Após clicar em OK, o VeraCrypt analisará o travamento do sistema. Este processo pode levar alguns minutos.</entry> + <entry lang="pt-br" key="DEBUGGER_NOT_FOUND">Certifique-se de que a variável de ambiente 'PATH' inclua o caminho para 'kd.exe' (Depurador do Kernel).</entry> + <entry lang="pt-br" key="SYSTEM_CRASH_NO_VERACRYPT">Parece que o VeraCrypt, muito provavelmente, não foi a causa do travamento do sistema. Há muitas razões possíveis para o travamento (por exemplo, um componente de hardware com defeito, um erro em um driver de dispositivo, etc.).</entry> + <entry lang="pt-br" key="SYSTEM_CRASH_UPDATE_DRIVER">Os resultados da análise indicam que atualizar o seguinte driver pode resolver este problema:</entry> + <entry lang="pt-br" key="SYSTEM_CRASH_REPORT">Para nos ajudar a determinar se há um erro no VeraCrypt, você pode enviar um relatório de erro gerado automaticamente contendo os seguintes itens:\n- Versão do programa\n- Versão do sistema operacional\n- Tipo de CPU\n- Categoria do erro\n- Nome e versão do driver\n- Pilha de chamadas do sistema\n\nSe você selecionar 'Sim', a seguinte URL (que contém todo o relatório de erro) será aberta no seu navegador padrão.</entry> + <entry lang="pt-br" key="ASK_SEND_ERROR_REPORT">Você deseja enviar o relatório de erro acima?</entry> <entry lang="pt-br" key="ENCRYPT">&Criptografar</entry> @@ -473,3 +473,3 @@ <entry lang="pt-br" key="FILE_HELP">Um volume VeraCrypt pode residir em um arquivo (chamado contêiner VeraCrypt), que pode residir em um disco rígido, em uma unidade flash USB, etc. Um contêiner VeraCrypt é como qualquer arquivo normal (pode ser, por exemplo, movido ou excluído como qualquer arquivo normal). Clique em 'Selecionar arquivo' para escolher um nome de arquivo para o contêiner e selecionar o local onde deseja que o contêiner seja criado.\n\nAVISO: Se você selecionar um arquivo existente, o VeraCrypt NÃO o criptografará; o arquivo será excluído e substituído pelo contêiner VeraCrypt recém-criado. Você poderá criptografar arquivos existentes (mais tarde) movendo-os para o contêiner VeraCrypt que você está prestes a criar agora.</entry> - <entry lang="en" key="FILE_HELP_HIDDEN_HOST_VOL">Selecione o local do volume externo a ser criado (dentro deste volume o volume oculto será criado posteriormente).\n\nUm volume VeraCrypt pode residir em um arquivo (chamado contêiner VeraCrypt), que pode residir em um disco rígido, em uma unidade flash USB, etc. Um contêiner VeraCrypt pode ser movido ou excluído como qualquer arquivo normal. Clique em 'Selecionar arquivo' para escolher um nome de arquivo para o contêiner e selecionar o local onde deseja que o contêiner seja criado. Se você selecionar um arquivo existente, o VeraCrypt NÃO o criptografará; ele será excluído e substituído pelo contêiner recém-criado. Você poderá criptografar arquivos existentes (mais tarde) movendo-os para o contêiner VeraCrypt que você está prestes a criar agora.</entry> + <entry lang="pt-br" key="FILE_HELP_HIDDEN_HOST_VOL">Selecione o local do volume externo a ser criado (dentro deste volume o volume oculto será criado posteriormente).\n\nUm volume VeraCrypt pode residir em um arquivo (chamado contêiner VeraCrypt), que pode residir em um disco rígido, em uma unidade flash USB, etc. Um contêiner VeraCrypt pode ser movido ou excluído como qualquer arquivo normal. Clique em 'Selecionar arquivo' para escolher um nome de arquivo para o contêiner e selecionar o local onde deseja que o contêiner seja criado. Se você selecionar um arquivo existente, o VeraCrypt NÃO o criptografará; ele será excluído e substituído pelo contêiner recém-criado. Você poderá criptografar arquivos existentes (mais tarde) movendo-os para o contêiner VeraCrypt que você está prestes a criar agora.</entry> <entry lang="pt-br" key="DEVICE_HELP">Volumes VeraCrypt em dispositivos criptografados podem ser criados dentro de partições em discos rígidos, unidades de estado sólido, memory sticks USB, bem como sobre quaisquer outros dispositivos de armazenamento suportados. Partições também podem ser codificadas no local.\n\nAlém disso, volumes VeraCrypt em dispositivos criptografados podem ser criados dentro de dispositivos que não contenham partições (incluindo discos rígidos e unidades de estado sólido).\n\nNota: Um dispositivo com partições pode ser totalmente criptografado no local (usando uma única chave) apenas se ele for a unidade onde o Windows está instalado e de onde ele inicializa.</entry> @@ -502,4 +502,4 @@ <entry lang="pt-br" key="WIPE_FINISHED_DECOY_SYSTEM_PARTITION">O conteúdo da partição onde o sistema operacional (do qual o sistema oculta é um clone) está instalado foi apagado com sucesso.</entry> - <entry lang="en" key="DECOY_OS_VERSION_WARNING">Please make sure the version of Windows you are going to install (on the wiped partition) is the same as the version of Windows you are currently running. This is required due to the fact that both systems will share a common boot partition.</entry> - <entry lang="en" key="SYSTEM_ENCRYPTION_FINISHED">The system partition/drive has been successfully encrypted.\n\nNote: If there are non-system VeraCrypt volumes that you need to have mounted automatically every time Windows starts, you can set it up by mounting each of them and selecting 'Favorites' > 'Add Mounted Volume to System Favorites').</entry> + <entry lang="pt-br" key="DECOY_OS_VERSION_WARNING">Certifique-se de que a versão do Windows que você vai instalar (na partição apagada) seja a mesma versão do Windows que está executando atualmente. Isso é necessário porque ambos os sistemas compartilharão uma partição de inicialização comum.</entry> + <entry lang="pt-br" key="SYSTEM_ENCRYPTION_FINISHED">A partição/unidade do sistema foi criptografada com sucesso.\n\nNota: Se houver volumes VeraCrypt que não sejam do sistema e que precisem ser montados automaticamente toda vez que o Windows iniciar, você pode configurá-los montando cada um deles e selecionando 'Favoritos' > 'Adicionar Volume Montado aos Favoritos do Sistema'.</entry> <entry lang="pt-br" key="SYSTEM_DECRYPTION_FINISHED">O dispositivo/partição de sistema foi descriptografado com sucesso.</entry> @@ -508,7 +508,7 @@ <entry lang="pt-br" key="NONSYS_INPLACE_ENC_FINISHED_TITLE">Volume Totalmente Criptografado</entry> - <entry lang="en" key="NONSYS_INPLACE_DEC_FINISHED_TITLE">Volume Fully Decrypted</entry> + <entry lang="pt-br" key="NONSYS_INPLACE_DEC_FINISHED_TITLE">Volume Totalmente Descriptografado</entry> <entry lang="pt-br" key="NONSYS_INPLACE_ENC_FINISHED_INFO">IMPORTANTE: PARA MONTAR ESTE RECÉM-CRIADO VOLUME VERACRYPT E ACESSAR OS DADOS ARMAZENADOS NELE, CLIQUE EM 'AUTO-MONTAR DISPOSITIVOS' NO JANELA PRINCIPAL DO VERACRYPT. Depois de digitar a senha correta (e/ou fornecer os arquivos-chave corretos), o volume será montado para a letra de unidade selecionada a partir da lista na janela principal do VeraCrypt (e você poderá acessar os dados criptografados por meio da letra de unidade selecionada).\n\nPOR FAVOR, LEMBRE-SE OU ANOTE OS PASSOS ACIMA. VOCÊ DEVE SEGUÍ-LOS, SEMPRE QUE DESEJAR MONTAR O VOLUME E ACESSAR OS DADOS ARMAZENADOS NELE. Alternativamente, na janela principal do VeraCrypt, clique em 'Selecionar dispositivo', selecione esta partição/volume e clique em 'Montar'.\n\nA partição/volume foi criptografada(o) com sucesso (agora ela contém um volume VeraCrypt totalmente criptografado) e está pronto para uso.</entry> - <entry lang="en" key="NONSYS_INPLACE_DEC_FINISHED_INFO">The VeraCrypt volume has been successfully decrypted.</entry> - <entry lang="en" key="NONSYS_INPLACE_DEC_FINISHED_DRIVE_LETTER_SEL_INFO">The VeraCrypt volume has been successfully decrypted.\n\nPlease select a drive letter that you wish to assign to the decrypted volume and then click Finish.\n\nIMPORTANT: Until a drive letter is assigned to the decrypted volume, you will not be able to access data stored on the volume.</entry> - <entry lang="en" key="NONSYS_INPLACE_DEC_FINISHED_NO_DRIVE_LETTER_AVAILABLE">Warning: To be able to access the decrypted data, a drive letter needs to be assigned to the decrypted volume. However, no drive letter is currently available.\n\nPlease vacate a drive letter (for example, by disconnecting a USB flash drive or external hard drive, etc.) and then click OK.</entry> + <entry lang="pt-br" key="NONSYS_INPLACE_DEC_FINISHED_INFO">O volume VeraCrypt foi descriptografado com sucesso.</entry> + <entry lang="pt-br" key="NONSYS_INPLACE_DEC_FINISHED_DRIVE_LETTER_SEL_INFO">O volume VeraCrypt foi descriptografado com sucesso.\n\nPor favor, selecione uma letra de unidade para atribuir ao volume descriptografado e clique em Concluir.\n\nIMPORTANTE: Até que uma letra de unidade seja atribuída ao volume descriptografado, você não poderá acessar os dados armazenados no volume.</entry> + <entry lang="pt-br" key="NONSYS_INPLACE_DEC_FINISHED_NO_DRIVE_LETTER_AVAILABLE">Aviso: Para acessar os dados descriptografados, é necessário atribuir uma letra de unidade ao volume descriptografado. No entanto, nenhuma letra de unidade está disponível no momento.\n\nPor favor, libere uma letra de unidade (por exemplo, desconectando um pendrive USB ou disco rígido externo, etc.) e clique em OK.</entry> <entry lang="pt-br" key="FORMAT_FINISHED_INFO">O volume VeraCrypt foi criado com sucesso.</entry> @@ -525,3 +525,3 @@ <entry lang="pt-br" key="HIDVOL_FORMAT_FINISHED_TITLE">Volume Oculto Criado</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="pt-br" key="HIDVOL_FORMAT_FINISHED_HELP">O volume oculto do VeraCrypt foi criado com sucesso e está pronto para uso. Se todas as instruções foram seguidas e se as precauções e requisitos listados na seção "Requisitos e Precauções de Segurança Relacionados a Volumes Ocultos" do Guia do Usuário do VeraCrypt forem respeitados, deve ser impossível provar que o volume oculto existe, mesmo quando o volume externo estiver montado.\n\nAVISO: SE VOCÊ NÃO PROTEGER O VOLUME OCULTO (PARA SABER COMO FAZER ISSO, CONSULTE A SEÇÃO "PROTEÇÃO DE VOLUMES OCULTOS CONTRA DANOS" NO GUIA DO USUÁRIO DO VERACRYPT), NÃO ESCREVA NO VOLUME EXTERNO. CASO CONTRÁRIO, VOCÊ PODERÁ SOBRESCREVER E DANIFICAR O VOLUME OCULTO!</entry> <entry lang="pt-br" key="FIRST_HIDDEN_OS_BOOT_INFO">Você iniciou o sistema operacional oculto. Como você deve ter notado, ele aparenta estar instalado na mesma partição que o sistema operacional original. Entretanto, na realidade, ele está instalado dentro da partição por trás dele (no volume oculto). Todos as operações de leitura e escrita estão sendo transparentemente redirecionadas da partição do sistema original para o volume oculto.\n\nNem o sistema operacional nem os aplicativos saberão que os dados escritos e lidos da partição do sistema estão na verdade sendo escritos e lidos da partição por trás dela (de um volume oculto). Tais dados são criptografados e descriptografados normalmente (com uma chave de criptografia diferente daquela que será usada para o sistema operacional ).\n\n\nPor favor, clique em Avançar para continuar.</entry> @@ -540,7 +540,7 @@ <entry lang="pt-br" key="DAMAGE_TO_HIDDEN_VOLUME_PREVENTED">AVISO: Houve uma tentativa de gravação de dados na área do volume oculto do volume montado como %c:! O VeraCrypt impediu que esses dados fossem gravados para proteger o volume oculto. Isto pode ter causado corrupção no sistema de arquivo do volume externo e o Windows poderá relatar um erro de gravação ("Delayed Write Failed" ou "The parameter is incorrect"). Todo o volume (tanto a parte externa quanto a oculta) será protegido contra gravação até ser desmontado. Se esta não for a primeira vez que isto acontece com esse volume, a camuflagem de informação desse volume oculto pode ter sido afetada (devido a inconsistências não usuais correlacionadas no sistema de arquivo do volume externo). Por isso, você deve pensar em criar novo volume VeraCrypt (com a opção Formatação Rápida desmarcada) e mover seus arquivos deste volume para o novo; este volume deve ser apagado com segurança (tanto a parte externa quanto a oculta). Sugerimos fortemente que você reinicie seu sistema operacional agora.</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> + <entry lang="pt-br" key="CANNOT_SATISFY_OVER_4G_FILE_SIZE_REQ">Você indicou a intenção de armazenar arquivos maiores que 4 GB no volume. Isso requer que o volume seja formatado como NTFS, o que, entretanto, não será possível.</entry> + <entry lang="pt-br" key="CANNOT_CREATE_NON_HIDDEN_NTFS_VOLUMES_UNDER_HIDDEN_OS">Observe que, quando um sistema operacional oculto está em execução, volumes VeraCrypt não ocultos não podem ser formatados como NTFS. Isso ocorre porque o volume precisaria ser montado temporariamente sem proteção contra gravação para permitir que o sistema operacional o formate como NTFS (enquanto a formatação como FAT é realizada pelo VeraCrypt, e não pelo sistema operacional, e sem montar o volume). Para obter mais detalhes técnicos, veja abaixo. Você pode criar um volume NTFS não oculto dentro do sistema operacional de despiste.</entry> + <entry lang="pt-br" key="HIDDEN_VOL_CREATION_UNDER_HIDDEN_OS_HOWTO">Por razões de segurança, quando um sistema operacional oculto está em execução, volumes ocultos só podem ser criados no modo 'direto' (porque volumes externos devem sempre ser montados como somente leitura). Para criar um volume oculto de forma segura, siga estas etapas:\n\n1) Inicialize o sistema de despiste.\n\n2) Crie um volume VeraCrypt normal e, nesse volume, copie alguns arquivos aparentemente sensíveis que você realmente NÃO deseja ocultar (o volume se tornará o volume externo).\n\n3) Inicialize o sistema oculto e inicie o assistente de criação de volume do VeraCrypt. Se o volume for um arquivo, mova-o para a partição do sistema ou para outro volume oculto (caso contrário, o volume oculto recém-criado seria montado como somente leitura e não poderia ser formatado). Siga as instruções no assistente para selecionar o modo de criação 'direto' de volume oculto.\n\n4) No assistente, selecione o volume criado na etapa 2 e siga as instruções para criar um volume oculto dentro dele.</entry> <entry lang="pt-br" key="HIDDEN_OS_WRITE_PROTECTION_BRIEF_INFO">Por motivos de segurança, quando um sistema operacional oculto estiver sendo executado, sistemas de arquivo locais não-criptografados e volumes VeraCrypt não-ocultos são montados como somente leitura (dados não podem ser gravados em tais sistemas de arquivo ou volumes VeraCrypt).\n\nÉ autorizada a gravação de dados em qualquer sistema de arquivo que esteja dentro de um volume VeraCrypt oculto (desde que o volume oculto não esteja localizado em um recipiente armazenado em um sistema de arquivo não-criptografado ou em qualquer outro sistema de arquivo somente leitura).</entry> - <entry lang="en" key="HIDDEN_OS_WRITE_PROTECTION_EXPLANATION">There are three main reasons why such countermeasures have been implemented:\n\n- It enables the creation of a secure platform for mounting of hidden VeraCrypt volumes. Note that we officially recommend that hidden volumes are mounted only when a hidden operating system is running. (For more information, see the subsection 'Security Requirements and Precautions Pertaining to Hidden Volumes' in the documentation.)\n\n- In some cases, it is possible to determine that, at a certain time, a particular filesystem was not mounted under (or that a particular file on the filesystem was not saved or accessed from within) a particular instance of an operating system (e.g. by analyzing and comparing filesystem journals, file timestamps, application logs, error logs, etc). This might indicate that a hidden operating system is installed on the computer. The countermeasures prevent these issues.\n\n- It prevents data corruption and allows safe hibernation. When Windows resumes from hibernation, it assumes that all mounted filesystems are in the same state as when the system entered hibernation. VeraCrypt ensures this by write-protecting any filesystem accessible both from within the decoy and hidden systems. Without such protection, the filesystem could become corrupted when mounted by one system while the other system is hibernated.</entry> + <entry lang="pt-br" key="HIDDEN_OS_WRITE_PROTECTION_EXPLANATION">Há três razões principais para a implementação dessas contramedidas:\n\n- Isso permite a criação de uma plataforma segura para montagem de volumes ocultos do VeraCrypt. Observe que recomendamos oficialmente que volumes ocultos sejam montados apenas quando um sistema operacional oculto está em execução. (Para mais informações, veja a subseção 'Requisitos de Segurança e Precauções Relacionadas a Volumes Ocultos' na documentação.)\n\n- Em alguns casos, é possível determinar que, em um determinado momento, um sistema de arquivos específico não foi montado em (ou que um arquivo específico no sistema de arquivos não foi salvo ou acessado a partir de) uma instância específica de um sistema operacional (por exemplo, analisando e comparando logs do sistema de arquivos, datas e horas de arquivos, logs de aplicativos, logs de erros, etc.). Isso pode indicar que um sistema operacional oculto está instalado no computador. As contramedidas evitam esses problemas.\n\n- Elas previnem a corrupção de dados e permitem uma hibernação segura. Quando o Windows retoma da hibernação, ele presume que todos os sistemas de arquivos montados estão no mesmo estado de quando o sistema entrou em hibernação. O VeraCrypt garante isso ao proteger contra gravação qualquer sistema de arquivos acessível tanto pelo sistema de despiste quanto pelo sistema oculto. Sem essa proteção, o sistema de arquivos poderia ser corrompido ao ser montado por um sistema enquanto o outro está em hibernação.</entry> <entry lang="pt-br" key="DECOY_TO_HIDDEN_OS_DATA_TRANSFER_HOWTO">Nota: Caso necessite transferir arquivos com segurança do sistema isca para o sistema oculto, siga estas etapas: 1) Inicie o sistema isca. 2) Salve os arquivos para um volume não-criptografado ou para um volume VeraCrypt externo/normal. 3) Inicie o sistema oculto. 4) Se você salvou os arquivos em um volume VeraCrypt, monte-o (ele será automaticamente montado como somente leitura). 5) Copie os arquivos para a partição do sistema oculto ou para outro volume oculto.</entry> @@ -548,14 +548,14 @@ <entry lang="pt-br" key="ERR_GETTING_SYSTEM_ENCRYPTION_STATUS">Ocorreu um erro ao obter o estado de criptografia do sistema.</entry> - <entry lang="en" key="ERR_PASSWORD_MISSING">No password specified in the command line. The volume can't be created.</entry> - <entry lang="en" key="ERR_SIZE_MISSING">No volume size specified in the command line. The volume can't be created.</entry> - <entry lang="en" key="ERR_NTFS_INVALID_VOLUME_SIZE">The volume file size specified in the command line is incompatible with selected NTFS filesystem.</entry> - <entry lang="en" key="ERR_FAT_INVALID_VOLUME_SIZE">The volume file size specified in the command line is incompatible with selected FAT32 filesystem.</entry> - <entry lang="en" key="ERR_DYNAMIC_NOT_SUPPORTED">The filesystem on the target drive doesn't support creating sparse files which is required for dynamic volumes.</entry> - <entry lang="en" key="ERR_DEVICE_CLI_CREATE_NOT_SUPPORTED">Only container files can be created through the command line.</entry> - <entry lang="en" key="ERR_CONTAINER_SIZE_TOO_BIG">The container file size specified in the command line is greater than the available disk free space. Volume can't be created.</entry> - <entry lang="en" key="ERR_VOLUME_SIZE_TOO_SMALL">The volume size specified in the command line is too small. The volume can't be created.</entry> - <entry lang="en" key="ERR_VOLUME_SIZE_TOO_BIG">The volume size specified in the command line is too big. The volume can't be created.</entry> + <entry lang="pt-br" key="ERR_PASSWORD_MISSING">Nenhuma senha especificada na linha de comando. O volume não pode ser criado.</entry> + <entry lang="pt-br" key="ERR_SIZE_MISSING">Nenhum tamanho de volume especificado na linha de comando. O volume não pode ser criado.</entry> + <entry lang="pt-br" key="ERR_NTFS_INVALID_VOLUME_SIZE">O tamanho do arquivo de volume especificado na linha de comando é incompatível com o sistema de arquivos NTFS selecionado.</entry> + <entry lang="pt-br" key="ERR_FAT_INVALID_VOLUME_SIZE">O tamanho do arquivo de volume especificado na linha de comando é incompatível com o sistema de arquivos FAT32 selecionado.</entry> + <entry lang="pt-br" key="ERR_DYNAMIC_NOT_SUPPORTED">O sistema de arquivos na unidade de destino não suporta a criação de *sparse files*, o que é necessário para volumes dinâmicos.</entry> + <entry lang="pt-br" key="ERR_DEVICE_CLI_CREATE_NOT_SUPPORTED">Somente arquivos contêiner podem ser criados através da linha de comando.</entry> + <entry lang="pt-br" key="ERR_CONTAINER_SIZE_TOO_BIG">O tamanho do arquivo contêiner especificado na linha de comando é maior do que o espaço livre disponível no disco. O volume não pode ser criado.</entry> + <entry lang="pt-br" key="ERR_VOLUME_SIZE_TOO_SMALL">O tamanho do volume especificado na linha de comando é muito pequeno. O volume não pode ser criado.</entry> + <entry lang="pt-br" key="ERR_VOLUME_SIZE_TOO_BIG">O tamanho do volume especificado na linha de comando é muito grande. O volume não pode ser criado.</entry> <entry lang="pt-br" key="INIT_SYS_ENC">Não foi possível iniciar componentes do programa de criptografia do sistema.</entry> <entry lang="pt-br" key="INIT_RAND">Falha ao iniciar o gerador de números aleatórios!</entry> - <entry lang="en" key="CAPI_RAND">Windows Crypto API failed!\n\n\n(If you report a bug in connection with this, please include the following technical information in the bug report:\n%hs, Last Error = 0x%.8X)</entry> + <entry lang="pt-br" key="CAPI_RAND">Falha na API de Criptografia do Windows!\n\n\n(Se você reportar um bug relacionado a isso, inclua as seguintes informações técnicas no relatório:\n%hs, último erro = 0x%.8X)</entry> <entry lang="pt-br" key="INIT_REGISTER">Não foi possível iniciar a aplicação. Falha ao registrar a classe 'Dialog'.</entry> @@ -573,3 +573,3 @@ <entry lang="pt-br" key="VOL_CREATION_WIZARD_NOT_FOUND">Erro: O Assistente de Criação de Disco não foi encontrado.\n\nFavor certifique-se de que o arquivo 'VeraCrypt Format.exe' está na pasta de onde o VeraCrypt foi executado. Caso contrário, reinstale o VeraCrypt ou localize o arquivo 'VeraCrypt Format.exe' no seu sistema e execute-o.</entry> - <entry lang="en" key="VOL_EXPANDER_NOT_FOUND">Error: Volume Expander not found.\n\nPlease make sure that the file 'VeraCryptExpander.exe' is in the folder from which 'VeraCrypt.exe' was launched. If it is not, please reinstall VeraCrypt, or locate 'VeraCryptExpander.exe' on your disk and run it.</entry> + <entry lang="pt-br" key="VOL_EXPANDER_NOT_FOUND">Erro: Expansor de Volume não encontrado.\n\nCertifique-se de que o arquivo 'VeraCryptExpander.exe' está na pasta de onde o 'VeraCrypt.exe' foi iniciado. Caso contrário, reinstale o VeraCrypt ou localize o arquivo 'VeraCryptExpander.exe' no seu disco e execute-o.</entry> <entry lang="pt-br" key="NEXT">&Avançar ></entry> @@ -581,3 +581,3 @@ <entry lang="pt-br" key="NOT_FOUND">A letra de unidade não foi encontrada ou não foi especificada.</entry> - <entry lang="en" key="ERR_CANNOT_ASSIGN_DRIVE_LETTER_NONSYS_DEC">Error: Cannot assign drive letter.\n\nUntil a drive letter is assigned to the decrypted volume, you will not be able to access data stored on the volume.\n\nRetry?</entry> + <entry lang="pt-br" key="ERR_CANNOT_ASSIGN_DRIVE_LETTER_NONSYS_DEC">Erro: Não é possível atribuir uma letra de unidade.\n\nEnquanto uma letra de unidade não for atribuída ao volume descriptografado, você não poderá acessar os dados armazenados no volume.\n\nTentar novamente?</entry> <entry lang="pt-br" key="DRIVE_LETTER_UNAVAILABLE">Letra de Unidade não disponível.</entry> @@ -592,3 +592,3 @@ <entry lang="pt-br" key="OPENFILES_LOCK">Não foi possível bloquear o disco. Ainda existem arquivos abertos no disco. Desta forma, este não pode ser desmontado.</entry> - <entry lang="pt-br" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt não pode bloquear o volume, porque ele está em uso pelo sistema ou aplicativos (pode haver arquivos abertos no volume).\n\nVocê deseja desmontar forçadamente o volume?</entry> + <entry lang="pt-br" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt não pode bloquear o volume, porque ele está em uso pelo sistema ou aplicativos (pode haver arquivos abertos no volume).\n\nVocê deseja desmontar forçadamente o volume?</entry> <entry lang="pt-br" key="OPEN_VOL_TITLE">Selecione o Volume VeraCrypt</entry> @@ -597,3 +597,3 @@ <entry lang="pt-br" key="OUTOFMEMORY">Memória Esgotada</entry> - <entry lang="en" key="FORMAT_DEVICE_FOR_ADVANCED_ONLY">IMPORTANT: We strongly recommend that inexperienced users create a VeraCrypt file container on the selected device/partition, instead of attempting to encrypt the entire device/partition.\n\nWhen you create a VeraCrypt file container (as opposed to encrypting a device or partition) there is, for example, no risk of destroying a large number of files. Note that a VeraCrypt file container (even though it contains a virtual encrypted disk) is actually just like any normal file. For more information, see the chapter Beginner's Tutorial in the VeraCrypt User Guide.\n\nAre you sure you want to encrypt the entire device/partition?</entry> + <entry lang="pt-br" key="FORMAT_DEVICE_FOR_ADVANCED_ONLY">IMPORTANTE: Recomendamos fortemente que usuários inexperientes criem um arquivo contêiner VeraCrypt no dispositivo/partição selecionado(a), em vez de tentar criptografar o dispositivo/partição inteiro(a).\n\nAo criar um arquivo contêiner VeraCrypt, não há, por exemplo, risco de destruir um grande número de arquivos. Observe que um arquivo contêiner VeraCrypt (embora contenha um disco criptografado virtual) é, na verdade, apenas como qualquer outro arquivo comum. Para mais informações, consulte o capítulo Tutorial para Iniciantes no Guia do Usuário do VeraCrypt.\n\nTem certeza de que deseja criptografar todo o dispositivo/partição?</entry> <entry lang="pt-br" key="OVERWRITEPROMPT">AVISO: O arquivo '%s' ja existe!\n\nIMPORTANTE: O VERACRYPT NÃO IRÁ CRIPTOGRAFAR O ARQUIVO, MAS APAGÁ-LO. Você tem certeza de que deseja apagar o arquivo e substituí-lo com um novo recipiente VeraCrypt?</entry> @@ -601,3 +601,3 @@ <entry lang="pt-br" key="NONSYS_INPLACE_ENC_CONFIRM">AVISO: Você não será capaz de montar o volume ou acessar quaisquer arquivos armazenados nele até que ele tenha sido totalmente criptografado.\n\nTem certeza de que deseja iniciar a criptografia do %s '%s'%s selecionado?</entry> - <entry lang="en" key="NONSYS_INPLACE_DEC_CONFIRM">WARNING: You will not be able to mount the volume or access any files stored on it until it has been fully decrypted.\n\nAre you sure you want to start decrypting the selected %s '%s'%s?</entry> + <entry lang="pt-br" key="NONSYS_INPLACE_DEC_CONFIRM">AVISO: Você não poderá montar o volume ou acessar os arquivos armazenados nele até que ele tenha sido completamente descriptografado.\n\nTem certeza de que deseja iniciar a descriptografia do(a) %s selecionado(a) '%s'%s?</entry> <entry lang="pt-br" key="NONSYS_INPLACE_ENC_CONFIRM_BACKUP">AVISO: Por favor, note que se o fornecimento de energia for interrompido de repente durante a criptografia dos dados existentes no local, ou quando o sistema operacional falhar devido a um erro de software ou hardware defeituoso enquanto o VeraCrypt estiver criptografando os dados existentes no local, porções dos dados serão corrompidos ou perdidos. Portanto, antes de começar a criptografia, certifique-se de possuir cópias de backup dos arquivos que você deseja criptografar.\n\nVocê tem um backup desses?</entry> @@ -611,4 +611,4 @@ <entry lang="pt-br" key="IDD_PCDM_REMOVE_ALL_KEYFILES_FROM_VOL">Remover Todos os Arquivos-chave do disco</entry> - <entry lang="en" key="PASSWORD_CHANGED">Password, PIM and/or keyfile(s) successfully changed.\n\nIMPORTANT: Please make sure you have read the section 'Changing Passwords and Keyfiles' in the chapter 'Security Requirements and Precautions' in the VeraCrypt User Guide.</entry> - <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="pt-br" key="PASSWORD_CHANGED">Senha, PIM e/ou arquivo(s) de chave alterados com sucesso.\n\nIMPORTANTE: Certifique-se de ler a seção 'Alterando Senhas e Arquivos de Chave' no capítulo 'Requisitos e Precauções de Segurança' do Guia do Usuário do VeraCrypt.</entry> + <entry lang="pt-br" key="FAVORITE_PIM_CHANGED">Este volume está registrado como um Favorito do Sistema e seu PIM foi alterado.\nDeseja que o VeraCrypt atualize automaticamente a configuração de Favorito do Sistema (requer privilégios de administrador)?\n\nObserve que, se você responder não, precisará atualizar o Favorito do Sistema manualmente.</entry> <entry lang="pt-br" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">IMPORTANTE: Se você não destruir o seu VeraCrypt Rescue Disk, sua partição de sistema / unidade ainda pode ser descriptografado usando a senha antiga (por arrancar o VeraCrypt Rescue Disk e inserir a senha antiga). Você deve criar um novo VeraCrypt Rescue Disk e, em seguida, destruir o velho um .\n\nVocê deseja criar um novo VeraCrypt Rescue Disk?</entry> @@ -641,22 +641,22 @@ <entry lang="pt-br" key="PASSWORD_WRONG_CAPSLOCK_ON">\n\nAVISO: A função Caps Lock está ligada. Isto pode levar a uma digitação incorreta da senha.</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> - <entry lang="en" key="PIM_HIDVOL_TITLE">Hidden Volume PIM</entry> - <entry lang="en" key="PIM_HIDDEN_OS_TITLE">PIM for Hidden Operating System</entry> - <entry lang="en" key="PIM_HELP">PIM (Personal Iterations Multiplier) is a value that controls the number of iterations used by the header key derivation as follows:\n Iterations = 15000 + (PIM x 1000).\n\nWhen left empty or set to 0, VeraCrypt will use a default value (485) that ensures a high security.\n\nWhen the password is less than 20 characters, PIM can't be smaller than 485 in order to maintain a minimal security level.\nWhen the password is 20 characters or more, PIM can be set to any value.\n\nA PIM value larger than 485 will lead to slower mount. A small PIM value (less than 485) will lead to a quicker mount but it can reduce security if the password is not strong enough.</entry> - <entry lang="en" key="PIM_SYSENC_HELP">PIM (Personal Iterations Multiplier) is a value that controls the number of iterations used by the header key derivation as follows:\n Iterations = PIM x 2048.\n\nWhen left empty or set to 0, VeraCrypt will use a default value that ensures a high security.\n\nWhen the password is less than 20 characters, PIM can't be smaller than 98 in order to maintain a minimal security level.\nWhen the password is 20 characters or more, PIM can be set to any value.\n\nA PIM value larger than 98 will lead to slower boot. A small PIM value (less than 98) will lead to a quicker boot but it can reduce security if the password is not strong enough.</entry> - <entry lang="en" key="PIM_SYSENC_CHANGE_WARNING">Remember Number to Boot System</entry> - <entry lang="en" key="PIM_LARGE_WARNING">You have chosen a PIM value that is larger than VeraCrypt default value.\nPlease note that this will lead to much slower mount/boot.</entry> - <entry lang="en" key="PIM_SMALL_WARNING">You have chosen a Personal Iterations Multiplier (PIM) that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to a weaker security.\n\nDo you confirm that you are using a strong password?</entry> - <entry lang="en" key="PIM_SYSENC_TOO_BIG">Personal Iterations Multiplier (PIM) maximum value for system encryption is 65535.</entry> + <entry lang="pt-br" key="PIM_CHANGE_WARNING">Lembre-se do Número para Montar o Volume</entry> + <entry lang="pt-br" key="PIM_HIDVOL_HOST_TITLE">PIM do Volume Externo</entry> + <entry lang="pt-br" key="PIM_HIDVOL_TITLE">PIM do Volume Oculto</entry> + <entry lang="pt-br" key="PIM_HIDDEN_OS_TITLE">PIM para o Sistema Operacional Oculto</entry> + <entry lang="pt-br" key="PIM_HELP">PIM (Multiplicador de Iterações Pessoais) é um valor que controla o número de iterações usadas na derivação da chave do cabeçalho, conforme a fórmula:\n Iterações = 15000 + (PIM x 1000).\n\nQuando deixado vazio ou definido como 0, o VeraCrypt usará um valor padrão (485) que garante alta segurança.\n\nSe a senha tiver menos de 20 caracteres, o PIM não pode ser menor que 485 para manter o nível mínimo de segurança.\nSe a senha tiver 20 caracteres ou mais, o PIM pode ser definido para qualquer valor.\n\nUm PIM maior que 485 resultará em montagem mais lenta. Um PIM menor que 485 resultará em montagem mais rápida, mas poderá reduzir a segurança caso a senha não seja suficientemente forte.</entry> + <entry lang="pt-br" key="PIM_SYSENC_HELP">PIM (Multiplicador de Iterações Pessoais) é um valor que controla o número de iterações usadas na derivação da chave do cabeçalho, conforme a fórmula:\n Iterações = PIM x 2048.\n\nQuando deixado vazio ou definido como 0, o VeraCrypt usará um valor padrão que garante alta segurança.\n\nSe a senha tiver menos de 20 caracteres, o PIM não pode ser menor que 98 para manter o nível mínimo de segurança.\nSe a senha tiver 20 caracteres ou mais, o PIM pode ser definido para qualquer valor.\n\nUm PIM maior que 98 resultará em inicialização mais lenta. Um PIM menor que 98 resultará em inicialização mais rápida, mas poderá reduzir a segurança caso a senha não seja suficientemente forte.</entry> + <entry lang="pt-br" key="PIM_SYSENC_CHANGE_WARNING">Lembre-se do Número para Inicializar o Sistema</entry> + <entry lang="pt-br" key="PIM_LARGE_WARNING">Você escolheu um valor de PIM maior que o valor padrão do VeraCrypt.\nObserve que isso resultará em montagem ou inicialização significativamente mais lenta.</entry> + <entry lang="pt-br" key="PIM_SMALL_WARNING">Você escolheu um Multiplicador de Iterações Pessoais (PIM) menor que o valor padrão do VeraCrypt. Observe que, se sua senha não for suficientemente forte, isso poderá reduzir a segurança.\n\nVocê confirma que está usando uma senha forte?</entry> + <entry lang="pt-br" key="PIM_SYSENC_TOO_BIG">O valor máximo do Multiplicador de Iterações Pessoais (PIM) para criptografia de sistema é 65535.</entry> <entry lang="pt-br" key="PIM_TITLE">Volume PIM</entry> - <entry lang="en" key="HIDDEN_FILES_PRESENT_IN_KEYFILE_PATH">\n\nWARNING: Hidden file(s) have been found in a keyfile search path. Such hidden files cannot be used as keyfiles. If you need to use them as keyfiles, remove their 'Hidden' attribute (right-click each of them, select 'Properties', uncheck 'Hidden' and click OK). Note: Hidden files are visible only if the corresponding option is enabled (Computer > Organize > 'Folder and search options' > View).</entry> + <entry lang="pt-br" key="HIDDEN_FILES_PRESENT_IN_KEYFILE_PATH">\n\nAVISO: Arquivos ocultos foram encontrados em um caminho de pesquisa de arquivos de chave. Arquivos ocultos não podem ser usados como arquivo de chave. Se precisar usá-los como arquivo de chave, remova o atributo 'Oculto' (clique com o botão direito em cada arquivo, selecione 'Propriedades', desmarque 'Oculto' e clique em OK). Nota: Arquivos ocultos são visíveis apenas se a opção correspondente estiver ativada (Computador > Organizar > 'Opções de pasta e pesquisa' > Exibir).</entry> <entry lang="pt-br" key="HIDDEN_VOL_PROT_PASSWORD_US_KEYB_LAYOUT">Se você está tentando proteger um volume oculto contendo um sistema oculto, certifique-se de estar usando uma configuração de teclado padrão US quando digitar a senha do volume oculto. Isto porque tal senha precisará ser digitada no ambiente pré-boot (antes do Windows iniciar) onde configurações diferentes do padrão US de teclado não estão disponíveis.</entry> <entry lang="pt-br" key="FOUND_NO_PARTITION_W_DEFERRED_INPLACE_ENC">O VeraCrypt não encontrou nenhum volume onde a criptografia não-sistema tenha sido interrompida e onde o cabeçalho do volume pode ser descriptografado usando a senha e/ou arquivo(s)-chave fornecidos.\n\nPor favor, certifique-se que a senha e/ou arquivo(s)-chave estão corretos e que a partição/volume não está sendo usada pelo sistema ou aplicativos (incluindo software antivírus).</entry> - <entry lang="en" key="SELECTED_PARTITION_ALREADY_INPLACE_ENC">The selected partition/device is already fully encrypted.\nHeader Flags = 0x%.8X</entry> - <entry lang="en" key="SELECTED_PARTITION_NOT_INPLACE_ENC">The selected partition/device is not using in-place encryption.\nHeader Flags = 0x%.8X</entry> + <entry lang="pt-br" key="SELECTED_PARTITION_ALREADY_INPLACE_ENC">A partição/dispositivo selecionado(a) já está totalmente criptografado(a).\nSinalizadores do Cabeçalho = 0x%.8X</entry> + <entry lang="pt-br" key="SELECTED_PARTITION_NOT_INPLACE_ENC">A partição/dispositivo selecionado(a) não está usando criptografia no local.\nSinalizadores do Cabeçalho = 0x%.8X</entry> <entry lang="pt-br" key="SYSENC_MOUNT_WITHOUT_PBA_NOTE">\n\nDica: Se você está tentando montar uma partição localizada em um disco de sistema criptografado sem usar a autenticação pré-inicialização ou uma partição criptografada de um sistema operacional que não está sendo executado, você pode fazê-lo clicando em 'Sistema' > 'Moutar sem Autenticação Pré-Inicialização'.</entry> <entry lang="pt-br" key="MOUNT_WITHOUT_PBA_VOL_ON_ACTIVE_SYSENC_DRIVE">Neste modo, você não pode montar uma partição localizada em uma unidade cuja porção está dentro do alcance de aplicação da criptografia de sistema ativa.\n\nAntes que você possa montar esta partição neste modo, você precisa inicializar um sistema operacional instalado em uma unidade diferente (criptografado ou não), ou inicializar um sistema operacional não-criptografado.</entry> - <entry lang="en" key="CANT_DECRYPT_PARTITION_ON_ENTIRELY_ENCRYPTED_SYS_DRIVE">VeraCrypt cannot decrypt an individual partition on an entirely encrypted system drive (you can decrypt only the entire system drive).</entry> - <entry lang="en" key="CANT_DECRYPT_PARTITION_ON_ENTIRELY_ENCRYPTED_SYS_DRIVE_UNSURE">Warning: As the drive contains the VeraCrypt Boot Loader, it may be an entirely encrypted system drive. If it is, please note that VeraCrypt cannot decrypt an individual partition on an entirely encrypted system drive (you can decrypt only the entire system drive). If that is the case, you will be able to continue now but you will receive the 'Incorrect password' error message later.</entry> + <entry lang="pt-br" key="CANT_DECRYPT_PARTITION_ON_ENTIRELY_ENCRYPTED_SYS_DRIVE">O VeraCrypt não pode descriptografar uma partição individual em um disco do sistema todo totalmente criptografado (é possível descriptografar apenas o disco do sistema inteiro).</entry> + <entry lang="pt-br" key="CANT_DECRYPT_PARTITION_ON_ENTIRELY_ENCRYPTED_SYS_DRIVE_UNSURE">Aviso: Como o disco contém o Boot Loader do VeraCrypt, ele pode ser um disco do sistema todo totalmente criptografado. Nesse caso, observe que o VeraCrypt não pode descriptografar uma partição individual (é possível descriptografar apenas o disco do sistema todo). Você poderá continuar agora, mas poderá receber a mensagem de erro 'Senha incorreta' posteriormente.</entry> <entry lang="pt-br" key="PREV">< &Voltar</entry> @@ -667,6 +667,6 @@ <entry lang="pt-br" key="SELECT_KEYFILE_PATH">Selecione o caminho do arquivo-chave. AVISO: Lembre que apenas o caminho sera lembrado, não os nomes dos arquivos!</entry> - <entry lang="en" key="SELECT_KEYFILE_GENERATION_DIRECTORY">Select a directory where to store the keyfiles.</entry> - <entry lang="en" key="SELECTED_KEYFILE_IS_CONTAINER_FILE">The current container file was selected as a keyfile. It will be skipped.</entry> + <entry lang="pt-br" key="SELECT_KEYFILE_GENERATION_DIRECTORY">Selecione um diretório onde armazenar os arquivos de chave.</entry> + <entry lang="pt-br" key="SELECTED_KEYFILE_IS_CONTAINER_FILE">O arquivo de contêiner atual foi selecionado como um arquivo de chave. Ele será ignorado.</entry> <entry lang="pt-br" key="SERPENT_HELP">Criada por Ross Anderson, Eli Biham e Lars Knudsen. Publicada em 1998. chave de 256 bits, bloco de 128 bits. O modo de operação é o XTS. Serpent foi um dos finalistas no AES.</entry> - <entry lang="en" key="SIZE_HELP">Please specify the size of the container you want to create.\n\nIf you create a dynamic (sparse-file) container, this parameter will specify its maximum possible size.\n\nNote that the minimum possible size of a FAT volume is 292 KB. The minimum possible size of an NTFS volume is 3792 KB.</entry> + <entry lang="pt-br" key="SIZE_HELP">Por favor, especifique o tamanho do contêiner que você deseja criar.\n\nSe você criar um contêiner dinâmico (arquivo esparso), este parâmetro especificará seu tamanho máximo possível.\n\nObserve que o tamanho mínimo possível de um volume FAT é 292 KB. O tamanho mínimo possível de um volume NTFS é 3792 KB.</entry> <entry lang="pt-br" key="SIZE_HELP_HIDDEN_HOST_VOL">Especifique o tamanho do volume externo a ser criado (você criará primeiro o volume externo e depois um volume oculto dentro dele). O tamanho mínimo possível de um volume dentro do qual se pretende criar um volume oculto é 340 KB.</entry> @@ -677,3 +677,3 @@ <entry lang="pt-br" key="SIZE_PARTITION_HIDDEN_SYSENC_HELP">O volume externo e o volume oculto (que contém o sistema operacional oculto) irão residir dentro da partição acima. Deve ser a primeira partição atrás da partição do sistema.\n\nPor favor, verifique se o tamanho da partição e seu número mostrados acimas estão corretos e, se estiverem, clique em Avançar.</entry> - <entry lang="en" key="SIZE_PARTITION_HIDDEN_VOL_HELP">\n\nNote that the minimum possible size of a volume within which a hidden volume is intended to be created is 340 KB.</entry> + <entry lang="pt-br" key="SIZE_PARTITION_HIDDEN_VOL_HELP">\n\nObserve que o tamanho mínimo possível de um volume no qual um volume oculto será criado é 340 KB.</entry> <entry lang="pt-br" key="SIZE_TITLE">Tamanho do Disco</entry> @@ -690,3 +690,3 @@ <entry lang="pt-br" key="AUTORUN_MAY_NOT_ALWAYS_WORK">Note que, dependendo da configuração do sistema operacional, os recursos de auto-executar e auto-montar podem funcionar só quando os arquivos do disco removível estiverem criados em uma mídia de CD/DVD não-regravável. Note também que este não é um bug do VeraCrypt (é uma limitação do Windows).</entry> - <entry lang="en" key="TRAVELER_DISK_CREATED">VeraCrypt traveler disk has been successfully created.\n\nNote that you need administrator privileges to run VeraCrypt in portable mode. Also note that, after examining the registry file, it may be possible to tell that VeraCrypt was run on a Windows system even if it is run in portable mode.</entry> + <entry lang="pt-br" key="TRAVELER_DISK_CREATED">O disco portátil do VeraCrypt foi criado com sucesso.\n\nNote que é necessário ter privilégios de administrador para executar o VeraCrypt no modo portátil. Além disso, mesmo no modo portátil, pode ser possível identificar que o VeraCrypt foi executado em um sistema Windows ao examinar o arquivo de registro.</entry> <entry lang="pt-br" key="TC_TRAVELER_DISK">Disco Removível VeraCrypt</entry> @@ -695,3 +695,3 @@ <entry lang="pt-br" key="UNKNOWN">Desconhecido</entry> - <entry lang="en" key="ERR_UNKNOWN">An unspecified or unknown error occurred (%d).</entry> + <entry lang="pt-br" key="ERR_UNKNOWN">Ocorreu um erro não especificado ou desconhecido (%d).</entry> <entry lang="pt-br" key="UNMOUNTALL_LOCK_FAILED">Alguns discos contem arquivos ou pastas que estão sendo usadas.\n\nDesmontar forçadamente?</entry> @@ -700,3 +700,3 @@ <entry lang="pt-br" key="UNMOUNT_LOCK_FAILED">Disco contém arquivos ou pastas que estão sendo usadas.\n\nDesmontar forçadamente?</entry> - <entry lang="en" key="NO_VOLUME_MOUNTED_TO_DRIVE">No volume is mounted to the specified drive letter.</entry> + <entry lang="pt-br" key="NO_VOLUME_MOUNTED_TO_DRIVE">Nenhum volume está montado na letra de unidade especificada.</entry> <entry lang="pt-br" key="VOL_ALREADY_MOUNTED">O disco que voce está tebntando montar já está montado. </entry> @@ -705,5 +705,5 @@ <entry lang="pt-br" key="VOL_SIZE_WRONG">Erro: Tamanho do disco incorreto.</entry> - <entry lang="en" key="WARN_QUICK_FORMAT">WARNING: You should use Quick Format 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 Quick Format?</entry> + <entry lang="pt-br" key="WARN_QUICK_FORMAT">AVISO: A Formatação Rápida deve ser usada somente nos seguintes casos:\n\n1) O dispositivo não contém dados sensíveis e você não precisa de plausibilidade negável.\n2) O dispositivo já foi completamente criptografado de forma segura.\n\nTem certeza de que deseja usar a Formatação Rápida?</entry> <entry lang="pt-br" key="CONFIRM_SPARSE_FILE">Recipiente dinâmico é um arquivo NTFS esparso cujo tamanho físico (espaço em disco realmente usado) cresce à medida que novos dados são gravados.\n\nAVISO: O desempenho de volumes hospedados em arquivos esparsos é significativamente pior que o desempenho de volumes normais. Volumes em arquivos esparsos são também menos seguros porque permitem saber quais setores não estão em uso. Além disto, tais volumes não podem prover camuflagem de informação (hospedar um volume oculto). Note que se houver escrita num recipiente esparso quando não houver espaço livre suficiente no sistema de arquivos que o hospeda, o sistema de arquivos criptografado pode ser corrompido.\n\nTem certeza de que quer criar um volume hospedado em arquivo esparso?</entry> - <entry lang="en" key="SPARSE_FILE_SIZE_NOTE">Note that the size of the dynamic container reported by Windows and by VeraCrypt will always be equal to its maximum size. To find out current physical size of the container (actual disk space it uses), right-click the container file (in a Windows Explorer window, not in VeraCrypt), then select 'Properties' and see the 'Size on disk' value.\n\nAlso note that if you move a dynamic container to another volume or drive, the physical size of the container will be extended to the maximum. (You can prevent that by creating a new dynamic container in the destination location, mounting it and then moving the files from the old container to the new one.)</entry> + <entry lang="pt-br" key="SPARSE_FILE_SIZE_NOTE">Observe que o tamanho do contêiner dinâmico reportado pelo Windows e pelo VeraCrypt será sempre igual ao seu tamanho máximo. Para verificar o tamanho físico atual do contêiner (espaço real utilizado no disco), clique com o botão direito no arquivo do contêiner (em uma janela do Windows Explorer, não no VeraCrypt), selecione 'Propriedades' e veja o valor de 'Tamanho no disco'.\n\nAlém disso, ao mover um contêiner dinâmico para outro volume ou unidade, o tamanho físico do contêiner será expandido para o máximo. (Você pode evitar isso criando um novo contêiner dinâmico no local de destino, montando-o e transferindo os arquivos do contêiner antigo para o novo.)</entry> <entry lang="pt-br" key="PASSWORD_CACHE_WIPED_SHORT">Cache de senha apagado</entry> @@ -731,3 +731,3 @@ <entry lang="pt-br" key="CANT_MOUNT_VOLUME">Não foi possível montar o disco.</entry> - <entry lang="pt-br" key="CANT_DISMOUNT_VOLUME">Não foi possível desmontar o disco.</entry> + <entry lang="pt-br" key="CANT_UNMOUNT_VOLUME">Não foi possível desmontar o disco.</entry> <entry lang="pt-br" key="FORMAT_NTFS_FAILED">O Windows não conseguiu formatar o volume como NTFS.\n\nFavor selecionar um tipo de sistema de arquivo diferente (se possível) e tentar novamente. Você também pode deixar o volume sem formato (selecione 'Nenhum' como sistema de arquivo), sair desse assistente, montar o volume, e usar o sistema ou algum ferramenta de terceiros para formatar o volume montado (o volume irá permanecer criptografado).</entry> @@ -746,3 +746,3 @@ <entry lang="pt-br" key="CANT_GET_VOLSIZE">Erro: Não foi possível determinar o tamanho do disco!\n\nGaranta que o disco selecionado não está sendo usado pelo sistema ou alguma aplicação.</entry> - <entry lang="en" key="HIDDEN_VOL_HOST_SPARSE">Hidden volumes must not be created within dynamic (sparse file) containers. To achieve plausible deniability, the hidden volume needs to be created within a non-dynamic container.</entry> + <entry lang="pt-br" key="HIDDEN_VOL_HOST_SPARSE">Volumes ocultos não devem ser criados dentro de contêineres dinâmicos (arquivos esparsos). Para alcançar a plausibilidade negável, o volume oculto precisa ser criado dentro de um contêiner não dinâmico.</entry> <entry lang="pt-br" key="HIDDEN_VOL_HOST_UNSUPPORTED_FILESYS">O Assistente para Criação de Volume VeraCrypt só pode criar um volume oculto dentro de um FAT ou NTFS.</entry> @@ -752,3 +752,3 @@ <entry lang="pt-br" key="OFFER_FAT_FORMAT_ALTERNATIVE">Você deseja formatar o volume como FAT ao invés disso?</entry> - <entry lang="en" key="FAT_NOT_AVAILABLE_FOR_SO_LARGE_VOLUME">Note: This volume cannot be formatted as FAT, because it exceeds the maximum volume size supported by the FAT32 filesystem for the applicable sector size (2 TB for 512-byte sectors and 16 TB for 4096-byte sectors).</entry> + <entry lang="pt-br" key="FAT_NOT_AVAILABLE_FOR_SO_LARGE_VOLUME">Nota: Este volume não pode ser formatado como FAT, pois excede o tamanho máximo de volume suportado pelo sistema de arquivos FAT32 para o tamanho de setor aplicável (2 TB para setores de 512 bytes e 16 TB para setores de 4096 bytes).</entry> <entry lang="pt-br" key="PARTITION_TOO_SMALL_FOR_HIDDEN_OS">Erro: A partição para o sistema operacional oculto (ou seja, a primeira partição atrás da partição do sistema) deve ser de pelo menos 5% maior do que a partição do sistema (a partição do sistema é a que o sistema operacional atualmente em execução está instalado).</entry> @@ -760,10 +760,10 @@ <entry lang="pt-br" key="SYSTEM_PARTITION_NOT_ACTIVE">Erro: O sistema operacional atualmente em execução não está instalado na partição de inicialização (primeira partição ativa). Isto não é suportado.</entry> - <entry lang="en" key="CONFIRM_FAT_FOR_FILES_OVER_4GB">You indicated that you intend to store files larger than 4 GB in this VeraCrypt volume. However, you chose the FAT file system, on which files larger than 4 GB cannot be stored.\n\nAre you sure you want to format the volume as FAT?</entry> - <entry lang="en" key="NONSYS_INPLACE_DECRYPTION_BAD_VOL_FORMAT">Error: VeraCrypt does not support in-place decryption of legacy non-system volumes created by VeraCrypt 1.0b or earlier.\n\nNote: You can still decrypt files stored on the volume by copying/moving them to any unencrypted volume.</entry> - <entry lang="en" key="NONSYS_INPLACE_DECRYPTION_CANT_DECRYPT_HID_VOL">Error: VeraCrypt cannot in-place decrypt a hidden VeraCrypt volume.\n\nNote: You can still decrypt files stored on the volume by copying/moving them to any unencrypted volume.</entry> - <entry lang="en" key="CONFIRM_VOL_CONTAINS_NO_HIDDEN_VOL">Warning: Note that VeraCrypt cannot in-place decrypt a volume that contains a hidden VeraCrypt volume (the hidden volume would be overwritten with pseudorandom data).\n\nPlease confirm that the volume you are about to decrypt contains no hidden volume.\n\nNote: If the volume contains a hidden volume but you do not mind losing the hidden volume, you can select Proceed (the outer volume will be safely decrypted).</entry> - <entry lang="en" key="VOL_CONTAINS_NO_HIDDEN_VOL">The volume does not contain any hidden volume. Proceed.</entry> - <entry lang="en" key="VOL_CONTAINS_A_HIDDEN_VOL">The volume contains a hidden volume. Cancel.</entry> + <entry lang="pt-br" key="CONFIRM_FAT_FOR_FILES_OVER_4GB">Você indicou que pretende armazenar arquivos maiores que 4 GB neste volume do VeraCrypt. No entanto, você escolheu o formato FAT, no qual arquivos maiores que 4 GB não podem ser armazenados.\n\nTem certeza de que deseja formatar o volume como FAT?</entry> + <entry lang="pt-br" key="NONSYS_INPLACE_DECRYPTION_BAD_VOL_FORMAT">Erro: O VeraCrypt não suporta a descriptografia no local de volumes não-sistema criados pelo VeraCrypt 1.0b ou anterior.\n\nNota: Você ainda pode descriptografar os arquivos armazenados no volume copiando-os ou movendo-os para qualquer volume não criptografado.</entry> + <entry lang="pt-br" key="NONSYS_INPLACE_DECRYPTION_CANT_DECRYPT_HID_VOL">Erro: O VeraCrypt não pode descriptografar diretamente um volume oculto do VeraCrypt.\n\nNota: Você ainda pode descriptografar os arquivos armazenados no volume copiando-os ou movendo-os para qualquer volume não criptografado.</entry> + <entry lang="pt-br" key="CONFIRM_VOL_CONTAINS_NO_HIDDEN_VOL">Aviso: Lembre-se de que o VeraCrypt não pode descriptografar diretamente um volume que contém um volume oculto do VeraCrypt (o volume oculto será sobrescrito com dados pseudorrandômicos).\n\nPor favor, confirme que o volume que você está prestes a descriptografar não contém nenhum volume oculto.\n\nNota: Se o volume contiver um volume oculto, mas você não se importar em perdê-lo, selecione Prosseguir (o volume externo será descriptografado com segurança).</entry> + <entry lang="pt-br" key="VOL_CONTAINS_NO_HIDDEN_VOL">O volume não contém nenhum volume oculto. Prosseguir.</entry> + <entry lang="pt-br" key="VOL_CONTAINS_A_HIDDEN_VOL">O volume contém um volume oculto. Cancelar.</entry> <entry lang="pt-br" key="CANT_ACCESS_VOL">Erro: Não foi possível acessar o volume!\n\nCertifique-se de que o volume selecionado realmente existe, que ele não está montado ou sendo usado pelo sistema ou outro programa, que você tem permissão para ler/gravar nesse volume e que ele não está protegido contra gravação.</entry> - <entry lang="en" key="CANT_GET_VOL_INFO">Error: Cannot obtain volume properties.</entry> + <entry lang="pt-br" key="CANT_GET_VOL_INFO">Erro: Não é possível obter as propriedades do volume.</entry> <entry lang="pt-br" key="INPLACE_ENC_CANT_ACCESS_OR_GET_INFO_ON_VOL">Erro: Não foi possível acessar o volume e/ou obter informações sobre o volume.\n\nCertifique-se que o volume selecionado existe, que não está sendo usado pelo sistema ou aplicativos, que você tem privilégio de leitura/escrita no volume, e que ele não está protegido contra gravação.</entry> @@ -772,4 +772,4 @@ <entry lang="pt-br" key="INPLACE_ENC_GENERIC_ERR_RESUME">Um erro impediu o VeraCrypt de retomar o processo de criptografia da partição.\n\nPor favor, tente corrigir quaisquer problemas reportados anteriormente e, em seguida, tentar retomar o processo novamente. Note que o volume não pode ser montado até que tenha sido totalmente criptografado.</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="pt-br" key="CANT_DISMOUNT_OUTER_VOL">Erro: Não foi possível desmontar o volume externo!\n\nUm disco não pode ser desmontado se contiver arquivos ou pastas que estiverem sendo usadas por algum programa ou pelo sistema.\n\nFavor fechar qualquer programa que possa estar usando estes arquivos ou diretórios do disco e clique em "Repetir".</entry> + <entry lang="pt-br" key="INPLACE_DEC_GENERIC_ERR">Um erro impediu o VeraCrypt de descriptografar o volume. Por favor, corrija os problemas relatados anteriormente e tente novamente, se possível.</entry> + <entry lang="pt-br" key="CANT_UNMOUNT_OUTER_VOL">Erro: Não foi possível desmontar o volume externo!\n\nUm disco não pode ser desmontado se contiver arquivos ou pastas que estiverem sendo usadas por algum programa ou pelo sistema.\n\nFavor fechar qualquer programa que possa estar usando estes arquivos ou diretórios do disco e clique em "Repetir".</entry> <entry lang="pt-br" key="CANT_GET_OUTER_VOL_INFO">Erro: Não foi possível obter informações sobre o volume externo! a Criação do volume não pode continuar.</entry> @@ -830,5 +830,5 @@ <entry lang="pt-br" key="SETUP_MODE_INFO">Selecione um dos modos. Se não tiver certeza de qual selecionar, use o modo padrão.</entry> - <entry lang="en" key="SETUP_MODE_HELP_INSTALL">Select this option if you want to install VeraCrypt on this system.</entry> - <entry lang="en" key="SETUP_MODE_HELP_UPGRADE">Note: You can upgrade without decrypting even if the system partition/drive is encrypted or you use a hidden operating system.</entry> - <entry lang="en" key="SETUP_MODE_HELP_EXTRACT">If you select this option, all files will be extracted from this package but nothing will be installed on the system. Do not select it if you intend to encrypt the system partition or system drive. Selecting this option can be useful, for example, if you want to run VeraCrypt in so-called portable mode. VeraCrypt does not have to be installed on the operating system under which it is run. After all files are extracted, you can directly run the extracted file 'VeraCrypt.exe' (then VeraCrypt will run in portable mode).</entry> + <entry lang="pt-br" key="SETUP_MODE_HELP_INSTALL">Selecione esta opção se você deseja instalar o VeraCrypt neste sistema.</entry> + <entry lang="pt-br" key="SETUP_MODE_HELP_UPGRADE">Nota: Você pode atualizar sem descriptografar, mesmo se a partição/unidade do sistema estiver criptografada ou se você usar um sistema operacional oculto.</entry> + <entry lang="pt-br" key="SETUP_MODE_HELP_EXTRACT">Se você selecionar esta opção, todos os arquivos serão extraídos deste pacote, mas nada será instalado no sistema. Não selecione esta opção se você pretende criptografar a partição ou unidade do sistema. Esta opção pode ser útil, por exemplo, se você quiser executar o VeraCrypt no chamado modo portátil. O VeraCrypt não precisa ser instalado no sistema operacional para ser executado. Após a extração dos arquivos, você pode executar diretamente o arquivo extraído 'VeraCrypt.exe' (neste caso, o VeraCrypt será executado no modo portátil).</entry> <entry lang="pt-br" key="SETUP_OPTIONS_TITLE">Opções de Instalação</entry> @@ -866,4 +866,4 @@ <entry lang="pt-br" key="SETUP_UPDATE_OK">O VeraCrypt foi atualizado com sucesso.</entry> - <entry lang="en" key="UPGRADE_OK_REBOOT_REQUIRED">VeraCrypt has been successfully upgraded. However, before you can start using it, the computer must be restarted.\n\nDo you want to restart it now?</entry> - <entry lang="en" key="SYS_ENC_UPGRADE_FAILED">Failed to upgrade VeraCrypt!\n\nIMPORTANT: Before you shut down or restart the system, we strongly recommend that you use System Restore (Windows Start menu > All programs > Accessories > System Tools > System Restore) to restore your system to the restore point named 'VeraCrypt installation'. If System Restore is not available, you should try installing the original or the new version of VeraCrypt again before you shut down or restart the system.</entry> + <entry lang="pt-br" key="UPGRADE_OK_REBOOT_REQUIRED">O VeraCrypt foi atualizado com sucesso. No entanto, antes de poder usá-lo, o computador deve ser reiniciado.\n\nVocê deseja reiniciá-lo agora?</entry> + <entry lang="pt-br" key="SYS_ENC_UPGRADE_FAILED">Falha ao atualizar o VeraCrypt!\n\nIMPORTANTE: Antes de desligar ou reiniciar o sistema, recomendamos fortemente que você use a Restauração do Sistema (Menu Iniciar do Windows > Todos os Programas > Acessórios > Ferramentas do Sistema > Restauração do Sistema) para restaurar seu sistema ao ponto de restauração chamado 'Instalação do VeraCrypt'. Caso a Restauração do Sistema não esteja disponível, tente instalar a versão original ou a nova versão do VeraCrypt novamente antes de desligar ou reiniciar o sistema.</entry> <entry lang="pt-br" key="UNINSTALL_OK">O VeraCrypt foi desinstalado com sucesso.\n\nClique em 'Concluir' para remover o instalador do VeraCrypt e a pasta %s. Observe que a pasta não será removida se ela contiver algum arquivo que não tenha sido criado pelo VeraCrypt ou instalado pelo seu instalador.</entry> @@ -884,4 +884,4 @@ <entry lang="pt-br" key="CLOSE_TC_FIRST">O driver de dispositivo do VeraCrypt não pôde ser encerrado.\n\nFavor fechar todas as janelas do VeraCrypt primeiro. Se não adiantar, reinicie o Windows e tente novamente.</entry> - <entry lang="pt-br" key="DISMOUNT_ALL_FIRST">Todos os volumes VeraCrypt precisam ser fechados antes de instalar ou desinstalar o 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="pt-br" key="UNMOUNT_ALL_FIRST">Todos os volumes VeraCrypt precisam ser fechados antes de instalar ou desinstalar o VeraCrypt.</entry> + <entry lang="pt-br" key="UNINSTALL_OLD_VERSION_FIRST">Uma versão obsoleta do VeraCrypt está atualmente instalada neste sistema. Ela precisa ser desinstalada antes que você possa instalar esta nova versão do VeraCrypt.\n\nAssim que você fechar esta caixa de mensagem, o desinstalador da versão antiga será iniciado. Observe que nenhum volume será descriptografado ao desinstalar o VeraCrypt. Após desinstalar a versão antiga do VeraCrypt, execute novamente o instalador da nova versão do VeraCrypt.</entry> <entry lang="pt-br" key="REG_INSTALL_FAILED">A instalação das entradas do registro falharam</entry> @@ -895,4 +895,4 @@ <entry lang="pt-br" key="COM_DEREG_FAILED">Erro ao remover registro de biblioteca de suporte a Controle de Conta de Usuário.</entry> - <entry lang="en" key="TRAVELER_LIMITATIONS_NOTE">Note about portable mode:\n\nPlease note that the operating system requires drivers to be registered with it before they can be started. Hence, the VeraCrypt driver is not (and cannot be) fully portable (whereas the VeraCrypt applications are fully portable, i.e. they do not have to be installed or registered with the operating system). Also note that VeraCrypt needs a driver to provide transparent on-the-fly encryption/decryption.</entry> - <entry lang="en" key="TRAVELER_UAC_NOTE">Note that if you decide to run VeraCrypt in portable mode (as opposed to running an installed copy of VeraCrypt), the system will ask you for permission to run VeraCrypt (UAC prompt) every time you attempt to run it.\n\nThe reason is that when you run VeraCrypt in portable mode, VeraCrypt needs to load and start the VeraCrypt device driver. VeraCrypt needs a device driver to provide transparent on-the-fly encryption/decryption, and users without administrator privileges cannot start device drivers in Windows. Therefore, the system will ask you for permission to run VeraCrypt with administrator privileges (UAC prompt).\n\nNote that if you install VeraCrypt on the system (as opposed to running VeraCrypt in portable mode), the system will NOT ask you for permission to run VeraCrypt (UAC prompt) every time you attempt to run it.\n\nAre you sure you want to extract the files?</entry> + <entry lang="pt-br" key="TRAVELER_LIMITATIONS_NOTE">Nota sobre o modo portátil:\n\nObserve que o sistema operacional exige que os drivers sejam registrados antes de serem iniciados. Por isso, o driver do VeraCrypt não é (e não pode ser) totalmente portátil (embora os aplicativos do VeraCrypt sejam totalmente portáteis, ou seja, não precisem ser instalados ou registrados no sistema operacional). Lembre-se também de que o VeraCrypt necessita de um driver para oferecer criptografia/descriptografia transparente em tempo real.</entry> + <entry lang="pt-br" key="TRAVELER_UAC_NOTE">Se você decidir executar o VeraCrypt no modo portátil (em vez de usar uma cópia instalada), o sistema solicitará permissão para executá-lo (notificação do UAC) toda vez que você tentar abri-lo.\n\nIsso ocorre porque, no modo portátil, o VeraCrypt precisa carregar e iniciar seu driver. Esse driver é necessário para fornecer criptografia/descriptografia transparente em tempo real, e usuários sem privilégios de administrador não podem iniciar drivers no Windows. Portanto, o sistema solicitará permissão para executar o VeraCrypt com privilégios de administrador (notificação do UAC).\n\nSe você optar por instalar o VeraCrypt (em vez de executá-lo no modo portátil), o sistema NÃO exibirá a notificação do UAC a cada vez que você tentar abri-lo.\n\nTem certeza de que deseja extrair os arquivos?</entry> <entry lang="pt-br" key="CONTAINER_ADMIN_WARNING">Aviso: Esta instância do Assistente de Criação de Volume tem privilégios de administrador.\n\nSeu novo volume pode ser criado com permissões que não o deixarão gravar no volume quando ele estiver montado. Caso queira evitar isso, feche esta instância do Assistente e inicie uma nova sem privilégios de administrador.\n\nDeseja fechar essa instância do Assistente de Criação de Volume?</entry> @@ -905,3 +905,3 @@ <entry lang="pt-br" key="OPEN">Abrir</entry> - <entry lang="pt-br" key="DISMOUNT">Desmontar</entry> + <entry lang="pt-br" key="UNMOUNT">Desmontar</entry> <entry lang="pt-br" key="SHOW_TC">Mostrar VeraCrypt</entry> @@ -924,13 +924,13 @@ <entry lang="pt-br" key="PROGRESS_STATUS_ERROR">Erro</entry> - <entry lang="en" key="FAVORITE_DISCONNECTED_DEV">Device disconnected</entry> - <entry lang="en" key="SYS_FAVORITE_VOLUMES_SAVED">System favorite volumes saved.\n\nTo enable mounting of system favorite volumes when the system starts, please select 'Settings' > 'System Favorite Volumes' > 'Mount system favorite volumes when Windows starts'.</entry> - <entry lang="en" key="FAVORITE_ADD_DRIVE_DEV_WARNING">The volume you are adding to favorites is neither a partition nor a dynamic volume. Therefore, VeraCrypt will be unable to mount this favorite volume if the device number changes.</entry> - <entry lang="en" key="FAVORITE_ADD_PARTITION_TYPE_WARNING">The volume you are adding to favorites is a partition not recognized by Windows.\n\nVeraCrypt will be unable to mount this favorite volume if the device number changes. Please set the type of the partition to a type recognized by Windows (use the SETID command of the Windows 'diskpart' tool). Then add the partition to favorites again.</entry> - <entry lang="en" key="FAVORITE_ARRIVAL_MOUNT_BACKGROUND_TASK_ERR">VeraCrypt Background Task is disabled or it is configured to exit when there are no mounted volumes (or VeraCrypt is running in portable mode). This may prevent your favorite volumes from being automatically mounted when devices hosting them get connected.\n\nNote: To enable the VeraCrypt Background Task, select Settings > Preferences and check the 'Enabled' checkbox in the section 'VeraCrypt Background Task'.</entry> - <entry lang="en" key="FAVORITE_ARRIVAL_MOUNT_NETWORK_PATH_ERR">A container stored in a remote filesystem shared over a network cannot be automatically mounted when its host device gets connected.</entry> - <entry lang="en" key="FAVORITE_ARRIVAL_MOUNT_DEVICE_PATH_ERR">The device displayed below is neither a partition nor a dynamic volume. Therefore, the volume hosted on the device cannot be automatically mounted when the device gets connected.</entry> - <entry lang="en" key="FAVORITE_ARRIVAL_MOUNT_PARTITION_TYPE_ERR">Please set the type of the partition displayed below to a type recognized by Windows (use the SETID command of the Windows 'diskpart' tool). Then remove the partition from favorites and add it again. This will enable the volume hosted on the device to be automatically mounted when the device gets connected.</entry> - <entry lang="en" key="FAVORITE_LABEL_DEVICE_PATH_ERR">The device displayed below is neither a partition nor a dynamic volume. Therefore, no label can be assigned to it.</entry> - <entry lang="en" key="FAVORITE_LABEL_PARTITION_TYPE_ERR">Please set the type of the partition displayed below to a type recognized by Windows (use the SETID command of the Windows 'diskpart' tool). Then remove the partition from favorites and add it again. This will enable VeraCrypt to assign a label to the partition.</entry> - <entry lang="en" key="SYSTEM_FAVORITE_NETWORK_PATH_ERR">Due to a Windows limitation, a container stored in a remote filesystem shared over a network cannot be mounted as a system favorite volume (however, it can be mounted as a non-system favorite volume when a user logs on).</entry> + <entry lang="pt-br" key="FAVORITE_DISCONNECTED_DEV">Dispositivo desconectado</entry> + <entry lang="pt-br" key="SYS_FAVORITE_VOLUMES_SAVED">Volumes favoritos do sistema salvos.\n\nPara habilitar a montagem de volumes favoritos do sistema quando o sistema for iniciado, selecione 'Configurações' > 'Volumes Favoritos do Sistema' > 'Montar volumes favoritos do sistema ao iniciar o Windows'.</entry> + <entry lang="pt-br" key="FAVORITE_ADD_DRIVE_DEV_WARNING">O volume que você está adicionando aos favoritos não é nem uma partição nem um volume dinâmico. Portanto, o VeraCrypt não será capaz de montar este volume favorito se o número do dispositivo mudar.</entry> + <entry lang="pt-br" key="FAVORITE_ADD_PARTITION_TYPE_WARNING">O volume que você está adicionando aos favoritos é uma partição não reconhecida pelo Windows.\n\nO VeraCrypt não será capaz de montar este volume favorito se o número do dispositivo mudar. Por favor, defina o tipo da partição para um tipo reconhecido pelo Windows (use o comando SETID da ferramenta 'diskpart' do Windows). Em seguida, adicione a partição aos favoritos novamente.</entry> + <entry lang="pt-br" key="FAVORITE_ARRIVAL_MOUNT_BACKGROUND_TASK_ERR">A Tarefa em Segundo Plano do VeraCrypt está desativada ou está configurada para sair quando não houver volumes montados (ou o VeraCrypt está sendo executado no modo portátil). Isso pode impedir que seus volumes favoritos sejam montados automaticamente quando os dispositivos que os hospedam forem conectados.\n\nNota: Para ativar a Tarefa em Segundo Plano do VeraCrypt, selecione Configurações > Preferências e marque a caixa de seleção 'Ativado' na seção 'Tarefa em Segundo Plano do VeraCrypt'.</entry> + <entry lang="pt-br" key="FAVORITE_ARRIVAL_MOUNT_NETWORK_PATH_ERR">Um contêiner armazenado em um sistema de arquivos remoto compartilhado em uma rede não pode ser montado automaticamente quando o dispositivo que o hospeda é conectado.</entry> + <entry lang="pt-br" key="FAVORITE_ARRIVAL_MOUNT_DEVICE_PATH_ERR">O dispositivo exibido abaixo não é nem uma partição nem um volume dinâmico. Portanto, o volume hospedado no dispositivo não pode ser montado automaticamente quando o dispositivo é conectado.</entry> + <entry lang="pt-br" key="FAVORITE_ARRIVAL_MOUNT_PARTITION_TYPE_ERR">Por favor, defina o tipo da partição exibida abaixo para um tipo reconhecido pelo Windows (use o comando SETID da ferramenta 'diskpart' do Windows). Em seguida, remova a partição dos favoritos e adicione-a novamente. Isso permitirá que o volume hospedado no dispositivo seja montado automaticamente quando o dispositivo for conectado.</entry> + <entry lang="pt-br" key="FAVORITE_LABEL_DEVICE_PATH_ERR">O dispositivo exibido abaixo não é nem uma partição nem um volume dinâmico. Portanto, não é possível atribuir um rótulo a ele.</entry> + <entry lang="pt-br" key="FAVORITE_LABEL_PARTITION_TYPE_ERR">Por favor, defina o tipo da partição exibida abaixo para um tipo reconhecido pelo Windows (use o comando SETID da ferramenta 'diskpart' do Windows). Em seguida, remova a partição dos favoritos e adicione-a novamente. Isso permitirá que o VeraCrypt atribua um rótulo à partição.</entry> + <entry lang="pt-br" key="SYSTEM_FAVORITE_NETWORK_PATH_ERR">Devido a uma limitação do Windows, um contêiner armazenado em um sistema de arquivos remoto compartilhado em rede não pode ser montado como um volume favorito do sistema (no entanto, ele pode ser montado como um volume favorito comum quando um usuário fizer login).</entry> <entry lang="pt-br" key="ENTER_PASSWORD_FOR">Entre senha para %s</entry> @@ -941,7 +941,7 @@ <entry lang="pt-br" key="KEYFILE_CREATED">O arquivo-chave foi criado com sucesso.</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_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> + <entry lang="pt-br" key="KEYFILE_INCORRECT_NUMBER">O número de arquivos de chave fornecido é inválido.</entry> + <entry lang="pt-br" key="KEYFILE_INCORRECT_SIZE">O tamanho do arquivo de chave deve ser de pelo menos 64 bytes.</entry> + <entry lang="pt-br" key="KEYFILE_EMPTY_BASE_NAME">Por favor, insira um nome para os arquivos de chave a serem gerados.</entry> + <entry lang="pt-br" key="KEYFILE_INVALID_BASE_NAME">O nome base dos arquivos de chave é inválido.</entry> + <entry lang="pt-br" key="KEYFILE_ALREADY_EXISTS">O arquivo de chave '%s' já existe.\nVocê deseja sobrescrevê-lo? O processo de geração será interrompido se você responder Não.</entry> <entry lang="pt-br" key="HEADER_DAMAGED_AUTO_USED_HEADER_BAK">AVISO: O cabeçalho deste volume está danificado! O VeraCrypt usou automaticamente o backup do cabeçalho embutido no volume.\n\nVocê deve corrigir o cabeçalho do volume selecionando a opção 'Ferramentas' > 'Restaurar Cabeçalho do Volume'.</entry> @@ -963,4 +963,4 @@ <entry lang="pt-br" key="RESCUE_DISK_NON_WIZARD_CREATION_SELECT_PATH">Depois de clicar em OK, você irá selecionar um nome para o arquivo da imagem ISO do novo Disco de Emergência VeraCrypt e o local onde você deseja salvá-lo.</entry> - <entry lang="en" key="RESCUE_DISK_NON_WIZARD_CREATION_BURN">The Rescue Disk image has been created and stored in this file:\n%s\n\nNow you need to burn the Rescue Disk image to a CD or DVD.\n\nIMPORTANT: Note that the file must be written to the CD/DVD as an ISO disk image (not as an individual file). For information on how to do so, please refer to the documentation of your CD/DVD recording software.\n\nAfter you burn the Rescue Disk, select 'System' > 'Verify Rescue Disk' to verify that it has been correctly burned.</entry> - <entry lang="en" key="RESCUE_DISK_NON_WIZARD_CREATION_WIN_ISOBURN">The Rescue Disk image has been created and stored in this file:\n%s\n\nNow you need to burn the Rescue Disk image to a CD or DVD.\n\nDo you want to launch the Microsoft Windows Disc Image Burner now?\n\nNote: After you burn the Rescue Disk, select 'System' > 'Verify Rescue Disk' to verify that it has been correctly burned.</entry> + <entry lang="pt-br" key="RESCUE_DISK_NON_WIZARD_CREATION_BURN">A imagem do Disco de Resgate foi criada e armazenada neste arquivo:\n%s\n\nAgora você precisa gravar a imagem do Disco de Resgate em um CD ou DVD.\n\n**IMPORTANTE**: O arquivo deve ser gravado no CD/DVD como uma imagem de disco ISO (não como um arquivo individual). Para mais informações sobre como fazer isso, consulte a documentação do seu software de gravação de CD/DVD.\n\nDepois de gravar o Disco de Resgate, selecione 'Sistema' > 'Verificar Disco de Resgate' para confirmar se ele foi gravado corretamente.</entry> + <entry lang="pt-br" key="RESCUE_DISK_NON_WIZARD_CREATION_WIN_ISOBURN">A imagem do Disco de Resgate foi criada e armazenada neste arquivo:\n%s\n\nAgora você precisa gravar a imagem do Disco de Resgate em um CD ou DVD.\n\nVocê deseja abrir o Gravador de Imagem de Disco do Microsoft Windows agora?\n\n**Nota**: Após gravar o Disco de Resgate, selecione 'Sistema' > 'Verificar Disco de Resgate' para confirmar se ele foi gravado corretamente.</entry> <entry lang="pt-br" key="RESCUE_DISK_NON_WIZARD_CHECK_INSERT">Insira seu Disco de Emergência VeraCrypt e clique em OK para verificá-lo.</entry> @@ -968,12 +968,12 @@ <entry lang="pt-br" key="RESCUE_DISK_NON_WIZARD_CHECK_FAILED">Não foi possível verificar se o Disco de Emergência foi gravado corretamente.\n\nSe você ja gravou o Disco de Emergência, remova o CD/DVD, coloque-o novamente e tente novamente. Se isto não andiantar, tente utilisar outro programa para gravar o CD/DVD ou outro CD/DVD.\n\nSe você tentou verificar um Disco de Emergência VeraCrypt criado para uma chave mestra, senha, salt, etc. diferente, lembre que esse Disco de Emergência will vai sempre causar erro nesta verificação. Para criar um novo Disco de Emergência compatível com esta configuração, clique em 'Sistema' > 'Criar Disco de Emergência'.</entry> - <entry lang="en" key="RESCUE_DISK_ISO_IMAGE_CHECK_PASSED">The VeraCrypt Rescue Disk image has been successfully verified.</entry> - <entry lang="en" key="RESCUE_DISK_ISO_IMAGE_CHECK_FAILED">The Rescue Disk image verification failed.\n\nIf you attempted to verify a VeraCrypt Rescue Disk image created for a different master key, password, salt, etc., please note that such Rescue Disk image will always fail this verification. To create a new Rescue Disk image fully compatible with your current configuration, select 'System' > 'Create Rescue Disk'.</entry> + <entry lang="pt-br" key="RESCUE_DISK_ISO_IMAGE_CHECK_PASSED">A imagem do Disco de Resgate do VeraCrypt foi verificada com sucesso.</entry> + <entry lang="pt-br" key="RESCUE_DISK_ISO_IMAGE_CHECK_FAILED">A verificação da imagem do Disco de Resgate falhou.\n\nSe você tentou verificar uma imagem do Disco de Resgate do VeraCrypt criada para uma chave mestra, senha, salt ou outros parâmetros diferentes, observe que essa imagem do Disco de Resgate sempre falhará na verificação. Para criar uma nova imagem do Disco de Resgate totalmente compatível com sua configuração atual, selecione 'Sistema' > 'Criar Disco de Resgate'.</entry> <entry lang="pt-br" key="ERROR_CREATING_RESCUE_DISK">Erro ao criar o Disco de Emergência VeraCrypt.</entry> <entry lang="pt-br" key="CANNOT_CREATE_RESCUE_DISK_ON_HIDDEN_OS">O Disco de Emergência VeraCrypt não pode ser criado quando um sistema operacional oculto está sendo executado.\n\nPara criar um Disco de Emergência VeraCrypt, inicialize o sistema operacional isca e então selecione 'Sistema' > 'Criar Disco de Emergência'.</entry> - <entry lang="en" key="RESCUE_DISK_CHECK_FAILED">Cannot verify that the Rescue Disk has been correctly burned.\n\nIf you have burned the Rescue Disk, please eject and reinsert the CD/DVD; then click Next to try again. If this does not help, please try another medium%s.\n\nIf you have not burned the Rescue Disk yet, please do so, and then click Next.\n\nIf you attempted to verify a VeraCrypt Rescue Disk created before you started this wizard, please note that such Rescue Disk cannot be used, because it was created for a different master key. You need to burn the newly generated Rescue Disk.</entry> - <entry lang="en" key="RESCUE_DISK_CHECK_FAILED_SENTENCE_APPENDIX"> and/or other CD/DVD recording software</entry> + <entry lang="pt-br" key="RESCUE_DISK_CHECK_FAILED">Não foi possível verificar se o Disco de Resgate foi gravado corretamente.\n\nSe você já gravou o Disco de Resgate, ejete e reinsira o CD/DVD e clique em Avançar para tentar novamente. Se isso não funcionar, tente usar outra mídia%s.\n\nSe você ainda não gravou o Disco de Resgate, grave-o e clique em Avançar.\n\nSe você tentou verificar um Disco de Resgate do VeraCrypt criado antes de iniciar este assistente, observe que ele não pode ser usado, pois foi criado para uma chave mestra diferente. Você precisará gravar o Disco de Resgate recém-gerado.</entry> + <entry lang="pt-br" key="RESCUE_DISK_CHECK_FAILED_SENTENCE_APPENDIX"> e/ou outro software de gravação de CD/DVD</entry> <entry lang="pt-br" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - Volumes Favoritos de Sistema</entry> <entry lang="pt-br" key="SYS_FAVORITES_HELP_LINK">O que são os volumes favoritos do sistema?</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="pt-br" key="DISMOUNT_FIRST">Favor desmontar o disco antes de prosseguir.</entry> + <entry lang="pt-br" key="SYS_FAVORITES_REQUIRE_PBA">A partição/unidade do sistema não parece estar criptografada.\n\nOs volumes favoritos do sistema podem ser montados apenas usando uma senha de autenticação antes da inicialização. Portanto, para habilitar o uso de volumes favoritos do sistema, você precisa criptografar a partição/unidade do sistema primeiro.</entry> + <entry lang="pt-br" key="UNMOUNT_FIRST">Favor desmontar o disco antes de prosseguir.</entry> <entry lang="pt-br" key="CANNOT_SET_TIMER">Erro: Não foi possível ajustar o timer.</entry> @@ -981,5 +981,5 @@ <entry lang="pt-br" key="IDPM_REPAIR_FILESYS">Recuperar o Sistema de Arquivos</entry> - <entry lang="en" key="IDPM_ADD_TO_FAVORITES">Add to Favorites...</entry> - <entry lang="en" key="IDPM_ADD_TO_SYSTEM_FAVORITES">Add to System Favorites...</entry> - <entry lang="en" key="IDPM_PROPERTIES">P&roperties...</entry> + <entry lang="pt-br" key="IDPM_ADD_TO_FAVORITES">Adicionar aos Favoritos...</entry> + <entry lang="pt-br" key="IDPM_ADD_TO_SYSTEM_FAVORITES">Adicionar aos Favoritos do Sistema...</entry> + <entry lang="pt-br" key="IDPM_PROPERTIES">P&ropriedades...</entry> <entry lang="pt-br" key="HIDDEN_VOL_PROTECTION">Volume Oculto Protegido</entry> @@ -1005,3 +1005,3 @@ <entry lang="pt-br" key="VOLUME_TOO_LARGE_FOR_FAT32">Erro: Arquivos com mais de 4 GB não podem ser armazenados em um sistema de arquivos FAT32. Portanto, volumes VeraCrypt hospedados em arquivos (recipientes) armazenados em um sistema de arquivos FAT32 não podem ser maiores que 4 GB.\n\nSe você precisar de um volume maior, crie-o em um sistema de arquivos NTFS (ou num sistema de arquivos exFAT, se você usa o Windows Vista SP1 ou posterior) ou, em vez de criar um volume hospedado em arquivo, criptografe toda uma partição ou dispositivo.</entry> - <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="pt-br" key="VOLUME_TOO_LARGE_FOR_WINXP">Aviso: O Windows XP não suporta arquivos maiores que 2048 GB (ele exibirá a mensagem de erro "Espaço em disco insuficiente"). Portanto, você não pode criar um volume VeraCrypt hospedado em arquivo maior que 2048 GB no Windows XP.\n\nObserve que ainda é possível criptografar todo o disco ou criar um volume VeraCrypt hospedado em partição maior que 2048 GB no Windows XP.</entry> <entry lang="pt-br" key="FREE_SPACE_FOR_WRITING_TO_OUTER_VOLUME">AVISO: Se voce necessitar adicionar mais arquivos no volume externo, voce deve considerar a possibilidade de escolher um tamanho menor para o volume oculto.\n\nTem certeza que deseja continuar com o tamanho especificado?</entry> @@ -1011,7 +1011,7 @@ <entry lang="pt-br" key="HK_AUTOMOUNT_DEVICES">Auto-Montar Dispositivos</entry> - <entry lang="pt-br" key="HK_DISMOUNT_ALL">Desmontar Todos</entry> + <entry lang="pt-br" key="HK_UNMOUNT_ALL">Desmontar Todos</entry> <entry lang="pt-br" key="HK_WIPE_CACHE">Limpar Cache</entry> - <entry lang="pt-br" key="HK_DISMOUNT_ALL_AND_WIPE">Desmontar Todos & Limpar Cache</entry> - <entry lang="pt-br" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Forçar Desmontar Todos & Limpar Cache</entry> - <entry lang="pt-br" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Forçar Desmontar Todos, Limpar Cache & Sair</entry> + <entry lang="pt-br" key="HK_UNMOUNT_ALL_AND_WIPE">Desmontar Todos & Limpar Cache</entry> + <entry lang="pt-br" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Forçar Desmontar Todos & Limpar Cache</entry> + <entry lang="pt-br" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Forçar Desmontar Todos, Limpar Cache & Sair</entry> <entry lang="pt-br" key="HK_MOUNT_FAVORITE_VOLUMES">Montar Disco Favoritos</entry> @@ -1024,13 +1024,13 @@ <entry lang="pt-br" key="HOTKEY_REGISTRATION_ERROR">AVISO: Um ou mais dos atalhos de sistema do VeraCrypt não estão funcionando!\n\nFavor certificar-se de que o sistema operacional ou outro programa não está utilizando o(s) mesmo(s) atalho(s) .</entry> - <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="pt-br" key="PAGING_FILE_CREATION_PREVENTED">A criação do arquivo de paginação foi impedida.\n\nObserve que, devido a problemas no Windows, arquivos de paginação não podem ser armazenados em volumes VeraCrypt que não sejam do sistema (incluindo volumes favoritos do sistema). O VeraCrypt suporta a criação de arquivos de paginação apenas na partição/unidade de sistema criptografada.</entry> <entry lang="pt-br" key="SYS_ENC_HIBERNATION_PREVENTED">Um erro ou incompatibilidade impede o VeraCrypt de criptografar o arquivo de hibernação. Portanto, a hibernação foi impedida.\n\nNota: Quando um computador hiberna (ou entra em um modo de economia de energia), o conteúdo do seu sistema de memória é garvado num arquivo de armazenamento de hibernação na unidade do sistema. O VeraCrypt não poderia impedir que as chaves de criptografia e o conteúdo de arquivos sensíveis abertos na RAM sejam salvos não-criptografados no arquivo de armazenamento de hibernação.</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_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="pt-br" key="CONFIRM_NO_FORCED_AUTODISMOUNT">AVISO: Se esta opção for desabilitada, discos contendo arquivos ou diretórios abertos não poderão ser auto-desmontados.\n\nTem certeza de que quer desabilitar esta opção?</entry> - <entry lang="pt-br" key="WARN_PREF_AUTO_DISMOUNT">AVISO: Discos contendo arquivos ou diretórios abertos NÃO serão auto-desmontados.\n\nPara evitar isto, habilite a seguinte opção nesta janela: 'Forçar auto-demontar mesmo que o disco contenha arquivos ou diretórios abertos'</entry> - <entry lang="pt-br" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">AVISO: Quando a carga da bateria do notebook estiver baixa, o Windows pode omitir o envio de mensagens apropriadas aos aplicativos em execução quando o computador estiver entrando no modo de economia de energia. Assim sendo, o VeraCrypt pode falhar em auto-desmontar os volumes nesses casos.</entry> + <entry lang="pt-br" key="HIDDEN_OS_HIBERNATION_PREVENTED">A hibernação foi impedida.\n\nO VeraCrypt não suporta hibernação em sistemas operacionais ocultos que utilizam uma partição de inicialização extra. Observe que a partição de inicialização é compartilhada tanto pelo sistema de isca quanto pelo sistema oculto. Portanto, para evitar vazamentos de dados e problemas ao retomar da hibernação, o VeraCrypt precisa impedir que o sistema oculto escreva na partição de inicialização compartilhada e que entre em hibernação.</entry> + <entry lang="pt-br" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">O volume VeraCrypt montado como %c: foi desmontado.</entry> + <entry lang="pt-br" key="MOUNTED_VOLUMES_UNMOUNTED">Os volumes VeraCrypt foram desmontados.</entry> + <entry lang="pt-br" key="VOLUMES_UNMOUNTED_CACHE_WIPED">Os volumes VeraCrypt foram desmontados e o cache de senhas foi limpo.</entry> + <entry lang="pt-br" key="SUCCESSFULLY_UNMOUNTED">Desmontado com sucesso</entry> + <entry lang="pt-br" key="CONFIRM_BACKGROUND_TASK_DISABLED">AVISO: Se a Tarefa em Segundo Plano do VeraCrypt for desativada, as seguintes funções serão desativadas:\n\n1) Teclas de atalho\n2) Desmontagem automática (por exemplo, ao fazer logoff, remoção acidental do dispositivo host, tempo limite, etc.)\n3) Montagem automática de volumes favoritos\n4) Notificações (por exemplo, quando danos ao volume oculto são evitados)\n5) Ícone na bandeja do sistema\n\nNota: Você pode encerrar a Tarefa em Segundo Plano a qualquer momento clicando com o botão direito no ícone do VeraCrypt na bandeja do sistema e selecionando 'Sair'.\n\nTem certeza de que deseja desativar permanentemente a Tarefa em Segundo Plano do VeraCrypt?</entry> + <entry lang="pt-br" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">AVISO: Se esta opção for desabilitada, discos contendo arquivos ou diretórios abertos não poderão ser auto-desmontados.\n\nTem certeza de que quer desabilitar esta opção?</entry> + <entry lang="pt-br" key="WARN_PREF_AUTO_UNMOUNT">AVISO: Discos contendo arquivos ou diretórios abertos NÃO serão auto-desmontados.\n\nPara evitar isto, habilite a seguinte opção nesta janela: 'Forçar auto-demontar mesmo que o disco contenha arquivos ou diretórios abertos'</entry> + <entry lang="pt-br" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">AVISO: Quando a carga da bateria do notebook estiver baixa, o Windows pode omitir o envio de mensagens apropriadas aos aplicativos em execução quando o computador estiver entrando no modo de economia de energia. Assim sendo, o VeraCrypt pode falhar em auto-desmontar os volumes nesses casos.</entry> <entry lang="pt-br" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Você agendou o processo de criptografia de uma partição/volume. O processo não foi concluído ainda.\n\nVocê gostaria de retomar o processo agora?</entry> @@ -1042,3 +1042,3 @@ <entry lang="pt-br" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">Você agendou o processo de criptografia ou de descriptografia do dispositivo/partição de sistema. Mas a autenticação pré-inicialização falhou (ou foi cancelada).\n\nLembre: Se você descriptografou o dispositivo/partição de sistema no ambiente pré-inicialização, pode ser necessário finalizar o processo selecionando 'Sistema' > 'Descriptografar Definitivamente o Disco/Partição de Sistema' na barra de menu da janela principal do 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-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="pt-br" key="CONFIRM_EXIT">AVISO: Se o VeraCrypt for encerrado agora, as seguintes funções serão desativadas:\n\n1) Teclas de atalho\n2) Desmontagem automática (por exemplo, ao sair, remoção acidental do dispositivo host, tempo limite, etc.)\n3) Montagem automática de volumes favoritos\n4) Notificações (por exemplo, quando um dano ao volume oculto é prevenido)\n\nNota: Se você não deseja que o VeraCrypt seja executado em segundo plano, desative a Tarefa em Segundo Plano do VeraCrypt nas Preferências (e, se necessário, desative o início automático do VeraCrypt nas Preferências).\n\nTem certeza de que deseja encerrar o VeraCrypt?</entry> <entry lang="pt-br" key="CONFIRM_EXIT_UNIVERSAL">Encerrar o VeraCrypt?</entry> @@ -1046,3 +1046,3 @@ <entry lang="pt-br" key="CHOOSE_ENCRYPT_OR_DECRYPT_FINALIZE_DECRYPT_NOTE">O VeraCrypt não possui informação suficiente para determinar se deve criptografar ou descriptografar.\n\nNote: Se você descriptografou o dispositivo/partição de sistema no ambiente pré-inicialização, poderá ser necessário concluir o processo clicando em Descriptografar.</entry> - <entry lang="en" key="NONSYS_INPLACE_ENC_REVERSE_INFO">Note: When you are encrypting a non-system partition/volume in place and an error persistently prevents you from finishing the process, you will not be able to mount the volume (and access data stored on it) until you entirely DECRYPT the volume (i.e. reverse the process).\n\nIf you need to do so, follow these steps:\n1) Exit this wizard.\n2) In the main VeraCrypt window, select 'Volumes' > 'Resume Interrupted Process'.\n3) Select 'Decrypt'.</entry> + <entry lang="pt-br" key="NONSYS_INPLACE_ENC_REVERSE_INFO">Nota: Quando você está criptografando uma partição/volume que não é do sistema e um erro persiste impedindo a conclusão do processo, você não poderá montar o volume (e acessar os dados armazenados nele) até que ele seja completamente descriptografado (ou seja, o processo seja revertido).\n\nSe precisar fazer isso, siga estas etapas:\n1) Saia deste assistente.\n2) Na janela principal do VeraCrypt, selecione 'Volumes' > 'Retomar Processo Interrompido'.\n3) Selecione 'Descriptografar'.</entry> <entry lang="pt-br" key="NONSYS_INPLACE_ENC_DEFER_CONFIRM">Você deseja interromper e adiar o processo de criptografia da partição/volume?\n\nNota: Tenha em mente que o volume não pode ser montado até que ele tenha sido totalmente criptografado. Você poderá retomar o processo de criptografia e ele irá continuar a partir do ponto que foi parado. Você pode fazê-lo, por exemplo, escolhendo 'Volumes' > ' Continuar Processo Interrompido' a partir da barra de menu da janela principal do VeraCrypt.</entry> @@ -1056,3 +1056,3 @@ <entry lang="pt-br" key="UNEXPECTED_STATE">Erro: Estado inesperado.\n\n\n(Se você relatar um bug relacionado a isto, por favor inclua as seguintes informações técnicas no relatório de erros: %hs)</entry> - <entry lang="en" key="NO_SYS_ENC_PROCESS_TO_RESUME">There is no interrupted process of encryption/decryption of the system partition/drive to resume.\n\nNote: If you want to resume an interrupted process of encryption/decryption of a non-system partition/volume, select 'Volumes' > 'Resume Interrupted Process'.</entry> + <entry lang="pt-br" key="NO_SYS_ENC_PROCESS_TO_RESUME">Não há nenhum processo interrompido de criptografia/descriptografia da partição/unidade do sistema para retomar.\n\nNota: Se você deseja retomar um processo interrompido de criptografia/descriptografia de uma partição/volume que não é do sistema, selecione 'Volumes' > 'Retomar Processo Interrompido'.</entry> <entry lang="pt-br" key="HIDVOL_PROT_BKG_TASK_WARNING">AVISO: A tarefa em Background do VeraCrypt está desabilitada. Depois de sair do VeraCrypt, voce não será notificado se algum dano a um arquivo escondido for evitado.\n\nObs: Voce pode parar a tarefa em Background a qualquer momento clicando com o botão direito no ícone do VeraCrypt na bandeja do sistema e selecionando 'Sair'.\n\nHabilitar a execução do VeraCrypt em Segundo Plano?</entry> @@ -1065,7 +1065,7 @@ <entry lang="pt-br" key="MOUNT_TC_VOLUME">Montar Volume VeraCrypt</entry> - <entry lang="pt-br" key="DISMOUNT_ALL_TC_VOLUMES">Desmontar todos os volumes VeraCrypt</entry> + <entry lang="pt-br" key="UNMOUNT_ALL_TC_VOLUMES">Desmontar todos os volumes VeraCrypt</entry> <entry lang="pt-br" key="UAC_INIT_ERROR">O VeraCrypt não conseguiu obter privilégios de Administrador.</entry> <entry lang="pt-br" key="ERR_ACCESS_DENIED">Acesso negado pelo sistema operacional.\n\nPossível causa: O sistema operacional exige que você tenha permissão para ler/gravar (ou privilégios de Administrador) para certos dispositivos, arquivos e pastas, para poder ler/gravar dados neles/deles. Normalmente, um usuário sem privilégios de Administrador é autorizado a criar, ler e modificar arquivos em sua pasta de Documentos.</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> - <entry lang="en" key="SYSENC_UNSUPPORTED_SECTOR_SIZE_BIOS">It is currently not possible to encrypt a system installed on a disk that uses a sector size other than 512 bytes.</entry> + <entry lang="pt-br" key="SECTOR_SIZE_UNSUPPORTED">Erro: A unidade utiliza um tamanho de setor não suportado.\n\nAtualmente, não é possível criar volumes em partições/dispositivos em unidades que utilizam setores maiores que 4096 bytes. No entanto, você pode criar volumes hospedados em arquivos (contêineres) nessas unidades.</entry> + <entry lang="pt-br" key="SYSENC_UNSUPPORTED_SECTOR_SIZE_BIOS">Atualmente, não é possível criptografar um sistema instalado em um disco que utiliza um tamanho de setor diferente de 512 bytes.</entry> <entry lang="pt-br" key="NO_SPACE_FOR_BOOT_LOADER">O VeraCrypt Boot Loader requer pelo menos 32 KBytes de espaço livre no início do dispositivo de sistema.</entry> @@ -1074,5 +1074,5 @@ <entry lang="pt-br" key="SYS_ENCRYPTION_UNSUPPORTED_ON_VISTA_SP0">Antes de criptografar a partição/unidade de sistema no Windows Vista, você precisa instalar o Service Pack 1 ou superior (nenhum Service Pack foi instalado neste sistema ainda).\n\nNota: O Service Pack 1 pro Windows Vista solucionou um problema que causa falta de memória principal livre durante o boot do sistema.</entry> - <entry lang="en" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ON_VISTA_SP0">VeraCrypt no longer supports encryption of the system partition/drive on Windows Vista with no Service Pack installed. Before upgrading VeraCrypt, please install Service Pack 1 or higher for Windows Vista.</entry> - <entry lang="en" key="FEATURE_REQUIRES_INSTALLATION">Error: This feature requires VeraCrypt to be installed on the system (you are running VeraCrypt in portable mode).\n\nPlease install VeraCrypt and then try again.</entry> - <entry lang="en" key="WINDOWS_NOT_ON_BOOT_DRIVE_ERROR">WARNING: Windows does not appear to be installed on the drive from which it boots. This is not supported.\n\nYou should continue only if you are sure that Windows is installed on the drive from which it boots.\n\nDo you want to continue?</entry> + <entry lang="pt-br" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ON_VISTA_SP0">O VeraCrypt não suporta mais a criptografia da partição/unidade do sistema no Windows Vista sem Service Pack instalado. Antes de atualizar o VeraCrypt, instale o Service Pack 1 ou superior para o Windows Vista.</entry> + <entry lang="pt-br" key="FEATURE_REQUIRES_INSTALLATION">Erro: Este recurso requer que o VeraCrypt esteja instalado no sistema (você está executando o VeraCrypt no modo portátil).\n\nPor favor, instale o VeraCrypt e tente novamente.</entry> + <entry lang="pt-br" key="WINDOWS_NOT_ON_BOOT_DRIVE_ERROR">AVISO: O Windows não parece estar instalado na unidade a partir da qual ele inicializa. Isso não é suportado.\n\nVocê deve continuar apenas se tiver certeza de que o Windows está instalado na unidade a partir da qual ele inicializa.\n\nDeseja continuar?</entry> <entry lang="pt-br" key="TC_BOOT_LOADER_ALREADY_INSTALLED">CUIDADO: O VeraCrypt Boot Loader ja está instalado no seu disco de sistema!\n\nÉ possível que outro sistema em seu computador ja esteja criptografado.\n\nAVISO: CONTINUAR COM A CRIPTOGRAFIA DESTE SISTEMA PODE TORNAR OUTRO(S) SISTEMA(S) E SEUS DADO(S) INACESSÍVEL(IS).\n\nVocê tem certeza de que deseja continuar?</entry> @@ -1081,3 +1081,3 @@ <entry lang="pt-br" key="ERROR_MBR_PROTECTED">Não foi possível gravar no setor da MBR.\n\nSua BIOS pode estar configurada para proteger o setor da MBR. Verifique "MBR/antivirus protection" nas configurações da sua BIOS (pressione F2, Delete ou Esc ao ligar o seu computador).</entry> - <entry lang="en" key="BOOT_LOADER_FINGERPRINT_CHECK_FAILED">WARNING: The verification of VeraCrypt bootloader fingerprint failed!\nYour disk may have been tampered with by an attacker ("Evil Maid" attack).\n\nThis warning can also be triggered if you restored VeraCrypt boot loader using an Rescue Disk generated using a different VeraCrypt version.\n\nYou are advised to change your password immediately which will also restore the correct VeraCrypt bootloader. It is recommended to reinstall VeraCrypt and to take measures to avoid access to this machine by untrusted entities.</entry> + <entry lang="pt-br" key="BOOT_LOADER_FINGERPRINT_CHECK_FAILED">AVISO: A verificação da impressão digital do carregador de inicialização do VeraCrypt falhou!\nSeu disco pode ter sido alterado por um invasor (ataque "Evil Maid").\n\nEste aviso também pode ocorrer se você restaurou o carregador de inicialização do VeraCrypt usando um Disco de Recuperação gerado com uma versão diferente do VeraCrypt.\n\nRecomenda-se alterar sua senha imediatamente, o que também restaurará o carregador de inicialização correto do VeraCrypt. É recomendável reinstalar o VeraCrypt e tomar medidas para evitar o acesso de pessoas não confiáveis a este computador.</entry> <entry lang="pt-br" key="BOOT_LOADER_VERSION_INCORRECT_PREFERENCES">A versão requerida do Gerenciador de Boot do VeraCrypt não está instalada no momento. Isto pode evitar que algumas configurações sejam salvas.</entry> @@ -1087,5 +1087,5 @@ <entry lang="pt-br" key="SYSENC_UNSUPPORTED_FOR_DYNAMIC_DISK">O VeraCrypt não criptografa disco de sistema que tenha sido convertido para disco dinâmico.</entry> - <entry lang="en" key="WDE_UNSUPPORTED_FOR_EXTENDED_PARTITIONS">The system drive contains extended (logical) partitions.\n\nYou can encrypt an entire system drive containing extended (logical) partitions only on Windows Vista and later versions of Windows. On Windows XP, you can encrypt an entire system drive provided that it contains only primary partitions.\n\nNote: You can still encrypt the system partition instead of the entire system drive (and, in addition to that, you can create partition-hosted VeraCrypt volumes within any non-system partitions on the drive).</entry> - <entry lang="en" key="WDE_EXTENDED_PARTITIONS_WARNING">WARNING: As you are running Windows XP/2003, after you start encrypting the drive, you must NOT create any extended (logical) partitions on it (you may create only primary partitions). Any extended (logical) partition on the drive would be inaccessible after you start encrypting (the drive currently does not contain any such partition).\n\nNote: If this limitation is not acceptable, you can go back and choose to encrypt only the system partition instead of the entire drive (and, in addition to that, you can create partition-hosted VeraCrypt volumes within any non-system partitions on the drive).\n\nAlternatively, if this limitation is not acceptable, you may want to consider upgrading to Windows Vista or a later version of Windows (you can encrypt an entire system drive containing extended/logical partitions only on Windows Vista or later).</entry> - <entry lang="en" key="SYSDRIVE_NON_STANDARD_PARTITIONS">Your system drive contains a non-standard partition.\n\nIf you are using a notebook, your system drive probably contains a special recovery partition. After the whole system drive is encrypted (including any recovery partition), your system might become unbootable if your computer is using an inappropriately designed BIOS. It would also be impossible to use any recovery partition until the system drive is decrypted. Therefore, we recommend that you encrypt only the system partition.</entry> + <entry lang="pt-br" key="WDE_UNSUPPORTED_FOR_EXTENDED_PARTITIONS">A unidade do sistema contém partições estendidas (lógicas).\n\nVocê pode criptografar uma unidade de sistema inteira contendo partições estendidas (lógicas) apenas no Windows Vista ou versões posteriores. No Windows XP, é possível criptografar uma unidade de sistema inteira somente se ela contiver apenas partições primárias.\n\nNota: Ainda é possível criptografar apenas a partição do sistema em vez da unidade inteira (e, além disso, criar volumes VeraCrypt hospedados em partições não-sistema na unidade).</entry> + <entry lang="pt-br" key="WDE_EXTENDED_PARTITIONS_WARNING">AVISO: Como você está executando o Windows XP/2003, após iniciar a criptografia da unidade, NÃO crie nenhuma partição estendida (lógica) nela (apenas partições primárias são permitidas). Qualquer partição estendida (lógica) na unidade ficará inacessível após a criptografia (atualmente, não há nenhuma partição desse tipo na unidade).\n\nNota: Se essa limitação não for aceitável, você pode voltar e optar por criptografar apenas a partição do sistema em vez da unidade inteira (e, além disso, criar volumes VeraCrypt hospedados em partições não-sistema).\n\nComo alternativa, considere atualizar para o Windows Vista ou uma versão mais recente (onde é possível criptografar uma unidade inteira com partições estendidas/lógicas).</entry> + <entry lang="pt-br" key="SYSDRIVE_NON_STANDARD_PARTITIONS">Sua unidade do sistema contém uma partição não padrão.\n\nSe você estiver usando um notebook, sua unidade do sistema provavelmente contém uma partição de recuperação especial. Após a criptografia de toda a unidade do sistema (incluindo qualquer partição de recuperação), seu sistema poderá se tornar inoperável se seu computador estiver usando um BIOS inadequadamente projetado. Também seria impossível usar qualquer partição de recuperação até que a unidade do sistema seja descriptografada. Portanto, recomendamos que você criptografe apenas a partição do sistema.</entry> <entry lang="pt-br" key="ASK_ENCRYPT_PARTITION_INSTEAD_OF_DRIVE">Você deseja criptografar a partição de sistema em vez de o disco inteiro?\n\nLembre que você pode criar volumes VeraCrypt hospedados em qualquer partição que não seja de sistema (além de criptografar a partição de sistema).</entry> @@ -1097,12 +1097,12 @@ <entry lang="pt-br" key="LEAKS_OUTSIDE_SYSPART_UNIVERSAL_EXPLANATION"> Caso contrário, a camuflagem de informação do sistema operacional oculto poderia ser adversamente afetada.\n\nNota: Se um adversário analisasse o conteúdo de tais arquivos (residido numa partição não-sistema), ele poderia descobrir que você usou este assistente modo de criação de sistema oculto (que pode indicar a existência de um sistema operacional oculto no seu computador). Observe também que todos esses arquivos armazenados na partição do sistema serão apagados com segurança pelo VeraCrypt durante o processo de criação do sistema operacional oculto.</entry> - <entry lang="en" key="DECOY_OS_REINSTALL_WARNING">WARNING: During the process of creation of the hidden operating system, you will be required to fully reinstall the currently running system (in order to create a decoy system securely).\n\nNote: The currently running operating system and the entire content of the system partition will be copied to the hidden volume (in order to create the hidden system).\n\n\nAre you sure you will be able to install Windows using a Windows Setup medium (or using a service partition)?</entry> - <entry lang="en" key="DECOY_OS_REQUIREMENTS">For security reasons, if the currently running operating system requires activation, it must be activated before proceeding. Note that the hidden operating system will be created by copying the content of the system partition to a hidden volume (so if this operating system is not activated, the hidden operating system will not be activated either). For more information, see the section "Security Requirements and Precautions Pertaining to Hidden Volumes" in the VeraCrypt User's Guide.\n\nImportant: Before proceeding, please make sure you have read the section "Security Requirements and Precautions Pertaining to Hidden Volumes" in the VeraCrypt User's Guide.\n\n\nDoes the currently running operating system meet the above condition?</entry> - <entry lang="en" key="CONFIRM_HIDDEN_OS_EXTRA_BOOT_PARTITION">Your system uses an extra boot partition. VeraCrypt does not support hibernation on hidden operating systems that use an extra boot partition (decoy systems can be hibernated without any problems).\n\nPlease note that the boot partition would be 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.\n\n\nDo you want to continue? If you select 'No', instructions for removing the extra boot partition will be displayed.</entry> - <entry lang="en" key="EXTRA_BOOT_PARTITION_REMOVAL_INSTRUCTIONS">\nThe extra boot partition can be removed before installing Windows. To do so, follow these steps:\n\n1) Boot your Windows installation disc.\n\n2) In the Windows installer screen, click 'Install now' > 'Custom (advanced)'.\n\n3) Click 'Drive Options'.\n\n4) Select the main system partition and delete it by clicking 'Delete' and 'OK'.\n\n5) Select the 'System Reserved' partition, click 'Extend', and increase its size so that the operating system can be installed to it.\n\n6) Click 'Apply' and 'OK'.\n\n7) Install Windows on the 'System Reserved' partition.\n\n\nShould an attacker ask why you removed the extra boot partition, you can answer that you wanted to prevent any possible data leaks to the unencrypted boot partition.\n\nNote: You can print this text by clicking the 'Print' button below. If you save a copy of this text or print it (strongly recommended, unless your printer stores copies of documents it prints on its internal drive), you should destroy any copies of it after removing the extra boot partition (otherwise, if such a copy was found, it might indicate that there is a hidden operating system on this computer).</entry> + <entry lang="pt-br" key="DECOY_OS_REINSTALL_WARNING">AVISO: Durante o processo de criação do sistema operacional oculto, será necessário reinstalar completamente o sistema atual (para criar um sistema de disfarce de forma segura).\n\nNota: O sistema operacional atual e todo o conteúdo da partição do sistema serão copiados para o volume oculto (para criar o sistema oculto).\n\n\nVocê tem certeza de que poderá instalar o Windows usando um meio de instalação ou uma partição de serviço?</entry> + <entry lang="pt-br" key="DECOY_OS_REQUIREMENTS">Por razões de segurança, se o sistema operacional atualmente em execução exigir ativação, ele deve ser ativado antes de prosseguir. Observe que o sistema operacional oculto será criado copiando o conteúdo da partição do sistema para um volume oculto (portanto, se este sistema operacional não estiver ativado, o sistema operacional oculto também não estará ativado). Para mais informações, consulte a seção "Requisitos de Segurança e Precauções Relativas a Volumes Ocultos" no Guia do Usuário do VeraCrypt.\n\nImportante: Antes de prosseguir, certifique-se de que leu a seção "Requisitos de Segurança e Precauções Relativas a Volumes Ocultos" no Guia do Usuário do VeraCrypt.\n\n\nO sistema operacional atualmente em execução atende à condição acima?</entry> + <entry lang="pt-br" key="CONFIRM_HIDDEN_OS_EXTRA_BOOT_PARTITION">Seu sistema utiliza uma partição de inicialização extra. O VeraCrypt não suporta hibernação em sistemas operacionais ocultos que utilizam essa partição (sistemas de disfarce podem ser hibernados normalmente).\n\nObserve que a partição de inicialização será compartilhada entre o sistema de disfarce e o sistema oculto. Para evitar vazamentos de dados e problemas ao retomar da hibernação, o VeraCrypt impedirá que o sistema oculto grave na partição de inicialização compartilhada e entre em hibernação.\n\n\nDeseja continuar? Se selecionar 'Não', serão exibidas instruções para remover a partição de inicialização extra.</entry> + <entry lang="pt-br" key="EXTRA_BOOT_PARTITION_REMOVAL_INSTRUCTIONS">\nA partição de inicialização extra pode ser removida antes de instalar o Windows. Para isso, siga estas etapas:\n\n1) Inicialize o disco de instalação do Windows.\n\n2) Na tela do instalador, clique em 'Instalar agora' > 'Personalizado (avançado)'.\n\n3) Clique em 'Opções de Unidade'.\n\n4) Selecione a partição principal do sistema e exclua-a clicando em 'Excluir' e 'OK'.\n\n5) Selecione a partição 'Reservada pelo Sistema', clique em 'Estender' e aumente seu tamanho para que o sistema operacional possa ser instalado nela.\n\n6) Clique em 'Aplicar' e 'OK'.\n\n7) Instale o Windows na partição 'Reservada pelo Sistema'.\n\n\nCaso um invasor pergunte por que você removeu a partição de inicialização extra, você pode responder que queria evitar possíveis vazamentos de dados para a partição de inicialização não criptografada.\n\nNota: Você pode imprimir este texto clicando no botão 'Imprimir' abaixo. Se salvar ou imprimir uma cópia deste texto (fortemente recomendado, a menos que sua impressora armazene cópias de documentos internamente), destrua quaisquer cópias após remover a partição de inicialização extra (caso contrário, se encontrada, ela pode indicar a existência de um sistema operacional oculto neste computador).</entry> <entry lang="pt-br" key="GAP_BETWEEN_SYS_AND_HIDDEN_OS_PARTITION">Aviso: Há espaço não alocado entre a partição de sistema e a primeira partição depois dela. Depois de criar o sistema operacional oculto, você não deve criar novas partições nesse espaço não alocado. Caso contrário, o sistema operacional oculto será impossibilitado de inicializar (até você excluir essas recém-criadas partições).</entry> <entry lang="pt-br" key="ALGO_NOT_SUPPORTED_FOR_SYS_ENCRYPTION">Este algoritmo não é suportado para criptografia de sistema.</entry> - <entry lang="en" key="ALGO_NOT_SUPPORTED_FOR_TRUECRYPT_MODE">This algorithm is not supported for TrueCrypt mode.</entry> - <entry lang="en" key="PIM_NOT_SUPPORTED_FOR_TRUECRYPT_MODE">PIM (Personal Iterations Multiplier) not supported for TrueCrypt mode.</entry> - <entry lang="en" key="PIM_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified PIM.\nShorter passwords can only be used if the PIM is 485 or greater.</entry> - <entry lang="en" key="BOOT_PIM_REQUIRE_LONG_PASSWORD">Pre-boot authentication Password must contain 20 or more characters in order to use the specified PIM.\nShorter passwords can only be used if the PIM is 98 or greater.</entry> + <entry lang="pt-br" key="ALGO_NOT_SUPPORTED_FOR_TRUECRYPT_MODE">Este algoritmo não é suportado no modo TrueCrypt.</entry> + <entry lang="pt-br" key="PIM_NOT_SUPPORTED_FOR_TRUECRYPT_MODE">PIM (Multiplicador Pessoal de Iterações) não é compatível com o modo TrueCrypt.</entry> + <entry lang="pt-br" key="PIM_REQUIRE_LONG_PASSWORD">A senha deve conter 20 ou mais caracteres para usar o PIM especificado.\nSenhas mais curtas só podem ser usadas se o PIM for 485 ou superior.</entry> + <entry lang="pt-br" key="BOOT_PIM_REQUIRE_LONG_PASSWORD">A senha de autenticação pré-inicialização deve conter 20 ou mais caracteres para usar o PIM especificado.\nSenhas mais curtas só podem ser usadas se o PIM for 98 ou superior.</entry> <entry lang="pt-br" key="KEYFILES_NOT_SUPPORTED_FOR_SYS_ENCRYPTION">Arquivos-chave atualmente não são suportados para criptografia do sistema.</entry> @@ -1113,8 +1113,8 @@ <entry lang="pt-br" key="KEYB_LAYOUT_SYS_ENC_EXPLANATION">Lembre: A senha precisará ser digitada no ambiente pré-inicialização (antes de iniciar o Windows) onde layouts não-Estados Unidos (Internacional) não estão disponíveis. Por isso, a senha precisa ser digitada sempre usando o layout Estados Unidos (Internacional). Mesmo assim, é importante lembrar que você NÃO precisa de um teclado Estados Unidos (Internacional) real. O VeraCrypt certifica-se automaticamente de que você pode digitar a senha com segurança (tanto agora quanto no ambiente pré-inicialização) mesmo se você NÃO possuir um teclado Estados Unidos (Internacional).</entry> - <entry lang="en" key="RESCUE_DISK_INFO">Before you can encrypt the partition/drive, you must create a VeraCrypt Rescue Disk (VRD), which serves the following purposes:\n\n- If the VeraCrypt Boot Loader, master key, or other critical data gets damaged, the VRD allows you to restore it (note, however, that you will still have to enter the correct password then).\n\n- If Windows gets damaged and cannot start, the VRD allows you to permanently decrypt the partition/drive before Windows starts.\n\n- The VRD will contain a backup of the present content of the first drive track (which typically contains a system loader or boot manager) and will allow you to restore it if necessary.\n\nThe VeraCrypt Rescue Disk ISO image will be created in the location specified below.</entry> - <entry lang="en" key="RESCUE_DISK_WIN_ISOBURN_PRELAUNCH_NOTE">After you click OK, Microsoft Windows Disc Image Burner will be launched. Please use it to burn the VeraCrypt Rescue Disk ISO image to a CD or DVD.\n\nAfter you do so, return to the VeraCrypt Volume Creation Wizard and follow its instructions.</entry> - <entry lang="en" key="RESCUE_DISK_BURN_INFO">The Rescue Disk image has been created and stored in this file:\n%s\n\nNow you need to burn it to a CD or DVD.\n\n%lsAfter you burn the Rescue Disk, click Next to verify that it has been correctly burned.</entry> - <entry lang="en" key="RESCUE_DISK_BURN_INFO_NO_CHECK">The Rescue Disk image has been created and stored in this file:\n%s\n\nNow you should either burn the image to a CD/DVD or move it to a safe location for later use.\n\n%lsClick Next to continue.</entry> - <entry lang="en" key="RESCUE_DISK_BURN_INFO_NONWIN_ISO_BURNER">IMPORTANT: Note that the file must be written to the CD/DVD as an ISO disk image (not as an individual file). For information on how to do so, please refer to the documentation of your CD/DVD recording software. If you do not have any CD/DVD recording software that can write the ISO disk image to a CD/DVD, click the link below to download such free software.\n\n</entry> - <entry lang="en" key="LAUNCH_WIN_ISOBURN">Launch Microsoft Windows Disc Image Burner</entry> + <entry lang="pt-br" key="RESCUE_DISK_INFO">Antes de criptografar a partição/unidade, você deve criar um Disco de Resgate VeraCrypt (VRD), que serve aos seguintes propósitos:\n\n- Se o Carregador de Boot do VeraCrypt, a chave mestra ou outros dados críticos forem danificados, o VRD permitirá restaurá-los (no entanto, será necessário inserir a senha correta).\n\n- Se o Windows for danificado e não conseguir iniciar, o VRD permitirá descriptografar permanentemente a partição/unidade antes que o Windows inicie.\n\n- O VRD conterá um backup do conteúdo atual da primeira trilha da unidade (que normalmente contém um carregador de sistema ou gerenciador de inicialização) e permitirá restaurá-lo, se necessário.\n\nA imagem ISO do Disco de Resgate VeraCrypt será criada no local especificado abaixo.</entry> + <entry lang="pt-br" key="RESCUE_DISK_WIN_ISOBURN_PRELAUNCH_NOTE">Após clicar em OK, o Gravador de Imagem de Disco do Microsoft Windows será iniciado. Use-o para gravar a imagem ISO do Disco de Resgate VeraCrypt em um CD ou DVD.\n\nDepois de fazer isso, retorne ao Assistente de Criação de Volume VeraCrypt e siga as instruções.</entry> + <entry lang="pt-br" key="RESCUE_DISK_BURN_INFO">A imagem do Disco de Resgate foi criada e armazenada neste arquivo:\n%s\n\nAgora você precisa gravá-la em um CD ou DVD.\n\n%lsDepois de gravar o Disco de Resgate, clique em Avançar para verificar se ele foi gravado corretamente.</entry> + <entry lang="pt-br" key="RESCUE_DISK_BURN_INFO_NO_CHECK">A imagem do Disco de Resgate foi criada e armazenada neste arquivo:\n%s\n\nAgora você deve gravar a imagem em um CD/DVD ou movê-la para um local seguro para uso futuro.\n\n%lsClique em Avançar para continuar.</entry> + <entry lang="pt-br" key="RESCUE_DISK_BURN_INFO_NONWIN_ISO_BURNER">IMPORTANTE: Observe que o arquivo deve ser gravado no CD/DVD como uma imagem de disco ISO (e não como um arquivo individual). Para informações sobre como fazer isso, consulte a documentação do seu software de gravação de CD/DVD. Caso não possua um software de gravação de CD/DVD que possa gravar a imagem de disco ISO em um CD/DVD, clique no link abaixo para baixar um software gratuito.</entry> + <entry lang="pt-br" key="LAUNCH_WIN_ISOBURN">Iniciar o Gravador de Imagem de Disco do Microsoft Windows</entry> <entry lang="pt-br" key="RESCUE_DISK_BURN_NO_CHECK_WARN">ATENÇÃO: Se você já criou um Disco de Emergência VeraCrypt no passado, ele não pode ser reutilizado para esta partição/unidade de sistema, porque ele foi criado para uma chave mestra diferente! Cada vez que criptografar uma partição/unidade de sistema você deve criar um novo Disco de Emergência VeraCrypt para ela, mesmo se usar a mesma senha.</entry> @@ -1141,4 +1141,4 @@ <entry lang="pt-br" key="MULTI_BOOT_FOR_ADVANCED_ONLY">AVISO: usuários inexperientes nunca devem tentar criptografar o Windows em configurações de boot múltiplo.\n\nDeseja continuar?</entry> - <entry lang="en" key="HIDDEN_OS_MULTI_BOOT">When creating/using a hidden operating system, VeraCrypt supports multi-boot configurations only when the following conditions are met:\n\n- The currently running operating system must be installed on the boot drive, which must not contain any other operating systems.\n\n- Operating systems installed on other drives must not use any boot loader residing on the drive on which the currently running operating system is installed.\n\nAre the above conditions met?</entry> - <entry lang="en" key="UNSUPPORTED_HIDDEN_OS_MULTI_BOOT_CFG">VeraCrypt does not support this multi-boot configuration when creating/using a hidden operating system.</entry> + <entry lang="pt-br" key="HIDDEN_OS_MULTI_BOOT">Ao criar/usar um sistema operacional oculto, o VeraCrypt suporta configurações de inicialização múltipla apenas quando as seguintes condições forem atendidas:\n\n- O sistema operacional em execução atualmente deve estar instalado na unidade de inicialização, que não deve conter outros sistemas operacionais.\n\n- Sistemas operacionais instalados em outras unidades não devem usar nenhum carregador de inicialização localizado na unidade onde o sistema operacional atualmente em execução está instalado.\n\nAs condições acima foram atendidas?</entry> + <entry lang="pt-br" key="UNSUPPORTED_HIDDEN_OS_MULTI_BOOT_CFG">O VeraCrypt não suporta essa configuração de inicialização múltipla ao criar/usar um sistema operacional oculto.</entry> <entry lang="pt-br" key="SYSENC_MULTI_BOOT_SYS_EQ_BOOT_TITLE">Disco de Inicialização</entry> @@ -1160,4 +1160,4 @@ <entry lang="pt-br" key="SYSENC_NORMAL_TYPE_HELP">Selecione esta opção se você quiser apenas criptografar a partição do sistema ou toda a unidade de sistema.</entry> - <entry lang="en" key="SYSENC_HIDDEN_TYPE_HELP">It may happen that you are forced by somebody to decrypt the operating system. There are many situations where you cannot refuse to do so (for example, due to extortion). If you select this option, you will create a hidden operating system whose existence should be impossible to prove (provided that certain guidelines are followed). Thus, you will not have to decrypt or reveal the password to the hidden operating system. For a detailed explanation, please click the link below.</entry> - <entry lang="en" key="HIDDEN_OS_PREINFO">It may happen that you are forced by somebody to decrypt the operating system. There are many situations where you cannot refuse to do so (for example, due to extortion).\n\nUsing this wizard, you can create a hidden operating system whose existence should be impossible to prove (provided that certain guidelines are followed). Thus, you will not have to decrypt or reveal the password for the hidden operating system.</entry> + <entry lang="pt-br" key="SYSENC_HIDDEN_TYPE_HELP">Pode acontecer de você ser forçado por alguém a descriptografar o sistema operacional. Há muitas situações em que não é possível recusar-se a fazê-lo (por exemplo, sob extorsão). Se você selecionar esta opção, será criado um sistema operacional oculto cuja existência será impossível de provar (desde que certas diretrizes sejam seguidas). Assim, você não precisará descriptografar ou revelar a senha do sistema operacional oculto. Para uma explicação detalhada, clique no link abaixo.</entry> + <entry lang="pt-br" key="HIDDEN_OS_PREINFO">Pode acontecer de você ser forçado por alguém a descriptografar o sistema operacional. Há muitas situações em que não é possível recusar-se a fazê-lo (por exemplo, sob extorsão).\n\nCom este assistente, você pode criar um sistema operacional oculto cuja existência será impossível de provar (desde que certas diretrizes sejam seguidas). Assim, você não precisará descriptografar ou revelar a senha do sistema operacional oculto.</entry> <entry lang="pt-br" key="SYSENC_HIDDEN_OS_REQ_CHECK_PAGE_TITLE">Sistema Operacional Oculto</entry> @@ -1167,10 +1167,10 @@ <entry lang="pt-br" key="SYS_ENCRYPTION_SPAN_TITLE">Área a Criptografar</entry> - <entry lang="en" key="SYS_ENCRYPTION_SPAN_WHOLE_SYS_DRIVE_HELP">Select this option if you want to encrypt the entire drive on which the currently running Windows system is installed. The whole drive, including all its partitions, will be encrypted except the first track where the VeraCrypt Boot Loader will reside. Anyone who wants to access a system installed on the drive, or files stored on the drive, will need to enter the correct password each time before the system starts. This option cannot be used to encrypt a secondary or external drive if Windows is not installed on it and does not boot from it.</entry> + <entry lang="pt-br" key="SYS_ENCRYPTION_SPAN_WHOLE_SYS_DRIVE_HELP">Selecione esta opção se desejar criptografar todo o disco onde o sistema Windows em execução está instalado. Todo o disco, incluindo todas as suas partições, será criptografado, exceto a primeira trilha, onde o Boot Loader do VeraCrypt será armazenado. Qualquer pessoa que quiser acessar um sistema instalado no disco ou os arquivos armazenados nele precisará inserir a senha correta sempre antes de o sistema iniciar. Esta opção não pode ser usada para criptografar um disco secundário ou externo se o Windows não estiver instalado nele ou não inicializar a partir dele.</entry> <entry lang="pt-br" key="COLLECTING_RANDOM_DATA_TITLE">Coletando Dados Aleatórios</entry> <entry lang="pt-br" key="KEYS_GEN_TITLE">Chaves Geradas</entry> - <entry lang="en" key="CD_BURNER_NOT_PRESENT">VeraCrypt has found no CD/DVD burner connected to your computer. VeraCrypt needs a CD/DVD burner to burn a bootable VeraCrypt Rescue Disk containing a backup of the encryption keys, VeraCrypt boot loader, original system loader, etc.\n\nWe strongly recommend that you burn the VeraCrypt Rescue Disk.</entry> - <entry lang="en" key="CD_BURNER_NOT_PRESENT_WILL_STORE_ISO">I have no CD/DVD burner but I will store the Rescue Disk ISO image on a removable drive (e.g. USB flash drive).</entry> - <entry lang="en" key="CD_BURNER_NOT_PRESENT_WILL_CONNECT_LATER">I will connect a CD/DVD burner to my computer later. Terminate the process now.</entry> - <entry lang="en" key="CD_BURNER_NOT_PRESENT_CONNECTED_NOW">A CD/DVD burner is connected to my computer now. Continue and write the Rescue Disk.</entry> - <entry lang="en" key="CD_BURNER_NOT_PRESENT_WILL_STORE_ISO_INFO">Please follow these steps:\n\n1) Connect a removable drive, such as a USB flash drive, to your computer now.\n\n2) Copy the VeraCrypt Rescue Disk image file (%s) to the removable drive.\n\nIn case you need to use the VeraCrypt Rescue Disk in the future, you will be able to connect your removable drive (containing the VeraCrypt Rescue Disk image) to a computer with a CD/DVD burner and create a bootable VeraCrypt Rescue Disk by burning the image to a CD or DVD. IMPORTANT: Note that the VeraCrypt Rescue Disk image file must be written to the CD/DVD as an ISO disk image (not as an individual file).</entry> + <entry lang="pt-br" key="CD_BURNER_NOT_PRESENT">O VeraCrypt não encontrou um gravador de CD/DVD conectado ao computador. O VeraCrypt precisa de um gravador de CD/DVD para criar um Disco de Resgate inicializável contendo um backup das chaves de criptografia, o carregador de inicialização do VeraCrypt, o carregador de inicialização original do sistema, entre outros.\n\nRecomendamos fortemente que você crie o Disco de Resgate do VeraCrypt.</entry> + <entry lang="pt-br" key="CD_BURNER_NOT_PRESENT_WILL_STORE_ISO">Não tenho um gravador de CD/DVD, mas armazenarei a imagem ISO do Disco de Resgate em uma unidade removível (por exemplo, um pen drive USB).</entry> + <entry lang="pt-br" key="CD_BURNER_NOT_PRESENT_WILL_CONNECT_LATER">Conectarei um gravador de CD/DVD ao meu computador mais tarde. Encerrar o processo agora.</entry> + <entry lang="pt-br" key="CD_BURNER_NOT_PRESENT_CONNECTED_NOW">Um gravador de CD/DVD está conectado ao meu computador agora. Continuar e gravar o Disco de Resgate.</entry> + <entry lang="pt-br" key="CD_BURNER_NOT_PRESENT_WILL_STORE_ISO_INFO">Por favor, siga estas etapas:\n\n1) Conecte uma unidade removível, como um pen drive USB, ao computador agora.\n\n2) Copie o arquivo de imagem do Disco de Resgate do VeraCrypt (%s) para a unidade removível.\n\nCaso você precise usar o Disco de Resgate do VeraCrypt no futuro, poderá conectar a unidade removível (contendo a imagem do Disco de Resgate do VeraCrypt) a um computador com gravador de CD/DVD e criar um Disco de Resgate inicializável gravando a imagem em um CD ou DVD. IMPORTANTE: Observe que o arquivo de imagem do Disco de Resgate do VeraCrypt deve ser gravado no CD/DVD como uma imagem de disco ISO (e não como um arquivo individual).</entry> <entry lang="pt-br" key="RESCUE_DISK_RECORDING_TITLE">Gravação do Disco de Emergência</entry> @@ -1183,11 +1183,11 @@ <entry lang="pt-br" key="SYS_ENCRYPTION_PRETEST_INFO">Antes de criptografar o seu disco ou partição de sistema, o VeraCrypt precisa verificar se tudo está funcionando corretamente.\n\nDepois que você clicar em Testar, todos os componentes necessários (como o componente de autenticação pré-inicialização - VeraCrypt Boot Loader) serão instalados e o seu computador será reiniciado. Então, você precisará digitar a senha na tela do VeraCrypt Boot Loader que aparecerá antes de o Windows iniciar. Depois que o Windows iniciar, você será automaticamente informado sobre o resultado do pré-teste.\n\nO seguinte dispositivo será modificado: Disco #%d\n\n\nSe você clicar em Cancela agora, nada será instalado e o pré-teste não será realizado.</entry> - <entry lang="en" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_1">IMPORTANT NOTES -- PLEASE READ OR PRINT (click 'Print'):\n\nNote that none of your files will be encrypted before you successfully restart your computer and start Windows. Thus, if anything fails, your data will NOT be lost. However, if something does go wrong, you might encounter difficulties in starting Windows. Therefore, please read (and, if possible, print) the following guidelines on what to do if Windows cannot start after you restart the computer.\n\n</entry> - <entry lang="en" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_2">What to Do If Windows Cannot Start\n------------------------------------------------\n\nNote: These instructions are valid only if you have not started encrypting.\n\n- If Windows does not start after you enter the correct password (or if you repeatedly enter the correct password but VeraCrypt says that the password is incorrect), do not panic. Restart (power off and on) the computer, and in the VeraCrypt Boot Loader screen, press the Esc key on your keyboard (and if you have multiple systems, choose which to start). Then Windows should start (provided that it is not encrypted) and VeraCrypt will automatically ask whether you want to uninstall the pre-boot authentication component. Note that the previous steps do NOT work if the system partition/drive is encrypted (nobody can start Windows or access encrypted data on the drive without the correct password even if he or she follows the previous steps).\n\n</entry> - <entry lang="en" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_3">- If the previous steps do not help or if the VeraCrypt Boot Loader screen does not appear (before Windows starts), insert the VeraCrypt Rescue Disk into your CD/DVD drive and restart your computer. If the VeraCrypt Rescue Disk screen does not appear (or if you do not see the 'Repair Options' item in the 'Keyboard Controls' section of the VeraCrypt Rescue Disk screen), it is possible that your BIOS is configured to attempt to boot from hard drives before CD/DVD drives. If that is the case, restart your computer, press F2 or Delete (as soon as you see a BIOS start-up screen), and wait until a BIOS configuration screen appears. If no BIOS configuration screen appears, restart (reset) the computer again and start pressing F2 or Delete repeatedly as soon as you restart (reset) the computer. When a BIOS configuration screen appears, configure your BIOS to boot from the CD/DVD drive first (for information on how to do so, please refer to the documentation for your BIOS/motherboard or contact your computer vendor's technical support team for assistance). Then restart your computer. The VeraCrypt Rescue Disk screen should appear now. In the VeraCrypt Rescue Disk screen, select 'Repair Options' by pressing F8 on your keyboard. From the 'Repair Options' menu, select 'Restore original system loader'. Then remove the Rescue Disk from your CD/DVD drive and restart your computer. Windows should start normally (provided that it is not encrypted).\n\n</entry> - <entry lang="en" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_4">Note that the previous steps do NOT work if the system partition/drive is encrypted (nobody can start Windows or access encrypted data on the drive without the correct password even if he or she follows the previous steps).\n\n\nNote that even if you lose your VeraCrypt Rescue Disk and an attacker finds it, he or she will NOT be able to decrypt the system partition or drive without the correct password.</entry> + <entry lang="pt-br" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_1">NOTAS IMPORTANTES -- LEIA OU IMPRIMA (clique em 'Imprimir'):\n\nObserve que nenhum de seus arquivos será criptografado antes de você reiniciar com sucesso o computador e iniciar o Windows. Portanto, se algo falhar, seus dados NÃO serão perdidos. No entanto, se algo der errado, você poderá enfrentar dificuldades para iniciar o Windows. Por isso, leia (e, se possível, imprima) as seguintes diretrizes sobre o que fazer caso o Windows não inicie após a reinicialização do computador.\n\n</entry> + <entry lang="pt-br" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_2">O Que Fazer Caso o Windows Não Inicie\n------------------------------------------------\n\nNota: Estas instruções são válidas apenas se você ainda não iniciou a criptografia.\n\n- Se o Windows não iniciar após você inserir a senha correta (ou se você inserir a senha correta repetidamente, mas o VeraCrypt indicar que a senha está incorreta), não entre em pânico. Reinicie (desligue e ligue) o computador e, na tela do VeraCrypt Boot Loader, pressione a tecla Esc no teclado (e, se você tiver vários sistemas, escolha qual iniciar). Em seguida, o Windows deverá iniciar (desde que não esteja criptografado), e o VeraCrypt solicitará automaticamente que você desinstale o componente de autenticação pré-inicialização. Observe que os passos anteriores NÃO funcionarão se a partição ou unidade do sistema estiver criptografada (ninguém pode iniciar o Windows ou acessar dados criptografados na unidade sem a senha correta, mesmo que siga os passos anteriores).\n\n</entry> + <entry lang="pt-br" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_3">- Se as etapas anteriores não ajudarem ou se a tela do VeraCrypt Boot Loader não aparecer (antes de o Windows iniciar), insira o Disco de Resgate do VeraCrypt na unidade de CD/DVD e reinicie o computador. Se a tela do Disco de Resgate do VeraCrypt não aparecer (ou se você não encontrar o item 'Opções de Reparação' na seção 'Controles do Teclado' da tela do Disco de Resgate do VeraCrypt), é possível que o BIOS esteja configurado para tentar iniciar a partir dos discos rígidos antes das unidades de CD/DVD. Nesse caso, reinicie o computador, pressione F2 ou Delete (assim que aparecer uma tela de inicialização do BIOS) e espere até que uma tela de configuração do BIOS apareça. Se nenhuma tela de configuração do BIOS aparecer, reinicie o computador novamente e comece a pressionar F2 ou Delete repetidamente assim que reiniciar o computador. Quando uma tela de configuração do BIOS aparecer, configure o BIOS para inicializar primeiro a partir da unidade de CD/DVD (para informações sobre como fazer isso, consulte a documentação do seu BIOS/placa-mãe ou entre em contato com o suporte técnico do fornecedor do seu computador). Em seguida, reinicie o computador. Agora, a tela do Disco de Resgate do VeraCrypt deve aparecer. Na tela do Disco de Resgate do VeraCrypt, selecione 'Opções de Reparação' pressionando F8 no teclado. No menu 'Opções de Reparação', selecione 'Restaurar o carregador do sistema original'. Depois, remova o Disco de Resgate da unidade de CD/DVD e reinicie o computador. O Windows deve iniciar normalmente (desde que não esteja criptografado).\n\n</entry> + <entry lang="pt-br" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_4">Observe que os passos anteriores NÃO funcionarão se a partição ou unidade do sistema estiver criptografada (ninguém pode iniciar o Windows ou acessar dados criptografados na unidade sem a senha correta, mesmo que siga os passos anteriores).\n\n\nNote que, mesmo que você perca seu Disco de Resgate do VeraCrypt e um atacante o encontre, ele ou ela NÃO poderá descriptografar a partição ou unidade do sistema sem a senha correta.</entry> <entry lang="pt-br" key="SYS_ENCRYPTION_PRETEST_RESULT_TITLE">Pré-Teste Completado</entry> <entry lang="pt-br" key="SYS_ENCRYPTION_PRETEST_RESULT_INFO">O pré-teste foi concluído com êxito.\n\nATENÇÃO: Observe que, se fonte de energia for subitamente interrompida durante a criptografia dos dados existentes no local, ou quando o sistema operacional falhar devido a um erro de software ou hardware enquanto o VeraCrypt estiver criptografando os dados existentes no local, porções dos dados serão corrompidas ou perdidas. Portanto, antes de começar a codificação, por favor, certifique-se de que tem cópias de segurança dos arquivos que você deseja criptografar. Se não possuir, por favor faça backup dos arquivos agora (você pode clicar em Adiar, fazer backup dos arquivos e, em seguida, executar novamente o VeraCrypt a qualquer momento, e selecione 'Sistema' > 'Continuar Processo Interrompido' para iniciar a criptografia).\n\nQuando estiver pronto, clique em Criptografar para iniciar.</entry> - <entry lang="en" key="SYSENC_ENCRYPTION_PAGE_INFO">You can click Pause or Defer anytime to interrupt the process of encryption or decryption, exit this wizard, restart or shut down your computer, and then resume the process, which will continue from the point it was stopped. To prevent slowdown when the system or applications write or read data from the system drive, VeraCrypt automatically waits until the data is written or read (see Status above) and then automatically continues encrypting or decrypting.</entry> + <entry lang="pt-br" key="SYSENC_ENCRYPTION_PAGE_INFO">Você pode clicar em Pausar ou Adiar a qualquer momento para interromper o processo de criptografia ou descriptografia, sair deste assistente, reiniciar ou desligar o computador e, em seguida, retomar o processo, que continuará do ponto onde foi interrompido. Para evitar lentidão quando o sistema ou os aplicativos gravarem ou lerem dados da unidade do sistema, o VeraCrypt espera automaticamente até que os dados sejam gravados ou lidos (veja o Status acima) e depois continua automaticamente a criptografia ou descriptografia.</entry> <entry lang="pt-br" key="NONSYS_INPLACE_ENC_ENCRYPTION_PAGE_INFO">\n\nVocê pode clicar em Pausar ou Adiar a qualquer momento para interromper o processo de criptografia, sair deste assistente, reiniciar ou desligar seu computador e, em seguida, retomar o processo, que continuará a partir do ponto que foi parado. Note que o volume não pode ser montado até que tenha sido totalmente criptografado.</entry> - <entry lang="en" key="NONSYS_INPLACE_DEC_DECRYPTION_PAGE_INFO">\n\nYou can click Pause or Defer anytime to interrupt the process of decryption, exit this wizard, restart or shut down the computer, and then resume the process, which will continue from the point where it was stopped. Note that the volume cannot be mounted until it has been fully decrypted.</entry> + <entry lang="pt-br" key="NONSYS_INPLACE_DEC_DECRYPTION_PAGE_INFO">\n\nVocê pode clicar em Pausar ou Adiar a qualquer momento para interromper o processo de descriptografia, sair deste assistente, reiniciar ou desligar o computador e, em seguida, retomar o processo, que continuará do ponto onde foi interrompido. Note que o volume não pode ser montado até que esteja totalmente descriptografado.</entry> <entry lang="pt-br" key="SYSENC_HIDDEN_OS_INITIAL_INFO_TITLE">Sistema Oculto Iniciado</entry> @@ -1200,29 +1200,29 @@ <entry lang="pt-br" key="HIDDEN_OS_CREATION_NOT_FINISHED_CHOICE_ASK_LATER">Não fazer nada agora, e perguntar novamente mais tarde</entry> - <entry lang="en" key="RESCUE_DISK_HELP_PORTION_1">\nIF POSSIBLE, PLEASE PRINT THIS TEXT (click 'Print' below).\n\n\nHow and When to Use VeraCrypt Rescue Disk (After Encrypting)\n-----------------------------------------------------------------------------------\n\n</entry> - <entry lang="en" key="RESCUE_DISK_HELP_PORTION_2">I. How to Boot VeraCrypt Rescue Disk\n\nTo boot a VeraCrypt Rescue Disk, insert it into your CD/DVD drive and restart your computer. If the VeraCrypt Rescue Disk screen does not appear (or if you do not see the 'Repair Options' item in the 'Keyboard Controls' section of the screen), it is possible that your BIOS is configured to attempt to boot from hard drives before CD/DVD drives. If that is the case, restart your computer, press F2 or Delete (as soon as you see a BIOS start-up screen), and wait until a BIOS configuration screen appears. If no BIOS configuration screen appears, restart (reset) the computer again and start pressing F2 or Delete repeatedly as soon as you restart (reset) the computer. When a BIOS configuration screen appears, configure your BIOS to boot from the CD/DVD drive first (for information on how to do so, please refer to the documentation for your BIOS/motherboard or contact your computer vendor's technical support team for assistance). Then restart your computer. The VeraCrypt Rescue Disk screen should appear now. Note: In the VeraCrypt Rescue Disk screen, you can select 'Repair Options' by pressing F8 on your keyboard.\n\n\n</entry> - <entry lang="en" key="RESCUE_DISK_HELP_PORTION_3">II. When and How to Use VeraCrypt Rescue Disk (After Encrypting)\n\n</entry> - <entry lang="en" key="RESCUE_DISK_HELP_PORTION_4">1) If the VeraCrypt Boot Loader screen does not appear after you start your computer (or if Windows does not boot), the VeraCrypt Boot Loader may be damaged. The VeraCrypt Rescue Disk allows you to restore it and thus to regain access to your encrypted system and data (however, note that you will still have to enter the correct password then). In the Rescue Disk screen, select 'Repair Options' > 'Restore VeraCrypt Boot Loader'. Then press 'Y' to confirm the action, remove the Rescue Disk from your CD/DVD drive and restart your computer.\n\n</entry> - <entry lang="en" key="RESCUE_DISK_HELP_PORTION_5">2) If you repeatedly enter the correct password but VeraCrypt says that the password is incorrect, the master key or other critical data may be damaged. The VeraCrypt Rescue Disk allows you to restore them and thus to regain access to your encrypted system and data (however, note that you will still have to enter the correct password then). In the Rescue Disk screen, select 'Repair Options' > 'Restore key data'. Then enter your password, press 'Y' to confirm the action, remove the Rescue Disk from your CD/DVD drive, and restart your computer.\n\n</entry> - <entry lang="en" key="RESCUE_DISK_HELP_PORTION_6">3) If the VeraCrypt Boot Loader is damaged, you can avoid running it by booting directly from the VeraCrypt Rescue Disk. Insert your Rescue Disk into your CD/DVD drive and then enter your password in the Rescue Disk screen.\n\n</entry> - <entry lang="en" key="RESCUE_DISK_HELP_PORTION_7">4) If Windows is damaged and cannot start, the VeraCrypt Rescue Disk allows you to permanently decrypt the partition/drive before Windows starts. In the Rescue Disk screen, select 'Repair Options' > 'Permanently decrypt system partition/drive'. Enter the correct password and wait until decryption is complete. Then you can e.g. boot your MS Windows setup CD/DVD to repair your Windows installation.\n\n</entry> - <entry lang="en" key="RESCUE_DISK_HELP_PORTION_8">Note: Alternatively, if Windows is damaged (cannot start) and you need to repair it (or access files on it), you can avoid decrypting the system partition/drive by following these steps: If you have multiple operating systems installed on your computer, boot the one that does not require pre-boot authentication. If you do not have multiple operating systems installed on your computer, you can boot a WinPE or BartPE CD/DVD or you can connect your system drive as a secondary or external drive to another computer and then boot the operating system installed on the computer. After you boot a system, run VeraCrypt, click 'Select Device', select the affected system partition, click 'OK', select 'System' > 'Mount Without Pre-Boot Authentication', enter your pre-boot authentication password and click 'OK'. The partition will be mounted as a regular VeraCrypt volume (data will be on-the-fly decrypted/encrypted in RAM on access, as usual).\n\n\n</entry> - <entry lang="en" key="RESCUE_DISK_HELP_PORTION_9">Note that even if you lose your VeraCrypt Rescue Disk and an attacker finds it, he or she will NOT be able to decrypt the system partition or drive without the correct password.</entry> - <entry lang="en" key="DECOY_OS_INSTRUCTIONS_PORTION_1">\n\nI M P O R T A N T -- PLEASE PRINT THIS TEXT IF POSSIBLE (click 'Print' below).\n\n\nNote: This text will be automatically displayed each time you start the hidden system until you start creating the decoy system.\n\n\n</entry> - <entry lang="en" key="DECOY_OS_INSTRUCTIONS_PORTION_2">How to Create Decoy System Safely and Securely\n----------------------------------------------------------------------------\n\nIn order to achieve plausible deniability, you need to create the decoy operating system now. To do so, follow these steps:\n\n</entry> - <entry lang="en" key="DECOY_OS_INSTRUCTIONS_PORTION_3">1) For security reasons, shut down your computer and leave it powered off for at least several minutes (the longer, the better). This is required to clear the memory, which contains sensitive data. Then turn on the computer but do not boot the hidden system.\n\n</entry> - <entry lang="en" key="DECOY_OS_INSTRUCTIONS_PORTION_4">2) Install Windows on the partition whose content has been erased (i.e. on the partition where the original system, of which the hidden system is a clone, was installed).\n\nIMPORTANT: WHEN YOU START INSTALLING THE DECOY SYSTEM, THE HIDDEN SYSTEM WILL *NOT* BE POSSIBLE TO BOOT (because the VeraCrypt Boot Loader will be erased by the Windows system installer). THIS IS NORMAL AND EXPECTED. PLEASE DO NOT PANIC. YOU WILL BE ABLE TO BOOT THE HIDDEN SYSTEM AGAIN AS SOON AS YOU START ENCRYPTING THE DECOY SYSTEM (because VeraCrypt will then automatically install the VeraCrypt Boot Loader on the system drive).\n\nImportant: The size of the decoy system partition must remain the same as the size of the hidden volume (this condition is now met). Moreover, you must not create any partition between the decoy system partition and the partition where the hidden system resides.\n\n</entry> - <entry lang="en" key="DECOY_OS_INSTRUCTIONS_PORTION_5">3) Boot the decoy system (which you installed in step 2 and install VeraCrypt on it).\n\nKeep in mind that the decoy system must never contain any sensitive data.\n\n</entry> - <entry lang="en" key="DECOY_OS_INSTRUCTIONS_PORTION_6">4) On the decoy system, run VeraCrypt and select 'System' > 'Encrypt System Partition/Drive'. The VeraCrypt Volume Creation Wizard window should appear.\n\nThe following steps apply to the VeraCrypt Volume Creation Wizard.\n\n</entry> - <entry lang="en" key="DECOY_OS_INSTRUCTIONS_PORTION_7">5) In the VeraCrypt Volume Creation Wizard, do NOT select the 'Hidden' option. Leave the 'Normal' option selected and click 'Next'.\n\n</entry> - <entry lang="en" key="DECOY_OS_INSTRUCTIONS_PORTION_8">6) Select the option 'Encrypt the Windows system partition' and then click 'Next'.\n\n</entry> - <entry lang="en" key="DECOY_OS_INSTRUCTIONS_PORTION_9">7) If there are only the hidden system and the decoy system installed on the computer, select the option 'Single-boot' (if there are more than these two systems installed on the computer, select 'Multi-boot'). Then click 'Next'.\n\n</entry> - <entry lang="en" key="DECOY_OS_INSTRUCTIONS_PORTION_10">8) IMPORTANT: In this step, FOR THE DECOY SYSTEM, YOU MUST SELECT THE SAME ENCRYPTION ALGORITHM AND HASH ALGORITHM THAT YOU SELECTED FOR THE HIDDEN SYSTEM! OTHERWISE, THE HIDDEN SYSTEM WILL BE INACCESSIBLE! In other words, the decoy system must be encrypted with the same encryption algorithm as the hidden system. Note: 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).\n\n</entry> - <entry lang="en" key="DECOY_OS_INSTRUCTIONS_PORTION_11">9) In this step, choose a password for the decoy operating system. This will be the password that you will be able to reveal to an adversary if you are asked or forced to disclose your pre-boot authentication password (the other password you can reveal is the one for the outer volume). The existence of the third password (i.e. of the pre-boot authentication password for the hidden operating system) will remain secret.\n\nImportant: The password you choose for the decoy system must be substantially different from the one you chose for the hidden volume (i.e. for the hidden operating system).\n\n</entry> - <entry lang="en" key="DECOY_OS_INSTRUCTIONS_PORTION_12">10) Follow the remaining instructions in the wizard so as to encrypt the decoy operating system.\n\n\n\n</entry> - <entry lang="en" key="DECOY_OS_INSTRUCTIONS_PORTION_13">After Decoy System Is Created\n------------------------------------------------\n\nAfter you encrypt the decoy system, the whole process of creation of the hidden operating system will be completed and you will be able to use these three passwords:\n\n1) Pre-boot authentication password for the hidden operating system.\n\n2) Pre-boot authentication password for the decoy operating system.\n\n3) Password for the outer volume.\n\n</entry> - <entry lang="en" key="DECOY_OS_INSTRUCTIONS_PORTION_14">If you want to start the hidden operating system, you will just need to enter the password for the hidden operating system in the VeraCrypt Boot Loader screen (which appears after you turn on or restart your computer).\n\nIf you want to start the decoy operating system, you will just need to enter the password for the decoy operating system in the VeraCrypt Boot Loader screen.\n\nThe password for the decoy system can be disclosed to anyone forcing you to reveal your pre-boot authentication password. The existence of the hidden volume (and of the hidden operating system) will remain secret.\n\n</entry> - <entry lang="en" key="DECOY_OS_INSTRUCTIONS_PORTION_15">The third password (for the outer volume) can be disclosed to anyone forcing you to reveal the password for the first partition behind the system partition, where both the outer volume and the hidden volume (containing the hidden operating system) reside. The existence of the hidden volume (and of the hidden operating system) will remain secret.\n\n\n</entry> - <entry lang="en" key="DECOY_OS_INSTRUCTIONS_PORTION_16">If you revealed the password for the decoy system to an adversary and he asked you why the free space of the (decoy) system partition contains random data, you could answer, for example: "The partition previously contained a system encrypted by VeraCrypt, but I forgot the pre-boot authentication password (or the system was damaged and stopped booting), so I had to reinstall Windows and encrypt the partition again."\n\n\n</entry> - <entry lang="en" key="DECOY_OS_INSTRUCTIONS_PORTION_17">If all the instructions are 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 and hidden operating system exist, even when the outer volume is mounted or when the decoy operating system is decrypted or started.\n\nIf you save a copy of this text or print it (strongly recommended, unless your printer stores copies of documents it prints on its internal drive), you should destroy any copies of it after you have created the decoy system and after you have understood all the information contained in the text (otherwise, if such a copy was found, it might indicate that there is a hidden operating system on this computer).\n\n</entry> - <entry lang="en" key="DECOY_OS_INSTRUCTIONS_PORTION_18">WARNING: 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 (note that the decoy operating system is NOT installed in the outer volume). OTHERWISE, YOU MAY OVERWRITE AND DAMAGE THE HIDDEN VOLUME (AND THE HIDDEN OPERATING SYSTEM WITHIN IT)!</entry> + <entry lang="pt-br" key="RESCUE_DISK_HELP_PORTION_1">\nSE POSSÍVEL, IMPRIMA ESTE TEXTO (clique em 'Imprimir' abaixo).\n\n\nComo e Quando Usar o Disco de Resgate do VeraCrypt (Após Criptografar)\n-----------------------------------------------------------------------------------\n\n</entry> + <entry lang="pt-br" key="RESCUE_DISK_HELP_PORTION_2">I. Como Inicializar o Disco de Resgate do VeraCrypt\n\nPara inicializar um Disco de Resgate do VeraCrypt, insira-o na unidade de CD/DVD e reinicie o computador. Se a tela do Disco de Resgate do VeraCrypt não aparecer (ou se você não vir o item 'Opções de Reparo' na seção 'Controles do Teclado' da tela), é possível que o BIOS esteja configurado para tentar inicializar a partir de discos rígidos antes de unidades de CD/DVD. Nesse caso, reinicie o computador, pressione F2 ou Delete (assim que a tela de inicialização do BIOS aparecer) e aguarde até que a tela de configuração do BIOS seja exibida. Se nenhuma tela de configuração do BIOS aparecer, reinicie (reset) o computador novamente e pressione repetidamente F2 ou Delete assim que ele reiniciar. Quando a tela de configuração do BIOS for exibida, configure o BIOS para inicializar a partir da unidade de CD/DVD primeiro. (Para obter mais informações, consulte a documentação do BIOS/placa-mãe ou entre em contato com a equipe de suporte técnico do fabricante do computador.) Em seguida, reinicie o computador. Agora, a tela do Disco de Resgate do VeraCrypt deve aparecer. Nota: Na tela do Disco de Resgate do VeraCrypt, você pode selecionar 'Opções de Reparo' pressionando F8 no teclado.\n\n\n</entry> + <entry lang="pt-br" key="RESCUE_DISK_HELP_PORTION_3">II. Quando e Como Usar o Disco de Resgate do VeraCrypt (Após Criptografar)\n\n</entry> + <entry lang="pt-br" key="RESCUE_DISK_HELP_PORTION_4">1) Se a tela do Carregador de Inicialização do VeraCrypt não aparecer após iniciar o computador (ou se o Windows não inicializar), o Carregador de Inicialização do VeraCrypt pode estar corrompido. O Disco de Resgate do VeraCrypt permite restaurá-lo, recuperando o acesso ao seu sistema e aos dados criptografados. (Note que você ainda precisará inserir a senha correta.) Na tela do Disco de Resgate, selecione 'Opções de Reparo' > 'Restaurar Carregador de Inicialização do VeraCrypt'. Em seguida, pressione 'Y' para confirmar a ação, remova o Disco de Resgate da unidade de CD/DVD e reinicie o computador.\n\n</entry> + <entry lang="pt-br" key="RESCUE_DISK_HELP_PORTION_5">2) Se você inserir repetidamente a senha correta e o VeraCrypt indicar que a senha está incorreta, a chave mestra ou outros dados críticos podem estar danificados. O Disco de Resgate do VeraCrypt permite restaurá-los, recuperando o acesso ao seu sistema e aos dados criptografados. (Note que você ainda precisará inserir a senha correta.) Na tela do Disco de Resgate, selecione 'Opções de Reparo' > 'Restaurar dados da chave'. Em seguida, insira sua senha, pressione 'Y' para confirmar a ação, remova o Disco de Resgate da unidade de CD/DVD e reinicie o computador.\n\n</entry> + <entry lang="pt-br" key="RESCUE_DISK_HELP_PORTION_6">3) Se o Carregador de Inicialização do VeraCrypt estiver danificado, você pode ignorar sua execução inicializando diretamente a partir do Disco de Resgate do VeraCrypt. Insira o Disco de Resgate na unidade de CD/DVD e insira sua senha na tela do Disco de Resgate.\n\n</entry> + <entry lang="pt-br" key="RESCUE_DISK_HELP_PORTION_7">4) Se o Windows estiver danificado e não puder ser iniciado, o Disco de Resgate do VeraCrypt permite descriptografar permanentemente a partição/unidade antes que o Windows inicie. Na tela do Disco de Resgate, selecione 'Opções de Reparo' > 'Descriptografar permanentemente partição/unidade do sistema'. Insira a senha correta e aguarde a conclusão da descriptografia. Após isso, você poderá, por exemplo, inicializar o CD/DVD de instalação do Windows para reparar sua instalação.\n\n</entry> + <entry lang="pt-br" key="RESCUE_DISK_HELP_PORTION_8">Nota: Alternativamente, se o Windows estiver danificado (não puder ser iniciado) e você precisar repará-lo (ou acessar arquivos nele), poderá evitar descriptografar a partição/unidade do sistema seguindo estas etapas: Se você tiver vários sistemas operacionais instalados no computador, inicialize aquele que não requer autenticação pré-inicialização. Se você não tiver vários sistemas operacionais instalados, inicialize um CD/DVD WinPE ou BartPE ou conecte a unidade do sistema como unidade secundária ou externa a outro computador e inicialize o sistema operacional instalado neste outro computador. Após inicializar, execute o VeraCrypt, clique em 'Selecionar Dispositivo', selecione a partição do sistema afetada, clique em 'OK', selecione 'Sistema' > 'Montar Sem Autenticação Pré-Inicialização', insira sua senha de autenticação pré-inicialização e clique em 'OK'. A partição será montada como um volume normal do VeraCrypt (os dados serão criptografados/descriptografados dinamicamente na RAM durante o acesso, como de costume).\n\n\n</entry> + <entry lang="pt-br" key="RESCUE_DISK_HELP_PORTION_9">Observe que, mesmo que você perca o Disco de Resgate do VeraCrypt e um invasor o encontre, ele ou ela NÃO conseguirá descriptografar a partição ou unidade do sistema sem a senha correta.</entry> + <entry lang="pt-br" key="DECOY_OS_INSTRUCTIONS_PORTION_1">\n\nI M P O R T A N T E -- SE POSSÍVEL, IMPRIMA ESTE TEXTO (clique em 'Imprimir' abaixo).\n\n\nNota: Este texto será exibido automaticamente toda vez que você iniciar o sistema oculto, até que inicie a criação do sistema isca.\n\n\n</entry> + <entry lang="pt-br" key="DECOY_OS_INSTRUCTIONS_PORTION_2">Como Criar o Sistema Isca de Forma Segura\n----------------------------------------------------------------------------\n\nPara alcançar a negação plausível, você precisa criar o sistema isca agora. Siga estas etapas:\n\n</entry> + <entry lang="pt-br" key="DECOY_OS_INSTRUCTIONS_PORTION_3">1) Por razões de segurança, desligue o computador e mantenha-o desligado por pelo menos alguns minutos (quanto mais tempo, melhor). Isso é necessário para limpar a memória, que pode conter dados sensíveis. Em seguida, ligue o computador, mas não inicialize o sistema oculto.\n\n</entry> + <entry lang="pt-br" key="DECOY_OS_INSTRUCTIONS_PORTION_4">2) Instale o Windows na partição cujo conteúdo foi apagado (ou seja, na partição onde estava instalado o sistema original do qual o sistema oculto é um clone).\n\nIMPORTANTE: AO INICIAR A INSTALAÇÃO DO SISTEMA ISCA, NÃO SERÁ POSSÍVEL INICIALIZAR O SISTEMA OCULTO (pois o carregador de inicialização do VeraCrypt será apagado pelo instalador do Windows). ISSO É NORMAL E ESPERADO. NÃO ENTRE EM PÂNICO. VOCÊ SERÁ CAPAZ DE INICIALIZAR O SISTEMA OCULTO NOVAMENTE ASSIM QUE COMEÇAR A CRIPTOGRAFAR O SISTEMA ISCA (pois o VeraCrypt instalará automaticamente o carregador de inicialização na unidade do sistema).\n\nImportante: O tamanho da partição do sistema isca deve permanecer o mesmo do volume oculto (essa condição já foi atendida). Além disso, você não deve criar nenhuma partição entre a partição do sistema isca e a partição onde o sistema oculto reside.\n\n</entry> + <entry lang="pt-br" key="DECOY_OS_INSTRUCTIONS_PORTION_5">3) Inicialize o sistema de isca (que você instalou na etapa 2) e instale o VeraCrypt nele.\n\nLembre-se de que o sistema de isca nunca deve conter dados confidenciais.\n\n</entry> + <entry lang="pt-br" key="DECOY_OS_INSTRUCTIONS_PORTION_6">4) No sistema de isca, execute o VeraCrypt e selecione 'Sistema' > 'Criptografar a Partição/Unidade do Sistema'. A janela do Assistente de Criação de Volumes do VeraCrypt será exibida.\n\nAs etapas a seguir se aplicam ao Assistente de Criação de Volumes do VeraCrypt.\n\n</entry> + <entry lang="pt-br" key="DECOY_OS_INSTRUCTIONS_PORTION_7">5) No Assistente de Criação de Volumes do VeraCrypt, NÃO selecione a opção 'Oculto'. Mantenha a opção 'Normal' selecionada e clique em 'Avançar'.\n\n</entry> + <entry lang="pt-br" key="DECOY_OS_INSTRUCTIONS_PORTION_8">6) Selecione a opção 'Criptografar a Partição do Sistema Windows' e clique em 'Avançar'.\n\n</entry> + <entry lang="pt-br" key="DECOY_OS_INSTRUCTIONS_PORTION_9">7) Se houver apenas o sistema oculto e o sistema de isca instalados no computador, selecione a opção 'Inicialização única' (se houver mais de dois sistemas instalados no computador, selecione 'Inicialização múltipla'). Em seguida, clique em 'Avançar'.\n\n</entry> + <entry lang="pt-br" key="DECOY_OS_INSTRUCTIONS_PORTION_10">8) IMPORTANTE: Nesta etapa, PARA O SISTEMA DE ISCA, VOCÊ DEVE SELECIONAR O MESMO ALGORITMO DE CRIPTOGRAFIA E ALGORITMO DE HASH QUE VOCÊ SELECIONOU PARA O SISTEMA OCULTO! CASO CONTRÁRIO, O SISTEMA OCULTO FICARÁ INACESSÍVEL! Em outras palavras, o sistema de isca deve ser criptografado com o mesmo algoritmo de criptografia que o sistema oculto. Nota: Isso ocorre porque o sistema de isca e o sistema oculto compartilharão um único carregador de inicialização, que suporta apenas um único algoritmo selecionado pelo usuário (para cada algoritmo, existe uma versão específica do Carregador de Inicialização do VeraCrypt).\n\n</entry> + <entry lang="pt-br" key="DECOY_OS_INSTRUCTIONS_PORTION_11">9) Nesta etapa, escolha uma senha para o sistema operacional isca. Esta será a senha que você poderá revelar a um adversário caso seja solicitado ou forçado a divulgar sua senha de autenticação pré-inicialização (a outra senha que você pode revelar é a do volume externo). A existência da terceira senha (ou seja, da senha de autenticação pré-inicialização para o sistema operacional oculto) permanecerá em segredo.\n\nImportante: A senha que você escolher para o sistema isca deve ser substancialmente diferente daquela que você escolheu para o volume oculto (ou seja, para o sistema operacional oculto).\n\n</entry> + <entry lang="pt-br" key="DECOY_OS_INSTRUCTIONS_PORTION_12">10) Siga as instruções restantes no assistente para criptografar o sistema operacional isca.\n\n\n\n</entry> + <entry lang="pt-br" key="DECOY_OS_INSTRUCTIONS_PORTION_13">Após a Criação do Sistema Isca\n------------------------------------------------\n\nDepois de criptografar o sistema isca, o processo de criação do sistema operacional oculto será concluído e você poderá usar estas três senhas:\n\n1) Senha de autenticação pré-inicialização para o sistema operacional oculto.\n\n2) Senha de autenticação pré-inicialização para o sistema operacional isca.\n\n3) Senha para o volume externo.\n\n</entry> + <entry lang="pt-br" key="DECOY_OS_INSTRUCTIONS_PORTION_14">Se você quiser iniciar o sistema operacional oculto, basta inserir a senha do sistema operacional oculto na tela do VeraCrypt Boot Loader (que aparece após ligar ou reiniciar o computador).\n\nSe você quiser iniciar o sistema operacional isca, basta inserir a senha do sistema operacional isca na tela do VeraCrypt Boot Loader.\n\nA senha do sistema isca pode ser revelada a qualquer pessoa que o force a divulgar sua senha de autenticação pré-inicialização. A existência do volume oculto (e do sistema operacional oculto) permanecerá em segredo.\n\n</entry> + <entry lang="pt-br" key="DECOY_OS_INSTRUCTIONS_PORTION_15">A terceira senha (para o volume externo) pode ser revelada a qualquer pessoa que o force a divulgar a senha da primeira partição atrás da partição do sistema, onde residem tanto o volume externo quanto o volume oculto (que contém o sistema operacional oculto). A existência do volume oculto (e do sistema operacional oculto) permanecerá em segredo.\n\n\n</entry> + <entry lang="pt-br" key="DECOY_OS_INSTRUCTIONS_PORTION_16">Se você revelou a senha para o sistema de disfarce a um adversário e ele perguntou por que o espaço livre da partição do sistema (de disfarce) contém dados aleatórios, você poderia responder, por exemplo: "A partição anteriormente continha um sistema criptografado pelo VeraCrypt, mas eu esqueci a senha de autenticação pré-boot (ou o sistema foi danificado e parou de inicializar), então tive que reinstalar o Windows e criptografar a partição novamente."\n\n\n</entry> + <entry lang="pt-br" key="DECOY_OS_INSTRUCTIONS_PORTION_17">Se todas as instruções forem seguidas e se as precauções e requisitos listados na seção "Requisitos de Segurança e Precauções Relativas a Volumes Ocultos" no Guia do Usuário do VeraCrypt forem atendidos, deve ser impossível provar que o volume oculto e o sistema operacional oculto existem, mesmo quando o volume externo é montado ou quando o sistema operacional de disfarce é descriptografado ou iniciado.\n\nSe você salvar uma cópia deste texto ou imprimi-lo (fortemente recomendado, a menos que sua impressora salve cópias dos documentos que imprime em seu armazenamento interno), certifique-se de destruir todas as cópias após criar o sistema de disfarce e após ter entendido todas as informações contidas no texto. Caso contrário, se uma cópia for encontrada, isso pode indicar que há um sistema operacional oculto neste computador.\n\n</entry> + <entry lang="pt-br" key="DECOY_OS_INSTRUCTIONS_PORTION_18">AVISO: SE VOCÊ NÃO PROTEGER O VOLUME OCULTO (para informações sobre como fazer isso, consulte a seção "Proteção de Volumes Ocultos contra Danos" no Guia do Usuário do VeraCrypt), NÃO ESCREVA NO VOLUME EXTERNO (observe que o sistema operacional de disfarce NÃO está instalado no volume externo). CASO CONTRÁRIO, VOCÊ PODE SOBRESCREVER E DANIFICAR O VOLUME OCULTO (E O SISTEMA OPERACIONAL OCULTO DENTRO DELE)!\n</entry> <entry lang="pt-br" key="HIDDEN_OS_CREATION_PREINFO_TITLE">Clonagem de Sistema Operacional</entry> @@ -1231,6 +1231,6 @@ <entry lang="pt-br" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">Você deseja cancelar o pré-teste de criptografia de sistema?</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="pt-br" key="BOOT_PRETEST_FAILED_RETRY">O pré-teste de criptografia do sistema do VeraCrypt falhou. Deseja tentar novamente?\n\nSe você selecionar 'Não', o componente de autenticação de pré-inicialização será desinstalado.\n\nObservações:\n\n- Se o carregador de inicialização do VeraCrypt não solicitou que você digitasse a senha antes de o Windows iniciar, é possível que o seu sistema operacional não esteja inicializando a partir da unidade na qual está instalado. Isso não é suportado.\n\n- Se você usou um algoritmo de criptografia diferente de AES e o pré-teste falhou (e você inseriu a senha), isso pode ter sido causado por um driver projetado de forma inadequada. Selecione 'Não' e tente criptografar novamente a partição/unidade do sistema, mas use o algoritmo de criptografia AES (que possui os menores requisitos de memória).\n\n- Para mais possíveis causas e soluções, veja: https://www.veracrypt.fr/en/Troubleshooting.html</entry> <entry lang="pt-br" key="SYS_DRIVE_NOT_ENCRYPTED">O dispositivo/partição de sistema não parece estar criptografado (nem parcial nem completamente).</entry> <entry lang="pt-br" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">Seu dispositivo/partição de sistema está criptografado (parcial ou completamente).\n\nFavor descriptografar o dispositivo/partição de sistema completamente antes de continuar. Para isso, clique em 'Sistema' > 'Descriptografar Dispositivo/Partição de Sistema Definitivamente' na barra de menu da janela principal do 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> + <entry lang="pt-br" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">Quando a partição/unidade do sistema está criptografada (parcial ou totalmente), você não pode fazer o downgrade do VeraCrypt (mas pode atualizá-lo ou reinstalar a mesma versão).</entry> <entry lang="pt-br" key="SYS_ENCRYPTION_OR_DECRYPTION_IN_PROGRESS">Seu dispositivo/partição de sistema está sendo criptografado, descriptografado ou modificado de outra forma. Favor interromper o processo de criptografia/descriptografia/modificação (ou aguardar até que ele esteja completo) antes de continuar.</entry> @@ -1245,3 +1245,3 @@ <entry lang="pt-br" key="CONFIRM_CHANGE_WIZARD_MODE_TO_FILE_CONTAINER">Você deseja criar um arquivo recipiente VeraCrypt?</entry> - <entry lang="en" key="CONFIRM_SYSTEM_ENCRYPTION_MODE">You have selected the system partition/drive (or the boot partition), but the wizard mode you selected is suitable only for non-system partitions/drives.\n\nDo you want to set up pre-boot authentication (which means that you will need to enter your password each time before Windows boots/starts) and encrypt the system partition/drive?</entry> + <entry lang="pt-br" key="CONFIRM_SYSTEM_ENCRYPTION_MODE">Você selecionou a partição/unidade do sistema (ou a partição de inicialização), mas o modo do assistente que você escolheu é adequado apenas para partições/unidades que não sejam do sistema.\n\nDeseja configurar a autenticação de pré-inicialização (o que significa que você precisará inserir sua senha toda vez antes de o Windows iniciar) e criptografar a partição/unidade do sistema?</entry> <entry lang="pt-br" key="CONFIRM_DECRYPT_SYS_DEVICE">Você tem certeza de que deseja descriptografar o dispositivo/partição de sistema definitivamente?</entry> @@ -1252,5 +1252,5 @@ <entry lang="pt-br" key="NOTE_CASCADE_FOR_SYS_ENCRYPTION">Se você tiver algum dos problemas descritos acima, descriptografe o disco/partição (se ele estiver criptografado) e tente criptografá-lo novamente usando um algoritmo não sequencial (como o AES).</entry> - <entry lang="en" key="UPDATE_TC_IN_DECOY_OS_FIRST">WARNING: For safety and security reasons, you should update VeraCrypt on the decoy operating system before you update it on the hidden operating system.\n\nTo do so, boot the decoy system and run the VeraCrypt installer from within it. Then boot the hidden system and run the installer from within it as well.\n\nNote: The decoy system and the hidden system share a single boot loader. If you upgraded VeraCrypt only on the hidden system (but not on the decoy system), the decoy system would contain a VeraCrypt driver and VeraCrypt applications whose version numbers are different from the version number of the VeraCrypt Boot Loader. Such a discrepancy might indicate that there is a hidden operating system on this computer.\n\n\nDo you want to continue?</entry> + <entry lang="pt-br" key="UPDATE_TC_IN_DECOY_OS_FIRST">AVISO: Por razões de segurança, você deve atualizar o VeraCrypt no sistema operacional de isca antes de atualizá-lo no sistema operacional oculto.\n\nPara fazer isso, inicie o sistema de isca e execute o instalador do VeraCrypt nele. Em seguida, inicie o sistema oculto e execute o instalador nele também.\n\nNota: O sistema de isca e o sistema oculto compartilham um único carregador de inicialização. Se você atualizou o VeraCrypt apenas no sistema oculto (mas não no sistema de isca), o sistema de isca conterá um driver do VeraCrypt e aplicativos do VeraCrypt cujos números de versão são diferentes do número de versão do carregador de inicialização do VeraCrypt. Tal discrepância pode indicar que há um sistema operacional oculto neste computador.\n\n\nDeseja continuar?</entry> <entry lang="pt-br" key="UPDATE_TC_IN_HIDDEN_OS_TOO">O número da versão do Gerenciador de Boot do VeraCrypt que inicializou esse sistema operacional é diferente do número da versão do driver do VeraCrypt (e do aplicativo do VeraCrypt) instalados no sistema.\n\nVocê deve executar o instalador do VeraCrypt (cujo número de versão é o mesmo do Gerenciador de Boot) para atualizar o VeraCrypt neste sistema operacional.</entry> - <entry lang="en" key="BOOT_LOADER_VERSION_DIFFERENT_FROM_DRIVER_VERSION">The version number of the VeraCrypt Boot Loader that booted this operating system is different from the version number of the VeraCrypt driver (and of the VeraCrypt applications) installed on this system. Note that older versions may contain bugs fixed in later versions.\n\nIf you did not boot from the VeraCrypt Rescue Disk, you should reinstall VeraCrypt or upgrade it to the latest stable version (the boot loader will be updated too).\n\nIf you booted from the VeraCrypt Rescue Disk, you should update it ('System' > 'Create Rescue Disk').</entry> + <entry lang="pt-br" key="BOOT_LOADER_VERSION_DIFFERENT_FROM_DRIVER_VERSION">O número da versão do carregador de inicialização do VeraCrypt que iniciou este sistema operacional é diferente do número da versão do driver do VeraCrypt (e dos aplicativos do VeraCrypt) instalados neste sistema. Observe que versões mais antigas podem conter erros corrigidos em versões mais recentes.\n\nSe você não inicializou a partir do Disco de Recuperação do VeraCrypt, deve reinstalar o VeraCrypt ou atualizá-lo para a versão estável mais recente (o carregador de inicialização também será atualizado).\n\nSe você inicializou a partir do Disco de Recuperação do VeraCrypt, deve atualizá-lo ('Sistema' > 'Criar Disco de Recuperação').</entry> <entry lang="pt-br" key="BOOT_LOADER_UPGRADE_OK">O VeraCrypt Boot Loader foi atualizado.\n\nÉ fortemente recomendável que você crie um novo Disco de Emergência VeraCrypt (que conterá a nova versão do VeraCrypt Boot Loader) selecionando 'Sistema' > 'Criar Disco de Emergência' depois que você reiniciar o seu computador.</entry> @@ -1265,3 +1265,3 @@ <entry lang="pt-br" key="ZEROED_BAD_SECTOR_COUNT">Nota: O VeraCrypt substituiu o conteúdo de %I64d setores ilegíveis (%s) com blocos criptografados de texto formatado com zeros.</entry> - <entry lang="en" key="SKIPPED_BAD_SECTOR_COUNT">Note: VeraCrypt has replaced the content of %I64d unreadable sectors (%s) with pseudorandom data.</entry> + <entry lang="pt-br" key="SKIPPED_BAD_SECTOR_COUNT">Nota: O VeraCrypt substituiu o conteúdo de %I64d setores ilegíveis (%s) por dados pseudoaleatórios.</entry> <entry lang="pt-br" key="ENTER_TOKEN_PASSWORD">Digite password/PIN para o token '%s':</entry> @@ -1279,3 +1279,3 @@ <entry lang="pt-br" key="CKR_PIN_INCORRECT">A senha para o token de segurança está incorreta.</entry> - <entry lang="en" key="CKR_DEVICE_MEMORY">The security token does not have enough memory/space to perform the requested operation.\n\nIf you are attempting to import a keyfile, you should select a smaller file or use a keyfile generated by VeraCrypt (select 'Tools' > 'Keyfile Generator').</entry> + <entry lang="pt-br" key="CKR_DEVICE_MEMORY">O token de segurança não tem memória ou espaço suficiente para realizar a operação solicitada.\n\nSe você está tentando importar um arquivo de chave, deve selecionar um arquivo menor ou usar um arquivo de chave gerado pelo VeraCrypt (selecione 'Ferramentas' > 'Gerador de Arquivo de Chave').</entry> <entry lang="pt-br" key="ALL_TOKEN_SESSIONS_CLOSED">Todas as sessões abertas de tokens de segurança foram fechadas.</entry> @@ -1285,7 +1285,7 @@ <entry lang="pt-br" key="TOKEN_DATA_OBJECT_LABEL">Nome do arquivo</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 '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="pt-br" key="BOOT_PASSWORD_CACHE_KEYBOARD_WARNING">IMPORTANTE: Tenha em mente que as senhas de autenticação pré-boot são sempre digitadas usando o layout de teclado padrão dos EUA. Portanto, um volume que use uma senha digitada com qualquer outro layout de teclado pode ser impossível de montar usando uma senha de autenticação pré-boot (observe que isso não é um erro do VeraCrypt). Para permitir que tal volume seja montado com uma senha de autenticação pré-boot, siga estes passos:\n\n1) Clique em 'Selecionar Arquivo' ou 'Selecionar Dispositivo' e selecione o volume.\n2) Selecione 'Volumes' > 'Alterar Senha do Volume'.\n3) Insira a senha atual do volume.\n4) Altere o layout do teclado para Inglês (EUA) clicando no ícone da barra de idiomas na barra de tarefas do Windows e selecionando 'EN Inglês (Estados Unidos)'.\n5) No VeraCrypt, no campo para a nova senha, digite a senha de autenticação pré-boot.\n6) Confirme a nova senha digitando-a novamente no campo de confirmação e clique em 'OK'.\nAVISO: Tenha em mente que, se você seguir estes passos, a senha do volume sempre terá que ser digitada usando o layout de teclado dos EUA (o que é garantido automaticamente apenas no ambiente pré-boot).</entry> + <entry lang="pt-br" key="SYS_FAVORITES_KEYBOARD_WARNING">Os volumes favoritos do sistema serão montados usando a senha de autenticação pré-boot. Se algum volume favorito do sistema usar uma senha diferente, ele não será montado.</entry> + <entry lang="pt-br" key="SYS_FAVORITES_ADMIN_ONLY_INFO">Observe que, se você precisar evitar que ações normais do volume VeraCrypt (como 'Desmontar Tudo', desmontagem automática, etc.) afetem volumes favoritos do sistema, você deve ativar a opção 'Permitir apenas administradores visualizar e desmontar volumes favoritos do sistema no VeraCrypt'. Além disso, quando o VeraCrypt for executado sem privilégios de administrador (o padrão no Windows Vista e versões posteriores), os volumes favoritos do sistema não serão exibidos na lista de letras de unidades na janela principal do aplicativo VeraCrypt.</entry> + <entry lang="pt-br" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">IMPORTANTE: Tenha em mente que, se esta opção estiver habilitada e o VeraCrypt não tiver privilégios de administrador, os volumes favoritos do sistema montados NÃO serão exibidos, mesmo que estejam montados. Portanto, se você precisar, por exemplo, desmontar um volume favorito do sistema, clique com o botão direito no ícone do VeraCrypt (no menu Iniciar) e selecione 'Executar como administrador' primeiro. A mesma limitação se aplica à função 'Desmontar Tudo', às funções de 'Desmontagem Automática', às teclas de atalho de 'Desmontar Tudo', etc.</entry> + <entry lang="pt-br" key="SETTING_REQUIRES_REBOOT">Observe que esta configuração só terá efeito após o sistema operacional ser reiniciado.</entry> <entry lang="pt-br" key="COMMAND_LINE_ERROR">Erro ao analisar a linha de comando.</entry> @@ -1294,19 +1294,19 @@ <entry lang="pt-br" key="SELECT_DEVICE_AND_MOUNT">Selecione o &Dispositivo e Monte-o...</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="pt-br" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Permitir apenas administradores visualizar e desmontar volumes favoritos do sistema no VeraCrypt</entry> + <entry lang="pt-br" key="MOUNT_SYSTEM_FAVORITES_ON_BOOT">Montar volumes favoritos do sistema quando o Windows iniciar (na fase inicial do procedimento de inicialização)</entry> <entry lang="pt-br" key="MOUNTED_VOLUME_DIRTY">Aviso: O sistema de arquivos no volume montado como '%s' não foi limpamente desmontado, assim, pode conter erros. Usar um sistema de arquivos corrompido pode causar perda ou corrupção de dados.\n\nNota: Antes de remover fisicamente ou desligar um dispositivo (como uma unidade flash USB ou um disco rígido externo) onde reside um volume VeraCrypt montado, você deve sempre desmontar o volume no VeraCrypt primeiro.\n\n\nDeseja que o Windows tente detectar e corrigir erros (se houver) no sistema de arquivos?</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="pt-br" key="SYS_FAVORITE_VOLUME_DIRTY">Aviso: Um ou mais volumes favoritos do sistema não foram desmontados corretamente e podem conter erros no sistema de arquivos. Consulte o log de eventos do sistema para mais detalhes.\n\nUsar um sistema de arquivos corrompido pode causar perda ou corrupção de dados. Você deve verificar o(s) volume(s) favorito(s) do sistema afetado(s) para encontrar erros (clique com o botão direito em cada um deles no VeraCrypt e selecione 'Reparar Sistema de Arquivos').</entry> <entry lang="pt-br" key="FILESYS_REPAIR_CONFIRM_BACKUP">Aviso: Reparar um sistema de arquivos danificado usando a ferramenta 'chkdsk' da Microsoft pode causar perda de arquivos nas áreas danificadas. Assim sendo, é recomendado que você primeiro faça backup dos arquivos armazenados no volume VeraCrypt para outro, em bom estado.\n\nDeseja reparar o sistema de arquivos agora?</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="pt-br" key="MOUNTED_CONTAINER_FORCED_READ_ONLY">O volume '%s' foi montado como somente leitura porque o acesso de gravação foi negado.\n\nCertifique-se de que as permissões de segurança do arquivo do contêiner permitem a gravação no arquivo (clique com o botão direito no contêiner e selecione Propriedades > Segurança).\n\nObserve que, devido a um problema do Windows, você pode ver este aviso mesmo após definir as permissões de segurança apropriadas. Isso não é causado por um erro do VeraCrypt. Uma solução possível é mover seu contêiner para, por exemplo, sua pasta 'Documentos'.\n\nSe você pretende manter seu volume como somente leitura, configure o atributo somente leitura do contêiner (clique com o botão direito no contêiner e selecione Propriedades > Somente leitura), o que suprimirá este aviso.</entry> <entry lang="pt-br" key="MOUNTED_DEVICE_FORCED_READ_ONLY">O volume '%s' foi montado como somente-leitura porque o acesso de gravação foi negado.\n\nCertifique-se de que nenhum outro aplicativo (por exemplo, um software antivírus) está acessando a partição/dispositivo em que o volume está hospedado.</entry> <entry lang="pt-br" key="MOUNTED_DEVICE_FORCED_READ_ONLY_WRITE_PROTECTION">O volume '%s' foi montado como somente-leitura porque o sistema operacional informa que o dispositivo principal está protegido contra gravação.\n\nNote que alguns drivers personalizados de chipset causam o falso reconhecimento de mídias graváveis como protegidas contra gravação. Este problema não é causado pelo VeraCrypt. É possível resolvê-lo atualizando ou desinstalando qualquer driver personalizado de chipset que esteja atualmente instalado em seu sistema.</entry> - <entry lang="en" key="LIMIT_ENC_THREAD_POOL_NOTE">Note that the Hyper-Threading technology provides multiple logical cores per a single physical core. When Hyper Threading is enabled, the number selected above represents the number of logical processors/cores.</entry> - <entry lang="en" key="NUMBER_OF_THREADS">%d threads</entry> - <entry lang="en" key="DISABLED_HW_AES_AFFECTS_PERFORMANCE">Note that hardware-accelerated AES is disabled, which will affect benchmark results (worse performance).\n\nTo enable hardware acceleration, select 'Settings' > 'Performance' and enable the corresponding option.</entry> - <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="pt-br" key="LIMIT_ENC_THREAD_POOL_NOTE">Observe que a tecnologia Hyper-Threading fornece múltiplos núcleos lógicos por um único núcleo físico. Quando o Hyper-Threading está ativado, o número selecionado acima representa o número de processadores/núcleos lógicos.</entry> + <entry lang="pt-br" key="NUMBER_OF_THREADS">%d threads</entry> + <entry lang="pt-br" key="DISABLED_HW_AES_AFFECTS_PERFORMANCE">Observe que a aceleração de hardware para AES está desativada, o que afetará os resultados do benchmark (desempenho inferior).\n\nPara ativar a aceleração de hardware, selecione 'Configurações' > 'Desempenho' e habilite a opção correspondente.</entry> + <entry lang="pt-br" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">Observe que o número de threads está atualmente limitado, o que afetará os resultados do benchmark (desempenho inferior).\n\nPara utilizar todo o potencial do(s) processador(es), selecione 'Configurações' > 'Desempenho' e desative a opção correspondente.</entry> <entry lang="pt-br" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">Você deseja que o VeraCrypt tente desabilitar a proteção contra gravação do(a) dispositivo/partição?</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_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="pt-br" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">AVISO: Esta configuração pode degradar o desempenho.\n\nTem certeza de que deseja usar esta configuração?</entry> + <entry lang="pt-br" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Aviso: Volume VeraCrypt desmontado automaticamente</entry> + <entry lang="pt-br" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Antes de remover fisicamente ou desligar um dispositivo contendo um volume montado, você deve sempre desmontar o volume no VeraCrypt primeiro.\n\nDesmontagens espontâneas inesperadas geralmente são causadas por um cabo, unidade (case), etc. com falha intermitente.</entry> + <entry lang="pt-br" key="UNSUPPORTED_TRUECRYPT_FORMAT">Este volume foi criado com o TrueCrypt %x.%x, mas o VeraCrypt suporta apenas volumes TrueCrypt criados com as séries TrueCrypt 6.x/7.x.</entry> <entry lang="pt-br" key="TEST">Testar</entry> @@ -1379,9 +1379,9 @@ <entry lang="pt-br" key="TRIPLE_DOT_GLYPH_ELLIPSIS">…</entry> - <entry lang="en" key="IDC_BOOT_LOADER_CACHE_PIM">Include &PIM when caching pre-boot authentication password</entry> - <entry lang="en" key="IDC_PREF_CACHE_PIM">Include PIM when caching a password</entry> - <entry lang="en" key="IDC_SHOW_DISCONNECTED_NETWORK_DRIVES">Make disconnected network drives available for mounting</entry> - <entry lang="en" key="PASSWORD_UTF8_TOO_LONG">The entered password is too long: its UTF-8 representation exceeds %d bytes.</entry> - <entry lang="en" key="PASSWORD_UTF8_INVALID">The entered password contains Unicode characters that couldn't be converted to UTF-8 representation.</entry> - <entry lang="en" key="INIT_DLL">Error: Failed to load a system library.</entry> - <entry lang="en" key="ERR_EXFAT_INVALID_VOLUME_SIZE">The volume file size specified in the command line is incompatible with selected exFAT filesystem.</entry> + <entry lang="pt-br" key="IDC_BOOT_LOADER_CACHE_PIM">Incluir &PIM ao armazenar em cache a senha de autenticação pré-boot</entry> + <entry lang="pt-br" key="IDC_PREF_CACHE_PIM">Incluir PIM ao armazenar uma senha em cache</entry> + <entry lang="pt-br" key="IDC_SHOW_DISCONNECTED_NETWORK_DRIVES">Tornar unidades de rede desconectadas disponíveis para montagem</entry> + <entry lang="pt-br" key="PASSWORD_UTF8_TOO_LONG">A senha inserida é muito longa: sua representação UTF-8 excede %d bytes.</entry> + <entry lang="pt-br" key="PASSWORD_UTF8_INVALID">A senha inserida contém caracteres Unicode que não puderam ser convertidos para a representação UTF-8.</entry> + <entry lang="pt-br" key="INIT_DLL">Erro: Falha ao carregar uma biblioteca do sistema.</entry> + <entry lang="pt-br" key="ERR_EXFAT_INVALID_VOLUME_SIZE">O tamanho do arquivo do volume especificado na linha de comando é incompatível com o sistema de arquivos exFAT selecionado.</entry> <entry lang="pt-br" key="IDT_ENTROPY_BAR">Aleatoriedade Coletada dos Movimentos do Mouse</entry> @@ -1389,8 +1389,8 @@ <entry lang="pt-br" key="VOLUME_ID">ID de Volume</entry> - <entry lang="en" key="IDC_FAVORITE_USE_VOLUME_ID">Use Volume ID to mount favorite</entry> - <entry lang="en" key="VOLUME_ID_INVALID">The Volume ID value is invalid</entry> - <entry lang="en" key="VOLUME_ID_NOT_FOUND">No Volume with the specified ID was found on the system</entry> - <entry lang="en" key="IDPM_COPY_VALUE_TO_CLIPBOARD">Copy Value to Clipboard...</entry> - <entry lang="en" key="IDC_DISABLE_BOOT_LOADER_PIM_PROMPT">Do not request PIM in the pre-boot authentication screen (PIM value is stored unencrypted on disk)</entry> - <entry lang="en" key="DISABLE_BOOT_LOADER_PIM_PROMPT">WARNING: Please keep in mind that if you enable this option, the PIM value will be stored unencrypted on the disk.\n\nAre you sure you want to enable this option?</entry> + <entry lang="pt-br" key="IDC_FAVORITE_USE_VOLUME_ID">Usar ID do Volume para montar favorito</entry> + <entry lang="pt-br" key="VOLUME_ID_INVALID">O valor do ID do Volume é inválido</entry> + <entry lang="pt-br" key="VOLUME_ID_NOT_FOUND">Nenhum Volume com o ID especificado foi encontrado no sistema</entry> + <entry lang="pt-br" key="IDPM_COPY_VALUE_TO_CLIPBOARD">Copiar valor para a área de transferência...</entry> + <entry lang="pt-br" key="IDC_DISABLE_BOOT_LOADER_PIM_PROMPT">Não solicitar PIM na tela de autenticação pré-boot (o valor do PIM será armazenado sem criptografia no disco)</entry> + <entry lang="pt-br" key="DISABLE_BOOT_LOADER_PIM_PROMPT">AVISO: Lembre-se de que, se você ativar esta opção, o valor do PIM será armazenado sem criptografia no disco.\n\nTem certeza de que deseja ativar esta opção?</entry> <entry lang="pt-br" key="PIM_TOO_BIG">O valor máximo do Multiplicador de Iterações Pessoais (PIM) é 2147468.</entry> @@ -1404,48 +1404,48 @@ <entry lang="pt-br" key="PRE-BOOT">Pré-inicialização</entry> - <entry lang="en" key="RESCUE_DISK_EFI_INFO">Before you can encrypt the partition, you must create a VeraCrypt Rescue Disk (VRD), which serves the following purposes:\n\n- If the VeraCrypt Boot Loader, master key, or other critical data gets damaged, the VRD allows you to restore it (note, however, that you will still have to enter the correct password then).\n\n- If Windows gets damaged and cannot start, the VRD allows you to permanently decrypt the partition before Windows starts.\n\n- The VRD will contain a backup of the present EFI boot loader and will allow you to restore it if necessary.\n\nThe VeraCrypt Rescue Disk ZIP image will be created in the location specified below.</entry> - <entry lang="en" key="RESCUE_DISK_EFI_EXTRACT_INFO">The Rescue Disk ZIP image has been created and stored in this file:\n%s\n\nNow you need to extract it to a USB stick that is formatted as FAT/FAT32.\n\n%lsAfter you create the Rescue Disk, click Next to verify that it has been correctly created.</entry> - <entry lang="en" key="RESCUE_DISK_EFI_EXTRACT_INFO_NO_CHECK">The Rescue Disk ZIP image has been created and stored in this file:\n%s\n\nNow you should either extract the image to a USB stick that is formatted as FAT/FAT32 or move it to a safe location for later use.\n\n%lsClick Next to continue.</entry> - <entry lang="en" key="RESCUE_DISK_EFI_EXTRACT_INFO_NOTE">IMPORTANT: Note that the zip file must be extracted directly to the root of the USB stick. For example, if the drive letter of the USB stick is E: then extracting the zip file should create a folder E:\\EFI on the USB stick.\n\n</entry> - <entry lang="en" key="RESCUE_DISK_EFI_CHECK_FAILED">Cannot verify that the Rescue Disk has been correctly extracted.\n\nIf you have extracted the Rescue Disk, please eject and reinsert the USB stick; then click Next to try again. If this does not help, please try another USB stick and/or another ZIP software.\n\nIf you have not extracted the Rescue Disk yet, please do so, and then click Next.\n\nIf you attempted to verify a VeraCrypt Rescue Disk created before you started this wizard, please note that such Rescue Disk cannot be used, because it was created for a different master key. You need to extract the newly generated Rescue Disk ZIP image.</entry> - <entry lang="en" key="RESCUE_DISK_EFI_NON_WIZARD_CHECK_FAILED">Cannot verify that the Rescue Disk has been correctly extracted.\n\nIf you have extracted the Rescue Disk image to a USB stick, please eject it and reinsert it; then try again. If this does not help, please try other ZIP software and/or medium.\n\nIf you attempted to verify a VeraCrypt Rescue Disk created for a different master key, password, salt, etc., please note that such Rescue Disk will always fail this verification. To create a new Rescue Disk fully compatible with your current configuration, select 'System' > 'Create Rescue Disk'.</entry> - <entry lang="en" key="RESCUE_DISK_EFI_NON_WIZARD_CREATION">The Rescue Disk image has been created and stored in this file:\n%s\n\nNow you need to extract the Rescue Disk image to a USB stick that is formatted as FAT/FAT32.\n\nIMPORTANT: Note that the zip file must be extracted directly to the root of the USB stick. For example, if the drive letter of the USB stick is E: then extracting the zip file should create a folder E:\\EFI on the USB stick.\n\nAfter you create the Rescue Disk, select 'System' > 'Verify Rescue Disk' to verify that it has been correctly created.</entry> - <entry lang="en" key="IDC_SECURE_DESKTOP_PASSWORD_ENTRY">Use Secure Desktop for password entry</entry> - <entry lang="en" key="ERR_REFS_INVALID_VOLUME_SIZE">The volume file size specified in the command line is incompatible with selected ReFS filesystem.</entry> - <entry lang="en" key="IDC_EDIT_DCSPROP">Edit Boot Loader Configuration</entry> - <entry lang="en" key="IDC_SHOW_PLATFORMINFO">Display EFI Platform Information</entry> - <entry lang="en" key="BOOT_LOADER_CONFIGURATION_FILE">Boot Loader Configuration File</entry> - <entry lang="en" key="EFI_PLATFORM_INFORMATION">EFI Platform Information</entry> - <entry lang="en" key="EDIT_DCSPROP_FOR_ADVANCED_ONLY">WARNING: Inexperienced users should never attempt to manually edit boot loader configurations.\n\nContinue?</entry> - <entry lang="en" key="DCSPROP_XML_VALIDATION_FAILED">WARNING: Failed to validate the XML format of the Boot Loader configuration. Please check your modifications.</entry> + <entry lang="pt-br" key="RESCUE_DISK_EFI_INFO">Antes de você poder criptografar a partição, é necessário criar um Disco de Resgate VeraCrypt (VRD), que serve para os seguintes propósitos:\n\n- Se o carregador de inicialização do VeraCrypt, a chave mestra ou outros dados críticos forem danificados, o VRD permite restaurá-los (note que você ainda precisará inserir a senha correta).\n\n- Se o Windows for danificado e não puder ser iniciado, o VRD permite descriptografar permanentemente a partição antes que o Windows seja iniciado.\n\n- O VRD conterá um backup do carregador de inicialização EFI atual e permitirá restaurá-lo, se necessário.\n\nA imagem ZIP do Disco de Resgate VeraCrypt será criada no local especificado abaixo.</entry> + <entry lang="pt-br" key="RESCUE_DISK_EFI_EXTRACT_INFO">A imagem ZIP do Disco de Resgate foi criada e armazenada neste arquivo:\n%s\n\nAgora você precisa extraí-la para um pendrive formatado como FAT/FAT32.\n\n%lsDepois de criar o Disco de Resgate, clique em Avançar para verificar se ele foi criado corretamente.</entry> + <entry lang="pt-br" key="RESCUE_DISK_EFI_EXTRACT_INFO_NO_CHECK">A imagem ZIP do Disco de Resgate foi criada e armazenada neste arquivo:\n%s\n\nAgora você deve extrair a imagem para um pendrive formatado como FAT/FAT32 ou movê-la para um local seguro para uso futuro.\n\n%lsClique em Avançar para continuar.</entry> + <entry lang="pt-br" key="RESCUE_DISK_EFI_EXTRACT_INFO_NOTE">IMPORTANTE: Observe que o arquivo ZIP deve ser extraído diretamente na raiz do pendrive. Por exemplo, se a letra do drive do pendrive for E:, extrair o arquivo ZIP deve criar uma pasta E:\\EFI no pendrive.\n\n</entry> + <entry lang="pt-br" key="RESCUE_DISK_EFI_CHECK_FAILED">Não foi possível verificar se o Disco de Resgate foi corretamente extraído.\n\nSe você extraiu o Disco de Resgate, remova e reinsira o pendrive; em seguida, clique em Avançar para tentar novamente. Se isso não ajudar, tente outro pendrive e/ou outro software de descompactação.\n\nSe você ainda não extraiu o Disco de Resgate, faça isso e clique em Avançar.\n\nSe você tentou verificar um Disco de Resgate VeraCrypt criado antes de iniciar este assistente, observe que tal Disco de Resgate não pode ser usado, pois foi criado para uma chave mestra diferente. Você precisa extrair a nova imagem ZIP do Disco de Resgate gerado.</entry> + <entry lang="pt-br" key="RESCUE_DISK_EFI_NON_WIZARD_CHECK_FAILED">Não foi possível verificar se o Disco de Resgate foi corretamente extraído.\n\nSe você extraiu a imagem do Disco de Resgate para um pendrive, remova-o e reinsira-o; depois tente novamente. Se isso não ajudar, experimente outro software de descompactação e/ou outro dispositivo.\n\nSe você tentou verificar um Disco de Resgate VeraCrypt criado para uma chave mestra, senha, salt, etc., diferentes, observe que esse Disco de Resgate sempre falhará nesta verificação. Para criar um novo Disco de Resgate totalmente compatível com sua configuração atual, selecione 'Sistema' > 'Criar Disco de Resgate'.</entry> + <entry lang="pt-br" key="RESCUE_DISK_EFI_NON_WIZARD_CREATION">A imagem do Disco de Resgate foi criada e armazenada neste arquivo:\n%s\n\nAgora você precisa extrair a imagem do Disco de Resgate para um pendrive formatado como FAT/FAT32.\n\nIMPORTANTE: Observe que o arquivo ZIP deve ser extraído diretamente na raiz do pendrive. Por exemplo, se a letra do drive do pendrive for E:, extrair o arquivo ZIP deve criar uma pasta E:\\EFI no pendrive.\n\nDepois de criar o Disco de Resgate, selecione 'Sistema' > 'Verificar Disco de Resgate' para verificar se ele foi criado corretamente.</entry> + <entry lang="pt-br" key="IDC_SECURE_DESKTOP_PASSWORD_ENTRY">Usar Área de Trabalho Segura para entrada de senha</entry> + <entry lang="pt-br" key="ERR_REFS_INVALID_VOLUME_SIZE">O tamanho do arquivo do volume especificado na linha de comando é incompatível com o sistema de arquivos ReFS selecionado.</entry> + <entry lang="pt-br" key="IDC_EDIT_DCSPROP">Editar Configuração do Carregador de Inicialização</entry> + <entry lang="pt-br" key="IDC_SHOW_PLATFORMINFO">Exibir Informações da Plataforma EFI</entry> + <entry lang="pt-br" key="BOOT_LOADER_CONFIGURATION_FILE">Arquivo de Configuração do Carregador de Inicialização</entry> + <entry lang="pt-br" key="EFI_PLATFORM_INFORMATION">Informações da Plataforma EFI</entry> + <entry lang="pt-br" key="EDIT_DCSPROP_FOR_ADVANCED_ONLY">AVISO: Usuários inexperientes nunca devem tentar editar manualmente as configurações do carregador de inicialização.\n\nContinuar?</entry> + <entry lang="pt-br" key="DCSPROP_XML_VALIDATION_FAILED">AVISO: Falha ao validar o formato XML da configuração do Carregador de Inicialização. Verifique suas modificações.</entry> <entry lang="pt-br" key="IDT_ADVANCED_OPTIONS">Opções Avançadas</entry> - <entry lang="en" key="AFTER_UPGRADE_RESCUE_DISK">It is strongly recommended that you create a new VeraCrypt Rescue Disk (which will contain the new version of the VeraCrypt Boot Loader) by selecting 'System' > 'Create Rescue Disk'.\nDo you want to do it now?</entry> - <entry lang="en" key="IDC_ALLOW_TRIM_NONSYS_SSD">Allow TRIM command for non-system SSD partition/drive</entry> - <entry lang="en" key="IDC_BLOCK_SYSENC_TRIM">Block TRIM command on system partition/drive</entry> - <entry lang="en" key="WINDOWS_EFI_BOOT_LOADER_MISSING">ERROR: Windows EFI system loader could not be located on the disk. Operation will be aborted.</entry> - <entry lang="en" key="SYSENC_EFI_UNSUPPORTED_SECUREBOOT">It is currently not possible to encrypt a system if SecureBoot is enabled and if VeraCrypt custom keys are not loaded into the machine firmware. SecureBoot needs to be disabled in the BIOS configuration in order to allow system encryption to proceed.</entry> - <entry lang="en" key="PASSWORD_PASTED_TRUNCATED">Pasted text truncated because the password maximum length is %d characters</entry> - <entry lang="en" key="PASSWORD_MAXLENGTH_REACHED">Password already reached its maximum length of %d characters.\nNo additional character is allowed.</entry> + <entry lang="pt-br" key="AFTER_UPGRADE_RESCUE_DISK">É altamente recomendável que você crie um novo Disco de Resgate VeraCrypt (que conterá a nova versão do Carregador de Inicialização VeraCrypt) selecionando 'Sistema' > 'Criar Disco de Resgate'.\nDeseja fazer isso agora?</entry> + <entry lang="pt-br" key="IDC_ALLOW_TRIM_NONSYS_SSD">Permitir comando TRIM para partição/unidade SSD não-sistema</entry> + <entry lang="pt-br" key="IDC_BLOCK_SYSENC_TRIM">Bloquear comando TRIM na partição/unidade do sistema</entry> + <entry lang="pt-br" key="WINDOWS_EFI_BOOT_LOADER_MISSING">ERRO: O carregador do sistema EFI do Windows não pôde ser localizado no disco. A operação será abortada.</entry> + <entry lang="pt-br" key="SYSENC_EFI_UNSUPPORTED_SECUREBOOT">Atualmente não é possível criptografar um sistema se o SecureBoot estiver ativado e as chaves personalizadas do VeraCrypt não estiverem carregadas no firmware da máquina. O SecureBoot precisa ser desativado na configuração do BIOS para permitir que a criptografia do sistema prossiga.</entry> + <entry lang="pt-br" key="PASSWORD_PASTED_TRUNCATED">Texto colado truncado porque o comprimento máximo da senha é de %d caracteres.</entry> + <entry lang="pt-br" key="PASSWORD_MAXLENGTH_REACHED">A senha já atingiu seu comprimento máximo de %d caracteres.\nNenhum caractere adicional é permitido.</entry> <entry lang="pt-br" key="IDC_SELECT_LANGUAGE_LABEL">Selecione o idioma a ser utilizado durante a instalação:</entry> - <entry lang="en" key="VOLUME_TOO_LARGE_FOR_HOST">ERROR: The size of the file container is larger than the available free space on disk.</entry> - <entry lang="en" key="IDC_ALLOW_WINDOWS_DEFRAG">Allow Windows Disk Defragmenter to defragment non-system partition/drive</entry> - <entry lang="en" key="CONFIRM_ALLOW_WINDOWS_DEFRAG">WARNING: Defragmenting non-system partitions/drives may leak metadata about their content or cause issues with hidden volumes they may contain.\n\nContinue?</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="pt-br" key="VOLUME_TOO_LARGE_FOR_HOST">ERRO: O tamanho do contêiner de arquivo é maior que o espaço livre disponível no disco.</entry> + <entry lang="pt-br" key="IDC_ALLOW_WINDOWS_DEFRAG">Permitir que o Desfragmentador de Disco do Windows desfragmente partições/unidades que não sejam do sistema</entry> + <entry lang="pt-br" key="CONFIRM_ALLOW_WINDOWS_DEFRAG">AVISO: Desfragmentar partições/unidades que não sejam do sistema pode expor metadados sobre seu conteúdo ou causar problemas com volumes ocultos que possam conter.\n\nContinuar?</entry> + <entry lang="pt-br" key="VIRTUAL_DEVICE">Dispositivo Virtual</entry> + <entry lang="pt-br" key="MOUNTED_VOLUME_NOT_ASSOCIATED">O volume montado selecionado não está associado à sua letra de unidade no Windows e, portanto, não pode ser aberto no Windows Explorer.</entry> + <entry lang="pt-br" key="IDC_CLEAR_KEYS_ON_NEW_DEVICE_INSERTION">Limpar chaves de criptografia da memória se um novo dispositivo for inserido</entry> + <entry lang="pt-br" key="CLEAR_KEYS_ON_DEVICE_INSERTION_WARNING">NOTAS IMPORTANTES:\n - Lembre-se de que esta opção não persistirá após um desligamento/reinicialização, então você precisará selecioná-la novamente na próxima inicialização do sistema.\n\n - Com esta opção ativada, após conectar um novo dispositivo, a máquina irá congelar e, eventualmente, travar com uma tela azul (BSOD), pois o Windows não conseguirá acessar o disco criptografado após as chaves serem limpas da memória.\n</entry> <entry lang="pt-br" key="STARTING">Conectando</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="en" key="IDT_BENCHMARK">Benchmark:</entry> - <entry lang="en" key="IDC_DISABLE_MOUNT_MANAGER">Only create virtual device without mounting on selected drive letter</entry> - <entry lang="en" key="LEGACY_PASSWORD_UTF8_TOO_LONG">The entered password is too long: its UTF-8 representation exceeds 64 bytes.</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="pt-br" key="IDC_ENABLE_CPU_RNG">Usar o gerador de números aleatórios de hardware da CPU como fonte adicional de entropia</entry> + <entry lang="pt-br" key="IDC_USE_LEGACY_MAX_PASSWORD_LENGTH">Usar o comprimento máximo de senha legado (64 caracteres)</entry> + <entry lang="pt-br" key="IDC_ENABLE_RAM_ENCRYPTION">Ativar criptografia de chaves e senhas armazenadas na RAM</entry> + <entry lang="pt-br" key="IDT_BENCHMARK">Benchmark:</entry> + <entry lang="pt-br" key="IDC_DISABLE_MOUNT_MANAGER">Criar apenas dispositivo virtual sem montar na letra de unidade selecionada</entry> + <entry lang="pt-br" key="LEGACY_PASSWORD_UTF8_TOO_LONG">A senha inserida é muito longa: sua representação em UTF-8 excede 64 bytes.</entry> + <entry lang="pt-br" key="HIDDEN_CREDS_SAME_AS_OUTER">O volume oculto não pode ter a mesma senha, PIM e arquivos-chave que o volume externo</entry> + <entry lang="pt-br" key="SYSENC_BITLOCKER_CONFLICT">O VeraCrypt não suporta criptografar uma unidade do sistema que já esteja criptografada pelo BitLocker.</entry> + <entry lang="pt-br" key="IDC_UPDATE_BOOTLOADER_ON_SHUTDOWN">Corrigir automaticamente problemas de configuração de inicialização que podem impedir o Windows de iniciar</entry> + <entry lang="pt-br" key="IDC_FORCE_NEXT_BOOT_VERACRYPT">Forçar a máquina a inicializar no VeraCrypt na próxima inicialização</entry> + <entry lang="pt-br" key="IDC_FORCE_VERACRYPT_BOOT_ENTRY">Forçar a presença da entrada do VeraCrypt no menu de inicialização do firmware EFI</entry> + <entry lang="pt-br" key="IDC_FORCE_VERACRYPT_FIRST_BOOT_ENTRY">Forçar a entrada do VeraCrypt como a primeira no menu de inicialização do firmware EFI</entry> + <entry lang="pt-br" key="RAM_ENCRYPTION_DISABLE_HIBERNATE">AVISO: A criptografia de RAM não é compatível com os recursos de Hibernação e Inicialização Rápida do Windows. O VeraCrypt precisará desativá-los antes de ativar a criptografia de RAM.\n\nContinuar?</entry> + <entry lang="pt-br" key="CONFIRM_DISABLE_FAST_STARTUP">AVISO: A Inicialização Rápida do Windows está ativada e sabe-se que causa problemas ao trabalhar com volumes do VeraCrypt. Recomenda-se desativá-la para maior segurança e usabilidade.\n\nVocê deseja desativar a Inicialização Rápida do Windows?</entry> <entry lang="pt-br" key="QUICK_FORMAT_HELP">Para permitir que seu sistema operacional monte seu novo volume, ele deve ser formatado com um sistema de arquivos. Por favor, selecione um tipo de sistema de arquivos.\n\nSe o seu volume for hospedado em um dispositivo ou partição, você pode usar a 'Formatação rápida' para ignorar a criptografia do espaço livre do volume.</entry> @@ -1455,6 +1455,6 @@ <entry lang="pt-br" key="TASKICON_PREF_OPEN_VOL">Abrir Volumes Montados</entry> - <entry lang="pt-br" key="TASKICON_PREF_DISMOUNT_VOL">Desmontar Volumes Montados</entry> + <entry lang="pt-br" key="TASKICON_PREF_UNMOUNT_VOL">Desmontar Volumes Montados</entry> <entry lang="pt-br" key="DISK_FREE">Espaço livre disponível: {0}</entry> <entry lang="pt-br" key="VOLUME_SIZE_HELP">Por favor, especifique o tamanho do contêiner a ser criado. Observe que o tamanho mínimo possível de um volume é 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="pt-br" key="LINUX_CONFIRM_INNER_VOLUME_CALC">AVISO: Você selecionou um sistema de arquivos diferente de FAT para o volume externo.\nObserve que, nesse caso, o VeraCrypt não pode calcular o tamanho máximo exato permitido para o volume oculto e usará apenas uma estimativa, que pode estar incorreta.\nAssim, é sua responsabilidade usar um valor adequado para o tamanho do volume oculto para que ele não se sobreponha ao volume externo.\n\nDeseja continuar usando o sistema de arquivos selecionado para o volume externo?</entry> <entry lang="pt-br" key="LINUX_PREF_TAB_SECURITY">Segurança</entry> @@ -1481,26 +1481,26 @@ <entry lang="pt-br" key="LINUX_SYSTEM_ENC_PW_LENGTH_NOTE">A senha de Encriptação do Sistema tem mais de {0} caracteres.</entry> - <entry lang="en" key="LINUX_MOUNT_SYSTEM_ENC_PREBOOT">Mount partition &using system encryption (preboot authentication)</entry> - <entry lang="en" key="LINUX_DO_NOT_MOUNT">Do &not mount</entry> - <entry lang="en" key="LINUX_MOUNT_AT_DIR">Mount at directory:</entry> - <entry lang="en" key="LINUX_SELECT">Se&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="pt-br" key="LINUX_MOUNT_SYSTEM_ENC_PREBOOT">Montar partição &usando criptografia do sistema (autenticação pré-inicialização)</entry> + <entry lang="pt-br" key="LINUX_DO_NOT_MOUNT">Não &montar</entry> + <entry lang="pt-br" key="LINUX_MOUNT_AT_DIR">Montar no diretório:</entry> + <entry lang="pt-br" key="LINUX_SELECT">Se&lecionar...</entry> + <entry lang="pt-br" key="LINUX_UNMOUNT_ALL_WHEN">Desmontar Todos os Volumes Quando</entry> + <entry lang="pt-br" key="LINUX_ENTERING_POWERSAVING">O sistema estiver entrando no modo de economia de energia</entry> + <entry lang="pt-br" key="LINUX_LOGIN_ACTION">Ações a Realizar ao Fazer Login</entry> + <entry lang="pt-br" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Fechar todas as janelas do Explorador de Arquivos do volume que está sendo desmontado</entry> + <entry lang="pt-br" key="LINUX_HOTKEYS">Teclas de atalho</entry> + <entry lang="pt-br" key="LINUX_SYSTEM_HOTKEYS">Teclas de Atalho do Sistema</entry> + <entry lang="pt-br" key="LINUX_SOUND_NOTIFICATION">Reproduzir som de notificação do sistema após montar/desmontar</entry> + <entry lang="pt-br" key="LINUX_CONFIRM_AFTER_UNMOUNT">Exibir mensagem de confirmação após desmontar</entry> + <entry lang="pt-br" key="LINUX_VC_QUITS">VeraCrypt encerrado</entry> + <entry lang="pt-br" key="LINUX_OPEN_FINDER">Abrir janela do Finder para o volume montado com sucesso</entry> + <entry lang="pt-br" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">Observe que esta configuração só terá efeito se o uso dos serviços criptográficos do kernel estiver desativado.</entry> + <entry lang="pt-br" key="LINUX_DISABLE_KERNEL_CRYPT_CONFIRM">Desativar o uso dos serviços criptográficos do kernel pode degradar o desempenho.\n\nTem certeza?</entry> + <entry lang="pt-br" key="LINUX_KERNEL_CRYPT_OPTION_CHANGE_MOUNTED_HINT">Observe que desativar esta opção pode não ter efeito sobre volumes montados usando serviços criptográficos do kernel.</entry> + <entry lang="pt-br" key="LINUX_REMOUNT_BECAUSEOF_SETTING">Observe que qualquer volume atualmente montado precisará ser remontado para usar esta configuração.</entry> + <entry lang="pt-br" key="LINUX_UNKNOWN_EXC_OCCURRED">Ocorreu uma exceção desconhecida.</entry> + <entry lang="pt-br" key="LINUX_FIRST_AID">"O Utilitário de Disco será iniciado após você pressionar 'OK'.\n\nPor favor, selecione seu volume na janela do Utilitário de Disco e pressione o botão 'Verificar Disco' ou 'Reparar Disco' na página 'Primeiros Socorros'.</entry> <entry lang="pt-br" key="LINUX_MOUNT_ALL_DEV">Montar Todos os Dispositivos</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="pt-br" key="LINUX_ERROR_LOADING_CONFIG">Erro ao carregar os arquivos de configuração localizados em </entry> + <entry lang="pt-br" key="LINUX_SELECT_FREE_SLOT">Por favor, selecione um slot de unidade livre da lista.</entry> + <entry lang="pt-br" key="LINUX_MESSAGE_ON_MOUNT_AGAIN">\n\nDeseja mostrar esta mensagem da próxima vez que montar um volume assim?</entry> <entry lang="pt-br" key="LINUX_WARNING">Aviso</entry> @@ -1508,137 +1508,140 @@ <entry lang="pt-br" key="LINUX_ONLY_TEXTMODE">Atualmente, esse recurso é compatível apenas no modo de texto.</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="pt-br" key="LINUX_FREE_SPACE_ON_DRIVE">Espaço livre na unidade {0}: {1}.</entry> + <entry lang="pt-br" key="LINUX_DYNAMIC_NOTICE">Observe que, se o seu sistema operacional não alocar arquivos desde o início do espaço livre, o tamanho máximo possível do volume oculto pode ser muito menor do que o tamanho do espaço livre no volume externo. Isso não é um erro no VeraCrypt, mas uma limitação do sistema operacional.</entry> + <entry lang="pt-br" key="LINUX_MAX_HIDDEN_SIZE">O tamanho máximo possível do volume oculto para este volume é {0}.</entry> <entry lang="pt-br" key="LINUX_OPEN_OUTER_VOL">Abrir volume externo</entry> <entry lang="pt-br" key="LINUX_OUTER_VOL_IS_MOUNTED">O volume externo foi criado e montado com êxito como '{0}'. Para este volume você deve agora copiar alguns arquivos de aparência sensível que você NÃO deseja ocultar. Os arquivos estarão lá para qualquer pessoa que o force a divulgar sua senha. Você revelará apenas a senha deste volume externo, não do volume oculto. Os arquivos que realmente lhe interessam serão armazenados no volume oculto, que será criado posteriormente. Ao terminar de copiar, clique em Avançar. Não desmonte o volume.\n\nNota: Depois de clicar em Avançar, o volume externo será analisado para determinar o tamanho da área ininterrupta de espaço livre cuja extremidade está alinhada com a extremidade do volume. Esta área acomodará o volume oculto, limitando seu tamanho máximo possível. O procedimento garante que nenhum dado no volume externo seja substituído pelo volume oculto.</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="pt-br" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">Erro: Você está tentando criptografar uma unidade do sistema.\n\nO VeraCrypt só pode criptografar uma unidade do sistema no Windows.</entry> + <entry lang="pt-br" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">Erro: Você está tentando criptografar uma partição do sistema.\n\nO VeraCrypt só pode criptografar partições do sistema no Windows.</entry> + <entry lang="pt-br" key="LINUX_WARNING_FORMAT_DESTROY_FS">AVISO: A formatação do dispositivo destruirá todos os dados no sistema de arquivos '{0}'.\n\nDeseja continuar?</entry> + <entry lang="pt-br" key="LINUX_MOUNTET_HINT">O sistema de arquivos do dispositivo selecionado está atualmente montado. Por favor, desmonte '{0}' antes de continuar.</entry> + <entry lang="pt-br" key="LINUX_HIDDEN_PASS_NO_DIFF">O volume oculto não pode ter a mesma senha, PIM e arquivos-chave que o volume externo.</entry> <entry lang="pt-br" key="LINUX_NOT_FAT_HINT">Por favor, observe que o volume não será formatado com um sistema de arquivos FAT e, portanto, pode ser necessário instalar drivers adicionais do sistema de arquivos em plataformas diferentes de {0}, os quais permitirão montar o volume.</entry> - <entry lang="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="pt-br" key="LINUX_VOL_DISMOUNTED">O volume {0} foi desmontado.</entry> + <entry lang="pt-br" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Erro: O volume oculto a ser criado é maior que {0} TB ({1} GB).\n\nSoluções possíveis:\n- Crie um contêiner/partição menor que {0} TB.\n</entry> + <entry lang="pt-br" key="LINUX_MAX_SIZE_HINT">- Use uma unidade com setores de 4096 bytes para poder criar volumes ocultos baseados em partição/dispositivo de até 16 TB.</entry> + <entry lang="pt-br" key="LINUX_DOT_LF">.\n</entry> + <entry lang="pt-br" key="LINUX_NOT_SUPPORTED"> (não suportado pelos componentes disponíveis nesta plataforma).\n</entry> + <entry lang="pt-br" key="LINUX_KERNEL_OLD">Seu sistema usa uma versão antiga do kernel Linux.\n\nDevido a um erro no kernel Linux, seu sistema pode parar de responder ao gravar dados em um volume VeraCrypt. Esse problema pode ser resolvido atualizando o kernel para a versão 2.6.24 ou posterior.</entry> + <entry lang="pt-br" key="LINUX_VOL_UNMOUNTED">O volume {0} foi desmontado.</entry> <entry lang="pt-br" key="LINUX_VOL_MOUNTED">O volume {0} foi montado.</entry> - <entry lang="en" key="LINUX_OOM">Out of memory.</entry> + <entry lang="pt-br" key="LINUX_OOM">Memória insuficiente.</entry> <entry lang="pt-br" key="LINUX_CANT_GET_ADMIN_PRIV">Falha ao obter privilégios de administrador</entry> <entry lang="pt-br" key="LINUX_COMMAND_GET_ERROR">O comando {0} retornou o erro {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="pt-br" key="LINUX_CMD_HELP">Ajuda da Linha de Comando do VeraCrypt</entry> + <entry lang="pt-br" key="LINUX_HIDDEN_FILES_PRESENT_IN_KEYFILE_PATH">\n\nAviso: Arquivos ocultos estão presentes em um caminho de arquivo-chave. Se você precisar usá-los como arquivos-chave, remova o ponto inicial dos nomes dos arquivos. Arquivos ocultos só são visíveis se ativados nas opções do sistema.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_DEVICESECTORSIZEMISMATCH">Incompatibilidade entre o tamanho do setor do dispositivo de armazenamento e o volume do VeraCrypt</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_ENCRYPTEDSYSTEMREQUIRED">Esta operação deve ser realizada apenas quando o sistema hospedado no volume estiver em execução.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_INSUFFICIENTDATA">Dados insuficientes disponíveis.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_KERNELCRYPTOSERVICETESTFAILED">Falha no teste de serviço criptográfico do kernel. O serviço criptográfico do seu kernel provavelmente não suporta volumes maiores que 2 TB.\n\nSoluções possíveis:\n- Atualize o kernel Linux para a versão 2.6.33 ou posterior.\n- Desative o uso dos serviços criptográficos do kernel (Configurações > Preferências > Integração do Sistema) ou use a opção 'nokernelcrypto' ao montar pela linha de comando.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_LOOPDEVICESETUPFAILED">Falha ao configurar um dispositivo de loop.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_MISSINGARGUMENT">Um argumento necessário está faltando.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_MISSINGVOLUMEDATA">Dados do volume ausentes.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_MOUNTPOINTREQUIRED">Ponto de montagem necessário.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_MOUNTPOINTUNAVAILABLE">O ponto de montagem já está em uso.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_PASSWORDEMPTY">Nenhuma senha ou arquivo de chave especificado.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_PASSWORDORKEYBOARDLAYOUTINCORRECT">\n\nObserve que senhas de autenticação pré-boot precisam ser digitadas no ambiente pré-boot, onde layouts de teclado não-EUA não estão disponíveis. Portanto, as senhas de autenticação pré-boot devem sempre ser digitadas usando o layout de teclado padrão dos EUA (caso contrário, a senha será digitada incorretamente na maioria dos casos). No entanto, observe que você NÃO precisa de um teclado físico dos EUA; basta alterar o layout do teclado no seu sistema operacional.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_PASSWORDORMOUNTOPTIONSINCORRECT">\n\nNota: Se você estiver tentando montar uma partição localizada em um drive de sistema criptografado sem autenticação pré-boot ou montar a partição do sistema criptografado de um sistema operacional que não está em execução, você pode fazê-lo selecionando 'Opções >' > 'Montar partição usando criptografia de sistema'.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_PASSWORDTOOLONG">A senha tem mais de {0} caracteres.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_PARTITIONDEVICEREQUIRED">Dispositivo de partição necessário.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_PROTECTIONPASSWORDINCORRECT">Senha incorreta para o volume oculto protegido ou o volume oculto não existe.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_PROTECTIONPASSWORDKEYFILESINCORRECT">Arquivo(s) de chave e/ou senha incorretos para o volume oculto protegido ou o volume oculto não existe.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_STRINGCONVERSIONFAILED">Caracteres inválidos encontrados.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_STRINGFORMATTEREXCEPTION">Erro ao processar a string formatada.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_TEMPORARYDIRECTORYFAILURE">Falha ao criar um arquivo ou diretório em um diretório temporário.\n\nCertifique-se de que o diretório temporário existe, que as permissões de segurança permitem o acesso e que há espaço suficiente no disco.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZEHIDDENVOLUMEPROTECTION">Erro: O drive usa um tamanho de setor diferente de 512 bytes.\n\nDevido a limitações dos componentes disponíveis na sua plataforma, volumes externos hospedados no drive não podem ser montados usando a proteção de volume oculto.\n\nPossíveis soluções:\n- Use um drive com setores de 512 bytes.\n- Crie um volume hospedado em arquivo (container) no drive.\n- Faça backup do conteúdo do volume oculto e, em seguida, atualize o volume externo.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZENOKERNELCRYPTO">Erro: O drive usa um tamanho de setor diferente de 512 bytes.\n\nDevido a limitações dos componentes disponíveis na sua plataforma, volumes em partições/dispositivos hospedados no drive só podem ser montados usando serviços criptográficos do kernel.\n\nPossíveis soluções:\n- Ative o uso dos serviços criptográficos do kernel (Preferências > Integração do Sistema).\n- Use um drive com setores de 512 bytes.\n- Crie um volume hospedado em arquivo (container) no drive.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">Erro: O drive usa um tamanho de setor diferente de 512 bytes.\n\nDevido a limitações dos componentes disponíveis na sua plataforma, volumes hospedados em partições/dispositivos não podem ser criados/usados no drive.\n\nPossíveis soluções:\n- Crie um volume hospedado em arquivo (container) no drive.\n- Use um drive com setores de 512 bytes.\n- Use o VeraCrypt em outra plataforma.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">O arquivo/dispositivo host já está em uso.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">Slot de volume indisponível.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">O VeraCrypt requer o OSXFUSE 2.5 ou superior.</entry> + <entry lang="pt-br" key="EXCEPTION_OCCURRED">Ocorreu uma exceção.</entry> <entry lang="pt-br" key="ENTER_PASSWORD">Digite a senha</entry> <entry lang="pt-br" key="ENTER_TC_VOL_PASSWORD">Digitar a Senha do Volume VeraCrypt</entry> - <entry lang="en" key="MOUNT">Mount</entry> + <entry lang="pt-br" key="MOUNT">Montar</entry> <entry lang="pt-br" key="MOUNT_POINT">Diretório de Montagem</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="pt-br" key="NO_VOLUMES_MOUNTED">Nenhum volume montado.</entry> + <entry lang="pt-br" key="OPEN_NEW_VOLUME">Selecionar um Novo Volume VeraCrypt</entry> + <entry lang="pt-br" key="PARAMETER_INCORRECT">Parâmetro incorreto</entry> + <entry lang="pt-br" key="SELECT_KEYFILES">Selecionar Arquivos-Chave</entry> + <entry lang="pt-br" key="START_TC">Iniciar VeraCrypt</entry> + <entry lang="pt-br" key="VOLUME_ALREADY_MOUNTED">O volume {0} já está montado.</entry> <entry lang="pt-br" key="UNKNOWN_OPTION">Opção desconhecida</entry> <entry lang="pt-br" key="VOLUME_LOCATION">Localização do Volume</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="pt-br" key="VOLUME_HOST_IN_USE">AVISO: O arquivo/dispositivo host {0} já está em uso!\n\nIgnorar isso pode causar resultados indesejados, incluindo instabilidade do sistema. Todos os aplicativos que possam estar usando o arquivo/dispositivo host devem ser fechados antes de montar o volume.\n\nContinuar a montagem?</entry> + <entry lang="pt-br" key="CANT_INSTALL_WITH_EXE_OVER_MSI">O VeraCrypt foi previamente instalado usando um pacote MSI e, portanto, não pode ser atualizado usando o instalador padrão.\n\nPor favor, use o pacote MSI para atualizar sua instalação do VeraCrypt.</entry> <entry lang="pt-br" key="IDC_USE_ALL_FREE_SPACE">Use todo o espaço livre disponível</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="pt-br" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">O VeraCrypt não pode ser atualizado porque a partição/unidade do sistema foi criptografada usando um algoritmo que não é mais suportado.\nPor favor, descriptografe seu sistema antes de atualizar o VeraCrypt e, em seguida, criptografe-o novamente.</entry> + <entry lang="pt-br" key="LINUX_EX2MSG_TERMINALNOTFOUND">Aplicativo de terminal suportado não foi encontrado, você precisa de xterm, konsole ou gnome-terminal (com dbus-x11).</entry> + <entry lang="pt-br" key="IDM_MOUNT_NO_CACHE">Montar Sem Cache</entry> + <entry lang="pt-br" key="EXPANDER_INFO">:: VeraCrypt Expander ::\n\nExpanda um volume VeraCrypt em tempo real sem reformatar\n\n\nTodos os tipos de volumes (arquivos de contêiner, discos e partições) formatados com NTFS são suportados. A única condição é que haja espaço livre suficiente na unidade ou dispositivo host do volume VeraCrypt.\n\nNão use este software para expandir um volume externo contendo um volume oculto, pois isso destruirá o volume oculto!\n</entry> + <entry lang="pt-br" key="IDC_STEPSEXPAND">1. Selecione o volume VeraCrypt a ser expandido\n2. Clique no botão 'Montar'</entry> <entry lang="pt-br" key="IDT_VOL_NAME">Volume: </entry> <entry lang="pt-br" key="IDT_FILE_SYS">Sistema de arquivos: </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="pt-br" key="IDT_CURRENT_SIZE">Tamanho atual: </entry> + <entry lang="pt-br" key="IDT_NEW_SIZE">Novo tamanho: </entry> + <entry lang="pt-br" key="IDT_NEW_SIZE_BOX_TITLE">Digite o novo tamanho do volume</entry> + <entry lang="pt-br" key="IDC_INIT_NEWSPACE">Preencher o novo espaço com dados aleatórios</entry> + <entry lang="pt-br" key="IDC_QUICKEXPAND">Expansão Rápida</entry> + <entry lang="pt-br" key="IDT_INIT_SPACE">Preencher novo espaço: </entry> + <entry lang="pt-br" key="EXPANDER_FREE_SPACE">%s de espaço livre disponível no dispositivo hospedeiro</entry> + <entry lang="pt-br" key="EXPANDER_HELP_DEVICE">Este é um volume VeraCrypt baseado em dispositivo.\n\nO novo tamanho do volume será escolhido automaticamente como o tamanho do dispositivo hospedeiro.</entry> + <entry lang="pt-br" key="EXPANDER_HELP_FILE">Por favor, especifique o novo tamanho do volume VeraCrypt (deve ser pelo menos %I64u KB maior que o tamanho atual).</entry> + <entry lang="pt-br" key="QUICK_EXPAND_WARNING">AVISO: Você deve usar a Expansão Rápida somente nos seguintes casos:\n\n1) O dispositivo onde o contenêiner de arquivos está localizado não contém dados sensíveis e você não precisa de negação plausível.\n2) O dispositivo onde o contenêiner de arquivos está localizado já foi criptografado de forma segura e completa.\n\nVocê tem certeza de que deseja usar a Expansão Rápida?</entry> + <entry lang="pt-br" key="EXPANDER_STATUS_TEXT">IMPORTANTE: Mova o mouse de forma o mais aleatória possível dentro desta janela. Quanto mais tempo você movê-lo, melhor. Isso aumenta significativamente a força criptográfica das chaves de criptografia. Depois, clique em 'Continuar' para expandir o volume.</entry> + <entry lang="pt-br" key="EXPANDER_STATUS_TEXT_LEGACY">Clique em 'Continuar' para expandir o volume.</entry> + <entry lang="pt-br" key="EXPANDER_FINISH_ERROR">Erro: a expansão do volume falhou.</entry> + <entry lang="pt-br" key="EXPANDER_FINISH_ABORT">Erro: operação abortada pelo usuário.</entry> + <entry lang="pt-br" key="EXPANDER_FINISH_OK">Concluído: O volume foi expandido com sucesso.</entry> + <entry lang="pt-br" key="EXPANDER_CANCEL_WARNING">Aviso: A expansão do volume está em andamento!\n\nInterromper agora pode resultar em danos ao volume.\n\nVocê realmente deseja cancelar?</entry> + <entry lang="pt-br" key="EXPANDER_STARTING_STATUS">Iniciando a expansão do volume ...\n</entry> + <entry lang="pt-br" key="EXPANDER_HIDDEN_VOLUME_ERROR">Um volume externo contendo um volume oculto não pode ser expandido, pois isso destrói o volume oculto.\n</entry> + <entry lang="pt-br" key="EXPANDER_SYSTEM_VOLUME_ERROR">Um volume de sistema VeraCrypt não pode ser expandido.</entry> + <entry lang="pt-br" key="EXPANDER_NO_FREE_SPACE">Espaço livre insuficiente para expandir o volume</entry> + <entry lang="pt-br" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">Aviso: O arquivo do contêiner é maior do que a área do volume VeraCrypt. Os dados além da área do volume VeraCrypt serão sobrescritos.\n\nVocê deseja continuar?</entry> + <entry lang="pt-br" key="EXPANDER_WARNING_FAT">Aviso: O volume VeraCrypt contém um sistema de arquivos FAT!\n\nSomente o volume VeraCrypt em si será expandido, mas não o sistema de arquivos.\n\nVocê deseja continuar?</entry> + <entry lang="pt-br" key="EXPANDER_WARNING_EXFAT">Aviso: O volume VeraCrypt contém um sistema de arquivos exFAT!\n\nSomente o volume VeraCrypt em si será expandido, mas não o sistema de arquivos.\n\nVocê deseja continuar?</entry> + <entry lang="pt-br" key="EXPANDER_WARNING_UNKNOWN_FS">Aviso: O volume VeraCrypt contém um sistema de arquivos desconhecido ou nenhum sistema de arquivos!\n\nSomente o volume VeraCrypt em si será expandido; o sistema de arquivos permanecerá inalterado.\n\nVocê deseja continuar?</entry> + <entry lang="pt-br" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">Novo tamanho do volume muito pequeno, deve ser pelo menos %I64u kB maior que o tamanho atual.</entry> + <entry lang="pt-br" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_LARGE">Novo tamanho do volume muito grande, espaço insuficiente na unidade hospedeira.</entry> + <entry lang="pt-br" key="EXPANDER_ERROR_MAX_FILE_SIZE_EXCEEDED">O tamanho máximo de arquivo permitido de %I64u MB na unidade hospedeira foi excedido.</entry> + <entry lang="pt-br" key="EXPANDER_ERROR_QUICKEXPAND_PRIVILEGES">Erro: Falha ao obter os privilégios necessários para habilitar a Expansão Rápida!\nPor favor, desmarque a opção 'Expansão Rápida' e tente novamente.</entry> + <entry lang="pt-br" key="EXPANDER_ERROR_MAX_VC_VOLUME_SIZE_EXCEEDED">Tamanho máximo do volume VeraCrypt de %I64u TB excedido!\n</entry> + <entry lang="pt-br" key="FULL_FORMAT">Formatação Completa</entry> + <entry lang="pt-br" key="FAST_CREATE">Criação Rápida</entry> + <entry lang="pt-br" key="WARN_FAST_CREATE">AVISO: Você deve usar a Criação Rápida apenas nos seguintes casos:\n\n1) O dispositivo não contém dados sensíveis e você não precisa de plausibilidade de negação.\n2) O dispositivo já foi totalmente criptografado com segurança.\n\nTem certeza de que deseja usar a Criação Rápida?</entry> + <entry lang="pt-br" key="IDC_ENABLE_EMV_SUPPORT">Ativar Suporte EMV</entry> + <entry lang="pt-br" key="COMMAND_APDU_INVALID">O comando APDU enviado para o cartão não é válido.</entry> + <entry lang="pt-br" key="EXTENDED_APDU_UNSUPPORTED">Comandos APDU estendidos não podem ser usados com o token atual.</entry> + <entry lang="pt-br" key="SCARD_MODULE_INIT_FAILED">Erro ao carregar a biblioteca WinSCard / PCSC.</entry> + <entry lang="pt-br" key="EMV_UNKNOWN_CARD_TYPE">O cartão no leitor não é um cartão EMV suportado.</entry> + <entry lang="pt-br" key="EMV_SELECT_AID_FAILED">Não foi possível selecionar o AID do cartão no leitor.</entry> + <entry lang="pt-br" key="EMV_ICC_CERT_NOTFOUND">O Certificado de Chave Pública ICC não foi encontrado no cartão.</entry> + <entry lang="pt-br" key="EMV_ISSUER_CERT_NOTFOUND">O Certificado de Chave Pública do Emissor não foi encontrado no cartão.</entry> + <entry lang="pt-br" key="EMV_CPLC_NOTFOUND">Os dados CPLC não foram encontrados no cartão EMV.</entry> + <entry lang="pt-br" key="EMV_PAN_NOTFOUND">Nenhum Número de Conta Primário (PAN) foi encontrado no cartão EMV.</entry> + <entry lang="pt-br" key="INVALID_EMV_PATH">O caminho EMV é inválido.</entry> + <entry lang="pt-br" key="EMV_KEYFILE_DATA_NOTFOUND">Não foi possível criar um arquivo de chave a partir dos dados do cartão EMV.\n\nFaltam os seguintes elementos:\n- Certificado de Chave Pública ICC.\n- Certificado de Chave Pública do Emissor.\n- Dados CPLC.</entry> + <entry lang="pt-br" key="SCARD_W_REMOVED_CARD">Nenhum cartão no leitor.\n\nCertifique-se de que o cartão está corretamente inserido.</entry> + <entry lang="pt-br" key="FORMAT_EXTERNAL_FAILED">O comando format.com do Windows falhou ao formatar o volume como NTFS/exFAT/ReFS: Erro 0x%.8X.\n\nTentando usar a API FormatEx do Windows.</entry> + <entry lang="pt-br" key="FORMATEX_API_FAILED">A API FormatEx do Windows falhou ao formatar o volume como NTFS/exFAT/ReFS.\n\nStatus de falha = %s.</entry> + <entry lang="pt-br" key="EXPANDER_WRITING_RANDOM_DATA">Gravando dados aleatórios no novo espaço ...\n</entry> + <entry lang="pt-br" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">Gravando cabeçalho de backup recriptografado ...\n</entry> + <entry lang="pt-br" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">Gravando cabeçalho principal recriptografado ...\n</entry> + <entry lang="pt-br" key="EXPANDER_WIPING_OLD_HEADER">Apagando cabeçalho de backup antigo ...\n</entry> + <entry lang="pt-br" key="EXPANDER_MOUNTING_VOLUME">Montando volume ...\n</entry> + <entry lang="pt-br" key="EXPANDER_UNMOUNTING_VOLUME">Desmontando volume ...\n</entry> + <entry lang="pt-br" key="EXPANDER_EXTENDING_FILESYSTEM">Expandindo o sistema de arquivos ...\n</entry> + <entry lang="pt-br" key="PARTIAL_SYSENC_MOUNT_READONLY">Aviso: A partição do sistema que você tentou montar não foi completamente criptografada. Como medida de segurança para evitar possíveis corrupções ou modificações indesejadas, o volume '%s' foi montado como somente leitura.</entry> + <entry lang="pt-br" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">Informações importantes sobre o uso de extensões de arquivos de terceiros</entry> + <entry lang="pt-br" key="IDC_DISABLE_MEMORY_PROTECTION">Desativar proteção de memória para compatibilidade com ferramentas de acessibilidade</entry> + <entry lang="pt-br" key="DISABLE_MEMORY_PROTECTION_WARNING">AVISO: Desativar a proteção de memória reduz significativamente a segurança. Ative esta opção SOMENTE se você depender de ferramentas de acessibilidade, como leitores de tela, para interagir com a interface do VeraCrypt.</entry> <entry lang="pt-br" 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="pt-br" key="LINUX_SELECT_SYS_DEFAULT_LANG">Selecionar o idioma padrão do sistema</entry> + <entry lang="pt-br" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">Para que a mudança de idioma tenha efeito, o VeraCrypt precisa ser reiniciado.</entry> + <entry lang="pt-br" key="ERR_XTS_MASTERKEY_VULNERABLE">AVISO: A chave mestra do volume é vulnerável a um ataque que compromete a segurança dos dados.\n\nPor favor, crie um novo volume e transfira os dados para ele.</entry> + <entry lang="pt-br" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">AVISO: A chave mestra do sistema criptografado é vulnerável a um ataque que compromete a segurança dos dados.\nPor favor, descriptografe a partição/unidade do sistema e, em seguida, criptografe-a novamente.</entry> + <entry lang="pt-br" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">AVISO: A chave mestra do volume apresenta uma vulnerabilidade de segurança.</entry> + <entry lang="pt-br" key="MOUNTPOINT_BLOCKED">ERRO: O ponto de montagem do volume está bloqueado porque substitui um diretório protegido do sistema.\n\nPor favor, escolha um ponto de montagem diferente.</entry> + <entry lang="pt-br" key="MOUNTPOINT_NOTALLOWED">ERRO: O ponto de montagem do volume não é permitido porque substitui um diretório que faz parte da variável de ambiente PATH.\n\nPor favor, escolha um ponto de montagem diferente.</entry> + <entry lang="pt-br" key="INSECURE_MODE">[MODO INSEGURO]</entry> </localization> diff --git a/Translations/Language.ro.xml b/Translations/Language.ro.xml index 8e75e941..ecaea66a 100644 --- a/Translations/Language.ro.xml +++ b/Translations/Language.ro.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="ro" name="Română" en-name="Romanian" version="2.0.0" translators="Barna Cosmin Marian" /> @@ -137,4 +137,4 @@ <entry lang="ro" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Setări globare</entry> - <entry lang="ro" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Afișare mesaje de informare după demontarea efectuată cu combinații de taste</entry> - <entry lang="ro" key="IDC_HK_DISMOUNT_PLAY_SOUND">Redare sunet de notificare după demontarea efectuată cu combinații de taste</entry> + <entry lang="ro" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Afișare mesaje de informare după demontarea efectuată cu combinații de taste</entry> + <entry lang="ro" key="IDC_HK_UNMOUNT_PLAY_SOUND">Redare sunet de notificare după demontarea efectuată cu combinații de taste</entry> <entry lang="ro" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="ro" key="IDC_PREF_CACHE_PASSWORDS">Păstrare parolă în memorie</entry> - <entry lang="ro" key="IDC_PREF_DISMOUNT_INACTIVE">Autodemontare volum dacă nu s-au citit/scris date de pe el timp de</entry> - <entry lang="ro" key="IDC_PREF_DISMOUNT_LOGOFF">Deautentificare utilizator</entry> - <entry lang="ro" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">Blocare sesiune utilizator</entry> - <entry lang="ro" key="IDC_PREF_DISMOUNT_POWERSAVING">Intrare în mod salvare energie</entry> - <entry lang="ro" key="IDC_PREF_DISMOUNT_SCREENSAVER">Pornire screen saver</entry> - <entry lang="ro" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Forțare autodemontare chiar dacă volumul conține fișiere sau foldere deschise</entry> + <entry lang="ro" key="IDC_PREF_UNMOUNT_INACTIVE">Autodemontare volum dacă nu s-au citit/scris date de pe el timp de</entry> + <entry lang="ro" key="IDC_PREF_UNMOUNT_LOGOFF">Deautentificare utilizator</entry> + <entry lang="ro" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">Blocare sesiune utilizator</entry> + <entry lang="ro" key="IDC_PREF_UNMOUNT_POWERSAVING">Intrare în mod salvare energie</entry> + <entry lang="ro" key="IDC_PREF_UNMOUNT_SCREENSAVER">Pornire screen saver</entry> + <entry lang="ro" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Forțare autodemontare chiar dacă volumul conține fișiere sau foldere deschise</entry> <entry lang="ro" key="IDC_PREF_LOGON_MOUNT_DEVICES">Montare volume VeraCrypt aflate pe discuri</entry> @@ -171,3 +171,3 @@ <entry lang="ro" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Folosire pictogramă diferită în zona de sistem când există volume montate</entry> - <entry lang="ro" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Eliminare parole păstrate după autodemontare</entry> + <entry lang="ro" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Eliminare parole păstrate după autodemontare</entry> <entry lang="ro" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Eliminare parole păstrate la ieșire</entry> @@ -271,4 +271,4 @@ <entry lang="ro" key="IDT_AUTORUN">Configurare autolansare(autorun.inf)</entry> - <entry lang="ro" key="IDT_AUTO_DISMOUNT">Autodemontare</entry> - <entry lang="ro" key="IDT_AUTO_DISMOUNT_ON">Demontare toate la:</entry> + <entry lang="ro" key="IDT_AUTO_UNMOUNT">Autodemontare</entry> + <entry lang="ro" key="IDT_AUTO_UNMOUNT_ON">Demontare toate la:</entry> <entry lang="ro" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Opțiuni ecran pornire sistem</entry> @@ -278,3 +278,3 @@ <entry lang="ro" key="IDT_DEFAULT_MOUNT_OPTIONS">Opțiuni montare implicite</entry> - <entry lang="ro" key="IDT_DISMOUNT_ACTION">Opțiuni combinații de taste</entry> + <entry lang="ro" key="IDT_UNMOUNT_ACTION">Opțiuni combinații de taste</entry> <entry lang="ro" key="IDT_DRIVER_OPTIONS">Configurare driver</entry> @@ -425,4 +425,4 @@ <entry lang="ro" key="DEVICE_IN_USE_INPLACE_ENC">Avertizare: Partiția este accesată de către sistemul de operare sau de către aplicații. Ar trebui să închideți orice aplicație care ar putea accesa partiția (inclusiv programele antivirus).\n\nContinuați?</entry> - <entry lang="ro" key="FORMAT_CANT_DISMOUNT_FILESYS">Eroare: Discul/partiția conține un sistem de fișiere care nu a putut fi demontat. Sistemul de fișiere ar putea fi utilizat de către sistemul de operare. Formatarea discului/partiției foarte probabil va putea cauza coruperea datelor și instabilitatea sistemului.\n\nPentru a rezolva această situație, vă recomandăm să ștergeți mai întâi partiția și apoi să o recreați fără formatare. Pentru aceasta, urmați acești pași:\n1) Apăsați cu clic dreapta pe pictograma «Computer» (sau «My Computer») din meniul «Start» și selectați «Manage». Ar trebui să apară fereastra «Computer Management».\n2) În fereastra «Computer Management», selectați «Storage» > «Disk Management».\n3) Apăsați cu clic dreapta pe partiția pe care doriți să o criptați și selectați fie «Delete Partition», fie «Delete Volume», sau «Delete Logical Drive».\n4) Apăsați pe «Yes». Dacă sistemul Windows vă solicită să reporniţi calculatorul, confirmați. Apoi repetați pasul 1 și 2 și continuați de la pasul 5.\n5) Apăsați cu clic dreapta pe zona cu spațiul nealocat/liber și selectați fie «New Partition», fie «New Simple Volume», sau «New Logical Drive».\n6) Ar trebui să apară fereastra «New Partition Wizard» sau «New Simple Volume Wizard»; urmați instrucțiunile afișate. Pe pagina asistentului intitulată «Format Partition», selectați fie «Do not format this partition» fie «Do not format this volume». În același asistent, apăsați pe «Next» și apoi pe «Finish».\n7) De acum calea unității selectate în VeraCrypt s-ar putea să fie greșită. De aceea, ieșiți din «Asistentul de creare volume VeraCrypt» (dacă încă este activ) și apoi porniți-l din nou.\n8) Încercați să criptați discul/partiția din nou.\n\nDacă VeraCrypt eșuează în mod repetat să cripteze discul/partiția, ați putea, în schimb, lua în considerare crearea unui container de tip fișier.</entry> - <entry lang="ro" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Eroare: fișierul sistem nu poate fi blocat și/sau demontat. S-ar putea să fie accesat de către sistemul de operare sau de către aplicații (de exemplu, programe antivirus). Criptarea partiției ar putea cauza coruperea datelor și instabilitatea sistemului.\n\nÎnchideți orice aplicație care ar putea utiliza sistemul de fișiere (inclusiv programe antivirus) și încercați din nou. Dacă asta nu ajută, urmați pașii de mai jos.</entry> + <entry lang="ro" key="FORMAT_CANT_UNMOUNT_FILESYS">Eroare: Discul/partiția conține un sistem de fișiere care nu a putut fi demontat. Sistemul de fișiere ar putea fi utilizat de către sistemul de operare. Formatarea discului/partiției foarte probabil va putea cauza coruperea datelor și instabilitatea sistemului.\n\nPentru a rezolva această situație, vă recomandăm să ștergeți mai întâi partiția și apoi să o recreați fără formatare. Pentru aceasta, urmați acești pași:\n1) Apăsați cu clic dreapta pe pictograma «Computer» (sau «My Computer») din meniul «Start» și selectați «Manage». Ar trebui să apară fereastra «Computer Management».\n2) În fereastra «Computer Management», selectați «Storage» > «Disk Management».\n3) Apăsați cu clic dreapta pe partiția pe care doriți să o criptați și selectați fie «Delete Partition», fie «Delete Volume», sau «Delete Logical Drive».\n4) Apăsați pe «Yes». Dacă sistemul Windows vă solicită să reporniţi calculatorul, confirmați. Apoi repetați pasul 1 și 2 și continuați de la pasul 5.\n5) Apăsați cu clic dreapta pe zona cu spațiul nealocat/liber și selectați fie «New Partition», fie «New Simple Volume», sau «New Logical Drive».\n6) Ar trebui să apară fereastra «New Partition Wizard» sau «New Simple Volume Wizard»; urmați instrucțiunile afișate. Pe pagina asistentului intitulată «Format Partition», selectați fie «Do not format this partition» fie «Do not format this volume». În același asistent, apăsați pe «Next» și apoi pe «Finish».\n7) De acum calea unității selectate în VeraCrypt s-ar putea să fie greșită. De aceea, ieșiți din «Asistentul de creare volume VeraCrypt» (dacă încă este activ) și apoi porniți-l din nou.\n8) Încercați să criptați discul/partiția din nou.\n\nDacă VeraCrypt eșuează în mod repetat să cripteze discul/partiția, ați putea, în schimb, lua în considerare crearea unui container de tip fișier.</entry> + <entry lang="ro" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Eroare: fișierul sistem nu poate fi blocat și/sau demontat. S-ar putea să fie accesat de către sistemul de operare sau de către aplicații (de exemplu, programe antivirus). Criptarea partiției ar putea cauza coruperea datelor și instabilitatea sistemului.\n\nÎnchideți orice aplicație care ar putea utiliza sistemul de fișiere (inclusiv programe antivirus) și încercați din nou. Dacă asta nu ajută, urmați pașii de mai jos.</entry> <entry lang="ro" key="DEVICE_IN_USE_INFO">AVERTIZARE: Unele partiții/discuri montate sunt deja accesate!\n\nIgnorând acest lucru poate determina rezultate nedorite inclusiv instabilitatea sistemului.\n\nVă recomandăm cu insistență să închideți orice aplicație care le-ar putea accesa.</entry> @@ -592,3 +592,3 @@ <entry lang="ro" key="OPENFILES_LOCK">Nu se poate bloca volumul. Încă există fișiere accesate de pe volum. Prin urmare, el nu poate fi demontat.</entry> - <entry lang="ro" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt nu poate bloca volumul deoarece este utilizat de către sistem sau unele aplicații (ar putea exista fișiere accesate de pe volum).\n\nDoriți forțarea demontării volumului?</entry> + <entry lang="ro" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt nu poate bloca volumul deoarece este utilizat de către sistem sau unele aplicații (ar putea exista fișiere accesate de pe volum).\n\nDoriți forțarea demontării volumului?</entry> <entry lang="ro" key="OPEN_VOL_TITLE">Selectați un volum VeraCrypt</entry> @@ -731,3 +731,3 @@ <entry lang="ro" key="CANT_MOUNT_VOLUME">Volumul nu poate fi montat.</entry> - <entry lang="ro" key="CANT_DISMOUNT_VOLUME">Volumul nu poate fi demontat.</entry> + <entry lang="ro" key="CANT_UNMOUNT_VOLUME">Volumul nu poate fi demontat.</entry> <entry lang="ro" key="FORMAT_NTFS_FAILED">Windows a eșuat formatarea volumului ca NTFS/exFAT/ReFS.\n\nAlegeți un alt tip de sistem de fișiere (dacă e posibil) și încercați din nou. Alternativ, puteți lăsa volumul neformatat (selectați „Fără” ca sistem de fișiere), ieșiți din asistent, montați volumul și apoi folosiți fie aplicația sistemului sau alt program pentru a formata volumul montat (volumul va rămâne criptat).</entry> @@ -773,3 +773,3 @@ <entry lang="ro" key="INPLACE_DEC_GENERIC_ERR">O eroare a împiedicat VeraCrypt să decripteze volumul. Încercați să reparați orice problemă raportată anterior și apoi încercați din nou.</entry> - <entry lang="ro" key="CANT_DISMOUNT_OUTER_VOL">Eroare: volumul exterior nu poate fi demontat!\n\nVolumul nu poate fi demontat dacă conține fișiere și foldere accesate de un program sau de către sistem.\n\nÎnchideți orice program care ar putea accesa fișierele și folderele de pe volum și apoi apăsați pe «Reluare».</entry> + <entry lang="ro" key="CANT_UNMOUNT_OUTER_VOL">Eroare: volumul exterior nu poate fi demontat!\n\nVolumul nu poate fi demontat dacă conține fișiere și foldere accesate de un program sau de către sistem.\n\nÎnchideți orice program care ar putea accesa fișierele și folderele de pe volum și apoi apăsați pe «Reluare».</entry> <entry lang="ro" key="CANT_GET_OUTER_VOL_INFO">Eroare: nu se pot obține informații depre volumul exterior!\nCrearea volumului nu poate continua.</entry> @@ -884,3 +884,3 @@ <entry lang="ro" key="CLOSE_TC_FIRST">Driverul unității VeraCrypt nu poate fi descărcat.\n\nÎnchideți mai întâi toate ferestrele VeraCrypt deschise. Dacă nu vă ajută, reporniți Windows și apoi încercați din nou.</entry> - <entry lang="ro" key="DISMOUNT_ALL_FIRST">Toate volumele VeraCrypt trebuie demontate înainte de instalarea sau dezinstalarea VeraCrypt.</entry> + <entry lang="ro" key="UNMOUNT_ALL_FIRST">Toate volumele VeraCrypt trebuie demontate înainte de instalarea sau dezinstalarea VeraCrypt.</entry> <entry lang="ro" key="UNINSTALL_OLD_VERSION_FIRST">O versiune mai veche de VeraCrypt este instalată acum în acest sistem. Trebuie dezinstalată înainte de a instala noua versiune VeraCrypt.\n\nImediat ce veți închide acest mesaj, va fi lansat programul de dezinstalare al vechii versiuni. Rețineți că nu va fi decriptat nici un volum când veți dezinstala VeraCrypt. După dezinstalarea vechii versiuni VeraCrypt, lansați din nou instalatorul noii versiuni VeraCrypt .</entry> @@ -905,3 +905,3 @@ <entry lang="ro" key="OPEN">Deschidere</entry> - <entry lang="ro" key="DISMOUNT">Demontare</entry> + <entry lang="ro" key="UNMOUNT">Demontare</entry> <entry lang="ro" key="SHOW_TC">Afișare VeraCrypt</entry> @@ -977,3 +977,3 @@ <entry lang="ro" key="SYS_FAVORITES_REQUIRE_PBA">Discul/partiția sistem nu pare să fie criptat(ă).\n\nVolumele sistem favorite pot fi montate folosind doar parola de autentificare la pornirea sistemului. Prin urmare, pentru a activa utilizarea volumelor sistem favorite, va trebui să criptați mai întâi partiția/discul.</entry> - <entry lang="ro" key="DISMOUNT_FIRST">Demontați volumul înainte de a continua.</entry> + <entry lang="ro" key="UNMOUNT_FIRST">Demontați volumul înainte de a continua.</entry> <entry lang="ro" key="CANNOT_SET_TIMER">Eroare: nu se poate seta timpul.</entry> @@ -1011,7 +1011,7 @@ <entry lang="ro" key="HK_AUTOMOUNT_DEVICES">Automontare toate</entry> - <entry lang="ro" key="HK_DISMOUNT_ALL">Demontare toate</entry> + <entry lang="ro" key="HK_UNMOUNT_ALL">Demontare toate</entry> <entry lang="ro" key="HK_WIPE_CACHE">Uitare parole memorate</entry> - <entry lang="ro" key="HK_DISMOUNT_ALL_AND_WIPE">Demontare toate și uitare parole memorate</entry> - <entry lang="ro" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Forțare demontare toate și uitare parole memorate</entry> - <entry lang="ro" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Forțare demontare toate, uitare parole memorate și ieșire</entry> + <entry lang="ro" key="HK_UNMOUNT_ALL_AND_WIPE">Demontare toate și uitare parole memorate</entry> + <entry lang="ro" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Forțare demontare toate și uitare parole memorate</entry> + <entry lang="ro" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Forțare demontare toate, uitare parole memorate și ieșire</entry> <entry lang="ro" key="HK_MOUNT_FAVORITE_VOLUMES">Montare volume favorite</entry> @@ -1027,10 +1027,10 @@ <entry lang="ro" key="HIDDEN_OS_HIBERNATION_PREVENTED">Hibernarea a fost împiedicată.\n\nVeraCrypt nu suportă hibernarea sistemelor de operare ascunse care folosesc o partiție suplimentară de pornire. Rețineți că partiția de pornire este partajată atât de sistemul momeală cât și de cel ascuns. Prin urmare, pentru a preveni divulgările de date și problemele la revenirea din hibernare, VeraCrypt trebuie să împiedice sistemul ascuns să scrie în partiția de pornire partajată și să hiberneze.</entry> - <entry lang="ro" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">Volumul VeraCrypt montat ca %c: a fost demontat.</entry> - <entry lang="ro" key="MOUNTED_VOLUMES_DISMOUNTED">Volumele VeraCrypt au fost demontate.</entry> - <entry lang="ro" key="VOLUMES_DISMOUNTED_CACHE_WIPED">Volumele VeraCrypt au fost demontate și parola memorată a fost eliminată.</entry> - <entry lang="ro" key="SUCCESSFULLY_DISMOUNTED">Demontare reușită.</entry> + <entry lang="ro" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">Volumul VeraCrypt montat ca %c: a fost demontat.</entry> + <entry lang="ro" key="MOUNTED_VOLUMES_UNMOUNTED">Volumele VeraCrypt au fost demontate.</entry> + <entry lang="ro" key="VOLUMES_UNMOUNTED_CACHE_WIPED">Volumele VeraCrypt au fost demontate și parola memorată a fost eliminată.</entry> + <entry lang="ro" key="SUCCESSFULLY_UNMOUNTED">Demontare reușită.</entry> <entry lang="ro" key="CONFIRM_BACKGROUND_TASK_DISABLED">AVERTIZARE: dacă este dezactivată opțiunea „Pornire VeraCrypt în fundal”, vor fi dezactivate următoarele funcții:\n\n1) Scurtăturile\n2) Autodemontarea (de ex. după deautentificare, eliminarea bruscă a unităților gazdă, expirare timp etc.)\n3) Automontare toate favorite\n4) Notificări (de ex., când este împiedicată distrugerea volumelor ascunse)\n5) Pictograma sistem\n\nNotă: Puteți opri programul din fundal oricând, apăsând cu clic dreapta pe pictograma sistem VeraCrypt și selectând „Ieșire”.\n\nSigur doriți să dezactivați permanent pornirea VeraCrypt în fundal?</entry> - <entry lang="ro" key="CONFIRM_NO_FORCED_AUTODISMOUNT">AVERTIZARE: dacă această opțiune este dezactivată, volumele conținând fișiere/foldere deschise NU vor putea fi autodemontate.\n\nSigur doriți să dezactivați această opțiune?</entry> - <entry lang="ro" key="WARN_PREF_AUTO_DISMOUNT">AVERTIZARE: volumele conținând fișiere/foldere deschise NU vor putea fi autodemontate.\n\nPentru a împiedica aceasta, activați următoarele opțiuni din această fereastră: „Forțare autodemontare chiar dacă volumul conține fișiere sau foldere deschise”</entry> - <entry lang="ro" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">AVERTIZARE: când bateria sistemului este redusă, Windows poate omite trimiterea mesajelor potrivite pentru executarea aplicațiilor când computerul intră în modul de salvare a energiei. Prin urmare, VeraCrypt poate eșua autodemontarea volumelor în astfel de cazuri.</entry> + <entry lang="ro" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">AVERTIZARE: dacă această opțiune este dezactivată, volumele conținând fișiere/foldere deschise NU vor putea fi autodemontate.\n\nSigur doriți să dezactivați această opțiune?</entry> + <entry lang="ro" key="WARN_PREF_AUTO_UNMOUNT">AVERTIZARE: volumele conținând fișiere/foldere deschise NU vor putea fi autodemontate.\n\nPentru a împiedica aceasta, activați următoarele opțiuni din această fereastră: „Forțare autodemontare chiar dacă volumul conține fișiere sau foldere deschise”</entry> + <entry lang="ro" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">AVERTIZARE: când bateria sistemului este redusă, Windows poate omite trimiterea mesajelor potrivite pentru executarea aplicațiilor când computerul intră în modul de salvare a energiei. Prin urmare, VeraCrypt poate eșua autodemontarea volumelor în astfel de cazuri.</entry> <entry lang="ro" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Ați programat procesul de criptare a partiției/volumului. Procesul nu a fost încă completat.\n\nDoriți să reluați procesul acum?</entry> @@ -1065,3 +1065,3 @@ <entry lang="ro" key="MOUNT_TC_VOLUME">Montare volum VeraCrypt</entry> - <entry lang="ro" key="DISMOUNT_ALL_TC_VOLUMES">Demontare toate volumele VeraCrypt</entry> + <entry lang="ro" key="UNMOUNT_ALL_TC_VOLUMES">Demontare toate volumele VeraCrypt</entry> <entry lang="ro" key="UAC_INIT_ERROR">VeraCrypt a eșuat în obținerea drepturilor de administrator.</entry> @@ -1308,4 +1308,4 @@ <entry lang="ro" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">AVERTIZARE: această setare ar putea degrada performanța.\n\nSigur doriți să folosiți această setare?</entry> - <entry lang="ro" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Avertizare: volum VeraCrypt autodemontat</entry> - <entry lang="ro" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Înainte de a elimina fizic sau opri alimentarea unei unități ce conține un volum montat, întotdeauna ar trebui să demontați volumul mai întâi din VeraCrypt.\n\nDemontarea spontană neașteptată este de obicei cauzată de instabilitatea intermitentă a cablurilor, unitate (carcasa) etc.</entry> + <entry lang="ro" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Avertizare: volum VeraCrypt autodemontat</entry> + <entry lang="ro" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Înainte de a elimina fizic sau opri alimentarea unei unități ce conține un volum montat, întotdeauna ar trebui să demontați volumul mai întâi din VeraCrypt.\n\nDemontarea spontană neașteptată este de obicei cauzată de instabilitatea intermitentă a cablurilor, unitate (carcasa) etc.</entry> <entry lang="ro" key="UNSUPPORTED_TRUECRYPT_FORMAT">VeraCrypt suportă numai volume TrueCrypt create cu seria de versiuni TrueCrypt 6.x</entry> @@ -1455,3 +1455,3 @@ <entry lang="ro" key="TASKICON_PREF_OPEN_VOL">Deschidere volume montate</entry> - <entry lang="ro" key="TASKICON_PREF_DISMOUNT_VOL">Demontare volume montate</entry> + <entry lang="ro" key="TASKICON_PREF_UNMOUNT_VOL">Demontare volume montate</entry> <entry lang="ro" key="DISK_FREE">Spațiu liber dispoanibil: {0}</entry> @@ -1485,6 +1485,6 @@ <entry lang="ro" key="LINUX_SELECT">Se&lectare...</entry> - <entry lang="ro" key="LINUX_DISMOUNT_ALL_WHEN">Demontare toate volumele când</entry> + <entry lang="ro" key="LINUX_UNMOUNT_ALL_WHEN">Demontare toate volumele când</entry> <entry lang="ro" key="LINUX_ENTERING_POWERSAVING">Sistemul intră în modul de salvare a energiei</entry> <entry lang="ro" key="LINUX_LOGIN_ACTION">Acțiuni de executat când utilizatorul se conectează</entry> - <entry lang="ro" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Închidere toate instanțele Windows Explorer ale volumului care va fi demontat</entry> + <entry lang="ro" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Închidere toate instanțele Windows Explorer ale volumului care va fi demontat</entry> <entry lang="ro" key="LINUX_HOTKEYS">Combinații de taste</entry> @@ -1492,3 +1492,3 @@ <entry lang="ro" key="LINUX_SOUND_NOTIFICATION">Redare sunet de notificare din sistem după montare/demontare</entry> - <entry lang="ro" key="LINUX_CONFIRM_AFTER_DISMOUNT">Afișare mesaj de confirmare după demontare</entry> + <entry lang="ro" key="LINUX_CONFIRM_AFTER_UNMOUNT">Afișare mesaj de confirmare după demontare</entry> <entry lang="ro" key="LINUX_VC_QUITS">VeraCrypt se închide</entry> @@ -1524,3 +1524,3 @@ <entry lang="ro" key="LINUX_KERNEL_OLD">Sistemul folosește o versiune veche a nucleului Linux.\n\nDin cauza unei erori în nucleul Linux, este posibil ca sistemul să nu mai răspundă atunci când scrieți date pe un volum VeraCrypt. Această problemă poate fi rezolvată prin actualizarea nucleului la versiunea 2.6.24 sau o versiune ulterioară.</entry> - <entry lang="ro" key="LINUX_VOL_DISMOUNTED">Volumul {0} a fost demontat.</entry> + <entry lang="ro" key="LINUX_VOL_UNMOUNTED">Volumul {0} a fost demontat.</entry> <entry lang="ro" key="LINUX_VOL_MOUNTED">Volumul {0} a fost montat.</entry> @@ -1643,2 +1643,5 @@ <entry lang="ro" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">AVERTIZARE: Cheia principală a volumului are o vulnerabilitate de securitate.</entry> + <entry lang="ro" key="MOUNTPOINT_BLOCKED">EROARE: Punctul de montare al volumului este blocat deoarece suprascrie un director de sistem protejat.\n\nVă rugăm să alegeți un alt punct de montare.</entry> + <entry lang="ro" key="MOUNTPOINT_NOTALLOWED">EROARE: Punctul de montare al volumului nu este permis deoarece suprascrie un director care face parte din variabila de mediu PATH.\n\nVă rugăm să alegeți un alt punct de montare.</entry> + <entry lang="ro" key="INSECURE_MODE">[MOD INSECURIZAT]</entry> </localization> diff --git a/Translations/Language.ru.xml b/Translations/Language.ru.xml index 9d331879..c33a6491 100644 --- a/Translations/Language.ru.xml +++ b/Translations/Language.ru.xml @@ -2,4 +2,4 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> - <language langid="ru" name="Русский" en-name="Russian" version="1.26.17" translators="Dmitry Yerokhin [erodim@mail.ru] (240826)" /> + <localization prog-version= "1.26.20"> + <language langid="ru" name="Русский" en-name="Russian" version="1.26.20" translators="Dmitry Yerokhin [erodim@mail.ru] (240826)" /> <font lang="ru" class="normal" size="11" face="default" /> @@ -137,4 +137,4 @@ <entry lang="ru" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Глобальные установки</entry> - <entry lang="ru" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Оповещение после успешного размонтирования по горячей клавише</entry> - <entry lang="ru" key="IDC_HK_DISMOUNT_PLAY_SOUND">Звук после успешного размонтирования по горячей клавише</entry> + <entry lang="ru" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Оповещение после успешного размонтирования по горячей клавише</entry> + <entry lang="ru" key="IDC_HK_UNMOUNT_PLAY_SOUND">Звук после успешного размонтирования по горячей клавише</entry> <entry lang="ru" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="ru" key="IDC_PREF_CACHE_PASSWORDS">Кэшировать пароли в памяти драйвера</entry> - <entry lang="ru" key="IDC_PREF_DISMOUNT_INACTIVE">Автоматически размонтировать тома при неактивности в течение</entry> - <entry lang="ru" key="IDC_PREF_DISMOUNT_LOGOFF">завершении сеансов</entry> - <entry lang="ru" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">блокировке сеанса пользователя</entry> - <entry lang="ru" key="IDC_PREF_DISMOUNT_POWERSAVING">входе в энергосбережение</entry> - <entry lang="ru" key="IDC_PREF_DISMOUNT_SCREENSAVER">старте экранной заставки</entry> - <entry lang="ru" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Принудительное авторазмонтирование даже при открытых файлах или папках</entry> + <entry lang="ru" key="IDC_PREF_UNMOUNT_INACTIVE">Автоматически размонтировать тома при неактивности в течение</entry> + <entry lang="ru" key="IDC_PREF_UNMOUNT_LOGOFF">завершении сеансов</entry> + <entry lang="ru" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">блокировке сеанса пользователя</entry> + <entry lang="ru" key="IDC_PREF_UNMOUNT_POWERSAVING">входе в энергосбережение</entry> + <entry lang="ru" key="IDC_PREF_UNMOUNT_SCREENSAVER">старте экранной заставки</entry> + <entry lang="ru" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Принудительное авторазмонтирование даже при открытых файлах или папках</entry> <entry lang="ru" key="IDC_PREF_LOGON_MOUNT_DEVICES">Монтировать все тома на устройствах</entry> @@ -171,3 +171,3 @@ <entry lang="ru" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Менять значок в области уведомлений, если есть смонтированные тома</entry> - <entry lang="ru" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Очищать кэш паролей при авторазмонтировании</entry> + <entry lang="ru" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Очищать кэш паролей при авторазмонтировании</entry> <entry lang="ru" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Очищать кэш паролей при выходе</entry> @@ -271,4 +271,4 @@ <entry lang="ru" key="IDT_AUTORUN">Настройка автозапуска (файл autorun.inf)</entry> - <entry lang="ru" key="IDT_AUTO_DISMOUNT">Автоматическое размонтирование</entry> - <entry lang="ru" key="IDT_AUTO_DISMOUNT_ON">Размонтировать\nвсе тома при:</entry> + <entry lang="ru" key="IDT_AUTO_UNMOUNT">Автоматическое размонтирование</entry> + <entry lang="ru" key="IDT_AUTO_UNMOUNT_ON">Размонтировать\nвсе тома при:</entry> <entry lang="ru" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Параметры экрана загрузчика</entry> @@ -278,3 +278,3 @@ <entry lang="ru" key="IDT_DEFAULT_MOUNT_OPTIONS">Монтирование томов по умолчанию</entry> - <entry lang="ru" key="IDT_DISMOUNT_ACTION">Дополнительные параметры</entry> + <entry lang="ru" key="IDT_UNMOUNT_ACTION">Дополнительные параметры</entry> <entry lang="ru" key="IDT_DRIVER_OPTIONS">Конфигурация драйвера</entry> @@ -425,4 +425,4 @@ <entry lang="ru" key="DEVICE_IN_USE_INPLACE_ENC">ВНИМАНИЕ: Устройство/раздел используется операционной системой или приложениями. Следует закрыть все программы, которые могут использовать раздел (включая антивирусное ПО).\n\nПродолжить?</entry> - <entry lang="ru" key="FORMAT_CANT_DISMOUNT_FILESYS">ОШИБКА: Устройство/раздел содержит файловую систему, которая не может быть размонтирована. Эта файловая система может использоваться операционной системой. Форматирование устройства/раздела вероятнее всего приведёт к повреждению данных и нестабильности системы.\n\nДля решения этой проблемы мы рекомендуем сначала удалить этот раздел, после чего вновь создать его без форматирования. Вот как это сделать: 1) Щёлкните правой кнопкой мыши по значку "Компьютер" (или "Этот компьютер") в меню "Пуск" и выберите пункт "Управление". Должно появиться окно "Управление компьютером". 2) В окне "Управление компьютером" выберите "Запоминающие устройства" > "Управление дисками". 3) Щёлкните правой кнопкой мыши по разделу, который вы хотите зашифровать, и выберите либо "Удалить раздел", либо "Удалить том", либо "Удалить логический диск". 4) Нажмите "Да". Если Windows попросит перезагрузить компьютер, сделайте это. Затем повторите шаги 1 и 2 и перейдите к шагу 5. 5) Щёлкните правой кнопкой на участке с пустым местом (оно должно содержать надпись "Не распределено") и выберите "Основной раздел", "Дополнительный раздел" или "Логический диск". 6) Должно появиться окно мастера создания разделов или томов; следуйте его инструкциям. В окне мастера на странице "Форматирование раздела" выберите либо "Не форматировать этот раздел", либо "Не форматировать этот том". В том же окне мастера нажмите кнопку "Далее" и затем "Готово". 7) Учтите, что выбранный вами в VeraCrypt путь к устройству может быть теперь неверным. Поэтому завершите работу мастера создания томов VeraCrypt (если он всё ещё выполняется) и запустите его снова. 8) Попробуйте снова зашифровать устройство/раздел в VeraCrypt.\n\nЕсли VeraCrypt по-прежнему откажется шифровать устройство/раздел, скорректируйте свои планы и создайте вместо этого файл-контейнер.</entry> - <entry lang="ru" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">ОШИБКА: Не удалось заблокировать и/или размонтировать файловую систему. Вероятно, она используется ОС или приложениями (например, антивирусным ПО). Шифрование этого раздела может повлечь повреждение данных и нестабильность системы.\n\nЗакройте все приложения, которые могут обращаться к файловой системе (включая антивирусное ПО) и повторите попытку. Если это не поможет, следуйте указанным ниже инструкциям.</entry> + <entry lang="ru" key="FORMAT_CANT_UNMOUNT_FILESYS">ОШИБКА: Устройство/раздел содержит файловую систему, которая не может быть размонтирована. Эта файловая система может использоваться операционной системой. Форматирование устройства/раздела вероятнее всего приведёт к повреждению данных и нестабильности системы.\n\nДля решения этой проблемы мы рекомендуем сначала удалить этот раздел, после чего вновь создать его без форматирования. Вот как это сделать: 1) Щёлкните правой кнопкой мыши по значку "Компьютер" (или "Этот компьютер") в меню "Пуск" и выберите пункт "Управление". Должно появиться окно "Управление компьютером". 2) В окне "Управление компьютером" выберите "Запоминающие устройства" > "Управление дисками". 3) Щёлкните правой кнопкой мыши по разделу, который вы хотите зашифровать, и выберите либо "Удалить раздел", либо "Удалить том", либо "Удалить логический диск". 4) Нажмите "Да". Если Windows попросит перезагрузить компьютер, сделайте это. Затем повторите шаги 1 и 2 и перейдите к шагу 5. 5) Щёлкните правой кнопкой на участке с пустым местом (оно должно содержать надпись "Не распределено") и выберите "Основной раздел", "Дополнительный раздел" или "Логический диск". 6) Должно появиться окно мастера создания разделов или томов; следуйте его инструкциям. В окне мастера на странице "Форматирование раздела" выберите либо "Не форматировать этот раздел", либо "Не форматировать этот том". В том же окне мастера нажмите кнопку "Далее" и затем "Готово". 7) Учтите, что выбранный вами в VeraCrypt путь к устройству может быть теперь неверным. Поэтому завершите работу мастера создания томов VeraCrypt (если он всё ещё выполняется) и запустите его снова. 8) Попробуйте снова зашифровать устройство/раздел в VeraCrypt.\n\nЕсли VeraCrypt по-прежнему откажется шифровать устройство/раздел, скорректируйте свои планы и создайте вместо этого файл-контейнер.</entry> + <entry lang="ru" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">ОШИБКА: Не удалось заблокировать и/или размонтировать файловую систему. Вероятно, она используется ОС или приложениями (например, антивирусным ПО). Шифрование этого раздела может повлечь повреждение данных и нестабильность системы.\n\nЗакройте все приложения, которые могут обращаться к файловой системе (включая антивирусное ПО) и повторите попытку. Если это не поможет, следуйте указанным ниже инструкциям.</entry> <entry lang="ru" key="DEVICE_IN_USE_INFO">ВНИМАНИЕ: Некоторые смонтированные устройства/разделы уже используются.\n\nИгнорирование этого может привести к нежелательным последствиям, включая нестабильность системы.\n\nНастоятельно рекомендуется закрыть все программы, использующие эти устройства/разделы.</entry> @@ -592,3 +592,3 @@ <entry lang="ru" key="OPENFILES_LOCK">Невозможно заблокировать том. На этом томе имеются открытые файлы, поэтому его нельзя размонтировать.</entry> - <entry lang="ru" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt не может заблокировать том, так как он используется системой или приложениями (возможно, открыты находящиеся на этом томе файлы).\n\nРазмонтировать этот том принудительно?</entry> + <entry lang="ru" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt не может заблокировать том, так как он используется системой или приложениями (возможно, открыты находящиеся на этом томе файлы).\n\nРазмонтировать этот том принудительно?</entry> <entry lang="ru" key="OPEN_VOL_TITLE">Выберите том VeraCrypt</entry> @@ -731,3 +731,3 @@ <entry lang="ru" key="CANT_MOUNT_VOLUME">Невозможно смонтировать том.</entry> - <entry lang="ru" key="CANT_DISMOUNT_VOLUME">Невозможно размонтировать том.</entry> + <entry lang="ru" key="CANT_UNMOUNT_VOLUME">Невозможно размонтировать том.</entry> <entry lang="ru" key="FORMAT_NTFS_FAILED">Windows не может отформатировать этот том как NTFS/exFAT.\n\nВыберите другой тип файловой системы (если возможно) и повторите попытку. Либо вы можете оставить этот том неформатированным (в поле выбора файловой системы укажите "Нет"), закрыть окно мастера, смонтировать том, а затем с помощью системной или сторонней утилиты отформатировать смонтированный том (том при этом останется зашифрованным).</entry> @@ -773,3 +773,3 @@ <entry lang="ru" key="INPLACE_DEC_GENERIC_ERR">Не удалось расшифровать том из-за ошибки. Попробуйте устранить все возникшие ранее проблемы и затем по возможности повторите.</entry> - <entry lang="ru" key="CANT_DISMOUNT_OUTER_VOL">ОШИБКА: Невозможно размонтировать внешний том.\n\nТом нельзя размонтировать, если он содержит файлы или папки, используемые какой-либо программой или системой.\n\nЗакройте все программы, которые могут использовать файлы и папки на этом томе, и нажмите "Повтор".</entry> + <entry lang="ru" key="CANT_UNMOUNT_OUTER_VOL">ОШИБКА: Невозможно размонтировать внешний том.\n\nТом нельзя размонтировать, если он содержит файлы или папки, используемые какой-либо программой или системой.\n\nЗакройте все программы, которые могут использовать файлы и папки на этом томе, и нажмите "Повтор".</entry> <entry lang="ru" key="CANT_GET_OUTER_VOL_INFO">ОШИБКА: Невозможно получить информацию о внешнем томе. Создание тома не может быть продолжено.</entry> @@ -884,3 +884,3 @@ <entry lang="ru" key="CLOSE_TC_FIRST">Невозможно выгрузить драйвер VeraCrypt.\n\nСначала закройте все открытые окна VeraCrypt. Если это не поможет, перезагрузите Windows и попробуйте ещё раз.</entry> - <entry lang="ru" key="DISMOUNT_ALL_FIRST">Прежде чем продолжить установку или удаление программы, нужно размонтировать все тома VeraCrypt.</entry> + <entry lang="ru" key="UNMOUNT_ALL_FIRST">Прежде чем продолжить установку или удаление программы, нужно размонтировать все тома VeraCrypt.</entry> <entry lang="ru" key="UNINSTALL_OLD_VERSION_FIRST">В этой системе уже установлена устаревшая версия VeraCrypt. Её необходимо удалить, прежде чем можно будет установить новую версию.\n\nПри закрытии этого окна будет запущена программа удаления старой версии. Никакие тома при удалении VeraCrypt не расшифровываются. После удаления старой версии запустите установщик новой версии VeraCrypt снова.</entry> @@ -905,3 +905,3 @@ <entry lang="ru" key="OPEN">Открыть</entry> - <entry lang="ru" key="DISMOUNT">Размонтировать</entry> + <entry lang="ru" key="UNMOUNT">Размонтировать</entry> <entry lang="ru" key="SHOW_TC">Показать VeraCrypt</entry> @@ -977,3 +977,3 @@ <entry lang="ru" key="SYS_FAVORITES_REQUIRE_PBA">Системный раздел/диск не зашифрован.\n\nСистемные избранные тома можно монтировать только с помощью пароля предзагрузочной аутентификации.\nПоэтому если вы хотите использовать системные избранные тома, сначала зашифруйте системный раздел/диск.</entry> - <entry lang="ru" key="DISMOUNT_FIRST">Прежде чем продолжить, размонтируйте том.</entry> + <entry lang="ru" key="UNMOUNT_FIRST">Прежде чем продолжить, размонтируйте том.</entry> <entry lang="ru" key="CANNOT_SET_TIMER">ОШИБКА: Невозможно установить таймер.</entry> @@ -1011,7 +1011,7 @@ <entry lang="ru" key="HK_AUTOMOUNT_DEVICES">Автомонтирование устройств</entry> - <entry lang="ru" key="HK_DISMOUNT_ALL">Размонтировать все</entry> + <entry lang="ru" key="HK_UNMOUNT_ALL">Размонтировать все</entry> <entry lang="ru" key="HK_WIPE_CACHE">Очистка кэша</entry> - <entry lang="ru" key="HK_DISMOUNT_ALL_AND_WIPE">Размонтировать все и очистить кэш</entry> - <entry lang="ru" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Сразу размонтировать все и очистить кэш</entry> - <entry lang="ru" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Сразу размонтировать все, очистить кэш и выйти</entry> + <entry lang="ru" key="HK_UNMOUNT_ALL_AND_WIPE">Размонтировать все и очистить кэш</entry> + <entry lang="ru" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Сразу размонтировать все и очистить кэш</entry> + <entry lang="ru" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Сразу размонтировать все, очистить кэш и выйти</entry> <entry lang="ru" key="HK_MOUNT_FAVORITE_VOLUMES">Смонтировать избранные тома</entry> @@ -1027,10 +1027,10 @@ <entry lang="ru" key="HIDDEN_OS_HIBERNATION_PREVENTED">Гибернация отменена.\n\nVeraCrypt не поддерживает гибернацию скрытых операционных систем, использующих дополнительный загрузочный раздел. Учтите, что загрузочный раздел используется как обманной, так и скрытой системами. Поэтому для предотвращения утечки данных и проблем при выходе из гибернации программа VeraCrypt запретила скрытой системе запись в общий загрузочный раздел и гибернацию.</entry> - <entry lang="ru" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">Том VeraCrypt, смонтированный как %c:, размонтирован.</entry> - <entry lang="ru" key="MOUNTED_VOLUMES_DISMOUNTED">Тома VeraCrypt размонтированы.</entry> - <entry lang="ru" key="VOLUMES_DISMOUNTED_CACHE_WIPED">Смонтированные тома VeraCrypt размонтированы, кэш паролей очищен.</entry> - <entry lang="ru" key="SUCCESSFULLY_DISMOUNTED">Успешно размонтировано</entry> + <entry lang="ru" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">Том VeraCrypt, смонтированный как %c:, размонтирован.</entry> + <entry lang="ru" key="MOUNTED_VOLUMES_UNMOUNTED">Тома VeraCrypt размонтированы.</entry> + <entry lang="ru" key="VOLUMES_UNMOUNTED_CACHE_WIPED">Смонтированные тома VeraCrypt размонтированы, кэш паролей очищен.</entry> + <entry lang="ru" key="SUCCESSFULLY_UNMOUNTED">Успешно размонтировано</entry> <entry lang="ru" key="CONFIRM_BACKGROUND_TASK_DISABLED">ВНИМАНИЕ: Если запретить работу VeraCrypt в фоновом режиме, то будут отключены следующие функции:\n\n1) Горячие клавиши\n2) Авторазмонтирование (например, при завершении сеанса, случайном удалении хост-устройства, истечении времени ожидания и т. д.)\n3) Автомонтирование избранных томов\n4) Оповещения (например, о предотвращении повреждения скрытого тома)\n5) Значок в области уведомлений\n\nПримечание. Фоновый процесс можно завершить в любой момент, щёлкнув ПКМ по значку VeraCrypt в области уведомлений и выбрав "Выход".\n\nВы действительно хотите запретить фоновый режим?</entry> - <entry lang="ru" key="CONFIRM_NO_FORCED_AUTODISMOUNT">ВНИМАНИЕ: Если выключить этот параметр, станет невозможно автоматически размонтировать тома, содержащие открытые файлы/папки.\n\nВы действительно хотите выключить этот параметр?</entry> - <entry lang="ru" key="WARN_PREF_AUTO_DISMOUNT">ВНИМАНИЕ: Тома с открытыми файлами/папками НЕ будут автоматически размонтироваться.\n\nЧтобы избежать этого, включите в данном окне параметр "Авторазмонтировать тома даже при открытых файлах/папках"</entry> - <entry lang="ru" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">ВНИМАНИЕ: Если в ноутбуке низкий уровень заряда батареи, Windows может не отправлять соответствующие сообщения в выполняющиеся приложения при входе в энергосберегающий режим. Поэтому в таких случаях авторазмонтирование томов в VeraCrypt может не сработать.</entry> + <entry lang="ru" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">ВНИМАНИЕ: Если выключить этот параметр, станет невозможно автоматически размонтировать тома, содержащие открытые файлы/папки.\n\nВы действительно хотите выключить этот параметр?</entry> + <entry lang="ru" key="WARN_PREF_AUTO_UNMOUNT">ВНИМАНИЕ: Тома с открытыми файлами/папками НЕ будут автоматически размонтироваться.\n\nЧтобы избежать этого, включите в данном окне параметр "Авторазмонтировать тома даже при открытых файлах/папках"</entry> + <entry lang="ru" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">ВНИМАНИЕ: Если в ноутбуке низкий уровень заряда батареи, Windows может не отправлять соответствующие сообщения в выполняющиеся приложения при входе в энергосберегающий режим. Поэтому в таких случаях авторазмонтирование томов в VeraCrypt может не сработать.</entry> <entry lang="ru" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Вы запланировали (де)шифрование раздела/тома. Этот процесс пока не завершён.\n\nВозобновить его сейчас?</entry> @@ -1065,3 +1065,3 @@ <entry lang="ru" key="MOUNT_TC_VOLUME">Смонтировать том VeraCrypt</entry> - <entry lang="ru" key="DISMOUNT_ALL_TC_VOLUMES">Размонтировать все тома VeraCrypt</entry> + <entry lang="ru" key="UNMOUNT_ALL_TC_VOLUMES">Размонтировать все тома VeraCrypt</entry> <entry lang="ru" key="UAC_INIT_ERROR">VeraCrypt не может получить права администратора.</entry> @@ -1308,4 +1308,4 @@ <entry lang="ru" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">ВНИМАНИЕ: Этот параметр может ухудшить производительность.\n\nВы действительно хотите его включить?</entry> - <entry lang="ru" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">ВНИМАНИЕ: Том VeraCrypt автоматически размонтирован</entry> - <entry lang="ru" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Прежде чем физически удалить или отключить устройство со смонтированным томом, сначала следует всегда размонтировать этот том в VeraCrypt.\n\nНеожиданное самопроизвольное размонтирование обычно бывает вызвано периодическими сбоями в кабеле, диске (корпусе) и т. д.</entry> + <entry lang="ru" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">ВНИМАНИЕ: Том VeraCrypt автоматически размонтирован</entry> + <entry lang="ru" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Прежде чем физически удалить или отключить устройство со смонтированным томом, сначала следует всегда размонтировать этот том в VeraCrypt.\n\nНеожиданное самопроизвольное размонтирование обычно бывает вызвано периодическими сбоями в кабеле, диске (корпусе) и т. д.</entry> <entry lang="ru" key="UNSUPPORTED_TRUECRYPT_FORMAT">Этот том создан с помощью TrueCrypt %x.%x. VeraCrypt поддерживает только тома TrueCrypt, созданные с помощью версий 6.x/7.x.</entry> @@ -1455,3 +1455,3 @@ <entry lang="ru" key="TASKICON_PREF_OPEN_VOL">Открыть смонтированные тома</entry> - <entry lang="ru" key="TASKICON_PREF_DISMOUNT_VOL">Размонтировать смонтированные тома</entry> + <entry lang="ru" key="TASKICON_PREF_UNMOUNT_VOL">Размонтировать смонтированные тома</entry> <entry lang="ru" key="DISK_FREE">Свободное место: {0}</entry> @@ -1485,6 +1485,6 @@ <entry lang="ru" key="LINUX_SELECT">В&ыбрать...</entry> - <entry lang="ru" key="LINUX_DISMOUNT_ALL_WHEN">Размонтировать все тома, когда</entry> + <entry lang="ru" key="LINUX_UNMOUNT_ALL_WHEN">Размонтировать все тома, когда</entry> <entry lang="ru" key="LINUX_ENTERING_POWERSAVING">Система переходит в режим энергосбережения</entry> <entry lang="ru" key="LINUX_LOGIN_ACTION">Действия при входе пользователя</entry> - <entry lang="ru" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Закрыть все окна Проводника с размонтируемым томом</entry> + <entry lang="ru" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Закрыть все окна Проводника с размонтируемым томом</entry> <entry lang="ru" key="LINUX_HOTKEYS">Горячие клавиши</entry> @@ -1492,3 +1492,3 @@ <entry lang="ru" key="LINUX_SOUND_NOTIFICATION">Системный звук оповещения при (де)монтировании</entry> - <entry lang="ru" key="LINUX_CONFIRM_AFTER_DISMOUNT">Окно с подтверждением после размонтирования</entry> + <entry lang="ru" key="LINUX_CONFIRM_AFTER_UNMOUNT">Окно с подтверждением после размонтирования</entry> <entry lang="ru" key="LINUX_VC_QUITS">VeraCrypt завершает работу</entry> @@ -1524,3 +1524,3 @@ <entry lang="ru" key="LINUX_KERNEL_OLD">Ваша система использует старую версию ядра Linux.\n\nИз-за ошибки в ядре Linux система может перестать отвечать на запросы при записи данных на том VeraCrypt. Эта проблема решается обновлением ядра до версии 2.6.24 или более новой.</entry> - <entry lang="ru" key="LINUX_VOL_DISMOUNTED">Том {0} размонтирован.</entry> + <entry lang="ru" key="LINUX_VOL_UNMOUNTED">Том {0} размонтирован.</entry> <entry lang="ru" key="LINUX_VOL_MOUNTED">Том {0} смонтирован.</entry> @@ -1643,2 +1643,5 @@ <entry lang="ru" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">ВНИМАНИЕ: Мастер-ключ тома содержит уязвимость в системе безопасности.</entry> + <entry lang="ru" key="MOUNTPOINT_BLOCKED">ОШИБКА: Точка монтирования тома заблокирована, так как она переопределяет защищённую системную папку.\n\nВыберите другую точку монтирования.</entry> + <entry lang="ru" key="MOUNTPOINT_NOTALLOWED">ОШИБКА: Точка монтирования тома не разрешена, так как она переопределяет папку, которая является частью переменной среды PATH.\n\nВыберите другую точку монтирования.</entry> + <entry lang="ru" key="INSECURE_MODE">[НЕБЕЗОПАСНЫЙ РЕЖИМ]</entry> </localization> diff --git a/Translations/Language.sk.xml b/Translations/Language.sk.xml index 94f67de8..279407aa 100644 --- a/Translations/Language.sk.xml +++ b/Translations/Language.sk.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="sk" name="Slovenčina" en-name="Slovak" version="0.1.0" translators="Kamil David" /> @@ -137,4 +137,4 @@ <entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</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="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="sk" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="sk" key="IDC_PREF_CACHE_PASSWORDS">Ukladať hesla do pamäti ovládača</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_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_LOGON_MOUNT_DEVICES">Príp. všetky zväzky umiestnené na zariadeniach</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">Odstrániť hesla z medzipamäte a automaticky odpojiť</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_EXIT">Odstrániť hesla z medzipamäte pri skončenie</entry> @@ -271,4 +271,4 @@ <entry lang="sk" key="IDT_AUTORUN">Konfigurácia automatického spúšťania (autorun.inf)</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="sk" key="IDT_AUTO_UNMOUNT">Automatické odpojenie</entry> + <entry lang="sk" key="IDT_AUTO_UNMOUNT_ON">Odpojiť vše keď:</entry> <entry lang="en" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader Screen Options</entry> @@ -278,3 +278,3 @@ <entry lang="sk" key="IDT_DEFAULT_MOUNT_OPTIONS">Pôvodné (default) predvoľby pripojenia</entry> - <entry lang="sk" key="IDT_DISMOUNT_ACTION">Predvoľby klávesových skratiek</entry> + <entry lang="sk" key="IDT_UNMOUNT_ACTION">Predvoľby klávesových skratiek</entry> <entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry> @@ -425,4 +425,4 @@ <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_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' > '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="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' > '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="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> @@ -527,3 +527,3 @@ <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 dismount 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 unmount 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> @@ -537,5 +537,5 @@ <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 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="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="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> @@ -592,3 +592,3 @@ <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_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="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="sk" key="OPEN_VOL_TITLE">Vyberte zväzok VeraCrypt</entry> @@ -731,3 +731,3 @@ <entry lang="sk" key="CANT_MOUNT_VOLUME">Zväzok nie je možné pripojiť.</entry> - <entry lang="sk" key="CANT_DISMOUNT_VOLUME">Zväzok nie je možné odpojiť.</entry> + <entry lang="sk" key="CANT_UNMOUNT_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> @@ -773,3 +773,3 @@ <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_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="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="en" key="CANT_GET_OUTER_VOL_INFO">Error: Cannot obtain information about the outer volume!\nVolume creation cannot continue.</entry> @@ -884,3 +884,3 @@ <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="DISMOUNT_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="UNMOUNT_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> @@ -905,3 +905,3 @@ <entry lang="sk" key="OPEN">Otvoriť</entry> - <entry lang="sk" key="DISMOUNT">Odpojiť</entry> + <entry lang="sk" key="UNMOUNT">Odpojiť</entry> <entry lang="sk" key="SHOW_TC">Zobraziť VeraCrypt</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">Pred pokračovaním odpojte prosím zväzok.</entry> + <entry lang="sk" key="UNMOUNT_FIRST">Pred pokračovaním odpojte prosím zväzok.</entry> <entry lang="en" key="CANNOT_SET_TIMER">Error: Cannot set timer.</entry> @@ -999,3 +999,3 @@ <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 dismount 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 unmount the volume.</entry> <entry lang="sk" key="HOMEPAGE">Domovská stránka</entry> @@ -1008,10 +1008,10 @@ <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 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="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="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_DISMOUNT_ALL">Odpojiť všetko</entry> + <entry lang="sk" key="HK_UNMOUNT_ALL">Odpojiť všetko</entry> <entry lang="sk" key="HK_WIPE_CACHE">Vyčistiť Cache</entry> - <entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All & Wipe Cache</entry> - <entry lang="sk" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Vynútiť odpojenie všetkých & 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äť & Koniec</entry> + <entry lang="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All & Wipe Cache</entry> + <entry lang="sk" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Vynútiť odpojenie všetkých & 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äť & Koniec</entry> <entry lang="sk" key="HK_MOUNT_FAVORITE_VOLUMES">Pripojiť obľúbené oddiely</entry> @@ -1027,10 +1027,10 @@ <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_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="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="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> @@ -1042,3 +1042,3 @@ <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' > '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-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">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_UNIVERSAL">Exit?</entry> @@ -1065,3 +1065,3 @@ <entry lang="sk" key="MOUNT_TC_VOLUME">Pripojiť zväzok VeraCrypt</entry> - <entry lang="sk" key="DISMOUNT_ALL_TC_VOLUMES">Odpojiť všetky zväzky VeraCrypt</entry> + <entry lang="sk" key="UNMOUNT_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> @@ -1287,4 +1287,4 @@ <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 '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="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="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry> @@ -1294,6 +1294,6 @@ <entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &Device and Mount...</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="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount 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 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="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="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> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <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="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry> <entry lang="en" key="DISK_FREE">Free space available: {0}</entry> @@ -1485,10 +1485,10 @@ <entry lang="en" key="LINUX_SELECT">Se&lect...</entry> - <entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry> + <entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount 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_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</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_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_VC_QUITS">VeraCrypt quits</entry> @@ -1512,3 +1512,3 @@ <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_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_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> @@ -1516,3 +1516,3 @@ <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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry> <entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry> @@ -1524,3 +1524,3 @@ <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_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry> <entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/Translations/Language.sl.xml b/Translations/Language.sl.xml index fadde36b..3a050611 100644 --- a/Translations/Language.sl.xml +++ b/Translations/Language.sl.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="sl" name="Slovenščina" en-name="Slovenian" version="0.1.0" translators="Erik David Salam, Sasa Divjak" /> @@ -137,4 +137,4 @@ <entry lang="sl" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Splošne nastavitve</entry> - <entry lang="sl" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Po uspešnem odklopu z vročimi tipkami pokažite namig v obliki oblačka</entry> - <entry lang="sl" key="IDC_HK_DISMOUNT_PLAY_SOUND">Po uspešnem odklopu vroče tipke zaigraj sistemski zvok za obvestilo</entry> + <entry lang="sl" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Po uspešnem odklopu z vročimi tipkami pokažite namig v obliki oblačka</entry> + <entry lang="sl" key="IDC_HK_UNMOUNT_PLAY_SOUND">Po uspešnem odklopu vroče tipke zaigraj sistemski zvok za obvestilo</entry> <entry lang="sl" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="sl" key="IDC_PREF_CACHE_PASSWORDS">Shranjuj gesla v pomnilnik gonilnika</entry> - <entry lang="sl" key="IDC_PREF_DISMOUNT_INACTIVE">Samoizkl. nosilca, ko iz njega ni bilo prebr./zapis. nobenih podat.</entry> - <entry lang="sl" key="IDC_PREF_DISMOUNT_LOGOFF">Uporabnik odjavi</entry> - <entry lang="sl" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">Seja uporabnika je zaklenjena</entry> - <entry lang="sl" key="IDC_PREF_DISMOUNT_POWERSAVING">Vstopi v način varčev. z energijo</entry> - <entry lang="sl" key="IDC_PREF_DISMOUNT_SCREENSAVER">Zažene ohranjevalnik zaslona</entry> - <entry lang="sl" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Prisili samodejni izklop četudi nosilec vsebuje odprte datoteke ali mape</entry> + <entry lang="sl" key="IDC_PREF_UNMOUNT_INACTIVE">Samoizkl. nosilca, ko iz njega ni bilo prebr./zapis. nobenih podat.</entry> + <entry lang="sl" key="IDC_PREF_UNMOUNT_LOGOFF">Uporabnik odjavi</entry> + <entry lang="sl" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">Seja uporabnika je zaklenjena</entry> + <entry lang="sl" key="IDC_PREF_UNMOUNT_POWERSAVING">Vstopi v način varčev. z energijo</entry> + <entry lang="sl" key="IDC_PREF_UNMOUNT_SCREENSAVER">Zažene ohranjevalnik zaslona</entry> + <entry lang="sl" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Prisili samodejni izklop četudi nosilec vsebuje odprte datoteke ali mape</entry> <entry lang="sl" key="IDC_PREF_LOGON_MOUNT_DEVICES">Priklopi vse gost. VeraCryptove nosilce na napravi</entry> @@ -171,3 +171,3 @@ <entry lang="sl" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Ko imamo priklopljene nosilce uporabljaj drugačno ikono opravilne vrstice</entry> - <entry lang="sl" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Pobriši gesla shranjena v predpomnilniku ob samodejnem odklopu</entry> + <entry lang="sl" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Pobriši gesla shranjena v predpomnilniku ob samodejnem odklopu</entry> <entry lang="sl" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Pobriši gesla v predpomnilniku ob izhodu</entry> @@ -271,4 +271,4 @@ <entry lang="sl" key="IDT_AUTORUN">Nastavitev samodejnega zagona (autorun.inf)</entry> - <entry lang="sl" key="IDT_AUTO_DISMOUNT">Samodejni izklop</entry> - <entry lang="sl" key="IDT_AUTO_DISMOUNT_ON">Izklopi vse ko:</entry> + <entry lang="sl" key="IDT_AUTO_UNMOUNT">Samodejni izklop</entry> + <entry lang="sl" key="IDT_AUTO_UNMOUNT_ON">Izklopi vse ko:</entry> <entry lang="sl" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Opcije zaslona za zagonski nalagalnik</entry> @@ -278,3 +278,3 @@ <entry lang="sl" key="IDT_DEFAULT_MOUNT_OPTIONS">Privzete možnosti priklopa</entry> - <entry lang="sl" key="IDT_DISMOUNT_ACTION">Možnosti vročih tipk</entry> + <entry lang="sl" key="IDT_UNMOUNT_ACTION">Možnosti vročih tipk</entry> <entry lang="sl" key="IDT_DRIVER_OPTIONS">Konfiguracija pogona</entry> @@ -425,4 +425,4 @@ <entry lang="sl" key="DEVICE_IN_USE_INPLACE_ENC">OPOZORILO: Particijo uporabljajo operacijski sistem ali aplikacije. Zaprite vse aplikacije, ki morda uporabljajo particijo (vključno s protivirusno programsko opremo).\n\nNadaljujem?</entry> - <entry lang="sl" key="FORMAT_CANT_DISMOUNT_FILESYS">Napaka: Naprava/particija vsebuje datotečni sistem, ki ga ni bilo mogoče odklopiti. Datotečni sistem morda uporablja operacijski sistem. Formatiranje naprave/particije bi zelo verjetno povzročilo poškodbe podatkov in nestabilnost sistema.\n\nZa rešitev te težave priporočamo, da najprej izbrišeš particijo in jo nato znova ustvariš brez formatiranja. To storiš tako, da slediš tem korakom:\n1) Z desno tipko miške klikni ikono »Računalnik« (ali »Moj računalnik«) v meniju »Start« in izberi »Upravljanje«. Prikazati bi se moralo okno »Upravljanje računalnika«.\n2) V oknu 'Upravljanje računalnika' izberi 'Shramba' > 'Upravljanje diskov'.\n3) Z desno tipko miške klikni particijo, ki jo želiš šifrirati, in izberi »Izbriši particijo«, »Izbriši nosilec« ali »Izbriši logični pogon«.\n4) Klikni 'Da'. Če želijo Windows ponovno zagnati računalnik, stori to. Nato ponovi koraka 1 in 2 in nadaljuj s korakom 5.\n5) Klikni z desnim gumbom miške na nealocirano/prosto področje in izberi ali 'Nova Particija' ali 'Nov preprost nosilec' ali 'Nov logični pogon'.\n6) Zdaj bi se moralo prikazati okno 'Čarovnik za nove particije' ali 'Čarovnik za nov preprost nosilec'; sledi njegovim navodilom. Na strani čarovnika z naslovom »Formatiraj particijo« izberi »Ne formatiraj te particije« ali »Ne formatiraj tega nosilca«.. V istem čarovniku klikni »Naprej« in nato »Dokončaj«..\n7) Upoštevaj, da je pot naprave, ki si jo izbral v VeraCryptu, zdaj morda napačna. Zato zapri čarovnika za ustvarjanje nosilca VeraCrypt (če se še izvaja) in ga nato znova zaženi.\n8) Poskusi znova šifrirati napravo/particijo.\n\nČe VeraCrypt vedno znova ne uspe šifrirati naprave oziroma particije, lahko razmisliš o ustvarjanju vsebnika datotek.</entry> - <entry lang="sl" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Napaka: Datotečnega sistema ni bilo mogoče zakleniti oziroma odklopiti. Morda ga uporabljajo operacijski sistem ali aplikacije (na primer protivirusna programska oprema). Šifriranje particije lahko povzroči poškodbe podatkov in nestabilnost sistema.\n\nZapri vse aplikacije, ki morda uporabljajo datotečni sistem (vključno s protivirusno programsko opremo) in poskusi znova. Če ne pomaga, sledi spodnjim korakom.</entry> + <entry lang="sl" key="FORMAT_CANT_UNMOUNT_FILESYS">Napaka: Naprava/particija vsebuje datotečni sistem, ki ga ni bilo mogoče odklopiti. Datotečni sistem morda uporablja operacijski sistem. Formatiranje naprave/particije bi zelo verjetno povzročilo poškodbe podatkov in nestabilnost sistema.\n\nZa rešitev te težave priporočamo, da najprej izbrišeš particijo in jo nato znova ustvariš brez formatiranja. To storiš tako, da slediš tem korakom:\n1) Z desno tipko miške klikni ikono »Računalnik« (ali »Moj računalnik«) v meniju »Start« in izberi »Upravljanje«. Prikazati bi se moralo okno »Upravljanje računalnika«.\n2) V oknu 'Upravljanje računalnika' izberi 'Shramba' > 'Upravljanje diskov'.\n3) Z desno tipko miške klikni particijo, ki jo želiš šifrirati, in izberi »Izbriši particijo«, »Izbriši nosilec« ali »Izbriši logični pogon«.\n4) Klikni 'Da'. Če želijo Windows ponovno zagnati računalnik, stori to. Nato ponovi koraka 1 in 2 in nadaljuj s korakom 5.\n5) Klikni z desnim gumbom miške na nealocirano/prosto področje in izberi ali 'Nova Particija' ali 'Nov preprost nosilec' ali 'Nov logični pogon'.\n6) Zdaj bi se moralo prikazati okno 'Čarovnik za nove particije' ali 'Čarovnik za nov preprost nosilec'; sledi njegovim navodilom. Na strani čarovnika z naslovom »Formatiraj particijo« izberi »Ne formatiraj te particije« ali »Ne formatiraj tega nosilca«.. V istem čarovniku klikni »Naprej« in nato »Dokončaj«..\n7) Upoštevaj, da je pot naprave, ki si jo izbral v VeraCryptu, zdaj morda napačna. Zato zapri čarovnika za ustvarjanje nosilca VeraCrypt (če se še izvaja) in ga nato znova zaženi.\n8) Poskusi znova šifrirati napravo/particijo.\n\nČe VeraCrypt vedno znova ne uspe šifrirati naprave oziroma particije, lahko razmisliš o ustvarjanju vsebnika datotek.</entry> + <entry lang="sl" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Napaka: Datotečnega sistema ni bilo mogoče zakleniti oziroma odklopiti. Morda ga uporabljajo operacijski sistem ali aplikacije (na primer protivirusna programska oprema). Šifriranje particije lahko povzroči poškodbe podatkov in nestabilnost sistema.\n\nZapri vse aplikacije, ki morda uporabljajo datotečni sistem (vključno s protivirusno programsko opremo) in poskusi znova. Če ne pomaga, sledi spodnjim korakom.</entry> <entry lang="sl" key="DEVICE_IN_USE_INFO">OPOZORILO: Nekatere nameščene naprave/particije so bile že v uporabi!\n\nČe to ignoriraš, lahko povzroči neželene rezultate, vključno z nestabilnostjo sistema.\n\nMočno priporočamo, da zapreš vse aplikacije, ki morda uporabljajo naprave/particije.</entry> @@ -592,3 +592,3 @@ <entry lang="sl" key="OPENFILES_LOCK">Nosilca ni mogoče zakleniti. Na nosilcu so še odprte datoteke. Zato ga ni mogoče odklopiti.</entry> - <entry lang="sl" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt ne more zakleniti nosilca, ker ga uporabljajo sistem ali aplikacije (na nosilcu so morda odprte datoteke).\n\nAli želiš prisilno odklopiti nosilec?</entry> + <entry lang="sl" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt ne more zakleniti nosilca, ker ga uporabljajo sistem ali aplikacije (na nosilcu so morda odprte datoteke).\n\nAli želiš prisilno odklopiti nosilec?</entry> <entry lang="sl" key="OPEN_VOL_TITLE">Izberi VeraCryptov nosilec</entry> @@ -731,3 +731,3 @@ <entry lang="sl" key="CANT_MOUNT_VOLUME">Ne morem priklopiti nosilca.</entry> - <entry lang="sl" key="CANT_DISMOUNT_VOLUME">Ne morem odklopiti nosilca.</entry> + <entry lang="sl" key="CANT_UNMOUNT_VOLUME">Ne morem odklopiti nosilca.</entry> <entry lang="sl" key="FORMAT_NTFS_FAILED">Windows ni uspel formatirati nosilca kot NTFS.\n\nIzberi drugo vrsto datotečnega sistema (če je mogoče) in poskusi znova. Druga možnost je, da nosilec pustiš neformatiran (za datotečni sistem izberete »Brez«), zapusti ta čarovnik, priklopi nosilec in nato uporabi sistemsko orodje ali orodje tretje osebe za formatiranje pripetega nosilca (nosilec bo ostal šifriran) .</entry> @@ -773,3 +773,3 @@ <entry lang="sl" key="INPLACE_DEC_GENERIC_ERR">Napaka je VeraCryptu preprečila dešifriranje nosilca. Poskusite odpraviti morebitne predhodno prijavljene težave in nato poskusi znova, če je mogoče.</entry> - <entry lang="sl" key="CANT_DISMOUNT_OUTER_VOL">Napaka: zunanjega nosilca ni mogoče odklopiti!\n\nNosilca ni mogoče odklopiti, če vsebuje datoteke ali mape, ki jih uporablja program ali sistem.\n\nZapri vse programe, ki morda uporabljajo datoteke ali imenike na nosilcu, in klikni 'Poskusi znova' .</entry> + <entry lang="sl" key="CANT_UNMOUNT_OUTER_VOL">Napaka: zunanjega nosilca ni mogoče odklopiti!\n\nNosilca ni mogoče odklopiti, če vsebuje datoteke ali mape, ki jih uporablja program ali sistem.\n\nZapri vse programe, ki morda uporabljajo datoteke ali imenike na nosilcu, in klikni 'Poskusi znova' .</entry> <entry lang="sl" key="CANT_GET_OUTER_VOL_INFO">Napaka: Ni mogoče pridobiti informacij o zunanjem nosilcu!\nUstvarjanja nosilca ni mogoče nadaljevati.</entry> @@ -884,3 +884,3 @@ <entry lang="sl" key="CLOSE_TC_FIRST">Gonilnika naprave VeraCrypt ni mogoče odstraniti.\n\nNajprej zapri vsa odprta okna VeraCrypt. Če ne pomaga, znova zaženi Windows in poskusi znova.</entry> - <entry lang="sl" key="DISMOUNT_ALL_FIRST">Vse nosilce VeraCrypt je treba pred namestitvijo ali odstranitvijo VeraCrypta odklopiti.</entry> + <entry lang="sl" key="UNMOUNT_ALL_FIRST">Vse nosilce VeraCrypt je treba pred namestitvijo ali odstranitvijo VeraCrypta odklopiti.</entry> <entry lang="sl" key="UNINSTALL_OLD_VERSION_FIRST">V tem sistemu je trenutno nameščena zastarela različica VeraCrypt. Odstraniti jo je treba, preden lahko namestiš novo različico.\n\nTakoj ko zapreš to okno s sporočilom, se bo zagnal program za odstranjevanje stare različice. Upoštevaj, da pri odstranitvi VeraCrypta noben nosilec ne bo dešifriran. Ko odstraniš staro različico VeraCrypta, znova zaženi namestitveni program nove različice.</entry> @@ -905,3 +905,3 @@ <entry lang="sl" key="OPEN">Odpri</entry> - <entry lang="sl" key="DISMOUNT">Odklopi</entry> + <entry lang="sl" key="UNMOUNT">Odklopi</entry> <entry lang="sl" key="SHOW_TC">Prikaži VeraCrypt</entry> @@ -977,3 +977,3 @@ <entry lang="sl" key="SYS_FAVORITES_REQUIRE_PBA">Zdi se, da sistemska particija/pogon ni šifriran.\n\nSistemske priljubljene nosilce je mogoče namestiti samo z geslom za preverjanje pristnosti pred zagonom. Če želiš torej omogočiti uporabo sistemskih priljubljenih nosilcev, moraš najprej šifrirati sistemsko particijo/pogon.</entry> - <entry lang="sl" key="DISMOUNT_FIRST">Pred nadaljevanjem najprej odklopi nosilec.</entry> + <entry lang="sl" key="UNMOUNT_FIRST">Pred nadaljevanjem najprej odklopi nosilec.</entry> <entry lang="sl" key="CANNOT_SET_TIMER">Napaka: ne morem nastaviti časovnika.</entry> @@ -1011,7 +1011,7 @@ <entry lang="sl" key="HK_AUTOMOUNT_DEVICES">Samodejni priklop naprave</entry> - <entry lang="sl" key="HK_DISMOUNT_ALL">Odklopi vse</entry> + <entry lang="sl" key="HK_UNMOUNT_ALL">Odklopi vse</entry> <entry lang="sl" key="HK_WIPE_CACHE">Pobriši vsebino v predpomnilniku</entry> - <entry lang="sl" key="HK_DISMOUNT_ALL_AND_WIPE">Odklopi vse in pobriši vsebino v predpomnilniku</entry> - <entry lang="sl" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Prisilno odklopi vse in pobriši vsebino v predpomnilniku</entry> - <entry lang="sl" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Prisilno odklopi vse, pobriši vsebino v predpomnilniku in izhod iz programa</entry> + <entry lang="sl" key="HK_UNMOUNT_ALL_AND_WIPE">Odklopi vse in pobriši vsebino v predpomnilniku</entry> + <entry lang="sl" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Prisilno odklopi vse in pobriši vsebino v predpomnilniku</entry> + <entry lang="sl" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Prisilno odklopi vse, pobriši vsebino v predpomnilniku in izhod iz programa</entry> <entry lang="sl" key="HK_MOUNT_FAVORITE_VOLUMES">Priklopi priljubljene nosilce</entry> @@ -1027,10 +1027,10 @@ <entry lang="sl" key="HIDDEN_OS_HIBERNATION_PREVENTED">Mirovanje je bilo preprečeno.\n\nVeraCrypt ne podpira mirovanja v skritih operacijskih sistemih, ki uporabljajo dodatno zagonsko particijo. Upoštevaj, da si zagonsko particijo delita tako vaba kot skriti sistem. Zato mora VeraCrypt preprečiti uhajanje podatkov in težave med preklopom iz stanja mirovanja, da skriti sistem prepreči pisanje na skupno zagonsko particijo in stanje mirovanja.</entry> - <entry lang="sl" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">Nosilec VeraCrypt, priklopljen kot %c: je bil odklopljen.</entry> - <entry lang="sl" key="MOUNTED_VOLUMES_DISMOUNTED">Nosilci VeraCrypt so bili odklopljeni.</entry> - <entry lang="sl" key="VOLUMES_DISMOUNTED_CACHE_WIPED">Nosilci VeraCrypt so bili odklopljeni in predpomnilnik gesel je izbrisan.</entry> - <entry lang="sl" key="SUCCESSFULLY_DISMOUNTED">Uspešno odklopljeno</entry> + <entry lang="sl" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">Nosilec VeraCrypt, priklopljen kot %c: je bil odklopljen.</entry> + <entry lang="sl" key="MOUNTED_VOLUMES_UNMOUNTED">Nosilci VeraCrypt so bili odklopljeni.</entry> + <entry lang="sl" key="VOLUMES_UNMOUNTED_CACHE_WIPED">Nosilci VeraCrypt so bili odklopljeni in predpomnilnik gesel je izbrisan.</entry> + <entry lang="sl" key="SUCCESSFULLY_UNMOUNTED">Uspešno odklopljeno</entry> <entry lang="sl" key="CONFIRM_BACKGROUND_TASK_DISABLED">OPOZORILO: Če je opravilo v ozadju VeraCrypt onemogočeno, bodo onemogočene naslednje funkcije:\n\n1) Bližnje tipke\n2) Samodejno odklop (npr. ob odjavi, nenamerni odstranitvi gostiteljske naprave, časovni omejitvi itd.)\n3 ) Samodejna namestitev priljubljenih nosilcev\n4) Obvestila (npr. ko je preprečena poškodba skritega nosilca)\n5) Skrita ikona\n\nOpomba: Opravilo v ozadju lahko kadar koli izklopiš tako, da z desno miškino tipko klikneš skrito ikono VeraCrypt in izbereš 'Izhod'.\n\nAli si prepričan, da želiš trajno onemogočiti opravilo v ozadju VeraCrypt?</entry> - <entry lang="sl" key="CONFIRM_NO_FORCED_AUTODISMOUNT">OPOZORILO: Če je ta možnost onemogočena, nosilcev, ki vsebujejo odprte datoteke/imenike, ne bo mogoče samodejno odklopiti.\n\nAli si prepričan, da želi onemogočiti to možnost?</entry> - <entry lang="sl" key="WARN_PREF_AUTO_DISMOUNT">OPOZORILO: Nosilci, ki vsebujejo odprte datoteke/imenike, NE bodo samodejno odklopljeni.\n\nČe želiš to preprečiti, omogoči naslednjo možnost v tem pogovornem oknu: 'Vsili samodejno odklopi, tudi če nosilec vsebuje odprte datoteke ali imenike'</entry> - <entry lang="sl" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">OPOZORILO: Ko je baterija prenosnega računalnika skoraj prazna, lahko Windows ne pošlje ustreznih sporočil delujočim aplikacijam, ko računalnik preklopi v način varčevanja z energijo. Zato VeraCrypt v takih primerih morda ne bo uspel samodejno odklopiti nosilcev.</entry> + <entry lang="sl" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">OPOZORILO: Če je ta možnost onemogočena, nosilcev, ki vsebujejo odprte datoteke/imenike, ne bo mogoče samodejno odklopiti.\n\nAli si prepričan, da želi onemogočiti to možnost?</entry> + <entry lang="sl" key="WARN_PREF_AUTO_UNMOUNT">OPOZORILO: Nosilci, ki vsebujejo odprte datoteke/imenike, NE bodo samodejno odklopljeni.\n\nČe želiš to preprečiti, omogoči naslednjo možnost v tem pogovornem oknu: 'Vsili samodejno odklopi, tudi če nosilec vsebuje odprte datoteke ali imenike'</entry> + <entry lang="sl" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">OPOZORILO: Ko je baterija prenosnega računalnika skoraj prazna, lahko Windows ne pošlje ustreznih sporočil delujočim aplikacijam, ko računalnik preklopi v način varčevanja z energijo. Zato VeraCrypt v takih primerih morda ne bo uspel samodejno odklopiti nosilcev.</entry> <entry lang="sl" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Načrtoval si postopek šifriranja particije/nosilca. Postopek še ni zaključen.\n\nAli želiš nadaljevati postopek zdaj?</entry> @@ -1065,3 +1065,3 @@ <entry lang="sl" key="MOUNT_TC_VOLUME">Priklop nosilca VeraCrypt</entry> - <entry lang="sl" key="DISMOUNT_ALL_TC_VOLUMES">Odklop vseh nosilcev VeraCrypt</entry> + <entry lang="sl" key="UNMOUNT_ALL_TC_VOLUMES">Odklop vseh nosilcev VeraCrypt</entry> <entry lang="sl" key="UAC_INIT_ERROR">VeraCrypt ni mogel pridobiti pravic skrbnika.</entry> @@ -1308,4 +1308,4 @@ <entry lang="sl" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">OPOZORILO: Ta nastavitev lahko poslabša delovanje.\n\nAli si prepričan, da želiš uporabiti to nastavitev?</entry> - <entry lang="sl" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Opozorilo: nosilec VeraCrypt je samodejno odklopljen</entry> - <entry lang="sl" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Preden fizično odstraniš ali izklopiš napravo, ki vsebuje nameščen nosilec, vedno najprej odklopi nosilec v VeraCryptu.\n\nNepričakovan spontan odklop običajno povzroči občasna okvara kabla, pogona (ohišja) itd.</entry> + <entry lang="sl" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Opozorilo: nosilec VeraCrypt je samodejno odklopljen</entry> + <entry lang="sl" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Preden fizično odstraniš ali izklopiš napravo, ki vsebuje nameščen nosilec, vedno najprej odklopi nosilec v VeraCryptu.\n\nNepričakovan spontan odklop običajno povzroči občasna okvara kabla, pogona (ohišja) itd.</entry> <entry lang="sl" key="UNSUPPORTED_TRUECRYPT_FORMAT">Ta nosilec je bil ustvarjen s TrueCrypt %x.%x, vendar VeraCrypt podpira samo nosilce TrueCrypt, ustvarjene s serijo TrueCrypt 6.x/7.x</entry> @@ -1455,3 +1455,3 @@ <entry lang="sl" key="TASKICON_PREF_OPEN_VOL">Odpri priklopljene nosilce</entry> - <entry lang="sl" key="TASKICON_PREF_DISMOUNT_VOL">Odklop priklopljenih nosilcev</entry> + <entry lang="sl" key="TASKICON_PREF_UNMOUNT_VOL">Odklop priklopljenih nosilcev</entry> <entry lang="sl" key="DISK_FREE">Velikost razpoložljivega prostora: {0}</entry> @@ -1485,6 +1485,6 @@ <entry lang="sl" key="LINUX_SELECT">Izberi...</entry> - <entry lang="sl" key="LINUX_DISMOUNT_ALL_WHEN">Odklopi vse nosilce, ko</entry> + <entry lang="sl" key="LINUX_UNMOUNT_ALL_WHEN">Odklopi vse nosilce, ko</entry> <entry lang="sl" key="LINUX_ENTERING_POWERSAVING">Sistem prehaja v način varčevanja z energijo</entry> <entry lang="sl" key="LINUX_LOGIN_ACTION">Dejanja, ki jih je treba izvesti, ko se uporabnik prijavi</entry> - <entry lang="sl" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Zapri vsa okna Raziskovalca nosilca, ki ga odklopiš</entry> + <entry lang="sl" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Zapri vsa okna Raziskovalca nosilca, ki ga odklopiš</entry> <entry lang="sl" key="LINUX_HOTKEYS">Vroče tipke</entry> @@ -1492,3 +1492,3 @@ <entry lang="sl" key="LINUX_SOUND_NOTIFICATION">Predvajaj zvok sistemskega obvestila po priklopu oziroma odklopu</entry> - <entry lang="sl" key="LINUX_CONFIRM_AFTER_DISMOUNT">Po odklopu prikaži potrditveno sporočilo</entry> + <entry lang="sl" key="LINUX_CONFIRM_AFTER_UNMOUNT">Po odklopu prikaži potrditveno sporočilo</entry> <entry lang="sl" key="LINUX_VC_QUITS">VeraCrypt konča</entry> @@ -1524,3 +1524,3 @@ <entry lang="sl" key="LINUX_KERNEL_OLD">Tvoj sistem uporablja staro različico jedra Linuxa.\n\nZaradi napake v jedru Linuxa se tvoj sistem morda neha odzivati pri zapisovanju podatkov na nosilec VeraCrypt. To težavo je mogoče rešiti z nadgradnjo jedra na različico 2.6.24 ali novejšo.</entry> - <entry lang="sl" key="LINUX_VOL_DISMOUNTED">Nosilec {0} je odklopljen.</entry> + <entry lang="sl" key="LINUX_VOL_UNMOUNTED">Nosilec {0} je odklopljen.</entry> <entry lang="sl" key="LINUX_VOL_MOUNTED">Nosilec {0} je priklopljen.</entry> @@ -1638,7 +1638,10 @@ <entry lang="sl" key="LINUX_LANGUAGE">Jezik</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="sl" key="LINUX_SELECT_SYS_DEFAULT_LANG">Izberite privzeti jezik sistema</entry> + <entry lang="sl" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">Za uveljavitev spremembe jezika je potrebno znova zagnati VeraCrypt.</entry> + <entry lang="sl" key="ERR_XTS_MASTERKEY_VULNERABLE">OPOZORILO: Glavni ključ nosilca je ranljiv za napad, ki lahko ogrozi varnost podatkov.\n\nUstvarite nov nosilec in vanj prenesite podatke.</entry> + <entry lang="sl" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">OPOZORILO: Glavni ključ šifriranega sistema je ranljiv za napad, ki lahko ogrozi varnost podatkov.\nProsimo, dešifrirajte sistemsko particijo/pogon in jo nato ponovno šifrirajte.</entry> + <entry lang="sl" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">OPOZORILO: Glavni ključ nosilca ima varnostno ranljivost.</entry> + <entry lang="sl" key="MOUNTPOINT_BLOCKED">NAPAKA: Tocka priklopa nosilca je blokirana, ker prekriva zašciteno sistemsko mapo.\n\nIzberite drugo tocko priklopa.</entry> + <entry lang="sl" key="MOUNTPOINT_NOTALLOWED">NAPAKA: Tocka priklopa nosilca ni dovoljena, ker prekriva mapo, ki je del okoljske spremenljivke PATH.\n\nIzberite drugo tocko priklopa.</entry> + <entry lang="sl" key="INSECURE_MODE">[NEVAREN NACIN]</entry> </localization> diff --git a/Translations/Language.sv.xml b/Translations/Language.sv.xml index 0a45c49e..6e256746 100644 --- a/Translations/Language.sv.xml +++ b/Translations/Language.sv.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="sv" name="Svenska" en-name="Swedish" version="1.0.0" translators="Peter Runesson" /> @@ -137,4 +137,4 @@ <entry lang="sv" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Globala inställningar</entry> - <entry lang="sv" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Visa ett systemmeddelande efter en snabbtangentsdemontering</entry> - <entry lang="sv" key="IDC_HK_DISMOUNT_PLAY_SOUND">Spela upp systemaviseringsljud efter snabbtangentsdemontering</entry> + <entry lang="sv" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Visa ett systemmeddelande efter en snabbtangentsdemontering</entry> + <entry lang="sv" key="IDC_HK_UNMOUNT_PLAY_SOUND">Spela upp systemaviseringsljud efter snabbtangentsdemontering</entry> <entry lang="sv" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="sv" key="IDC_PREF_CACHE_PASSWORDS">Lagra lösenord i drivrutinens minnescache</entry> - <entry lang="sv" key="IDC_PREF_DISMOUNT_INACTIVE">Demontera volym automatiskt efter att ingen data har lästs/skrivits till den</entry> - <entry lang="sv" key="IDC_PREF_DISMOUNT_LOGOFF">Användaren loggar ut</entry> - <entry lang="sv" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">Användarsession låst</entry> - <entry lang="sv" key="IDC_PREF_DISMOUNT_POWERSAVING">Går in i strömsparläge</entry> - <entry lang="sv" key="IDC_PREF_DISMOUNT_SCREENSAVER">Skärmsläckaren startas</entry> - <entry lang="sv" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Tvinga automatisk demontering även om volymen innehåller öppna filer eller mappar</entry> + <entry lang="sv" key="IDC_PREF_UNMOUNT_INACTIVE">Demontera volym automatiskt efter att ingen data har lästs/skrivits till den</entry> + <entry lang="sv" key="IDC_PREF_UNMOUNT_LOGOFF">Användaren loggar ut</entry> + <entry lang="sv" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">Användarsession låst</entry> + <entry lang="sv" key="IDC_PREF_UNMOUNT_POWERSAVING">Går in i strömsparläge</entry> + <entry lang="sv" key="IDC_PREF_UNMOUNT_SCREENSAVER">Skärmsläckaren startas</entry> + <entry lang="sv" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Tvinga automatisk demontering även om volymen innehåller öppna filer eller mappar</entry> <entry lang="sv" key="IDC_PREF_LOGON_MOUNT_DEVICES">Montera alla enhetsvärdade VeraCrypt-volymer</entry> @@ -171,3 +171,3 @@ <entry lang="sv" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Använd en annan aktivitetsfältsikon när det finns monterade volymer</entry> - <entry lang="sv" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Rensa cachelagrade lösenord vid automatisk demontering</entry> + <entry lang="sv" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Rensa cachelagrade lösenord vid automatisk demontering</entry> <entry lang="sv" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Rensa cachelagrade lösenord vid avslut</entry> @@ -271,4 +271,4 @@ <entry lang="sv" key="IDT_AUTORUN">AutoRun-konfiguration (autorun.inf)</entry> - <entry lang="sv" key="IDT_AUTO_DISMOUNT">Automatisk demontering</entry> - <entry lang="sv" key="IDT_AUTO_DISMOUNT_ON">Demontera alla när:</entry> + <entry lang="sv" key="IDT_AUTO_UNMOUNT">Automatisk demontering</entry> + <entry lang="sv" key="IDT_AUTO_UNMOUNT_ON">Demontera alla när:</entry> <entry lang="sv" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Skärmalternativ för startinläsaren</entry> @@ -278,3 +278,3 @@ <entry lang="sv" key="IDT_DEFAULT_MOUNT_OPTIONS">Standardmonteringsalternativ</entry> - <entry lang="sv" key="IDT_DISMOUNT_ACTION">Snabbtangentsalternativ</entry> + <entry lang="sv" key="IDT_UNMOUNT_ACTION">Snabbtangentsalternativ</entry> <entry lang="sv" key="IDT_DRIVER_OPTIONS">Drivrutinskonfiguration</entry> @@ -425,4 +425,4 @@ <entry lang="sv" key="DEVICE_IN_USE_INPLACE_ENC">Varning: Partitionen används av operativsystemet eller applikationerna. Du bör stänga alla program som kanske använder partitionen (inklusive antivirusprogram).\n\nFortsätt?</entry> - <entry lang="sv" key="FORMAT_CANT_DISMOUNT_FILESYS">Fel: Enheten/partitionen innehåller ett filsystem som inte kunde demonteras. Filsystemet kan användas av operativsystemet. Formatering av enheten/partitionen skulle med stor sannolikhet orsaka datakorruption och systeminstabilitet.\n\nFör att lösa det här problemet rekommenderar vi att du först tar bort partitionen och sedan återskapar den utan att formatera. För att göra det, följ dessa steg:\n1) Högerklicka på ikonen "Dator" (eller "Den här datorn") i "Start-menyn" och välj "Hantera". Fönstret "Datorhantering" bör visas.\n2) I fönstret "Datorhantering" väljer du "Lagring" > "Diskhantering".\n3) Högerklicka på den partition du vill kryptera och välj antingen "Radera partition", eller "Radera volym" eller "Radera logisk enhet".\n4) Klicka på "Ja". Om Windows ber dig att starta om datorn, gör det. Upprepa sedan steg 1 och 2 och fortsätt från steg 5.\n5) Högerklicka på det otilldelade/fria utrymmesområdet och välj antingen "Ny partition" eller "Ny enkel volym" eller "Ny logisk enhet".\n6 ) Fönstret "Ny partitionsguide" eller "Ny enkel volymguide" bör visas nu; följ dess instruktioner. På guidens sida med titeln "Formatera partition", välj antingen "Formatera inte den här partitionen" eller "Formatera inte den här volymen". I samma guide klickar du på "Nästa" och sedan på "Slutför".\n7) Observera att sökvägen för enheten du har valt i VeraCrypt kan vara fel nu. Avsluta därför guiden Skapa VeraCrypt-volym (om den fortfarande körs) och starta den sedan igen.\n8) Försök att kryptera enheten/partitionen igen.\n\nOm VeraCrypt upprepade gånger misslyckas med att kryptera enheten/partitionen, kanske du vill överväg att skapa en filbehållare istället.</entry> - <entry lang="sv" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Fel: Filsystemet kunde inte låsas och/eller demonteras. Det kan användas av operativsystemet eller programmen (till exempel antivirusprogram). Kryptering av partitionen kan orsaka datakorruption och systeminstabilitet.\n\nStäng alla applikationer som kan använda filsystemet (inklusive antivirusprogram) och försök igen. Om det inte hjälper, följ stegen nedan.</entry> + <entry lang="sv" key="FORMAT_CANT_UNMOUNT_FILESYS">Fel: Enheten/partitionen innehåller ett filsystem som inte kunde demonteras. Filsystemet kan användas av operativsystemet. Formatering av enheten/partitionen skulle med stor sannolikhet orsaka datakorruption och systeminstabilitet.\n\nFör att lösa det här problemet rekommenderar vi att du först tar bort partitionen och sedan återskapar den utan att formatera. För att göra det, följ dessa steg:\n1) Högerklicka på ikonen "Dator" (eller "Den här datorn") i "Start-menyn" och välj "Hantera". Fönstret "Datorhantering" bör visas.\n2) I fönstret "Datorhantering" väljer du "Lagring" > "Diskhantering".\n3) Högerklicka på den partition du vill kryptera och välj antingen "Radera partition", eller "Radera volym" eller "Radera logisk enhet".\n4) Klicka på "Ja". Om Windows ber dig att starta om datorn, gör det. Upprepa sedan steg 1 och 2 och fortsätt från steg 5.\n5) Högerklicka på det otilldelade/fria utrymmesområdet och välj antingen "Ny partition" eller "Ny enkel volym" eller "Ny logisk enhet".\n6 ) Fönstret "Ny partitionsguide" eller "Ny enkel volymguide" bör visas nu; följ dess instruktioner. På guidens sida med titeln "Formatera partition", välj antingen "Formatera inte den här partitionen" eller "Formatera inte den här volymen". I samma guide klickar du på "Nästa" och sedan på "Slutför".\n7) Observera att sökvägen för enheten du har valt i VeraCrypt kan vara fel nu. Avsluta därför guiden Skapa VeraCrypt-volym (om den fortfarande körs) och starta den sedan igen.\n8) Försök att kryptera enheten/partitionen igen.\n\nOm VeraCrypt upprepade gånger misslyckas med att kryptera enheten/partitionen, kanske du vill överväg att skapa en filbehållare istället.</entry> + <entry lang="sv" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Fel: Filsystemet kunde inte låsas och/eller demonteras. Det kan användas av operativsystemet eller programmen (till exempel antivirusprogram). Kryptering av partitionen kan orsaka datakorruption och systeminstabilitet.\n\nStäng alla applikationer som kan använda filsystemet (inklusive antivirusprogram) och försök igen. Om det inte hjälper, följ stegen nedan.</entry> <entry lang="sv" key="DEVICE_IN_USE_INFO">VARNING: Vissa av de monterade enheterna/partitionerna användes redan!\n\nIgnorering av detta kan orsaka oönskade resultat inklusive systeminstabilitet.\n\nVi rekommenderar starkt att du stänger alla applikationer som kan använda enheterna/partitionerna.</entry> @@ -592,3 +592,3 @@ <entry lang="sv" key="OPENFILES_LOCK">Det går inte att låsa volymen. Det finns fortfarande öppna filer på volymen. Därför kan den inte demonteras.</entry> - <entry lang="sv" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt kan inte låsa volymen eftersom den används av systemet eller applikationerna (det kan finnas öppna filer på volymen).\n\nVill du tvinga demontering av volymen?</entry> + <entry lang="sv" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt kan inte låsa volymen eftersom den används av systemet eller applikationerna (det kan finnas öppna filer på volymen).\n\nVill du tvinga demontering av volymen?</entry> <entry lang="sv" key="OPEN_VOL_TITLE">Välj en VeraCrypt-volym</entry> @@ -731,3 +731,3 @@ <entry lang="sv" key="CANT_MOUNT_VOLUME">Kan inte montera volymen.</entry> - <entry lang="sv" key="CANT_DISMOUNT_VOLUME">Kan inte demontera volym.</entry> + <entry lang="sv" key="CANT_UNMOUNT_VOLUME">Kan inte demontera volym.</entry> <entry lang="sv" key="FORMAT_NTFS_FAILED">Windows misslyckades med att formatera volymen som NTFS/exFAT/ReFS.\n\nVälj en annan typ av filsystem (om möjligt) och försök igen. Alternativt kan du lämna volymen oformaterad (välj "Ingen" som filsystem), avsluta den här guiden, montera volymen och sedan använda antingen ett system eller ett verktyg från tredje part för att formatera den monterade volymen (volymen kommer att förbli krypterad).</entry> @@ -773,3 +773,3 @@ <entry lang="sv" key="INPLACE_DEC_GENERIC_ERR">Ett fel hindrade VeraCrypt från att dekryptera volymen. Försök att åtgärda eventuella tidigare rapporterade problem och försök sedan igen om möjligt.</entry> - <entry lang="sv" key="CANT_DISMOUNT_OUTER_VOL">Fel: Kan inte demontera den yttre volymen!\n\nVolymen kan inte demonteras om den innehåller filer eller mappar som används av ett program eller systemet.\n\nStäng alla program som kan använda filer eller mappar på volymen och klicka på Försök igen.</entry> + <entry lang="sv" key="CANT_UNMOUNT_OUTER_VOL">Fel: Kan inte demontera den yttre volymen!\n\nVolymen kan inte demonteras om den innehåller filer eller mappar som används av ett program eller systemet.\n\nStäng alla program som kan använda filer eller mappar på volymen och klicka på Försök igen.</entry> <entry lang="sv" key="CANT_GET_OUTER_VOL_INFO">Fel: Kan inte få information om den yttre volymen!\nVolymskapandet kan inte fortsätta.</entry> @@ -884,3 +884,3 @@ <entry lang="sv" key="CLOSE_TC_FIRST">VeraCrypts drivrutin kan inte stängas.\n\nStäng först alla öppna VeraCrypt-fönster. Om detta inte hjälper, starta om Windows och försök sedan igen.</entry> - <entry lang="sv" key="DISMOUNT_ALL_FIRST">Alla VeraCrypt-volymer måste demonteras innan VeraCrypt kan installeras eller avinstalleras.</entry> + <entry lang="sv" key="UNMOUNT_ALL_FIRST">Alla VeraCrypt-volymer måste demonteras innan VeraCrypt kan installeras eller avinstalleras.</entry> <entry lang="sv" key="UNINSTALL_OLD_VERSION_FIRST">En föråldrad version av VeraCrypt är för närvarande installerad på detta system. Den måste avinstalleras innan du kan installera den här nya versionen av VeraCrypt.\n\nSå snart du stänger den här meddelanderutan kommer avinstallationsprogrammet för den gamla versionen att startas. Observera att ingen volym kommer att dekrypteras när du avinstallerar VeraCrypt. När du har avinstallerat den gamla versionen av VeraCrypt kör du installationsprogrammet för den nya versionen av VeraCrypt igen.</entry> @@ -905,3 +905,3 @@ <entry lang="sv" key="OPEN">Öppna</entry> - <entry lang="sv" key="DISMOUNT">Demontera</entry> + <entry lang="sv" key="UNMOUNT">Demontera</entry> <entry lang="sv" key="SHOW_TC">Visa VeraCrypt</entry> @@ -977,3 +977,3 @@ <entry lang="sv" key="SYS_FAVORITES_REQUIRE_PBA">Systempartitionen/-enheten verkar inte vara krypterad.\n\nSystemfavoritvolymer kan monteras med endast ett lösenord för autentisering före start. Därför, för att möjliggöra användning av systemfavoritvolymer, måste du först kryptera systempartitionen/enheten.</entry> - <entry lang="sv" key="DISMOUNT_FIRST">Demontera volymen innan du fortsätter.</entry> + <entry lang="sv" key="UNMOUNT_FIRST">Demontera volymen innan du fortsätter.</entry> <entry lang="sv" key="CANNOT_SET_TIMER">Fel: Det går inte att ställa in timer.</entry> @@ -1011,7 +1011,7 @@ <entry lang="sv" key="HK_AUTOMOUNT_DEVICES">Montera enheter automatiskt</entry> - <entry lang="sv" key="HK_DISMOUNT_ALL">Demontera alla</entry> + <entry lang="sv" key="HK_UNMOUNT_ALL">Demontera alla</entry> <entry lang="sv" key="HK_WIPE_CACHE">Rensa cache</entry> - <entry lang="sv" key="HK_DISMOUNT_ALL_AND_WIPE">Demontera alla & rensa cache</entry> - <entry lang="sv" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Tvinga demontering av alla & rensa cache</entry> - <entry lang="sv" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Tvinga demontering av alla, rensa cache & avsluta</entry> + <entry lang="sv" key="HK_UNMOUNT_ALL_AND_WIPE">Demontera alla & rensa cache</entry> + <entry lang="sv" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Tvinga demontering av alla & rensa cache</entry> + <entry lang="sv" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Tvinga demontering av alla, rensa cache & avsluta</entry> <entry lang="sv" key="HK_MOUNT_FAVORITE_VOLUMES">Montera favoritvolymer</entry> @@ -1027,10 +1027,10 @@ <entry lang="sv" key="HIDDEN_OS_HIBERNATION_PREVENTED">Viloläge har förhindrats.\n\nVeraCrypt stöder inte viloläge på dolda operativsystem som använder en extra startpartition. Observera att startpartitionen delas av både sken- och det dolda systemet. Därför måste VeraCrypt förhindra att det dolda systemet skriver till den delade startpartitionen och går i viloläge, för att förhindra dataläckor och problem när den återgår från viloläge.</entry> - <entry lang="sv" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">VeraCrypt-volymen monterad som %c: har demonterats.</entry> - <entry lang="sv" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt-volymer har demonterats.</entry> - <entry lang="sv" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt-volymer har demonterats och lösenordscachen har rensats.</entry> - <entry lang="sv" key="SUCCESSFULLY_DISMOUNTED">Demontering slutförd</entry> + <entry lang="sv" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">VeraCrypt-volymen monterad som %c: har demonterats.</entry> + <entry lang="sv" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt-volymer har demonterats.</entry> + <entry lang="sv" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt-volymer har demonterats och lösenordscachen har rensats.</entry> + <entry lang="sv" key="SUCCESSFULLY_UNMOUNTED">Demontering slutförd</entry> <entry lang="sv" key="CONFIRM_BACKGROUND_TASK_DISABLED">VARNING: Om VeraCrypt-bakgrundsuppgiften är inaktiverad kommer följande funktioner att inaktiveras:\n\n1) Snabbtangenter\n2) Automatisk demontering (t.ex. vid utloggning, oavsiktlig borttagning av värdenhet, tidsgräns, etc.)\n3 ) Automatisk montering av favoritvolymer\n4) Aviseringar (t.ex. när skada på dold volym förhindras)\n5) Fältikon\n\nObs: Du kan stänga av bakgrundsuppgiften när som helst genom att högerklicka på VeraCrypt-ikonen i fältet och välja "Avsluta".\n\nÄr du säker på att du vill inaktivera VeraCrypt-bakgrundsuppgiften permanent?</entry> - <entry lang="sv" key="CONFIRM_NO_FORCED_AUTODISMOUNT">VARNING: Om det här alternativet är inaktiverat kommer volymer som innehåller öppna filer/mappar inte att kunna demonteras automatiskt.\n\nÄr du säker på att du vill inaktivera det här alternativet?</entry> - <entry lang="sv" key="WARN_PREF_AUTO_DISMOUNT">VARNING: Volymer som innehåller öppna filer/mappar kommer INTE att demonteras automatiskt.\n\nFör att förhindra detta, aktivera följande alternativ i det här dialogfönstret: "Tvinga automatisk nedmontering även om volymen innehåller öppna filer eller mappar"</entry> - <entry lang="sv" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">VARNING: När en bärbar dators batterinivå är låg kan Windows utelämna att skicka lämpliga meddelanden till aktiva applikationer som körs när datorn går in i energisparläge. Därför kan VeraCrypt misslyckas med att automatiskt demontera volymer i sådana fall.</entry> + <entry lang="sv" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">VARNING: Om det här alternativet är inaktiverat kommer volymer som innehåller öppna filer/mappar inte att kunna demonteras automatiskt.\n\nÄr du säker på att du vill inaktivera det här alternativet?</entry> + <entry lang="sv" key="WARN_PREF_AUTO_UNMOUNT">VARNING: Volymer som innehåller öppna filer/mappar kommer INTE att demonteras automatiskt.\n\nFör att förhindra detta, aktivera följande alternativ i det här dialogfönstret: "Tvinga automatisk nedmontering även om volymen innehåller öppna filer eller mappar"</entry> + <entry lang="sv" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">VARNING: När en bärbar dators batterinivå är låg kan Windows utelämna att skicka lämpliga meddelanden till aktiva applikationer som körs när datorn går in i energisparläge. Därför kan VeraCrypt misslyckas med att automatiskt demontera volymer i sådana fall.</entry> <entry lang="sv" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Du har schemalagt processen för kryptering/dekryptering av en partition/volym. Processen har inte slutförts ännu.\n\nVill du återuppta processen nu?</entry> @@ -1065,3 +1065,3 @@ <entry lang="sv" key="MOUNT_TC_VOLUME">Montera VeraCrypt-volym</entry> - <entry lang="sv" key="DISMOUNT_ALL_TC_VOLUMES">Demontera alla VeraCrypt-volymer</entry> + <entry lang="sv" key="UNMOUNT_ALL_TC_VOLUMES">Demontera alla VeraCrypt-volymer</entry> <entry lang="sv" key="UAC_INIT_ERROR">VeraCrypt kunde inte erhålla administratörsbehörighet.</entry> @@ -1308,4 +1308,4 @@ <entry lang="sv" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">VARNING: Denna inställning kan ge försämrade prestanda.\n\nÄr du säker på att du vill använda denna inställning?</entry> - <entry lang="sv" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Varning: VeraCrypt-volym automatiskt demonterad</entry> - <entry lang="sv" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Innan du fysiskt tar bort eller stänger av en enhet som innehåller en VeraCrypt-volym, bör du alltid demontera den i VeraCrypt.\n\nOväntade demonteringar orsakas oftast av en trasig kabel eller enhet (diskkabinett) etc.</entry> + <entry lang="sv" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Varning: VeraCrypt-volym automatiskt demonterad</entry> + <entry lang="sv" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Innan du fysiskt tar bort eller stänger av en enhet som innehåller en VeraCrypt-volym, bör du alltid demontera den i VeraCrypt.\n\nOväntade demonteringar orsakas oftast av en trasig kabel eller enhet (diskkabinett) etc.</entry> <entry lang="sv" key="UNSUPPORTED_TRUECRYPT_FORMAT">Den här volymen skapades med TrueCrypt %x.%x men VeraCrypt stöder endast TrueCrypt-volymer skapade med TrueCrypt 6.x/7.x-serien</entry> @@ -1455,3 +1455,3 @@ <entry lang="sv" key="TASKICON_PREF_OPEN_VOL">Öppna monterade volymer</entry> - <entry lang="sv" key="TASKICON_PREF_DISMOUNT_VOL">Demontera monterade volymer</entry> + <entry lang="sv" key="TASKICON_PREF_UNMOUNT_VOL">Demontera monterade volymer</entry> <entry lang="sv" key="DISK_FREE">Ledigt utrymme tillgängligt: {0}</entry> @@ -1485,6 +1485,6 @@ <entry lang="sv" key="LINUX_SELECT">Vä&lj...</entry> - <entry lang="sv" key="LINUX_DISMOUNT_ALL_WHEN">Demontera alla volymer när</entry> + <entry lang="sv" key="LINUX_UNMOUNT_ALL_WHEN">Demontera alla volymer när</entry> <entry lang="sv" key="LINUX_ENTERING_POWERSAVING">Systemet går in i energisparläge</entry> <entry lang="sv" key="LINUX_LOGIN_ACTION">Åtgärder som ska utföras när användaren loggar in</entry> - <entry lang="sv" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Stäng alla Utforskar-fönster för volym som demonteras</entry> + <entry lang="sv" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Stäng alla Utforskar-fönster för volym som demonteras</entry> <entry lang="sv" key="LINUX_HOTKEYS">Snabbtangenter</entry> @@ -1492,3 +1492,3 @@ <entry lang="sv" key="LINUX_SOUND_NOTIFICATION">Spela upp systemaviseringsljud efter montering/demontering</entry> - <entry lang="sv" key="LINUX_CONFIRM_AFTER_DISMOUNT">Visa bekräftelsemeddelanderutan efter demontering</entry> + <entry lang="sv" key="LINUX_CONFIRM_AFTER_UNMOUNT">Visa bekräftelsemeddelanderutan efter demontering</entry> <entry lang="sv" key="LINUX_VC_QUITS">VeraCrypt avslutas</entry> @@ -1524,3 +1524,3 @@ <entry lang="sv" key="LINUX_KERNEL_OLD">Ditt system använder en gammal version av Linux-kärnan.\n\nPå grund av ett fel i Linux-kärnan kan ditt system sluta svara när du skriver data till en VeraCrypt-volym. Detta problem kan lösas genom att uppgradera kärnan till version 2.6.24 eller senare.</entry> - <entry lang="sv" key="LINUX_VOL_DISMOUNTED">Volymen {0} har demonterats.</entry> + <entry lang="sv" key="LINUX_VOL_UNMOUNTED">Volymen {0} har demonterats.</entry> <entry lang="sv" key="LINUX_VOL_MOUNTED">Volymen {0} har monterats.</entry> @@ -1640,5 +1640,8 @@ <entry lang="sv" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">För att språkändringen ska träda i kraft måste VeraCrypt startas om.</entry> - <entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE">VARNING: Volymens huvudnyckel är sårbar för en attack som äventyrar datasäkerheten.\n\nSkapa en ny volym och överför data till den.</entry> - <entry lang="en" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">VARNING: Det krypterade systemets huvudnyckel är sårbar för en attack som äventyrar datasäkerheten.\nDekryptera systempartitionen/enheten och kryptera den sedan igen.</entry> - <entry lang="en" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">VARNING: Volymens huvudnyckel har en säkerhetssårbarhet.</entry> + <entry lang="sv" key="ERR_XTS_MASTERKEY_VULNERABLE">VARNING: Volymens huvudnyckel är sårbar för en attack som äventyrar datasäkerheten.\n\nSkapa en ny volym och överför data till den.</entry> + <entry lang="sv" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">VARNING: Det krypterade systemets huvudnyckel är sårbar för en attack som äventyrar datasäkerheten.\nDekryptera systempartitionen/enheten och kryptera den sedan igen.</entry> + <entry lang="sv" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">VARNING: Volymens huvudnyckel har en säkerhetssårbarhet.</entry> + <entry lang="sv" key="MOUNTPOINT_BLOCKED">FEL: Volymens monteringspunkt är blockerad eftersom den skriver över en skyddad systemkatalog.\n\nVar god välj en annan monteringspunkt.</entry> + <entry lang="sv" key="MOUNTPOINT_NOTALLOWED">FEL: Volymens monteringspunkt är inte tillåten eftersom den skriver över en katalog som är en del av miljövariabeln PATH.\n\nVar god välj en annan monteringspunkt.</entry> + <entry lang="sv" key="INSECURE_MODE">[OSÄKERT]</entry> </localization> diff --git a/Translations/Language.th.xml b/Translations/Language.th.xml index e5b9a984..775f116a 100644 --- a/Translations/Language.th.xml +++ b/Translations/Language.th.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="th" name="ภาษาไทย" en-name="Thai" version="0.0.0" translators=""/> @@ -137,4 +137,4 @@ <entry lang="th" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">การตั้งค่าทั่วไป</entry> - <entry lang="th" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">แสดงบอลลูนแจ้งเตือนหลังการติดตั้งเมื่อสำเร็จ</entry> - <entry lang="th" key="IDC_HK_DISMOUNT_PLAY_SOUND">เล่นเสียงแจ้งเตือนของระบบหลังการติดตั้งเมื่อสำเร็จ</entry> + <entry lang="th" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">แสดงบอลลูนแจ้งเตือนหลังการติดตั้งเมื่อสำเร็จ</entry> + <entry lang="th" key="IDC_HK_UNMOUNT_PLAY_SOUND">เล่นเสียงแจ้งเตือนของระบบหลังการติดตั้งเมื่อสำเร็จ</entry> <entry lang="th" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="th" key="IDC_PREF_CACHE_PASSWORDS">บันทึกรหัสผ่านในหน่วยความจำ</entry> - <entry lang="th" key="IDC_PREF_DISMOUNT_INACTIVE">ปลดวอลลุ่มเมื่อไม่มีการอ่าน/เขียนข้อมูลในช่วง</entry> - <entry lang="th" key="IDC_PREF_DISMOUNT_LOGOFF">เมื่อผู้ใช้ล็อกเอาท์</entry> - <entry lang="th" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">เมื่อผู้ใช้งานล็อกเซสชั่น</entry> - <entry lang="th" key="IDC_PREF_DISMOUNT_POWERSAVING">เมื่อเข้าสู่โหมดประหยัดพลังงาน</entry> - <entry lang="th" key="IDC_PREF_DISMOUNT_SCREENSAVER">เมื่อเปิดใช้งานสกรีนเซฟเวอร์</entry> - <entry lang="th" key="IDC_PREF_FORCE_AUTO_DISMOUNT">บังคับการปลดวอลลุมแม้มีไฟล์หรือไดเรกทอรีที่เปิดอยู่</entry> + <entry lang="th" key="IDC_PREF_UNMOUNT_INACTIVE">ปลดวอลลุ่มเมื่อไม่มีการอ่าน/เขียนข้อมูลในช่วง</entry> + <entry lang="th" key="IDC_PREF_UNMOUNT_LOGOFF">เมื่อผู้ใช้ล็อกเอาท์</entry> + <entry lang="th" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">เมื่อผู้ใช้งานล็อกเซสชั่น</entry> + <entry lang="th" key="IDC_PREF_UNMOUNT_POWERSAVING">เมื่อเข้าสู่โหมดประหยัดพลังงาน</entry> + <entry lang="th" key="IDC_PREF_UNMOUNT_SCREENSAVER">เมื่อเปิดใช้งานสกรีนเซฟเวอร์</entry> + <entry lang="th" key="IDC_PREF_FORCE_AUTO_UNMOUNT">บังคับการปลดวอลลุมแม้มีไฟล์หรือไดเรกทอรีที่เปิดอยู่</entry> <entry lang="th" key="IDC_PREF_LOGON_MOUNT_DEVICES">ติดตั้งทุกวอลลุม VeraCrypt บนอุปกรณ์เมื่อเข้าสู่ระบบ</entry> @@ -171,3 +171,3 @@ <entry lang="th" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">ใช้ไอคอน Tray แตกต่างกันเมื่อมีวอลลุมที่ติดตั้งอยู่</entry> - <entry lang="th" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">ลบข้อมูลในแคชเมื่อปลดวอลลุมโดยอัตโนมัติ</entry> + <entry lang="th" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">ลบข้อมูลในแคชเมื่อปลดวอลลุมโดยอัตโนมัติ</entry> <entry lang="th" key="IDC_PREF_WIPE_CACHE_ON_EXIT">ลบข้อมูลในแคชเมื่อออกจากโปรแกรม</entry> @@ -271,4 +271,4 @@ <entry lang="th" key="IDT_AUTORUN">การกำหนดค่า AutoRun (autorun.inf)</entry> - <entry lang="th" key="IDT_AUTO_DISMOUNT">ปลดวอลลุมโดยอัตโนมัติ</entry> - <entry lang="th" key="IDT_AUTO_DISMOUNT_ON">ปลดวอลลุมทั้งหมดเมื่อ:</entry> + <entry lang="th" key="IDT_AUTO_UNMOUNT">ปลดวอลลุมโดยอัตโนมัติ</entry> + <entry lang="th" key="IDT_AUTO_UNMOUNT_ON">ปลดวอลลุมทั้งหมดเมื่อ:</entry> <entry lang="th" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">ตัวเลือกหน้าจอของโหลดเดอร์ก่อนจะบูต</entry> @@ -278,3 +278,3 @@ <entry lang="th" key="IDT_DEFAULT_MOUNT_OPTIONS">ตัวเลือกการติดตั้งค่าเริ่มต้น</entry> - <entry lang="th" key="IDT_DISMOUNT_ACTION">ตัวเลือกคีย์ลัด</entry> + <entry lang="th" key="IDT_UNMOUNT_ACTION">ตัวเลือกคีย์ลัด</entry> <entry lang="th" key="IDT_DRIVER_OPTIONS">การกำหนดค่าไดรเวอร์</entry> @@ -425,4 +425,4 @@ <entry lang="th" key="DEVICE_IN_USE_INPLACE_ENC">คำเตือน: พาร์ติชั่นนี้อยู่ในการใช้งานระบบหรือแอปพลิเคชัน คุณควรปิดแอปพลิเคชันที่อาจใช้งานพาร์ติชั่นนี้ คุณต้องการดำเนินการต่อ?</entry> - <entry lang="th" key="FORMAT_CANT_DISMOUNT_FILESYS">ข้อผิดพลาด: อุปกรณ์/พาร์ติชั่นมีระบบไฟล์ที่ไม่สามารถถอดการติดตั้งได้ ระบบไฟล์อาจถูกใช้งานระบบ การฟอร์แมตอุปกรณ์/พาร์ติชั่นอาจทำให้ข้อมูลเสียหายและระบบไม่เสถียร:</entry> - <entry lang="th" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">ข้อผิดพลาด: ระบบไฟล์ไม่สามารถล็อกและ/หรือถอดการติดตั้งได้อาจถูกใช้งานระบบหรือแอปพลิเคชัน (เช่นโปรแกรมแอนตี้ไวรัส) การเข้ารหัสพาร์ติชั่นอาจทำให้ข้อมูลเสียหายและระบบไม่เสถียร โปรดปิดแอปพลิเคชันที่อาจใช้งานระบบไฟล์และลองอีกครั้ง:</entry> + <entry lang="th" key="FORMAT_CANT_UNMOUNT_FILESYS">ข้อผิดพลาด: อุปกรณ์/พาร์ติชั่นมีระบบไฟล์ที่ไม่สามารถถอดการติดตั้งได้ ระบบไฟล์อาจถูกใช้งานระบบ การฟอร์แมตอุปกรณ์/พาร์ติชั่นอาจทำให้ข้อมูลเสียหายและระบบไม่เสถียร:</entry> + <entry lang="th" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">ข้อผิดพลาด: ระบบไฟล์ไม่สามารถล็อกและ/หรือถอดการติดตั้งได้อาจถูกใช้งานระบบหรือแอปพลิเคชัน (เช่นโปรแกรมแอนตี้ไวรัส) การเข้ารหัสพาร์ติชั่นอาจทำให้ข้อมูลเสียหายและระบบไม่เสถียร โปรดปิดแอปพลิเคชันที่อาจใช้งานระบบไฟล์และลองอีกครั้ง:</entry> <entry lang="th" key="DEVICE_IN_USE_INFO">คำเตือน: อุปกรณ์/พาร์ติชั่นบางตัวที่ติดตั้งอยู่อาจถูกใช้งานแล้ว</entry> @@ -592,3 +592,3 @@ <entry lang="th" key="OPENFILES_LOCK">ไม่สามารถล็อคไดรฟ์ได้ มีไฟล์ที่เปิดอยู่ในไดรฟ์ ดังนั้นไดรฟ์ไม่สามารถดีเมานท์ได้</entry> - <entry lang="th" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt ไม่สามารถล็อคไดรฟ์ได้เพราะมีการใช้งานโดยระบบหรือแอปพลิเคชัน (อาจจะมีไฟล์ที่เปิดอยู่ในไดรฟ์)\n\nคุณต้องการให้อดใช้บังคับดีเมานท์ไดรฟ์หรือไม่?</entry> + <entry lang="th" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt ไม่สามารถล็อคไดรฟ์ได้เพราะมีการใช้งานโดยระบบหรือแอปพลิเคชัน (อาจจะมีไฟล์ที่เปิดอยู่ในไดรฟ์)\n\nคุณต้องการให้อดใช้บังคับดีเมานท์ไดรฟ์หรือไม่?</entry> <entry lang="th" key="OPEN_VOL_TITLE">เลือกไดรฟ์ VeraCrypt</entry> @@ -731,3 +731,3 @@ <entry lang="th" key="CANT_MOUNT_VOLUME">ไม่สามารถติดตั้งปริมาณ.</entry> - <entry lang="th" key="CANT_DISMOUNT_VOLUME">ไม่สามารถถอดติดตั้งปริมาณ.</entry> + <entry lang="th" key="CANT_UNMOUNT_VOLUME">ไม่สามารถถอดติดตั้งปริมาณ.</entry> <entry lang="th" key="FORMAT_NTFS_FAILED">Windows ไม่สามารถฟอร์แมทปริมาณเป็น NTFS/exFAT/ReFS ได้.\n\nโปรดเลือกประเภทของระบบไฟล์ที่แตกต่างกัน (ถ้าเป็นไปได้) และลองอีกครั้ง. หรืออีกทางหนึ่ง, คุณสามารถปล่อยให้ปริมาณยังไม่ฟอร์แมท (เลือก 'ไม่มี' เป็นระบบไฟล์), ออกจากวิซาร์ดนี้, ติดตั้งปริมาณ, และจากนั้นใช้เครื่องมือของระบบหรือบุคคลที่สามเพื่อฟอร์แมทปริมาณที่ติดตั้ง (ปริมาณจะยังถูกเข้ารหัสอยู่).</entry> @@ -773,3 +773,3 @@ <entry lang="th" key="INPLACE_DEC_GENERIC_ERR">ข้อผิดพลาดป้องกันไม่ให้ VeraCrypt ถอดรหัสวอลุ่ม โปรดลองแก้ไขปัญหาที่รายงานก่อนหน้าแล้วลองอีกครั้งหากเป็นไปได้</entry> - <entry lang="th" key="CANT_DISMOUNT_OUTER_VOL">ข้อผิดพลาด: ไม่สามารถยกเลิกการเมาท์วอลุ่มภายนอก!\n\nวอลุ่มไม่สามารถยกเลิกการเมาท์ได้หากมีไฟล์หรือโฟลเดอร์ที่ถูกใช้โดยโปรแกรมหรือระบบ\n\nโปรดปิดโปรแกรมใด ๆ ที่อาจใช้ไฟล์หรือไดเร็กทอรีในวอลุ่มแล้วคลิกลองอีกครั้ง</entry> + <entry lang="th" key="CANT_UNMOUNT_OUTER_VOL">ข้อผิดพลาด: ไม่สามารถยกเลิกการเมาท์วอลุ่มภายนอก!\n\nวอลุ่มไม่สามารถยกเลิกการเมาท์ได้หากมีไฟล์หรือโฟลเดอร์ที่ถูกใช้โดยโปรแกรมหรือระบบ\n\nโปรดปิดโปรแกรมใด ๆ ที่อาจใช้ไฟล์หรือไดเร็กทอรีในวอลุ่มแล้วคลิกลองอีกครั้ง</entry> <entry lang="th" key="CANT_GET_OUTER_VOL_INFO">ข้อผิดพลาด: ไม่สามารถรับข้อมูลเกี่ยวกับวอลุ่มภายนอก!\nการสร้างวอลุ่มไม่สามารถดำเนินต่อไป</entry> @@ -884,3 +884,3 @@ <entry lang="th" key="CLOSE_TC_FIRST">ไม่สามารถปลดไดรเวอร์อุปกรณ์ VeraCrypt ได้\n\nโปรดปิดหน้าต่าง VeraCrypt ที่เปิดอยู่ทั้งหมดก่อน ถ้ามันไม่ช่วย โปรดรีสตาร์ท Windows แล้วลองใหม่อีกครั้ง</entry> - <entry lang="th" key="DISMOUNT_ALL_FIRST">วอลุ่ม VeraCrypt ทั้งหมดต้องถูกยกเลิกการเมาท์ก่อนการติดตั้งหรือถอนการติดตั้ง VeraCrypt</entry> + <entry lang="th" key="UNMOUNT_ALL_FIRST">วอลุ่ม VeraCrypt ทั้งหมดต้องถูกยกเลิกการเมาท์ก่อนการติดตั้งหรือถอนการติดตั้ง VeraCrypt</entry> <entry lang="th" key="UNINSTALL_OLD_VERSION_FIRST">มีเวอร์ชันเก่าของ VeraCrypt ที่ติดตั้งอยู่ในระบบนี้ มันจำเป็นต้องถูกถอนการติดตั้งก่อนที่คุณจะสามารถติดตั้งเวอร์ชันใหม่ของ VeraCrypt\n\nทันทีที่คุณปิดกล่องข้อความนี้ โปรแกรมถอนการติดตั้งเวอร์ชันเก่าจะเปิดขึ้น โปรดทราบว่าจะไม่มีการถอดรหัสวอลุ่มใดๆเมื่อคุณถอนการติดตั้ง VeraCrypt หลังจากที่คุณถอนการติดตั้งเวอร์ชันเก่าของ VeraCrypt เรียบร้อยแล้วให้รันโปรแกรมติดตั้งของเวอร์ชันใหม่ของ VeraCrypt อีกครั้ง</entry> @@ -905,3 +905,3 @@ <entry lang="th" key="OPEN">เปิด</entry> - <entry lang="th" key="DISMOUNT">ยกเลิกการเมาท์</entry> + <entry lang="th" key="UNMOUNT">ยกเลิกการเมาท์</entry> <entry lang="th" key="SHOW_TC">แสดง VeraCrypt</entry> @@ -977,3 +977,3 @@ <entry lang="th" key="SYS_FAVORITES_REQUIRE_PBA">พาร์ทิชัน/ไดรฟ์ของระบบดูเหมือนไม่ได้รับการเข้ารหัส\n\nวอลุ่มที่โปรดปรานของระบบสามารถเมาท์ได้โดยใช้พาสเวิร์ดการตรวจสอบก่อนบูตเท่านั้น ดังนั้นในการเปิดใช้งานการใช้วอลุ่มที่โปรดปรานของระบบ คุณต้องเข้ารหัสพาร์ทิชัน/ไดรฟ์ของระบบก่อน</entry> - <entry lang="th" key="DISMOUNT_FIRST">โปรดยกเลิกการเมาท์วอลุ่มก่อนดำเนินการต่อ</entry> + <entry lang="th" key="UNMOUNT_FIRST">โปรดยกเลิกการเมาท์วอลุ่มก่อนดำเนินการต่อ</entry> <entry lang="th" key="CANNOT_SET_TIMER">ข้อผิดพลาด: ไม่สามารถตั้งค่าเครื่องจับเวลาได้</entry> @@ -1011,7 +1011,7 @@ <entry lang="th" key="HK_AUTOMOUNT_DEVICES">เมาท์อุปกรณ์อัตโนมัติ</entry> - <entry lang="th" key="HK_DISMOUNT_ALL">ยกเลิกการเมาท์ทั้งหมด</entry> + <entry lang="th" key="HK_UNMOUNT_ALL">ยกเลิกการเมาท์ทั้งหมด</entry> <entry lang="th" key="HK_WIPE_CACHE">เช็ดแคช</entry> - <entry lang="th" key="HK_DISMOUNT_ALL_AND_WIPE">ยกเลิกการเมาท์ทั้งหมด & เช็ดแคช</entry> - <entry lang="th" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">บังคับยกเลิกการเมาท์ทั้งหมด & เช็ดแคช</entry> - <entry lang="th" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">บังคับยกเลิกการเมาท์ทั้งหมด, เช็ดแคช & ออก</entry> + <entry lang="th" key="HK_UNMOUNT_ALL_AND_WIPE">ยกเลิกการเมาท์ทั้งหมด & เช็ดแคช</entry> + <entry lang="th" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">บังคับยกเลิกการเมาท์ทั้งหมด & เช็ดแคช</entry> + <entry lang="th" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">บังคับยกเลิกการเมาท์ทั้งหมด, เช็ดแคช & ออก</entry> <entry lang="th" key="HK_MOUNT_FAVORITE_VOLUMES">เมาท์วอลุ่มที่โปรดปราน</entry> @@ -1027,10 +1027,10 @@ <entry lang="th" key="HIDDEN_OS_HIBERNATION_PREVENTED">การจำศีลถูกป้องกัน\n\nVeraCrypt ไม่สนับสนุนการจำศีลในระบบปฏิบัติการที่ซ่อนอยู่ซึ่งใช้พาร์ทิชันบูตเพิ่มเติม โปรดทราบว่าพาร์ทิชันบูตถูกแชร์โดยทั้งระบบเหยื่อและระบบที่ซ่อนอยู่ ดังนั้นเพื่อป้องกันการรั่วไหลของข้อมูลและปัญหาเมื่อกลับมาจากการจำศีล VeraCrypt จึงต้องป้องกันไม่ให้ระบบที่ซ่อนอยู่เขียนไปยังพาร์ทิชันบูตร่วมและไม่ให้จำศีล</entry> - <entry lang="th" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">วอลุ่ม VeraCrypt เมาท์เป็น %c: ถูกยกเลิกการเมาท์แล้ว</entry> - <entry lang="th" key="MOUNTED_VOLUMES_DISMOUNTED">วอลุ่ม VeraCrypt ถูกยกเลิกการเมาท์แล้ว</entry> - <entry lang="th" key="VOLUMES_DISMOUNTED_CACHE_WIPED">วอลุ่ม VeraCrypt ถูกยกเลิกการเมาท์และแคชรหัสผ่านถูกเช็ดแล้ว</entry> - <entry lang="th" key="SUCCESSFULLY_DISMOUNTED">ยกเลิกการเมาท์เรียบร้อยแล้ว</entry> + <entry lang="th" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">วอลุ่ม VeraCrypt เมาท์เป็น %c: ถูกยกเลิกการเมาท์แล้ว</entry> + <entry lang="th" key="MOUNTED_VOLUMES_UNMOUNTED">วอลุ่ม VeraCrypt ถูกยกเลิกการเมาท์แล้ว</entry> + <entry lang="th" key="VOLUMES_UNMOUNTED_CACHE_WIPED">วอลุ่ม VeraCrypt ถูกยกเลิกการเมาท์และแคชรหัสผ่านถูกเช็ดแล้ว</entry> + <entry lang="th" key="SUCCESSFULLY_UNMOUNTED">ยกเลิกการเมาท์เรียบร้อยแล้ว</entry> <entry lang="th" key="CONFIRM_BACKGROUND_TASK_DISABLED">คำเตือน: หากกิจกรรมพื้นหลังของ VeraCrypt ถูกปิดใช้งาน ฟังก์ชันต่อไปนี้จะถูกปิดใช้งาน:\n\n1) คีย์ลัด\n2) ยกเลิกการเมาท์อัตโนมัติ (เช่นเมื่อออกจากระบบ การถอดอุปกรณ์โฮสต์โดยไม่ตั้งใจ หมดเวลา ฯลฯ)\n3) การเมาท์วอลุ่มที่โปรดปรานอัตโนมัติ\n4) การแจ้งเตือน (เช่นเมื่อการป้องกันความเสียหายของวอลุ่มที่ซ่อนไว้ถูกป้องกัน)\n5) ไอคอนถาด\n\nหมายเหตุ: คุณสามารถหยุดกิจกรรมพื้นหลังได้ตลอดเวลาโดยคลิกขวาที่ไอคอนถาด VeraCrypt และเลือก 'ออก'\n\nคุณแน่ใจหรือไม่ว่าต้องการปิดใช้งานกิจกรรมพื้นหลังของ VeraCrypt อย่างถาวร?</entry> - <entry lang="th" key="CONFIRM_NO_FORCED_AUTODISMOUNT">คำเตือน: หากปิดใช้ตัวเลือกนี้ วอลุ่มที่ประกอบด้วยไฟล์/ไดเร็กทอรี่ที่เปิดอยู่จะไม่สามารถยกเลิกการเมาท์อัตโนมัติได้.\n\nคุณแน่ใจหรือไม่ว่าต้องการปิดใช้ตัวเลือกนี้?</entry> - <entry lang="th" key="WARN_PREF_AUTO_DISMOUNT">คำเตือน: วอลุ่มที่ประกอบด้วยไฟล์/ไดเร็กทอรี่ที่เปิดอยู่จะไม่ได้รับการยกเลิกการเมาท์อัตโนมัติ\n\nเพื่อป้องกันสิ่งนี้ ให้เปิดตัวเลือกต่อไปนี้ในหน้าต่างการสนทนานี้: 'บังคับยกเลิกการเมาท์อัตโนมัติแม้วอลุ่มจะประกอบด้วยไฟล์หรือไดเร็กทอรี่ที่เปิดอยู่'</entry> - <entry lang="th" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">คำเตือน: เมื่อแบตเตอรี่โน้ตบุ๊คมีพลังงานต่ำ Windows อาจไม่ส่งข้อความที่เหมาะสมไปยังแอปพลิเคชันที่กำลังทำงานเมื่อคอมพิวเตอร์เข้าสู่โหมดประหยัดพลังงาน ดังนั้น VeraCrypt อาจไม่สามารถยกเลิกการเมาท์วอลุ่มในกรณีดังกล่าวได้</entry> + <entry lang="th" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">คำเตือน: หากปิดใช้ตัวเลือกนี้ วอลุ่มที่ประกอบด้วยไฟล์/ไดเร็กทอรี่ที่เปิดอยู่จะไม่สามารถยกเลิกการเมาท์อัตโนมัติได้.\n\nคุณแน่ใจหรือไม่ว่าต้องการปิดใช้ตัวเลือกนี้?</entry> + <entry lang="th" key="WARN_PREF_AUTO_UNMOUNT">คำเตือน: วอลุ่มที่ประกอบด้วยไฟล์/ไดเร็กทอรี่ที่เปิดอยู่จะไม่ได้รับการยกเลิกการเมาท์อัตโนมัติ\n\nเพื่อป้องกันสิ่งนี้ ให้เปิดตัวเลือกต่อไปนี้ในหน้าต่างการสนทนานี้: 'บังคับยกเลิกการเมาท์อัตโนมัติแม้วอลุ่มจะประกอบด้วยไฟล์หรือไดเร็กทอรี่ที่เปิดอยู่'</entry> + <entry lang="th" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">คำเตือน: เมื่อแบตเตอรี่โน้ตบุ๊คมีพลังงานต่ำ Windows อาจไม่ส่งข้อความที่เหมาะสมไปยังแอปพลิเคชันที่กำลังทำงานเมื่อคอมพิวเตอร์เข้าสู่โหมดประหยัดพลังงาน ดังนั้น VeraCrypt อาจไม่สามารถยกเลิกการเมาท์วอลุ่มในกรณีดังกล่าวได้</entry> <entry lang="th" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">คุณได้วางกำหนดการการเข้ารหัส/ถอดรหัสของพาร์ทิชัน/วอลุ่ม การกระบวนการยังไม่เสร็จสมบูรณ์\n\nคุณต้องการดำเนินการต่อเดี๋ยวนี้หรือไม่?</entry> @@ -1065,3 +1065,3 @@ <entry lang="th" key="MOUNT_TC_VOLUME">เมาท์วอลุ่ม VeraCrypt</entry> - <entry lang="th" key="DISMOUNT_ALL_TC_VOLUMES">ยกเลิกการเมาท์วอลุ่ม VeraCrypt ทั้งหมด</entry> + <entry lang="th" key="UNMOUNT_ALL_TC_VOLUMES">ยกเลิกการเมาท์วอลุ่ม VeraCrypt ทั้งหมด</entry> <entry lang="th" key="UAC_INIT_ERROR">VeraCrypt ล้มเหลวในการรับสิทธิ์ผู้ดูแลระบบ</entry> @@ -1308,4 +1308,4 @@ <entry lang="th" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">คำเตือน: การตั้งค่านี้อาจทำให้ประสิทธิภาพลดลง.\n\nคุณแน่ใจหรือไม่ว่าคุณต้องการใช้การตั้งค่านี้?</entry> - <entry lang="th" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">คำเตือน: ปริมาณ VeraCrypt ถูกถอดติดตั้งอัตโนมัติ</entry> - <entry lang="th" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">ก่อนที่คุณจะถอดหรือปิดอุปกรณ์ที่มีปริมาณที่ติดตั้งอยู่, คุณควรถอดติดตั้งปริมาณใน VeraCrypt ก่อนเสมอ.\n\nการถอดติดตั้งอัตโนมัติแบบที่ไม่ได้ตั้งใจมักเกิดจากสายเคเบิลที่ล้มเหลวเป็นระยะๆ, ไดรฟ์ (ตัวเรือน), ฯลฯ.</entry> + <entry lang="th" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">คำเตือน: ปริมาณ VeraCrypt ถูกถอดติดตั้งอัตโนมัติ</entry> + <entry lang="th" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">ก่อนที่คุณจะถอดหรือปิดอุปกรณ์ที่มีปริมาณที่ติดตั้งอยู่, คุณควรถอดติดตั้งปริมาณใน VeraCrypt ก่อนเสมอ.\n\nการถอดติดตั้งอัตโนมัติแบบที่ไม่ได้ตั้งใจมักเกิดจากสายเคเบิลที่ล้มเหลวเป็นระยะๆ, ไดรฟ์ (ตัวเรือน), ฯลฯ.</entry> <entry lang="th" key="UNSUPPORTED_TRUECRYPT_FORMAT">ปริมาณนี้ถูกสร้างด้วย TrueCrypt %x.%x แต่ VeraCrypt สนับสนุนเฉพาะปริมาณ TrueCrypt ที่สร้างด้วย TrueCrypt เวอร์ชั่น 6.x/7.x series</entry> @@ -1456,3 +1456,3 @@ <entry lang="th" key="TASKICON_PREF_OPEN_VOL">เปิดปริมาณที่ติดตั้ง</entry> - <entry lang="th" key="TASKICON_PREF_DISMOUNT_VOL">ถอดติดตั้งปริมาณที่ติดตั้ง</entry> + <entry lang="th" key="TASKICON_PREF_UNMOUNT_VOL">ถอดติดตั้งปริมาณที่ติดตั้ง</entry> <entry lang="th" key="DISK_FREE">พื้นที่ว่างที่ใช้ได้: {0}</entry> @@ -1486,6 +1486,6 @@ <entry lang="th" key="LINUX_SELECT">เลือก...</entry> - <entry lang="th" key="LINUX_DISMOUNT_ALL_WHEN">ถอดติดตั้งปริมาณทั้งหมดเมื่อ</entry> + <entry lang="th" key="LINUX_UNMOUNT_ALL_WHEN">ถอดติดตั้งปริมาณทั้งหมดเมื่อ</entry> <entry lang="th" key="LINUX_ENTERING_POWERSAVING">ระบบกำลังเข้าสู่โหมดประหยัดพลังงาน</entry> <entry lang="th" key="LINUX_LOGIN_ACTION">การดำเนินการเมื่อผู้ใช้เข้าสู่ระบบ</entry> - <entry lang="th" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">ปิดหน้าต่าง Explorer ทั้งหมดของปริมาณที่ถูกถอดติดตั้ง</entry> + <entry lang="th" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">ปิดหน้าต่าง Explorer ทั้งหมดของปริมาณที่ถูกถอดติดตั้ง</entry> <entry lang="th" key="LINUX_HOTKEYS">ปุ่มลัด</entry> @@ -1493,3 +1493,3 @@ <entry lang="th" key="LINUX_SOUND_NOTIFICATION">เล่นเสียงการแจ้งเตือนหลังจากติดตั้ง/ถอดติดตั้ง</entry> - <entry lang="th" key="LINUX_CONFIRM_AFTER_DISMOUNT">แสดงกล่องข้อความยืนยันหลังจากถอดติดตั้ง</entry> + <entry lang="th" key="LINUX_CONFIRM_AFTER_UNMOUNT">แสดงกล่องข้อความยืนยันหลังจากถอดติดตั้ง</entry> <entry lang="th" key="LINUX_VC_QUITS">VeraCrypt หยุดทำงาน</entry> @@ -1525,3 +1525,3 @@ <entry lang="th" key="LINUX_KERNEL_OLD">ระบบของคุณใช้เวอร์ชันเก่าของเคอร์เนล Linux.\n\nเนื่องจากบั๊กในเคอร์เนล Linux, ระบบของคุณอาจหยุดตอบสนองเมื่อเขียนข้อมูลไปยังปริมาณ VeraCrypt. ปัญหานี้สามารถแก้ได้โดยการอัปเกรดเคอร์เนลเป็นเวอร์ชัน 2.6.24 หรือใหม่กว่า.</entry> - <entry lang="th" key="LINUX_VOL_DISMOUNTED">ปริมาณ {0} ถูกถอดติดตั้งแล้ว.</entry> + <entry lang="th" key="LINUX_VOL_UNMOUNTED">ปริมาณ {0} ถูกถอดติดตั้งแล้ว.</entry> <entry lang="th" key="LINUX_VOL_MOUNTED">ปริมาณ {0} ถูกติดตั้งแล้ว.</entry> @@ -1644,2 +1644,5 @@ <entry lang="th" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">คำเตือน: คีย์หลักของปริมาณมีช่องโหว่ด้านความปลอดภัย.</entry> + <entry lang="th" key="MOUNTPOINT_BLOCKED">ข้อผิดพลาด: จุดเชื่อมต่อโวลุ่มถูกบล็อกเนื่องจากไปทับซ้อนกับไดเรกทอรีระบบที่ได้รับการป้องกัน\n\nกรุณาเลือกจุดเชื่อมต่ออื่น</entry> + <entry lang="th" key="MOUNTPOINT_NOTALLOWED">ข้อผิดพลาด: จุดเชื่อมต่อโวลุ่มไม่ได้รับอนุญาตเนื่องจากไปทับซ้อนกับไดเรกทอรีที่เป็นส่วนหนึ่งของตัวแปร PATH\n\nกรุณาเลือกจุดเชื่อมต่ออื่น</entry> + <entry lang="th" key="INSECURE_MODE">[โหมดไม่ปลอดภัย]</entry> </localization> diff --git a/Translations/Language.tr.xml b/Translations/Language.tr.xml index 41fdf26a..327d0c04 100644 --- a/Translations/Language.tr.xml +++ b/Translations/Language.tr.xml @@ -2,4 +2,4 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> - <language langid="tr" name="Türkçe" en-name="Turkish" version="1.26.17" translators="FabSec; By Fabriel, Ali İskender Turan, Zeynel Abidin Öztürk, Mehmet Keçeci, Kaya Zeren" /> + <localization prog-version= "1.26.20"> + <language langid="tr" name="Türkçe" en-name="Turkish" version="1.26.20" translators="FabSec; By Fabriel, Ali İskender Turan, Zeynel Abidin Öztürk, Mehmet Keçeci, Kaya Zeren" /> <font lang="tr" class="normal" size="11" face="default" /> @@ -137,4 +137,4 @@ <entry lang="tr" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Genel ayarlar</entry> - <entry lang="tr" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Kısayol tuşu ile bağlantı kesildiğinde balon ipucu görüntülensin</entry> - <entry lang="tr" key="IDC_HK_DISMOUNT_PLAY_SOUND">Kısayol tuşu ile bağlantı kesildiğinde sistem bildirimi sesi çalınsın</entry> + <entry lang="tr" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Kısayol tuşu ile bağlantı kesildiğinde balon ipucu görüntülensin</entry> + <entry lang="tr" key="IDC_HK_UNMOUNT_PLAY_SOUND">Kısayol tuşu ile bağlantı kesildiğinde sistem bildirimi sesi çalınsın</entry> <entry lang="tr" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="tr" key="IDC_PREF_CACHE_PASSWORDS">Parola sürücü belleğinde ön belleğe alınsın</entry> - <entry lang="tr" key="IDC_PREF_DISMOUNT_INACTIVE">Birimden şu süreyle veri okunmaz/yazılmazsa bağlantısı otomatik kesilsin:</entry> - <entry lang="tr" key="IDC_PREF_DISMOUNT_LOGOFF">Kullanıcı oturumu kapatıldığında</entry> - <entry lang="tr" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">Kullanıcı oturumu kilitlendiğinde</entry> - <entry lang="tr" key="IDC_PREF_DISMOUNT_POWERSAVING">Güç koruma kipine geçildiğinde</entry> - <entry lang="tr" key="IDC_PREF_DISMOUNT_SCREENSAVER">Ekran koruyucu açıldığında</entry> - <entry lang="tr" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Birimde, açık dosyalar veya klasörler olsa da bağlantı otomatik kesilsin</entry> + <entry lang="tr" key="IDC_PREF_UNMOUNT_INACTIVE">Birimden şu süreyle veri okunmaz/yazılmazsa bağlantısı otomatik kesilsin:</entry> + <entry lang="tr" key="IDC_PREF_UNMOUNT_LOGOFF">Kullanıcı oturumu kapatıldığında</entry> + <entry lang="tr" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">Kullanıcı oturumu kilitlendiğinde</entry> + <entry lang="tr" key="IDC_PREF_UNMOUNT_POWERSAVING">Güç koruma kipine geçildiğinde</entry> + <entry lang="tr" key="IDC_PREF_UNMOUNT_SCREENSAVER">Ekran koruyucu açıldığında</entry> + <entry lang="tr" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Birimde, açık dosyalar veya klasörler olsa da bağlantı otomatik kesilsin</entry> <entry lang="tr" key="IDC_PREF_LOGON_MOUNT_DEVICES">Barındırma aygıtındaki tüm VeraCrypt birimleri bağlansın</entry> @@ -171,3 +171,3 @@ <entry lang="tr" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Bağlanmış bir birim olmadığında görev çubuğu simgesi değiştirilsin</entry> - <entry lang="tr" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Bağlantı otomatik olarak kesildiğinde ön bellekteki parolalar temizlensin</entry> + <entry lang="tr" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Bağlantı otomatik olarak kesildiğinde ön bellekteki parolalar temizlensin</entry> <entry lang="tr" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Çıkarken ön bellekteki parolalar temizlensin</entry> @@ -271,4 +271,4 @@ <entry lang="tr" key="IDT_AUTORUN">Otomatik çalışma yapılandırması (autorun.inf)</entry> - <entry lang="tr" key="IDT_AUTO_DISMOUNT">Otomatik bağlantı kesme</entry> - <entry lang="tr" key="IDT_AUTO_DISMOUNT_ON">Şu durumlarda tümü kesilsin:</entry> + <entry lang="tr" key="IDT_AUTO_UNMOUNT">Otomatik bağlantı kesme</entry> + <entry lang="tr" key="IDT_AUTO_UNMOUNT_ON">Şu durumlarda tümü kesilsin:</entry> <entry lang="tr" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Başlatma ekranı seçenekleri</entry> @@ -278,3 +278,3 @@ <entry lang="tr" key="IDT_DEFAULT_MOUNT_OPTIONS">Varsayılan bağlama özellikleri</entry> - <entry lang="tr" key="IDT_DISMOUNT_ACTION">Kısayol özellikleri</entry> + <entry lang="tr" key="IDT_UNMOUNT_ACTION">Kısayol özellikleri</entry> <entry lang="tr" key="IDT_DRIVER_OPTIONS">Sürücü yapılandırması</entry> @@ -425,4 +425,4 @@ <entry lang="tr" key="DEVICE_IN_USE_INPLACE_ENC">Uyarı: Bölüm, işletim sistemi veya uygulamalar tarafından kullanılıyor. Bölümü kullanıyor olabilecek tüm uygulamaları kapatmalısınız (virüsten koruma uygulamasını da).\n\nİlerlemek istiyor munuz?</entry> - <entry lang="tr" key="FORMAT_CANT_DISMOUNT_FILESYS">Hata: Aygıt ya da bölümde bağlantısı kesilemeyen bir dosya sistemi bulunuyor. Bu dosya sistemi işletim sistemi tarafından kullanılıyor olabilir. Aygıtı ya da bölümü biçimlendirmek büyük olasılıkla verilerin bozulmasına ve sistemin kararsız duruma gelmesine neden olur.\n\nBu sorunu gidermek için, önce bölümü silmeniz ve biçimlendirmeden yeniden oluşturmanız önerilir. Bunun için şu adımları izleyin:\n1) 'Başlat Menüsü' içinde 'Bilgisayar' (veya 'Bilgisayarım') simgesine sağ tıklayın ve 'Yönet' üzerine tıklayın. 'Bilgisayar Yönetimi' penceresi açılır.\n2) 'Bilgisayar Yönetimi' penceresinde, 'Depolama' > 'Disk Yönetimi' üzerine tıklayın.\n3) Şifrelemek istediğiniz bölüme sağ tıklayın ve şunlardan birini seçin: 'Bölümü sil', 'Birimi sil' ya da 'Mantıksal sürücüyü sil'.\n4) 'Evet' üzerine tıklayın. Windows sizden bilgisayarı yeniden başlatmanızı isterse bunu yapın. Bundan sonra 1. ve 2. adımları yeniden izleyerek 5. adımdan ilerleyin.\n5) Ayrılmamış/boş alana sağ tıklayın ve şunlardan birini seçin: 'Yeni bölüm', 'Yeni basit birim' ya da 'Yeni mantıksal sürücü'.\n6) 'Yeni bölüm yardımcısı' ya da 'Yeni basit birim yardımcısı' penceresi açılır. Bu yardımcıdaki yönergeleri izleyin. 'Bölümü biçimlendir' başlıklı yardımcı sayfasında 'Bu bölümü biçimlendir' ya da 'Bu birimi biçimlendir' seçeneklerinden birini seçin. Aynı yardımcıda 'İleri' düğmesine tıklayın ve 'Bitti' düğmesine tıklayın.\n7) VeraCrypt üzerinde seçtiğiniz aygıt yolunun artık hatalı olabileceğine dikkat edin. Bu nedenle VeraCrypt birim oluşturma yardımcısından çıkın (hala çalışıyorsa) ve bunu yeniden başlatın.\n8) Aygıtı/bölümü şifrelemeyi yeniden deneyin.\n\nVeraCrypt aygıtı/bölümü şifrelemekte yeniden başarısız olursa, bunun yerine dosya kapsayıcısı oluşturmayı değerlendirin.</entry> - <entry lang="tr" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">Hata: Dosya sistemi kilitlenemedi ve/veya bağlantısı kaldırılamadı. İşletim sistemi veya uygulamalar (örneğin virusten koruma uygulaması) tarafından kullanılıyor olabilir. Bölümün şifrelenmesi verilerin bozulmasına ve sistemin kararsız duruma gelmesine neden olabilir.\n\nLütfen dosya sistemini kullanıyor olabilecek tüm uygulamaları (virüsten koruma yazılımını da) kapatın ve yeniden deneyin. Bunlar yardımcı olmazsa lütfen aşağıdaki adımları izleyin.</entry> + <entry lang="tr" key="FORMAT_CANT_UNMOUNT_FILESYS">Hata: Aygıt ya da bölümde bağlantısı kesilemeyen bir dosya sistemi bulunuyor. Bu dosya sistemi işletim sistemi tarafından kullanılıyor olabilir. Aygıtı ya da bölümü biçimlendirmek büyük olasılıkla verilerin bozulmasına ve sistemin kararsız duruma gelmesine neden olur.\n\nBu sorunu gidermek için, önce bölümü silmeniz ve biçimlendirmeden yeniden oluşturmanız önerilir. Bunun için şu adımları izleyin:\n1) 'Başlat Menüsü' içinde 'Bilgisayar' (veya 'Bilgisayarım') simgesine sağ tıklayın ve 'Yönet' üzerine tıklayın. 'Bilgisayar Yönetimi' penceresi açılır.\n2) 'Bilgisayar Yönetimi' penceresinde, 'Depolama' > 'Disk Yönetimi' üzerine tıklayın.\n3) Şifrelemek istediğiniz bölüme sağ tıklayın ve şunlardan birini seçin: 'Bölümü sil', 'Birimi sil' ya da 'Mantıksal sürücüyü sil'.\n4) 'Evet' üzerine tıklayın. Windows sizden bilgisayarı yeniden başlatmanızı isterse bunu yapın. Bundan sonra 1. ve 2. adımları yeniden izleyerek 5. adımdan ilerleyin.\n5) Ayrılmamış/boş alana sağ tıklayın ve şunlardan birini seçin: 'Yeni bölüm', 'Yeni basit birim' ya da 'Yeni mantıksal sürücü'.\n6) 'Yeni bölüm yardımcısı' ya da 'Yeni basit birim yardımcısı' penceresi açılır. Bu yardımcıdaki yönergeleri izleyin. 'Bölümü biçimlendir' başlıklı yardımcı sayfasında 'Bu bölümü biçimlendir' ya da 'Bu birimi biçimlendir' seçeneklerinden birini seçin. Aynı yardımcıda 'İleri' düğmesine tıklayın ve 'Bitti' düğmesine tıklayın.\n7) VeraCrypt üzerinde seçtiğiniz aygıt yolunun artık hatalı olabileceğine dikkat edin. Bu nedenle VeraCrypt birim oluşturma yardımcısından çıkın (hala çalışıyorsa) ve bunu yeniden başlatın.\n8) Aygıtı/bölümü şifrelemeyi yeniden deneyin.\n\nVeraCrypt aygıtı/bölümü şifrelemekte yeniden başarısız olursa, bunun yerine dosya kapsayıcısı oluşturmayı değerlendirin.</entry> + <entry lang="tr" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Hata: Dosya sistemi kilitlenemedi ve/veya bağlantısı kaldırılamadı. İşletim sistemi veya uygulamalar (örneğin virusten koruma uygulaması) tarafından kullanılıyor olabilir. Bölümün şifrelenmesi verilerin bozulmasına ve sistemin kararsız duruma gelmesine neden olabilir.\n\nLütfen dosya sistemini kullanıyor olabilecek tüm uygulamaları (virüsten koruma yazılımını da) kapatın ve yeniden deneyin. Bunlar yardımcı olmazsa lütfen aşağıdaki adımları izleyin.</entry> <entry lang="tr" key="DEVICE_IN_USE_INFO">UYARI: Bağlı aygıtlardan ya da bölümlerden bazıları şu anda kullanılıyor!\n\nBu durumu yok saymak sistem kararsızlığı gibi istenmeyen sonuçlar doğurabilir.\n\nBu aygıtları ya da bölümleri kullanıyor olabilecek uygulamaları kapatmanız önemle önerilir.</entry> @@ -592,3 +592,3 @@ <entry lang="tr" key="OPENFILES_LOCK">Birim kilitlenemedi. Birim üzerinde hala açık olan dosyalar var. Bu nedenle birimin bağlantısı kesilemedi.</entry> - <entry lang="tr" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">Birim sistem veya uygulamalar tarafından kullanıldığından VeraCrypt birimi kilitleyemedi (birimde açık dosyalar olabilir).\n\nBirim bağlantısını zorla kesmek istiyor musunuz?</entry> + <entry lang="tr" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">Birim sistem veya uygulamalar tarafından kullanıldığından VeraCrypt birimi kilitleyemedi (birimde açık dosyalar olabilir).\n\nBirim bağlantısını zorla kesmek istiyor musunuz?</entry> <entry lang="tr" key="OPEN_VOL_TITLE">Bir VeraCrypt birimi seçin</entry> @@ -731,3 +731,3 @@ <entry lang="tr" key="CANT_MOUNT_VOLUME">Birim bağlanamadı.</entry> - <entry lang="tr" key="CANT_DISMOUNT_VOLUME">Birim bağlantısı kesilemedi.</entry> + <entry lang="tr" key="CANT_UNMOUNT_VOLUME">Birim bağlantısı kesilemedi.</entry> <entry lang="tr" key="FORMAT_NTFS_FAILED">Windows, birimi NTFS/exFAT/ReFS olarak biçimlendiremedi.\n\nLütfen (olabiliyorsa) farklı türde bir dosya sistemi seçip yeniden deneyin. Alternatif olarak, birimi biçimlendirmeden bırakabilirsiniz (dosya sistemi olarak 'Yok' seçin), bu yardımcıdan çıkın, birimi bağlayın ve ardından takılan birimi biçimlendirmek için bir sistem ya da üçüncü taraf bir araç kullanın (birim şifrelenmiş olarak kalır) .</entry> @@ -773,3 +773,3 @@ <entry lang="tr" key="INPLACE_DEC_GENERIC_ERR">Bir hata birimin şifresinin VeraCrypt tarafından çözülmesini engelledi. Lütfen daha önce bildirilen sorunları düzeltmeyi deneyin ve olabiliyorsa yeniden deneyin.</entry> - <entry lang="tr" key="CANT_DISMOUNT_OUTER_VOL">Hata: Dış birimin bağlantısı kesilemedi!\n\nBirimde bir uygulama veya sistem tarafından kullanılan dosya veya klasörler varsa birim bağlantısı kesilemez.\n\nLütfen birim üzerindeki dosyaları veya klasörleri kullanıyor olabilecek tüm uygulamaları kapatıp 'Yeniden dene' üzerine tıklayın.</entry> + <entry lang="tr" key="CANT_UNMOUNT_OUTER_VOL">Hata: Dış birimin bağlantısı kesilemedi!\n\nBirimde bir uygulama veya sistem tarafından kullanılan dosya veya klasörler varsa birim bağlantısı kesilemez.\n\nLütfen birim üzerindeki dosyaları veya klasörleri kullanıyor olabilecek tüm uygulamaları kapatıp 'Yeniden dene' üzerine tıklayın.</entry> <entry lang="tr" key="CANT_GET_OUTER_VOL_INFO">Hata: Dış birim bilgileri alınamadı!\nBirim oluşturma işlemi sürdürülemiyor.</entry> @@ -884,3 +884,3 @@ <entry lang="tr" key="CLOSE_TC_FIRST">VeraCrypt aygıt sürücüsü kaldırılamadı.\n\nLütfen önce açık tüm VeraCrypt pencerelerini kapatın. Bu işe yaramazsa Windows sistemini yeniden başlatıp yeniden deneyin.</entry> - <entry lang="tr" key="DISMOUNT_ALL_FIRST">VeraCrypt uygulamasını kurmadan ya da kaldırmadan önce tüm VeraCrypt birimlerinin bağlantısı kesilmelidir.</entry> + <entry lang="tr" key="UNMOUNT_ALL_FIRST">VeraCrypt uygulamasını kurmadan ya da kaldırmadan önce tüm VeraCrypt birimlerinin bağlantısı kesilmelidir.</entry> <entry lang="tr" key="UNINSTALL_OLD_VERSION_FIRST">Bu sistemde şu anda eski bir VeraCrypt sürümü kurulu. Bu yeni VeraCrypt sürümünü kurabilmeniz için öncelikle eski uygulamanın kaldırılması gerekiyor.\n\nBu iletiyi kapattığınızda, eski sürümün kaldırıcısı başlatılacak. VeraCrypt uygulamasını kaldırdığınızda hiçbir birimin şifresinin çözülemeyeceğini unutmayın. Eski VeraCrypt sürümünü kaldırdıktan sonra yeni VeraCrypt sürümünün kurucusunu yeniden çalıştırın.</entry> @@ -905,3 +905,3 @@ <entry lang="tr" key="OPEN">Aç</entry> - <entry lang="tr" key="DISMOUNT">Bağlantıyı kes</entry> + <entry lang="tr" key="UNMOUNT">Bağlantıyı kes</entry> <entry lang="tr" key="SHOW_TC">VeraCrypt'i göster</entry> @@ -977,3 +977,3 @@ <entry lang="tr" key="SYS_FAVORITES_REQUIRE_PBA">Sistem bölümü ya da sürücü şifrelenmiş gibi görünmüyor.\n\nSistem sık kullanılan birimleri yalnızca başlatma öncesi kimlik doğrulama parolası kullanılarak bağlanabilir. Bu nedenle, sistem sık kullanılan birimlerinin kullanmasını sağlamak için önce sistem bölümünü ya da sürücüsünü şifrelemeniz gerekir.</entry> - <entry lang="tr" key="DISMOUNT_FIRST">Lütfen ilerlemeden önce birimin bağlantısını kesin.</entry> + <entry lang="tr" key="UNMOUNT_FIRST">Lütfen ilerlemeden önce birimin bağlantısını kesin.</entry> <entry lang="tr" key="CANNOT_SET_TIMER">Hata: Zamanlayıcı ayarlanamadı.</entry> @@ -1011,7 +1011,7 @@ <entry lang="tr" key="HK_AUTOMOUNT_DEVICES">Aygıtlar otomatik bağlansın</entry> - <entry lang="tr" key="HK_DISMOUNT_ALL">Tümünün bağlantısını kes</entry> + <entry lang="tr" key="HK_UNMOUNT_ALL">Tümünün bağlantısını kes</entry> <entry lang="tr" key="HK_WIPE_CACHE">Ön belleği temizle</entry> - <entry lang="tr" key="HK_DISMOUNT_ALL_AND_WIPE">Tümünün bağlantısını kes ve ön belleği temizle</entry> - <entry lang="tr" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Tüm bağlantıları zorla kes ve ön belleği temizle</entry> - <entry lang="tr" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Tüm bağlantıları zorla kes, ön belleği temizle ve çık</entry> + <entry lang="tr" key="HK_UNMOUNT_ALL_AND_WIPE">Tümünün bağlantısını kes ve ön belleği temizle</entry> + <entry lang="tr" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Tüm bağlantıları zorla kes ve ön belleği temizle</entry> + <entry lang="tr" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Tüm bağlantıları zorla kes, ön belleği temizle ve çık</entry> <entry lang="tr" key="HK_MOUNT_FAVORITE_VOLUMES">Sık kullanılan birimleri bağla</entry> @@ -1027,10 +1027,10 @@ <entry lang="tr" key="HIDDEN_OS_HIBERNATION_PREVENTED">Hazırda bekletme kipi engellendi.\n\nVeraCrypt, fazladan bir başlatma bölümü kullanan gizli işletim sistemlerinde hazırda bekletme kipini desteklemez. Başlatma bölümünün hem sahte hem de gizli sistem tarafından paylaşıldığını lütfen unutmayın. Bu nedenle VeraCrypt, hazırda bekletme kipinden başlarken oluşabilecek veri sızıntılarını ve sorunları önlemek için gizli sistemin paylaşılan başlatma bölümüne yazılmasını ve hazırda bekletme kipine geçilmesini engeller.</entry> - <entry lang="tr" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">%c: olarak bağlanan VeraCrypt biriminin bağlantısı kesildi.</entry> - <entry lang="tr" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt birimlerinin bağlantısı kesildi.</entry> - <entry lang="tr" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt birimlerinin bağlantısı kesildi ve ön bellek temizlendi.</entry> - <entry lang="tr" key="SUCCESSFULLY_DISMOUNTED">Bağlantı kesildi</entry> + <entry lang="tr" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">%c: olarak bağlanan VeraCrypt biriminin bağlantısı kesildi.</entry> + <entry lang="tr" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt birimlerinin bağlantısı kesildi.</entry> + <entry lang="tr" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt birimlerinin bağlantısı kesildi ve ön bellek temizlendi.</entry> + <entry lang="tr" key="SUCCESSFULLY_UNMOUNTED">Bağlantı kesildi</entry> <entry lang="tr" key="CONFIRM_BACKGROUND_TASK_DISABLED">UYARI: VeraCrypt arka plan görevi kapatılırsa, şu işlevler kullanılamayacak:\n\n1) Kısayol tuşları\n2) Otomatik bağlantı kesme (örneğin oturum kapatıldığında, barındırma aygıtının yanlışlıkla kaldırılması, zaman aşımı gibi)\n3 ) Sık kullanılan birimlerin otomatik olarak eklenmesi\n4) Bildirimler (örneğin gizli birimin bozulması engellendiğinde)\n5) Tepsi simgesi\n\nNot: VeraCrypt tepsi simgesine sağ tıklayıp 'Çık' üzerine tıklayarak arka plan görevini istediğiniz zaman kapatabilirsiniz.\n\nVeraCrypt arka plan görevini kalıcı olarak kapatmak istediğinize emin misiniz?</entry> - <entry lang="tr" key="CONFIRM_NO_FORCED_AUTODISMOUNT">UYARI: Bu seçenek kapatıldığında, açık dosya ya da klasörler bulunan birimlerin bağlantısı otomatik olarak kesilemez.\n\nBu seçeneği kapatmak istediğinize emin misiniz?</entry> - <entry lang="tr" key="WARN_PREF_AUTO_DISMOUNT">UYARI: Açık dosyalar ya da klasörler bulunan birimlerin bağlantısı otomatik olarak KESİLMEYECEK.\n\nBunu engellemek için, bu penceredeki 'Birimde, açık dosyalar veya klasörler olsa da bağlantı otomatik kesilsin' seçeneğini açın</entry> - <entry lang="tr" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">UYARI: Dizüstü bilgisayarın pil gücü düşük olduğunda, bilgisayar güç tasarrufu kipine geçerken Windows, çalışan uygulamalara uygun iletileri göndermeyi atlayabilir. Bu nedenle VeraCrypt bu gibi durumlarda birimlerin bağlantısını otomatik olarak kesemeyebilir.</entry> + <entry lang="tr" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">UYARI: Bu seçenek kapatıldığında, açık dosya ya da klasörler bulunan birimlerin bağlantısı otomatik olarak kesilemez.\n\nBu seçeneği kapatmak istediğinize emin misiniz?</entry> + <entry lang="tr" key="WARN_PREF_AUTO_UNMOUNT">UYARI: Açık dosyalar ya da klasörler bulunan birimlerin bağlantısı otomatik olarak KESİLMEYECEK.\n\nBunu engellemek için, bu penceredeki 'Birimde, açık dosyalar veya klasörler olsa da bağlantı otomatik kesilsin' seçeneğini açın</entry> + <entry lang="tr" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">UYARI: Dizüstü bilgisayarın pil gücü düşük olduğunda, bilgisayar güç tasarrufu kipine geçerken Windows, çalışan uygulamalara uygun iletileri göndermeyi atlayabilir. Bu nedenle VeraCrypt bu gibi durumlarda birimlerin bağlantısını otomatik olarak kesemeyebilir.</entry> <entry lang="tr" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Bir bölümün ya da birimin şifreleme ya da şifre çözme işlemini zamanladınız. İşlem henüz tamamlanmadı.\n\nİşlemin şimdi sürdürülmesini istiyor musunuz?</entry> @@ -1065,3 +1065,3 @@ <entry lang="tr" key="MOUNT_TC_VOLUME">VeraCrypt birimi bağla</entry> - <entry lang="tr" key="DISMOUNT_ALL_TC_VOLUMES">Tüm VeraCrypt birimlerininin bağlantısını kes</entry> + <entry lang="tr" key="UNMOUNT_ALL_TC_VOLUMES">Tüm VeraCrypt birimlerininin bağlantısını kes</entry> <entry lang="tr" key="UAC_INIT_ERROR">VeraCrypt yönetici yetkilerini alamadı.</entry> @@ -1308,4 +1308,4 @@ <entry lang="tr" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">UYARI: Bu ayar başarımı düşürebilir.\n\nBu ayarı kullanmak istediğinize emin misiniz?</entry> - <entry lang="tr" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Uyarı: VeraCrypt biriminin bağlantısı otomatik olarak kesildi</entry> - <entry lang="tr" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Bağlı birimin bulunduğu bir aygıtı fiziksel olarak çıkarmadan veya kapatmadan önce, her zaman VeraCrypt içinden birimin bağlantısını kesmelisiniz.\n\nBağlantının beklenmedik şekilde kesilmesi genellikle kablo, sürücü (muhafaza) gibi bileşenlerin bozulmasından kaynaklanır.</entry> + <entry lang="tr" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Uyarı: VeraCrypt biriminin bağlantısı otomatik olarak kesildi</entry> + <entry lang="tr" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Bağlı birimin bulunduğu bir aygıtı fiziksel olarak çıkarmadan veya kapatmadan önce, her zaman VeraCrypt içinden birimin bağlantısını kesmelisiniz.\n\nBağlantının beklenmedik şekilde kesilmesi genellikle kablo, sürücü (muhafaza) gibi bileşenlerin bozulmasından kaynaklanır.</entry> <entry lang="tr" key="UNSUPPORTED_TRUECRYPT_FORMAT">Bu birim TrueCrypt %x.%x ile oluşturulmuş. Ancak VeraCrypt yalnızca TrueCrypt 6.x/7.x sürümleriyle oluşturulmuş TrueCrypt birimlerini destekler</entry> @@ -1455,3 +1455,3 @@ <entry lang="tr" key="TASKICON_PREF_OPEN_VOL">Bağlı birimleri aç</entry> - <entry lang="tr" key="TASKICON_PREF_DISMOUNT_VOL">Bağlı birimlerin bağlantısını kes</entry> + <entry lang="tr" key="TASKICON_PREF_UNMOUNT_VOL">Bağlı birimlerin bağlantısını kes</entry> <entry lang="tr" key="DISK_FREE">Kullanılabilecek boş alan: {0}</entry> @@ -1485,6 +1485,6 @@ <entry lang="tr" key="LINUX_SELECT">Seçi&n...</entry> - <entry lang="tr" key="LINUX_DISMOUNT_ALL_WHEN">Şu olduğunda tüm birimlerin bağlantısı kesilsin</entry> + <entry lang="tr" key="LINUX_UNMOUNT_ALL_WHEN">Şu olduğunda tüm birimlerin bağlantısı kesilsin</entry> <entry lang="tr" key="LINUX_ENTERING_POWERSAVING">Sistem güç koruma kipine geçtiğinde</entry> <entry lang="tr" key="LINUX_LOGIN_ACTION">Kullanıcı oturum açtığında yapılacak işlemler</entry> - <entry lang="tr" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Bağlantısı kesilen birimin tüm Dosya Gezgini pencereleri kapatılsın</entry> + <entry lang="tr" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Bağlantısı kesilen birimin tüm Dosya Gezgini pencereleri kapatılsın</entry> <entry lang="tr" key="LINUX_HOTKEYS">Kısayol tuşları</entry> @@ -1492,3 +1492,3 @@ <entry lang="tr" key="LINUX_SOUND_NOTIFICATION">Bağlantı kurulduğunda/kesildiğinde sistem bildirimi sesi çalınsın</entry> - <entry lang="tr" key="LINUX_CONFIRM_AFTER_DISMOUNT">Bağlantı kesildiğinde onay penceresi görüntülensin</entry> + <entry lang="tr" key="LINUX_CONFIRM_AFTER_UNMOUNT">Bağlantı kesildiğinde onay penceresi görüntülensin</entry> <entry lang="tr" key="LINUX_VC_QUITS">VeraCrypt kapatılıyor</entry> @@ -1524,3 +1524,3 @@ <entry lang="tr" key="LINUX_KERNEL_OLD">Sisteminiz Linux çekirdeğinin eski bir sürümünü kullanıyor.\n\nLinux çekirdeğindeki bir sorun nedeniyle sisteminiz VeraCrypt birimine veri yazarken yanıt vermeyebilir. Bu sorun, çekirdeği 2.6.24 ya da üzerindeki bir sürüme yükselterek çözülebilir.</entry> - <entry lang="tr" key="LINUX_VOL_DISMOUNTED">{0} biriminin bağlantısı kesildi.</entry> + <entry lang="tr" key="LINUX_VOL_UNMOUNTED">{0} biriminin bağlantısı kesildi.</entry> <entry lang="tr" key="LINUX_VOL_MOUNTED">{0} birimi bağlandı.</entry> @@ -1643,2 +1643,5 @@ <entry lang="tr" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">UYARI: Birimin ana anahtarı bir güvenlik açığına sahiptir.</entry> + <entry lang="tr" key="MOUNTPOINT_BLOCKED">HATA: Birim bağlama noktası, korunan bir sistem dizinini geçersiz kıldığı için engellendi.\n\nLütfen farklı bir bağlama noktası seçin.</entry> + <entry lang="tr" key="MOUNTPOINT_NOTALLOWED">HATA: Birim bağlama noktası, PATH ortam değişkeninin bir parçası olan bir dizini geçersiz kıldığı için izin verilmiyor.\n\nLütfen farklı bir bağlama noktası seçin.</entry> + <entry lang="tr" key="INSECURE_MODE">[GÜVENSİZ MOD]</entry> </localization> diff --git a/Translations/Language.uk.xml b/Translations/Language.uk.xml index dd2df1eb..6c922405 100644 --- a/Translations/Language.uk.xml +++ b/Translations/Language.uk.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="uk" name="Українська" en-name="Ukrainian" version="1.1.0" translators="Kravchuk Olexandr, Babchuk Volodymyr" /> @@ -137,4 +137,4 @@ <entry lang="uk" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Глобальні налаштування</entry> - <entry lang="uk" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">Повідомити після розмонтування за допомогою гарячої клавіші</entry> - <entry lang="uk" key="IDC_HK_DISMOUNT_PLAY_SOUND">Звуковий сигнал після розмонтування за допомогою гарячої клавіші</entry> + <entry lang="uk" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">Повідомити після розмонтування за допомогою гарячої клавіші</entry> + <entry lang="uk" key="IDC_HK_UNMOUNT_PLAY_SOUND">Звуковий сигнал після розмонтування за допомогою гарячої клавіші</entry> <entry lang="uk" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="uk" key="IDC_PREF_CACHE_PASSWORDS">Кешувати пароль в памяті</entry> - <entry lang="uk" key="IDC_PREF_DISMOUNT_INACTIVE">Автоматично розмонтувати томи при неактивності протягом</entry> - <entry lang="uk" key="IDC_PREF_DISMOUNT_LOGOFF">завершення сеансів</entry> - <entry lang="uk" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">Сеанс користувача заблоковано</entry> - <entry lang="uk" key="IDC_PREF_DISMOUNT_POWERSAVING">вхід в енергозбереження</entry> - <entry lang="uk" key="IDC_PREF_DISMOUNT_SCREENSAVER">запуск екранної заставки</entry> - <entry lang="uk" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Автоматично розмонтувати томи навіть при відкритих файлах/теках</entry> + <entry lang="uk" key="IDC_PREF_UNMOUNT_INACTIVE">Автоматично розмонтувати томи при неактивності протягом</entry> + <entry lang="uk" key="IDC_PREF_UNMOUNT_LOGOFF">завершення сеансів</entry> + <entry lang="uk" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">Сеанс користувача заблоковано</entry> + <entry lang="uk" key="IDC_PREF_UNMOUNT_POWERSAVING">вхід в енергозбереження</entry> + <entry lang="uk" key="IDC_PREF_UNMOUNT_SCREENSAVER">запуск екранної заставки</entry> + <entry lang="uk" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Автоматично розмонтувати томи навіть при відкритих файлах/теках</entry> <entry lang="uk" key="IDC_PREF_LOGON_MOUNT_DEVICES">Монтувати всі томи на пристроях</entry> @@ -171,3 +171,3 @@ <entry lang="uk" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">Використовувати інший значок панелі завдань, коли є підключені томи</entry> - <entry lang="uk" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">Очищати кеш паролів при авторозмонтуванні</entry> + <entry lang="uk" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Очищати кеш паролів при авторозмонтуванні</entry> <entry lang="uk" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Очищати кеш паролів при виході</entry> @@ -271,4 +271,4 @@ <entry lang="uk" key="IDT_AUTORUN">Конфігурація автозапуску (файл autorun.inf)</entry> - <entry lang="uk" key="IDT_AUTO_DISMOUNT">Автоматичне розмонтування</entry> - <entry lang="uk" key="IDT_AUTO_DISMOUNT_ON">Розмонтувати всі томи при:</entry> + <entry lang="uk" key="IDT_AUTO_UNMOUNT">Автоматичне розмонтування</entry> + <entry lang="uk" key="IDT_AUTO_UNMOUNT_ON">Розмонтувати всі томи при:</entry> <entry lang="uk" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Параметри екрана завантажувача</entry> @@ -278,3 +278,3 @@ <entry lang="uk" key="IDT_DEFAULT_MOUNT_OPTIONS">Опції типове монтування томів</entry> - <entry lang="uk" key="IDT_DISMOUNT_ACTION">Додаткові параметри</entry> + <entry lang="uk" key="IDT_UNMOUNT_ACTION">Додаткові параметри</entry> <entry lang="uk" key="IDT_DRIVER_OPTIONS">Конфігурація драйвера</entry> @@ -425,4 +425,4 @@ <entry lang="uk" key="DEVICE_IN_USE_INPLACE_ENC">УВАГА: Пристрій/розділ використовується операційною системою або додатком. Потрібно закрити всі программи, які можуть використовувати розділ (включаючи антивірусне ПЗ).\n\nПродовжити?</entry> - <entry lang="uk" key="FORMAT_CANT_DISMOUNT_FILESYS">ПОМИЛКА: Пристрій/розділ містить файлову систему, яка не може бути розмонтована. Ця файлова система може використовуватись операційною системою. Форматування пристрою/розділу ймовірніше за все призведе до пошкодження данних і нестабільності системи.\n\nДля вирішення цієї проблеми ми рекомендуємо зпочатку видалити цей розділ, після чого знову створити його без форматування. Ось як це зробити: 1) Клацніть правою кнопкою миші по значку 'Комп'ютер' (або 'Мій комп’ютер') в меню 'Пуск' і виберіть пункт 'Керування'. Повинно появитися вікно 'Керування комп’ютером'. 2) В вікні 'Управління комп'ютером' виберіть 'Запамятовуючі пристрої' > 'Керування дисками'. 3) Клайніть правою кнопкою миші по розділу, який ви хочете зашифрувати, і виберіть або 'Видалити розділ', або 'Видалити том', або 'Видалити логічний диск'. 4) Натисніть 'Так'. Якщо Windows попросить перезагрузити комп'ютер, виконайте це. Потім повторіть кроки 1 і 2 і перейдіть до кроку 5. 5) Клацніть правою кнопкою по пустому участку (воно повинно містити надпис 'Не розподілено') і виберіть 'Основний розділ', 'Додатковий розділ' або 'Логічний диск'. 6) Повинно появитися вікно майстра створення розділів або томів; дотримуйтесь його інструкціям. В вікні майстра на сторінці 'Форматування розділу' виберіть або 'Не форматувати цей розділ', або 'Не форматувати цей том'. В тому ж вікні майстра натисніть кнопку 'Далі' і потім 'Готово'. 7) Майте на увазі, що вибраний вами в VeraCrypt шлях до пристрою може бути тепер невірним. Тому завершіть роботу майстра створення томів VeraCrypt (якщо він все ще виконкється) і запустіть йго знову. 8) Спробуйте знову зашифрувати пристрій/розділ в VeraCrypt.\n\nЯкщо VeraCrypt знову відмовиться шифрувати пристрій/розділ, зкоректуйте свої плани і створіть замість цього файловий контейнер.</entry> - <entry lang="uk" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">ПОМИЛКА: Не вдалося заблокувати і/або розмонтувати файлову систему. Вірогідно, вона використовується ОС або додатками (наприклад, антивірусним ПЗ). Шифрування цього розділу може призвести до пошкодження даних і нестабільність системи.\n\nЗакрийте всі додатки, які можуть звертатися до файлової системи (включаючи антивірусне ПЗ) і повторіть спробу. Якщо це не допоможе, дотримуйтесь нижче вказаних інструкцій.</entry> + <entry lang="uk" key="FORMAT_CANT_UNMOUNT_FILESYS">ПОМИЛКА: Пристрій/розділ містить файлову систему, яка не може бути розмонтована. Ця файлова система може використовуватись операційною системою. Форматування пристрою/розділу ймовірніше за все призведе до пошкодження данних і нестабільності системи.\n\nДля вирішення цієї проблеми ми рекомендуємо зпочатку видалити цей розділ, після чого знову створити його без форматування. Ось як це зробити: 1) Клацніть правою кнопкою миші по значку 'Комп'ютер' (або 'Мій комп’ютер') в меню 'Пуск' і виберіть пункт 'Керування'. Повинно появитися вікно 'Керування комп’ютером'. 2) В вікні 'Управління комп'ютером' виберіть 'Запамятовуючі пристрої' > 'Керування дисками'. 3) Клайніть правою кнопкою миші по розділу, який ви хочете зашифрувати, і виберіть або 'Видалити розділ', або 'Видалити том', або 'Видалити логічний диск'. 4) Натисніть 'Так'. Якщо Windows попросить перезагрузити комп'ютер, виконайте це. Потім повторіть кроки 1 і 2 і перейдіть до кроку 5. 5) Клацніть правою кнопкою по пустому участку (воно повинно містити надпис 'Не розподілено') і виберіть 'Основний розділ', 'Додатковий розділ' або 'Логічний диск'. 6) Повинно появитися вікно майстра створення розділів або томів; дотримуйтесь його інструкціям. В вікні майстра на сторінці 'Форматування розділу' виберіть або 'Не форматувати цей розділ', або 'Не форматувати цей том'. В тому ж вікні майстра натисніть кнопку 'Далі' і потім 'Готово'. 7) Майте на увазі, що вибраний вами в VeraCrypt шлях до пристрою може бути тепер невірним. Тому завершіть роботу майстра створення томів VeraCrypt (якщо він все ще виконкється) і запустіть йго знову. 8) Спробуйте знову зашифрувати пристрій/розділ в VeraCrypt.\n\nЯкщо VeraCrypt знову відмовиться шифрувати пристрій/розділ, зкоректуйте свої плани і створіть замість цього файловий контейнер.</entry> + <entry lang="uk" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">ПОМИЛКА: Не вдалося заблокувати і/або розмонтувати файлову систему. Вірогідно, вона використовується ОС або додатками (наприклад, антивірусним ПЗ). Шифрування цього розділу може призвести до пошкодження даних і нестабільність системи.\n\nЗакрийте всі додатки, які можуть звертатися до файлової системи (включаючи антивірусне ПЗ) і повторіть спробу. Якщо це не допоможе, дотримуйтесь нижче вказаних інструкцій.</entry> <entry lang="uk" key="DEVICE_IN_USE_INFO">УВАГА: деякі змонтовані пристрої/розділи вже використовуються.\n\nІгнорування цього може призвести до небажаних наслідків, включаючи нестабільність системи.\n\nСлід закрити всі застосунки, що можуть використовувати ці пристрої/розділи.</entry> @@ -592,3 +592,3 @@ <entry lang="uk" key="OPENFILES_LOCK">Неможливо заблокувати том. Цей том містить відкриті файли, тому його неможна розмонтувати.</entry> - <entry lang="uk" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt не може заблокувати том, так як він використовується системою або додатками (можливо, відкриті файли на цьому томі).\n\nВи наполягаєте на примусовому розмонтуванні цього тому?</entry> + <entry lang="uk" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt не може заблокувати том, так як він використовується системою або додатками (можливо, відкриті файли на цьому томі).\n\nВи наполягаєте на примусовому розмонтуванні цього тому?</entry> <entry lang="uk" key="OPEN_VOL_TITLE">Оберіть том VeraCrypt</entry> @@ -731,3 +731,3 @@ <entry lang="uk" key="CANT_MOUNT_VOLUME">Неможливо монтувати том.</entry> - <entry lang="uk" key="CANT_DISMOUNT_VOLUME">Неможливо розмонтувати том.</entry> + <entry lang="uk" key="CANT_UNMOUNT_VOLUME">Неможливо розмонтувати том.</entry> <entry lang="uk" key="FORMAT_NTFS_FAILED">Помилка NTFS-форматування.\n\nБудь ласка, оберіть іншу файлову систему (якщо можливо) та спробуйте ще. В іншому випадку, можна залишити том неформатованим (оберіть 'None' за файлову систему), вийдіть з цього Майстра, змонтуйте том та використайте системну або сторонню програму для форматування цього тому (том залишиться зашифрованим).</entry> @@ -773,3 +773,3 @@ <entry lang="uk" key="INPLACE_DEC_GENERIC_ERR">Помилка перешкодила VeraCrypt розшифрувати том. Будь ласка, спробуйте виправити будь-які раніше повідомлені проблеми і потім спробуйте ще раз, якщо це можливо.</entry> - <entry lang="uk" key="CANT_DISMOUNT_OUTER_VOL">Помилка: неможливо розмонтувати зовнішній том.\n\nТом неможна розмонтувати, якщо він містить файли або теки, що використовуються будь-яким застосунком або системою.\n\nЗакрийте всі такі застосунки й натисніть 'Повторити'.</entry> + <entry lang="uk" key="CANT_UNMOUNT_OUTER_VOL">Помилка: неможливо розмонтувати зовнішній том.\n\nТом неможна розмонтувати, якщо він містить файли або теки, що використовуються будь-яким застосунком або системою.\n\nЗакрийте всі такі застосунки й натисніть 'Повторити'.</entry> <entry lang="uk" key="CANT_GET_OUTER_VOL_INFO">Помилка: неможливо отримати інформацю про зовнішній том! Створення тому не може бути продовжено.</entry> @@ -884,3 +884,3 @@ <entry lang="uk" key="CLOSE_TC_FIRST">Драйвер пристроїв VeraCrypt не можливо вимкнути.\n\n Будь ласка, закрийте всі відкриті вікна VeraCrypt. Якщо це не допоможе, перезавантажте Windows та спробуйте ще.</entry> - <entry lang="uk" key="DISMOUNT_ALL_FIRST">Перед встановленням або перевстановленням VeraCrypt, всі томи мають бути розмонтовані.</entry> + <entry lang="uk" key="UNMOUNT_ALL_FIRST">Перед встановленням або перевстановленням VeraCrypt, всі томи мають бути розмонтовані.</entry> <entry lang="uk" key="UNINSTALL_OLD_VERSION_FIRST">В цій системі встановлено застарілу версію VeraCrypt. Перед встановленням нової версії потрібно видалити стару.\n\nОдразу, як ви закриєте це вікно, буде запущено програму видалення старої версії. Після видалення старої версії VeraCrypt, знову запустіть встановлювач нової версії.</entry> @@ -905,3 +905,3 @@ <entry lang="uk" key="OPEN">Відкрити</entry> - <entry lang="uk" key="DISMOUNT">Розмонтувати</entry> + <entry lang="uk" key="UNMOUNT">Розмонтувати</entry> <entry lang="uk" key="SHOW_TC">Показати VeraCrypt</entry> @@ -977,3 +977,3 @@ <entry lang="uk" key="SYS_FAVORITES_REQUIRE_PBA">Системний розділ/диск не зашифрований.\n\nСмстемні обрані томи можна монтувати тільки за допомогою пароля дозавантажоючої аутентифікації.\nТому якщо ви бажаєте використовувати системні обрані томи, спочатку зашифруйте системний розділ/диск.</entry> - <entry lang="uk" key="DISMOUNT_FIRST">Перед продовженням, розмонтуйте том.</entry> + <entry lang="uk" key="UNMOUNT_FIRST">Перед продовженням, розмонтуйте том.</entry> <entry lang="uk" key="CANNOT_SET_TIMER">Помилка: неможливо встановити таймер.</entry> @@ -1011,7 +1011,7 @@ <entry lang="uk" key="HK_AUTOMOUNT_DEVICES">Автомонтування пристроїв</entry> - <entry lang="uk" key="HK_DISMOUNT_ALL">Розмонтувати все</entry> + <entry lang="uk" key="HK_UNMOUNT_ALL">Розмонтувати все</entry> <entry lang="uk" key="HK_WIPE_CACHE">Очистити кеш</entry> - <entry lang="uk" key="HK_DISMOUNT_ALL_AND_WIPE">Розмонтувати все & Очистіть кеш</entry> - <entry lang="uk" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Розмонтувати все й очистити кеш</entry> - <entry lang="uk" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Розмонтувати все, очистити кеш і вийти</entry> + <entry lang="uk" key="HK_UNMOUNT_ALL_AND_WIPE">Розмонтувати все & Очистіть кеш</entry> + <entry lang="uk" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Розмонтувати все й очистити кеш</entry> + <entry lang="uk" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Розмонтувати все, очистити кеш і вийти</entry> <entry lang="uk" key="HK_MOUNT_FAVORITE_VOLUMES">Монтувати вибрані томи</entry> @@ -1027,10 +1027,10 @@ <entry lang="uk" key="HIDDEN_OS_HIBERNATION_PREVENTED">Гібернація скасована.\n\nVeraCrypt не підтримує гібернацію прихованих операційних систем, що використовують додатковий завантажувальний розділ. Врахуйте, що завантажувальний розділ використовується як підставною, так і прихованою системами. Тому для запобігання витоку даних і проблем при виході з глибокого сну VeraCrypt заборонив прихованоій системі запис до загального завантажувального розділу і гібернацію.</entry> - <entry lang="uk" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">Том VeraCrypt, змонтований як%c:, розмонтовано.</entry> - <entry lang="uk" key="MOUNTED_VOLUMES_DISMOUNTED">Усі змонтовані томи VeraCrypt розмонтовано.</entry> - <entry lang="uk" key="VOLUMES_DISMOUNTED_CACHE_WIPED">Всі томи VeraCrypt розмонтовані, кеш паролів очищено.</entry> - <entry lang="uk" key="SUCCESSFULLY_DISMOUNTED">Успішно розмонтовано</entry> + <entry lang="uk" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">Том VeraCrypt, змонтований як%c:, розмонтовано.</entry> + <entry lang="uk" key="MOUNTED_VOLUMES_UNMOUNTED">Усі змонтовані томи VeraCrypt розмонтовано.</entry> + <entry lang="uk" key="VOLUMES_UNMOUNTED_CACHE_WIPED">Всі томи VeraCrypt розмонтовані, кеш паролів очищено.</entry> + <entry lang="uk" key="SUCCESSFULLY_UNMOUNTED">Успішно розмонтовано</entry> <entry lang="uk" key="CONFIRM_BACKGROUND_TASK_DISABLED">УВАГА: якщо вимкнути роботу VeraCrypt у фоновому режимі, то при кожному виході з програми будуть вимкнені наступні функції:\n\n1) Гарячі клавіши\n2) Автоматичне розмонтування (наприклад, при виході з системи, випадковому вимкненню зв'язку з пристроєм, таймауті тощо)\n3) Попередження (наприклад, про запобігання пошкодження прихованого тому)\n4) Значок у системному треї\n\nПримітка: фоновий режим можна завершити у будь який момент, клацнувши\nправою кнопкою миші на значку VeraCrypt у системному треї й обравши пункт 'Вихід'.\n\n\nВи дійсно бажаєте заборонити роботу VeraCrypt у фоновому режимі?</entry> - <entry lang="uk" key="CONFIRM_NO_FORCED_AUTODISMOUNT">УВАГА: якщо вимкнути цей параметр, буде неможливо автоматично розмонтовувати томи, що містять відкриті файли/теки.\n\nВи дійсно бажаєте вимкнути цей параметр?</entry> - <entry lang="uk" key="WARN_PREF_AUTO_DISMOUNT">УВАГА: томи з відкритими файлами/теками НЕ будуть автоматично розмонтовуватись.\n\nЩоб уникнути цього, ввімкніть у цьому вікні наступний параметр: 'Авторозмонтовувати томи навіть при відкритих файлах/теках'</entry> - <entry lang="uk" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">УВАГА: Якщо рівень заряду батареї в ноутбуці малий, Windows може нехтувати відправкою відповідних повідомлень в виконувану програму при вході комп'ютера в енергозберігаючий режим. Тому в таких випадках авторозмонтування томів у VeraCrypt може не спрацювати.</entry> + <entry lang="uk" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">УВАГА: якщо вимкнути цей параметр, буде неможливо автоматично розмонтовувати томи, що містять відкриті файли/теки.\n\nВи дійсно бажаєте вимкнути цей параметр?</entry> + <entry lang="uk" key="WARN_PREF_AUTO_UNMOUNT">УВАГА: томи з відкритими файлами/теками НЕ будуть автоматично розмонтовуватись.\n\nЩоб уникнути цього, ввімкніть у цьому вікні наступний параметр: 'Авторозмонтовувати томи навіть при відкритих файлах/теках'</entry> + <entry lang="uk" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">УВАГА: Якщо рівень заряду батареї в ноутбуці малий, Windows може нехтувати відправкою відповідних повідомлень в виконувану програму при вході комп'ютера в енергозберігаючий режим. Тому в таких випадках авторозмонтування томів у VeraCrypt може не спрацювати.</entry> <entry lang="uk" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Ви запланували шифрування розділу/тому. Цей процес покищо не завершений.\n\nБажаєте поновити процес зараз?</entry> @@ -1065,3 +1065,3 @@ <entry lang="uk" key="MOUNT_TC_VOLUME">монтувати том VeraCrypt</entry> - <entry lang="uk" key="DISMOUNT_ALL_TC_VOLUMES">Розмонтувати всі томи VeraCrypt</entry> + <entry lang="uk" key="UNMOUNT_ALL_TC_VOLUMES">Розмонтувати всі томи VeraCrypt</entry> <entry lang="uk" key="UAC_INIT_ERROR">VeraCrypt не зміг отримати права адміністратора.</entry> @@ -1308,4 +1308,4 @@ <entry lang="uk" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">УВАГА: Цей параметр може знизити продуктивність.\n\nвикористовувати цей параметр?</entry> - <entry lang="uk" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">Увага: VeraCrypt авто-розмонтував пристрої</entry> - <entry lang="uk" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">Перед тим, як фізично видалити або відключити пристрій, що містить встановлений обсяг, ви повинні демонтувати спершу том VeraCrypt.\n\nUnexpected spontaneous dismount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry> + <entry lang="uk" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">Увага: VeraCrypt авто-розмонтував пристрої</entry> + <entry lang="uk" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">Перед тим, як фізично видалити або відключити пристрій, що містить встановлений обсяг, ви повинні демонтувати спершу том VeraCrypt.\n\nUnexpected spontaneous unmount is usually caused by an intermittently failing cable, drive (enclosure), etc.</entry> <entry lang="uk" key="UNSUPPORTED_TRUECRYPT_FORMAT">Цей том був створений за допомогою TrueCrypt %x.%x, але VeraCrypt підтримує лише томи TrueCrypt, створені за допомогою версій TrueCrypt 6.x/7.x</entry> @@ -1455,3 +1455,3 @@ <entry lang="uk" key="TASKICON_PREF_OPEN_VOL">Відкрити змонтовані томи</entry> - <entry lang="uk" key="TASKICON_PREF_DISMOUNT_VOL">Відмонтувати змонтовані томи</entry> + <entry lang="uk" key="TASKICON_PREF_UNMOUNT_VOL">Відмонтувати змонтовані томи</entry> <entry lang="uk" key="DISK_FREE">Доступне місце: {0}</entry> @@ -1485,6 +1485,6 @@ <entry lang="uk" key="LINUX_SELECT">Виберіть</entry> - <entry lang="uk" key="LINUX_DISMOUNT_ALL_WHEN">Відмонтувати всі томи коли</entry> + <entry lang="uk" key="LINUX_UNMOUNT_ALL_WHEN">Відмонтувати всі томи коли</entry> <entry lang="uk" key="LINUX_ENTERING_POWERSAVING">Система переходить у режим економії енергії</entry> <entry lang="uk" key="LINUX_LOGIN_ACTION">Дії, які потрібно виконати під час входу користувача до системи</entry> - <entry lang="uk" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">Закрити всі вікна провідника тому, який відмонтовується</entry> + <entry lang="uk" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">Закрити всі вікна провідника тому, який відмонтовується</entry> <entry lang="uk" key="LINUX_HOTKEYS">Гарячі клавіші</entry> @@ -1492,3 +1492,3 @@ <entry lang="uk" key="LINUX_SOUND_NOTIFICATION">Відтворити системний звуковий сигнал після монтажу/відмонтажу</entry> - <entry lang="uk" key="LINUX_CONFIRM_AFTER_DISMOUNT">Показувати повідомлення про підтвердження після відмонтажу</entry> + <entry lang="uk" key="LINUX_CONFIRM_AFTER_UNMOUNT">Показувати повідомлення про підтвердження після відмонтажу</entry> <entry lang="uk" key="LINUX_VC_QUITS">VeraCrypt виходить</entry> @@ -1524,3 +1524,3 @@ <entry lang="uk" key="LINUX_KERNEL_OLD">Ваша система використовує стару версію ядра Linux.\n\nЧерез помилку в ядрі Linux ваша система може перестати відповідати під час запису даних на томи VeraCrypt. Цю проблему можна вирішити, оновивши ядро до версії 2.6.24 або новішої.</entry> - <entry lang="uk" key="LINUX_VOL_DISMOUNTED">Том {0} було відмонтовано.</entry> + <entry lang="uk" key="LINUX_VOL_UNMOUNTED">Том {0} було відмонтовано.</entry> <entry lang="uk" key="LINUX_VOL_MOUNTED">Том {0} було змонтовано.</entry> @@ -1643,2 +1643,5 @@ <entry lang="uk" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">ПОПЕРЕДЖЕННЯ: Головний ключ тому має уразливість безпеки.</entry> + <entry lang="uk" key="MOUNTPOINT_BLOCKED">ПОМИЛКА: Точка монтування тому заблокована, оскільки вона заміщує захищений системний каталог.\n\nБудь ласка, оберіть іншу точку монтування.</entry> + <entry lang="uk" key="MOUNTPOINT_NOTALLOWED">ПОМИЛКА: Точка монтування тому не дозволена, оскільки вона заміщує каталог, який є частиною змінної середовища PATH.\n\nБудь ласка, оберіть іншу точку монтування.</entry> + <entry lang="uk" key="INSECURE_MODE">[НЕБЕЗПЕЧНИЙ РЕЖИМ]</entry> </localization> diff --git a/Translations/Language.uz.xml b/Translations/Language.uz.xml index 0a4262ec..655c3ea2 100644 --- a/Translations/Language.uz.xml +++ b/Translations/Language.uz.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="uz" name="Ўзбекча" en-name="Uzbek (Cyrillic)" version="0.1.0" translators="Abdurauf Azizov, Dmitry Yerokhin" /> @@ -137,4 +137,4 @@ <entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</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="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="uz" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="uz" key="IDC_PREF_CACHE_PASSWORDS">Кэшировать пароли в памяти</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_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_LOGON_MOUNT_DEVICES">Монтировать все тома на устройствах</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">Очищать кэш паролей при авторазмонтировании</entry> + <entry lang="uz" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">Очищать кэш паролей при авторазмонтировании</entry> <entry lang="uz" key="IDC_PREF_WIPE_CACHE_ON_EXIT">Очищать кэш паролей при выходе</entry> @@ -271,4 +271,4 @@ <entry lang="uz" key="IDT_AUTORUN">Настройка автозапуска (файл autorun.inf)</entry> - <entry lang="uz" key="IDT_AUTO_DISMOUNT">Автоматическое размонтирование</entry> - <entry lang="uz" key="IDT_AUTO_DISMOUNT_ON">Размонтировать все тома при:</entry> + <entry lang="uz" key="IDT_AUTO_UNMOUNT">Автоматическое размонтирование</entry> + <entry lang="uz" key="IDT_AUTO_UNMOUNT_ON">Размонтировать все тома при:</entry> <entry lang="uz" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Параметры экрана загрузчика</entry> @@ -278,3 +278,3 @@ <entry lang="uz" key="IDT_DEFAULT_MOUNT_OPTIONS">Параметры монтирования томов по умолчанию</entry> - <entry lang="uz" key="IDT_DISMOUNT_ACTION">Дополнительные параметры</entry> + <entry lang="uz" key="IDT_UNMOUNT_ACTION">Дополнительные параметры</entry> <entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry> @@ -425,4 +425,4 @@ <entry lang="uz" key="DEVICE_IN_USE_INPLACE_ENC">ВНИМАНИЕ: Устройство/раздел используется операционной системой или приложениями. Следует закрыть все программы, которые могут использовать раздел (включая антивирусное ПО).\n\nПродолжить?</entry> - <entry lang="uz" key="FORMAT_CANT_DISMOUNT_FILESYS">ОШИБКА: Устройство/раздел содержит файловую систему, которая не может быть размонтирована. Эта файловая система может использоваться операционной системой. Форматирование устройства/раздела вероятнее всего приведёт к повреждению данных и нестабильности системы.\n\nДля решения этой проблемы мы рекомендуем сначала удалить этот раздел, после чего вновь создать его без форматирования. Вот как это сделать: 1) Щёлкните правой кнопкой мыши по значку 'Компьютер' (или 'Мой компьютер') в меню 'Пуск' и выберите пункт 'Управление'. Должно появиться окно 'Управление компьютером'. 2) В окне 'Управление компьютером' выберите 'Запоминающие устройства' > 'Управление дисками'. 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="FORMAT_CANT_UNMOUNT_FILESYS">ОШИБКА: Устройство/раздел содержит файловую систему, которая не может быть размонтирована. Эта файловая система может использоваться операционной системой. Форматирование устройства/раздела вероятнее всего приведёт к повреждению данных и нестабильности системы.\n\nДля решения этой проблемы мы рекомендуем сначала удалить этот раздел, после чего вновь создать его без форматирования. Вот как это сделать: 1) Щёлкните правой кнопкой мыши по значку 'Компьютер' (или 'Мой компьютер') в меню 'Пуск' и выберите пункт 'Управление'. Должно появиться окно 'Управление компьютером'. 2) В окне 'Управление компьютером' выберите 'Запоминающие устройства' > 'Управление дисками'. 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="DEVICE_IN_USE_INFO">ВНИМАНИЕ: Некоторые смонтированные устройства/разделы уже используются.\n\nИгнорирование этого может привести к нежелательным последствиям, включая нестабильность системы.\n\nНастоятельно рекомендуется закрыть все программы, использующие эти устройства/разделы.</entry> @@ -592,3 +592,3 @@ <entry lang="uz" key="OPENFILES_LOCK">Невозможно заблокировать том. На этом томе имеются открытые файлы, поэтому его нельзя размонтировать.</entry> - <entry lang="uz" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt не может заблокировать том, так как он используется системой или приложениями (возможно, открыты находящиеся на этом томе файлы).\n\nВы настаиваете на принудительном размонтировании этого тома?</entry> + <entry lang="uz" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt не может заблокировать том, так как он используется системой или приложениями (возможно, открыты находящиеся на этом томе файлы).\n\nВы настаиваете на принудительном размонтировании этого тома?</entry> <entry lang="uz" key="OPEN_VOL_TITLE">Выберите том VeraCrypt</entry> @@ -731,3 +731,3 @@ <entry lang="uz" key="CANT_MOUNT_VOLUME">Невозможно смонтировать том.</entry> - <entry lang="uz" key="CANT_DISMOUNT_VOLUME">Невозможно размонтировать том.</entry> + <entry lang="uz" key="CANT_UNMOUNT_VOLUME">Невозможно размонтировать том.</entry> <entry lang="uz" key="FORMAT_NTFS_FAILED">Windows не может отформатировать этот том как NTFS.\n\nВыберите другой тип файловой системы (если возможно) и повторите попытку. Либо вы можете оставить этот том неформатированным (в поле выбора файловой системы укажите 'Нет'), закрыть окно мастера, смонтировать том, а затем с помощью системной или сторонней утилиты отформатировать смонтированный том (том при этом останется зашифрованным).</entry> @@ -773,3 +773,3 @@ <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_DISMOUNT_OUTER_VOL">Ошибка! Невозможно размонтировать внешний том.\n\nТом нельзя размонтировать, если он содержит файлы или папки, используемые какой-либо программой или системой.\n\nЗакройте все программы, которые могут использовать файлы и папки на этом томе, и нажмите 'Повтор'.</entry> + <entry lang="uz" key="CANT_UNMOUNT_OUTER_VOL">Ошибка! Невозможно размонтировать внешний том.\n\nТом нельзя размонтировать, если он содержит файлы или папки, используемые какой-либо программой или системой.\n\nЗакройте все программы, которые могут использовать файлы и папки на этом томе, и нажмите 'Повтор'.</entry> <entry lang="uz" key="CANT_GET_OUTER_VOL_INFO">Ошибка! Невозможно получить информацию о внешнем томе. Создание тома прекращено.</entry> @@ -884,3 +884,3 @@ <entry lang="uz" key="CLOSE_TC_FIRST">Невозможно выгрузить драйвер VeraCrypt.\n\nСначала закройте все открытые окна VeraCrypt. Если это не поможет, перезагрузите Windows и попробуйте ещё раз.</entry> - <entry lang="uz" key="DISMOUNT_ALL_FIRST">Прежде чем продолжить установку или удаление VeraCrypt, нужно размонтировать все VeraCrypt-тома.</entry> + <entry lang="uz" key="UNMOUNT_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> @@ -905,3 +905,3 @@ <entry lang="uz" key="OPEN">Открыть</entry> - <entry lang="uz" key="DISMOUNT">Размонтировать</entry> + <entry lang="uz" key="UNMOUNT">Размонтировать</entry> <entry lang="uz" key="SHOW_TC">Показать VeraCrypt</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">Прежде чем продолжить, размонтируйте том.</entry> + <entry lang="uz" key="UNMOUNT_FIRST">Прежде чем продолжить, размонтируйте том.</entry> <entry lang="uz" key="CANNOT_SET_TIMER">ОШИБКА: Невозможно установить таймер.</entry> @@ -999,3 +999,3 @@ <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 dismount 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 unmount the volume.</entry> <entry lang="uz" key="HOMEPAGE">Домашняя страница</entry> @@ -1011,7 +1011,7 @@ <entry lang="uz" key="HK_AUTOMOUNT_DEVICES">Автомонтирование устройств</entry> - <entry lang="uz" key="HK_DISMOUNT_ALL">Размонтировать все</entry> + <entry lang="uz" key="HK_UNMOUNT_ALL">Размонтировать все</entry> <entry lang="uz" key="HK_WIPE_CACHE">Очистка кэша</entry> - <entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All & 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="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All & 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="uz" key="HK_MOUNT_FAVORITE_VOLUMES">Смонтировать избранные тома</entry> @@ -1027,10 +1027,10 @@ <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_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="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="uz" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Вы запланировали шифрование раздела/тома. Этот процесс пока ещё не завершён.\n\nХотите возобновить процесс сейчас?</entry> @@ -1042,3 +1042,3 @@ <entry lang="uz" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">Вы запланировали шифрование или дешифрование системного раздела/диска. Однако не пройдена (или была пропущена) предзагрузочная авторизация.\n\nПримечание: при дешифровании системного раздела/диска в предзагрузочном окружении может потребоваться финализация процесса путём выбора команды 'Система' > 'Перманентно расшифровать системный раздел/диск' в меню главного окна 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-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">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="uz" key="CONFIRM_EXIT_UNIVERSAL">Выход?</entry> @@ -1065,3 +1065,3 @@ <entry lang="uz" key="MOUNT_TC_VOLUME">Смонтировать том VeraCrypt</entry> - <entry lang="uz" key="DISMOUNT_ALL_TC_VOLUMES">Размонтировать все тома VeraCrypt</entry> + <entry lang="uz" key="UNMOUNT_ALL_TC_VOLUMES">Размонтировать все тома VeraCrypt</entry> <entry lang="uz" key="UAC_INIT_ERROR">VeraCrypt не может получить права администратора.</entry> @@ -1287,4 +1287,4 @@ <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 '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="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="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry> @@ -1294,6 +1294,6 @@ <entry lang="uz" key="SELECT_DEVICE_AND_MOUNT">Выбрать &устройство и смонтировать...</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="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount 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 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="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="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> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <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="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry> <entry lang="en" key="DISK_FREE">Free space available: {0}</entry> @@ -1485,10 +1485,10 @@ <entry lang="en" key="LINUX_SELECT">Se&lect...</entry> - <entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry> + <entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount 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_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</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_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_VC_QUITS">VeraCrypt quits</entry> @@ -1512,3 +1512,3 @@ <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_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_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> @@ -1516,3 +1516,3 @@ <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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry> <entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry> @@ -1524,3 +1524,3 @@ <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_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry> <entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/Translations/Language.vi.xml b/Translations/Language.vi.xml index 48db97ae..f1fb20ee 100644 --- a/Translations/Language.vi.xml +++ b/Translations/Language.vi.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="vi" name="Tiếng Việt" en-name="Vietnamese" version="0.1.0" translators="Nguyễn Kim Huy" /> @@ -137,4 +137,4 @@ <entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</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="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="vi" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <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_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_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_LOGON_MOUNT_DEVICES">Nạp tất cả các tập đĩa VeraCrypt có thiết bị làm chủ lên</entry> @@ -171,3 +171,3 @@ <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_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_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_EXIT">Xóa mật mã được tạm trữ khi ra khỏi</entry> @@ -271,4 +271,4 @@ <entry lang="vi" key="IDT_AUTORUN">Cấu hình Tự chạy (autorun.inf)</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_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_BOOT_LOADER_SCREEN_OPTIONS">Các Tùy chọn của Màn hình Bộ tải Khởi nạp</entry> @@ -278,3 +278,3 @@ <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_DISMOUNT_ACTION">Tùy chọn phím nóng</entry> + <entry lang="vi" key="IDT_UNMOUNT_ACTION">Tùy chọn phím nóng</entry> <entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry> @@ -425,4 +425,4 @@ <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_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ữ' > '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="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ữ' > '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="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> @@ -592,3 +592,3 @@ <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_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="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="OPEN_VOL_TITLE">Chọn một Tập đĩa VeraCrypt</entry> @@ -731,3 +731,3 @@ <entry lang="vi" key="CANT_MOUNT_VOLUME">Không thể nạp tập đĩa lên đượ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="CANT_UNMOUNT_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> @@ -773,3 +773,3 @@ <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_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_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_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> @@ -884,3 +884,3 @@ <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="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="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="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> @@ -905,3 +905,3 @@ <entry lang="vi" key="OPEN">Mở</entry> - <entry lang="vi" key="DISMOUNT">Tháo xuống</entry> + <entry lang="vi" key="UNMOUNT">Tháo xuống</entry> <entry lang="vi" key="SHOW_TC">Cho thấy VeraCrypt</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">Xin tháo tập đĩa xuống trước khi tiến hành.</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="CANNOT_SET_TIMER">Lỗi: Không thể thiết lập bộ đếm thời gian.</entry> @@ -1011,7 +1011,7 @@ <entry lang="vi" key="HK_AUTOMOUNT_DEVICES">Những Thiết bị Tự-Nạp</entry> - <entry lang="vi" key="HK_DISMOUNT_ALL">Tháo xuống Tất cả</entry> + <entry lang="vi" key="HK_UNMOUNT_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_DISMOUNT_ALL_AND_WIPE">Tháo xuống Tất cả & 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ả & 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ữ & Thoát ra</entry> + <entry lang="vi" key="HK_UNMOUNT_ALL_AND_WIPE">Tháo xuống Tất cả & 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ả & 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ữ & 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> @@ -1027,10 +1027,10 @@ <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_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="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="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> @@ -1042,3 +1042,3 @@ <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' > '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-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">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="vi" key="CONFIRM_EXIT_UNIVERSAL">Thoát ra không?</entry> @@ -1065,3 +1065,3 @@ <entry lang="vi" key="MOUNT_TC_VOLUME">Nạp tập đĩa VeraCrypt lên</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="UNMOUNT_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> @@ -1287,3 +1287,3 @@ <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 '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_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="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> @@ -1294,3 +1294,3 @@ <entry lang="vi" key="SELECT_DEVICE_AND_MOUNT">Lựa chọn &Thiết bị và Nạp lên...</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="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount 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> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <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="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry> <entry lang="en" key="DISK_FREE">Free space available: {0}</entry> @@ -1485,10 +1485,10 @@ <entry lang="en" key="LINUX_SELECT">Se&lect...</entry> - <entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry> + <entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount 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_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</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_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_VC_QUITS">VeraCrypt quits</entry> @@ -1512,3 +1512,3 @@ <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 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_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_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> @@ -1516,3 +1516,3 @@ <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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry> <entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry> @@ -1524,3 +1524,3 @@ <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_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry> <entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/Translations/Language.zh-cn.xml b/Translations/Language.zh-cn.xml index 684a954a..92f57ad5 100644 --- a/Translations/Language.zh-cn.xml +++ b/Translations/Language.zh-cn.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="zh-cn" name="简体中文" en-name="Chinese (Simplified)" version="1.0.3" translators="Barney Li, Zhangjintao, Nkh0472, 风之暇想" /> @@ -138,4 +138,4 @@ <entry lang="zh-cn" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">全局设置</entry> - <entry lang="zh-cn" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">热键卸载后显示气球提示</entry> - <entry lang="zh-cn" key="IDC_HK_DISMOUNT_PLAY_SOUND">热键卸载后播放系统提示音</entry> + <entry lang="zh-cn" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">热键卸载后显示气球提示</entry> + <entry lang="zh-cn" key="IDC_HK_UNMOUNT_PLAY_SOUND">热键卸载后播放系统提示音</entry> <entry lang="zh-cn" key="IDC_HK_MOD_ALT">Alt</entry> @@ -159,8 +159,8 @@ <entry lang="zh-cn" key="IDC_PREF_CACHE_PASSWORDS">在驱动内存中缓存密码</entry> - <entry lang="zh-cn" key="IDC_PREF_DISMOUNT_INACTIVE">自动卸载加密卷,在无数据读写动作下面时间后</entry> - <entry lang="zh-cn" key="IDC_PREF_DISMOUNT_LOGOFF">用户注销时</entry> - <entry lang="zh-cn" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">用户锁定会话时</entry> - <entry lang="zh-cn" key="IDC_PREF_DISMOUNT_POWERSAVING">进入待机状态时</entry> - <entry lang="zh-cn" key="IDC_PREF_DISMOUNT_SCREENSAVER">屏幕保护加载时</entry> - <entry lang="zh-cn" key="IDC_PREF_FORCE_AUTO_DISMOUNT">强制自动卸载,无论加密卷是否有被打开的文件或目录</entry> + <entry lang="zh-cn" key="IDC_PREF_UNMOUNT_INACTIVE">自动卸载加密卷,在无数据读写动作下面时间后</entry> + <entry lang="zh-cn" key="IDC_PREF_UNMOUNT_LOGOFF">用户注销时</entry> + <entry lang="zh-cn" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">用户锁定会话时</entry> + <entry lang="zh-cn" key="IDC_PREF_UNMOUNT_POWERSAVING">进入待机状态时</entry> + <entry lang="zh-cn" key="IDC_PREF_UNMOUNT_SCREENSAVER">屏幕保护加载时</entry> + <entry lang="zh-cn" key="IDC_PREF_FORCE_AUTO_UNMOUNT">强制自动卸载,无论加密卷是否有被打开的文件或目录</entry> <entry lang="zh-cn" key="IDC_PREF_LOGON_MOUNT_DEVICES">加载所有设备类 VeraCrypt 加密卷</entry> @@ -172,3 +172,3 @@ <entry lang="zh-cn" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">有加密卷加载时启用不同颜色的任务栏图标</entry> - <entry lang="zh-cn" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">自动卸载时擦除缓存的密码</entry> + <entry lang="zh-cn" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">自动卸载时擦除缓存的密码</entry> <entry lang="zh-cn" key="IDC_PREF_WIPE_CACHE_ON_EXIT">退出时擦除缓存的密码</entry> @@ -272,4 +272,4 @@ <entry lang="zh-cn" key="IDT_AUTORUN">自动运行配置(autorun.inf)</entry> - <entry lang="zh-cn" key="IDT_AUTO_DISMOUNT">自动卸载</entry> - <entry lang="zh-cn" key="IDT_AUTO_DISMOUNT_ON">全部卸载,当:</entry> + <entry lang="zh-cn" key="IDT_AUTO_UNMOUNT">自动卸载</entry> + <entry lang="zh-cn" key="IDT_AUTO_UNMOUNT_ON">全部卸载,当:</entry> <entry lang="zh-cn" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">启动管理器屏幕选项</entry> @@ -279,3 +279,3 @@ <entry lang="zh-cn" key="IDT_DEFAULT_MOUNT_OPTIONS">默认加载选项</entry> - <entry lang="zh-cn" key="IDT_DISMOUNT_ACTION">热键设置</entry> + <entry lang="zh-cn" key="IDT_UNMOUNT_ACTION">热键设置</entry> <entry lang="zh-cn" key="IDT_DRIVER_OPTIONS">设置驱动程序...</entry> @@ -426,4 +426,4 @@ <entry lang="zh-cn" key="DEVICE_IN_USE_INPLACE_ENC">警告:该分区正在被操作系统或应用程序使用。您应当关闭任何可能占用此分区的程序(包括反病毒软件)。\n\n确认继续吗?</entry> - <entry lang="zh-cn" 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-cn" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">错误:此文件系统不能被锁定 和/或 卸载。可能正在被操作系统或应用程序占用(例如反病毒软件)。加密此分区可能会导致数据损坏或者系统不稳定。\n\n请关闭任何可能占用此分区的程序(包括反病毒软件)并再试一次。如果仍然无效请参考下面步骤。</entry> + <entry lang="zh-cn" 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-cn" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">错误:此文件系统不能被锁定 和/或 卸载。可能正在被操作系统或应用程序占用(例如反病毒软件)。加密此分区可能会导致数据损坏或者系统不稳定。\n\n请关闭任何可能占用此分区的程序(包括反病毒软件)并再试一次。如果仍然无效请参考下面步骤。</entry> <entry lang="zh-cn" key="DEVICE_IN_USE_INFO">警告:一些加载的设备/分区正在使用中!\n\n若忽略这些则可能导致非期望的结果,包括系统不稳定。\n\n我们强烈建议您关闭所有可能正在使用 此设备/分区的应用程序。</entry> @@ -593,3 +593,3 @@ <entry lang="zh-cn" key="OPENFILES_LOCK">无法锁定此加密卷。此加密卷上仍有些文件被打开。因而也无法卸载。</entry> - <entry lang="zh-cn" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt 不能锁定该加密卷,这是因为此加密卷正在被操作系统或者其它程序占用(例如加密卷中有文件被打开)。\n\n您确认要强制卸载加密卷吗?</entry> + <entry lang="zh-cn" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt 不能锁定该加密卷,这是因为此加密卷正在被操作系统或者其它程序占用(例如加密卷中有文件被打开)。\n\n您确认要强制卸载加密卷吗?</entry> <entry lang="zh-cn" key="OPEN_VOL_TITLE">请选择一个 VeraCrypt 加密卷</entry> @@ -732,3 +732,3 @@ <entry lang="zh-cn" key="CANT_MOUNT_VOLUME">不能加载加密卷。</entry> - <entry lang="zh-cn" key="CANT_DISMOUNT_VOLUME">不能卸载加密卷。</entry> + <entry lang="zh-cn" key="CANT_UNMOUNT_VOLUME">不能卸载加密卷。</entry> <entry lang="zh-cn" key="FORMAT_NTFS_FAILED">格式化成 NTFS 磁盘格式时失败。\n\n请选择不同的文件系统格式(如果可能的话)再尝试一次。此外,您可以保留该加密卷为未格式化加密卷(文件系统选择为“无”),退出向导,加载这个加密卷,然后再使用系统或第三方工具格式化这个已经加载的加密卷(该加载的加密卷仍然为加密状态)。</entry> @@ -774,3 +774,3 @@ <entry lang="zh-cn" key="INPLACE_DEC_GENERIC_ERR">发生了一个错误,VeraCrypt 无法继续解密分区的过程。\n\n请尝试修复任何前面报告的问题之后再次尝试解密过程。</entry> - <entry lang="zh-cn" key="CANT_DISMOUNT_OUTER_VOL">错误:不能卸载外层加密卷!\n\n如果加密卷中的文件或文件夹被程序或被 系统使用,则该加密卷不能被锁定。\n\n请关闭任何可能使用加密卷上文件或目录 的程序,然后再点击“重试”。</entry> + <entry lang="zh-cn" key="CANT_UNMOUNT_OUTER_VOL">错误:不能卸载外层加密卷!\n\n如果加密卷中的文件或文件夹被程序或被 系统使用,则该加密卷不能被锁定。\n\n请关闭任何可能使用加密卷上文件或目录 的程序,然后再点击“重试”。</entry> <entry lang="zh-cn" key="CANT_GET_OUTER_VOL_INFO">错误:不能获取外层加密卷的信息! 加密卷创建不能继续。</entry> @@ -885,3 +885,3 @@ <entry lang="zh-cn" key="CLOSE_TC_FIRST">不能卸载 VeraCrypt 设备驱动。\n\n请首先关闭所有打开的 VeraCrypt 窗口。如果这样仍然不起作用,请重启计算机然后再试一次。</entry> - <entry lang="zh-cn" key="DISMOUNT_ALL_FIRST">在安装或者卸载 VeraCrypt 之前必须先要卸载所有的 VeraCrypt 加密卷。</entry> + <entry lang="zh-cn" key="UNMOUNT_ALL_FIRST">在安装或者卸载 VeraCrypt 之前必须先要卸载所有的 VeraCrypt 加密卷。</entry> <entry lang="zh-cn" key="UNINSTALL_OLD_VERSION_FIRST">当前系统已经安装了旧版本的 VeraCrypt。在安装新版本前需要卸载旧版本的 VeraCrypt。\n\n在您关闭此对话框之后,将会加载旧版本的卸载程序。在卸载的过程中将不会执行任何加密分区的解密操作。在卸载旧版本的 VeraCrypt 之后,请再次运行新版 VeraCrypt 安装程序。</entry> @@ -906,3 +906,3 @@ <entry lang="zh-cn" key="OPEN">打开</entry> - <entry lang="zh-cn" key="DISMOUNT">卸载</entry> + <entry lang="zh-cn" key="UNMOUNT">卸载</entry> <entry lang="zh-cn" key="SHOW_TC">显示 VeraCrypt</entry> @@ -978,3 +978,3 @@ <entry lang="zh-cn" key="SYS_FAVORITES_REQUIRE_PBA">系统分区/驱动器看起来没有加密。\n\n系统收藏加密卷只能使用启动验证中的密码加载。因此,要启用系统收藏加密卷功能,您需要先加密系统分区/驱动器。</entry> - <entry lang="zh-cn" key="DISMOUNT_FIRST">在操作前请卸载加密卷。</entry> + <entry lang="zh-cn" key="UNMOUNT_FIRST">在操作前请卸载加密卷。</entry> <entry lang="zh-cn" key="CANNOT_SET_TIMER">错误:不能设置计时器。</entry> @@ -1012,7 +1012,7 @@ <entry lang="zh-cn" key="HK_AUTOMOUNT_DEVICES">自动加载设备</entry> - <entry lang="zh-cn" key="HK_DISMOUNT_ALL">全部卸载</entry> + <entry lang="zh-cn" key="HK_UNMOUNT_ALL">全部卸载</entry> <entry lang="zh-cn" key="HK_WIPE_CACHE">擦除缓存</entry> - <entry lang="zh-cn" key="HK_DISMOUNT_ALL_AND_WIPE">全部卸载并擦除缓存</entry> - <entry lang="zh-cn" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">强制全部卸载并擦除缓存</entry> - <entry lang="zh-cn" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">强制全部卸载后擦除缓存并退出程序</entry> + <entry lang="zh-cn" key="HK_UNMOUNT_ALL_AND_WIPE">全部卸载并擦除缓存</entry> + <entry lang="zh-cn" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">强制全部卸载并擦除缓存</entry> + <entry lang="zh-cn" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">强制全部卸载后擦除缓存并退出程序</entry> <entry lang="zh-cn" key="HK_MOUNT_FAVORITE_VOLUMES">加载收藏的加密卷</entry> @@ -1028,10 +1028,10 @@ <entry lang="zh-cn" key="HIDDEN_OS_HIBERNATION_PREVENTED">休眠功能已经被阻止。\n\nVeraCrypt 不支持使用额外启动分区的隐形系统中的休眠功能。请注意启动分区是由迷惑系统和隐形系统共用的。因此,要防止数据泄露和休眠可能会带来的问题,VeraCrypt 不得不阻止隐形系统向共用的启动分区写入数据,以及阻止隐形系统休眠。</entry> - <entry lang="zh-cn" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">加载为 %c: 的 VeraCrypt 加密卷已卸载。</entry> - <entry lang="zh-cn" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt 加密卷已卸载。</entry> - <entry lang="zh-cn" key="VOLUMES_DISMOUNTED_CACHE_WIPED">VeraCrypt 加密卷已经卸载,密码缓存已擦除。</entry> - <entry lang="zh-cn" key="SUCCESSFULLY_DISMOUNTED">已成功卸载</entry> + <entry lang="zh-cn" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">加载为 %c: 的 VeraCrypt 加密卷已卸载。</entry> + <entry lang="zh-cn" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt 加密卷已卸载。</entry> + <entry lang="zh-cn" key="VOLUMES_UNMOUNTED_CACHE_WIPED">VeraCrypt 加密卷已经卸载,密码缓存已擦除。</entry> + <entry lang="zh-cn" key="SUCCESSFULLY_UNMOUNTED">已成功卸载</entry> <entry lang="zh-cn" key="CONFIRM_BACKGROUND_TASK_DISABLED">警告:如果 VeraCrypt 后台任务被禁用,下面的功能将会失效:\n\n1)系统热键\n2)自动卸载加密卷(例如注销时,意外的主设备移除,超时,等等)\n3)自动加载收藏加密卷\n4)提示(例如:对隐藏加密卷的损坏被阻止时)\n5)通知栏图标\n\n注意:您可以随时在通过右键单击 VeraCrypt 的通知栏图标并选择“退出”来停止后台任务。\n\n您确认要停止 VeraCrypt 的后台任务吗?</entry> - <entry lang="zh-cn" key="CONFIRM_NO_FORCED_AUTODISMOUNT">警告:如果此选项被禁用,包含打开的文件/目录 的加密卷将不能自动卸载。\n\n您确认要禁用这个选项吗?</entry> - <entry lang="zh-cn" key="WARN_PREF_AUTO_DISMOUNT">警告:包含打开的文件/目录的加密卷将不能自动卸载。\n\n要防止这种情况,在对话框窗口中启用下面选项: “强行自动卸载,不论加密卷是否包含打开的文件或目录”</entry> - <entry lang="zh-cn" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">警告:当笔记本电力不足时,Windows 可能会在计算机进入待机模式时,系统会向正在运行中的程序发送相应的信息。因此,这种情况下 VeraCrypt 可能会无法自动卸载加密卷。</entry> + <entry lang="zh-cn" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">警告:如果此选项被禁用,包含打开的文件/目录 的加密卷将不能自动卸载。\n\n您确认要禁用这个选项吗?</entry> + <entry lang="zh-cn" key="WARN_PREF_AUTO_UNMOUNT">警告:包含打开的文件/目录的加密卷将不能自动卸载。\n\n要防止这种情况,在对话框窗口中启用下面选项: “强行自动卸载,不论加密卷是否包含打开的文件或目录”</entry> + <entry lang="zh-cn" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">警告:当笔记本电力不足时,Windows 可能会在计算机进入待机模式时,系统会向正在运行中的程序发送相应的信息。因此,这种情况下 VeraCrypt 可能会无法自动卸载加密卷。</entry> <entry lang="zh-cn" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">您已经安排了加密 分区/设备 的计划。该计划尚未完成。\n\n您希望现在继续这个加密过程吗?</entry> @@ -1066,3 +1066,3 @@ <entry lang="zh-cn" key="MOUNT_TC_VOLUME">加载 VeraCrypt 加密卷</entry> - <entry lang="zh-cn" key="DISMOUNT_ALL_TC_VOLUMES">卸载所有 VeraCrypt 加密卷</entry> + <entry lang="zh-cn" key="UNMOUNT_ALL_TC_VOLUMES">卸载所有 VeraCrypt 加密卷</entry> <entry lang="zh-cn" key="UAC_INIT_ERROR">VeraCrypt 获取系统管理员权限失败。</entry> @@ -1309,4 +1309,4 @@ <entry lang="zh-cn" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">警告:此设置可能会降低性能。\n\n您确认要使用该设置吗?</entry> - <entry lang="zh-cn" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">警告:VeraCrypt 加密卷已自动卸载</entry> - <entry lang="zh-cn" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">在您物理卸载或关闭连接到已加载的加密卷前,您应当总是先在 VeraCrypt 中卸载它。\n\n意外发生的卸载通常是由于线缆、驱动器(附件)等导致的。</entry> + <entry lang="zh-cn" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">警告:VeraCrypt 加密卷已自动卸载</entry> + <entry lang="zh-cn" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">在您物理卸载或关闭连接到已加载的加密卷前,您应当总是先在 VeraCrypt 中卸载它。\n\n意外发生的卸载通常是由于线缆、驱动器(附件)等导致的。</entry> <entry lang="zh-cn" key="UNSUPPORTED_TRUECRYPT_FORMAT">不能在VeraCrypt使用这个用TrueCrypt%x.%x创建的加密卷,VeraCrypt只支持TrueCrypt6.x/7.x创建的加密卷。</entry> @@ -1456,3 +1456,3 @@ <entry lang="zh-cn" key="TASKICON_PREF_OPEN_VOL">打开已装载的卷</entry> - <entry lang="zh-cn" key="TASKICON_PREF_DISMOUNT_VOL">卸载已装载的卷</entry> + <entry lang="zh-cn" key="TASKICON_PREF_UNMOUNT_VOL">卸载已装载的卷</entry> <entry lang="zh-cn" key="DISK_FREE">可用空间为:{0}</entry> @@ -1486,6 +1486,6 @@ <entry lang="zh-cn" key="LINUX_SELECT">选择...(&)</entry> - <entry lang="zh-cn" key="LINUX_DISMOUNT_ALL_WHEN">卸载全部卷,当</entry> + <entry lang="zh-cn" key="LINUX_UNMOUNT_ALL_WHEN">卸载全部卷,当</entry> <entry lang="zh-cn" key="LINUX_ENTERING_POWERSAVING">系统将进入省电模式</entry> <entry lang="zh-cn" key="LINUX_LOGIN_ACTION">用户登录时要执行的操作</entry> - <entry lang="zh-cn" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">关闭正在卸载的卷的所有资源管理器窗口</entry> + <entry lang="zh-cn" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">关闭正在卸载的卷的所有资源管理器窗口</entry> <entry lang="zh-cn" key="LINUX_HOTKEYS">快捷键</entry> @@ -1493,3 +1493,3 @@ <entry lang="zh-cn" key="LINUX_SOUND_NOTIFICATION">装载/卸载后播放系统提示音</entry> - <entry lang="zh-cn" key="LINUX_CONFIRM_AFTER_DISMOUNT">卸载后显示确认消息框</entry> + <entry lang="zh-cn" key="LINUX_CONFIRM_AFTER_UNMOUNT">卸载后显示确认消息框</entry> <entry lang="zh-cn" key="LINUX_VC_QUITS">VeraCrypt退出</entry> @@ -1525,3 +1525,3 @@ <entry lang="zh-cn" key="LINUX_KERNEL_OLD">您的系统使用的是旧版本Linux内核。\n\n由于Linux内核中的错误,在将数据写入VeraCrypt卷时,系统可能会停止响应。这个问题可以通过将内核升级到2.6.24或更高版本来解决。</entry> - <entry lang="zh-cn" key="LINUX_VOL_DISMOUNTED">卷{0}已卸载。</entry> + <entry lang="zh-cn" key="LINUX_VOL_UNMOUNTED">卷{0}已卸载。</entry> <entry lang="zh-cn" key="LINUX_VOL_MOUNTED">卷{0}已装载。</entry> @@ -1644,2 +1644,5 @@ <entry lang="zh-cn" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">警告:卷的主密钥存在安全漏洞。</entry> + <entry lang="zh-cn" key="MOUNTPOINT_BLOCKED">错误:卷挂载点被阻止,因为它覆盖了受保护的系统目录。\n\n请选择其他挂载点。</entry> + <entry lang="zh-cn" key="MOUNTPOINT_NOTALLOWED">错误:卷挂载点不允许使用,因为它覆盖了 PATH 环境变量中的目录。\n\n请选择其他挂载点。</entry> + <entry lang="zh-cn" key="INSECURE_MODE">[不安全模式]</entry> </localization> diff --git a/Translations/Language.zh-hk.xml b/Translations/Language.zh-hk.xml index f4e4a9eb..91f5ab41 100644 --- a/Translations/Language.zh-hk.xml +++ b/Translations/Language.zh-hk.xml @@ -2,4 +2,4 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> - <language langid="zh-hk" name="繁體中文(香港)" en-name="Chinese (Hong Kong)" version="0.1.0" translators="PUN Chi Ho, Yeung Tim Ming" /> + <localization prog-version= "1.26.20"> + <language langid="zh-hk" name="正體中文(香港)" en-name="Traditional Chinese (Hong Kong)" version="0.1.0" translators="PUN Chi Ho, Yeung Tim Ming" /> <font lang="zh-hk" class="normal" size="12" face="Microsoft JhengHei UI" /> @@ -9,4 +9,4 @@ <entry lang="zh-hk" key="IDCANCEL">取消</entry> - <entry lang="zh-hk" key="IDC_ALL_USERS">為所有用戶安裝(&F)</entry> - <entry lang="zh-hk" key="IDC_BROWSE">瀏覽(&W)...</entry> + <entry lang="zh-hk" key="IDC_ALL_USERS">為所有使用者安裝(&F)</entry> + <entry lang="zh-hk" key="IDC_BROWSE">瀏覽...(&W)</entry> <entry lang="zh-hk" key="IDC_DESKTOP_ICON">在桌面新增 VeraCrypt 圖示(&D)</entry> @@ -15,3 +15,3 @@ <entry lang="zh-hk" key="IDC_OPEN_CONTAINING_FOLDER">完成後開啟目的地資料夾(&O)</entry> - <entry lang="zh-hk" key="IDC_PROG_GROUP">建立 VeraCrypt 的開始功能表項目(&S)</entry> + <entry lang="zh-hk" key="IDC_PROG_GROUP">新增 VeraCrypt 的開始功能表項目(&S)</entry> <entry lang="zh-hk" key="IDC_SYSTEM_RESTORE">建立系統還原點(&R)</entry> @@ -23,6 +23,6 @@ <entry lang="zh-hk" key="IDHELP">説明(&H)</entry> - <entry lang="zh-hk" key="IDT_EXTRACT_DESTINATION">請選擇或者輸入您希望解壓縮檔案的位置:</entry> - <entry lang="zh-hk" key="IDT_INSTALL_DESTINATION">請選擇或者輸入您希望 VeraCrypt 安裝的位置。如果指定的資料夾不存在,將會被自動建立。</entry> - <entry lang="zh-hk" key="IDT_UNINSTALL_DIR">按「解除安裝」以從系統中解除安裝 VeraCrypt。</entry> - <entry lang="zh-hk" key="IDC_ABORT_BUTTON">停止</entry> + <entry lang="zh-hk" key="IDT_EXTRACT_DESTINATION">請選取或輸入你想要解壓縮檔案的位置:</entry> + <entry lang="zh-hk" key="IDT_INSTALL_DESTINATION">請選取或輸入你想要安裝 VeraCrypt 程式檔案 的位置。如果指定的資料夾不存在,將會被自動建立。</entry> + <entry lang="zh-hk" key="IDT_UNINSTALL_DIR">按 [解除安裝] 從系統中解除安裝 VeraCrypt。</entry> + <entry lang="zh-hk" key="IDC_ABORT_BUTTON">中止</entry> <entry lang="zh-hk" key="IDC_BENCHMARK">效能測試(&B)</entry> @@ -31,5 +31,5 @@ <entry lang="zh-hk" key="IDC_DEVICE_TRANSFORM_MODE_INPLACE">就地加密分割區</entry> - <entry lang="zh-hk" key="IDC_DISPLAY_KEYS">顯示產生的加密鑰(其部分內容)</entry> + <entry lang="zh-hk" key="IDC_DISPLAY_KEYS">顯示已產生的加密鑰(其部分內容)</entry> <entry lang="zh-hk" key="IDC_DISPLAY_POOL_CONTENTS">顯示暫存集區內容</entry> - <entry lang="zh-hk" key="IDC_DOWNLOAD_CD_BURN_SOFTWARE">下載 CD/DVD 燒錄軟件</entry> + <entry lang="zh-hk" key="IDC_DOWNLOAD_CD_BURN_SOFTWARE">下載 CD 或 DVD 燒錄軟件</entry> <entry lang="zh-hk" key="IDC_FILE_CONTAINER">建立一個加密容器檔案</entry> @@ -38,3 +38,3 @@ <entry lang="zh-hk" key="IDC_HIDDEN_SYSENC_INFO_LINK">更多資訊</entry> - <entry lang="zh-hk" key="IDC_HIDDEN_VOL">隱藏的 VeraCrypt 加密區(&D) </entry> + <entry lang="zh-hk" key="IDC_HIDDEN_VOL">VeraCrypt 隱藏加密區(&D)</entry> <entry lang="zh-hk" key="IDC_HIDDEN_VOL_HELP">更多關於隱藏加密區的資訊</entry> @@ -46,7 +46,7 @@ <entry lang="zh-hk" key="IDC_KEYFILES_RANDOM_SIZE">隨機大小 ( 64 <-> 1048576 )</entry> - <entry lang="zh-hk" key="IDC_KEY_FILES">加密鑰檔案(&K)..</entry> - <entry lang="zh-hk" key="IDC_LINK_HASH_INFO">關於混雜演算法的更多資訊</entry> + <entry lang="zh-hk" key="IDC_KEY_FILES">加密鑰檔案...(&K)</entry> + <entry lang="zh-hk" key="IDC_LINK_HASH_INFO">關於雜湊演算法的更多資訊</entry> <entry lang="zh-hk" key="IDC_LINK_MORE_INFO_ABOUT_CIPHER">更多資訊</entry> <entry lang="zh-hk" key="IDC_LINK_PIM_INFO">關於 PIM 的資訊</entry> - <entry lang="zh-hk" key="IDC_MB">&MiB</entry> + <entry lang="en" key="IDC_MB">&MiB</entry> <entry lang="zh-hk" key="IDC_MORE_INFO_ON_CONTAINERS">更多資訊</entry> @@ -54,3 +54,3 @@ <entry lang="zh-hk" key="IDC_MORE_INFO_SYS_ENCRYPTION">更多資訊</entry> - <entry lang="zh-hk" key="IDC_MULTI_BOOT">多重開機</entry> + <entry lang="zh-hk" key="IDC_MULTI_BOOT">多重啟動</entry> <entry lang="zh-hk" key="IDC_NONSYS_DEVICE">加密非系統分割區或磁碟機</entry> @@ -65,3 +65,3 @@ <entry lang="zh-hk" key="IDC_SHOW_PIM">顯示 PIM(&D)</entry> - <entry lang="zh-hk" key="IDC_SINGLE_BOOT">單一系統開機</entry> + <entry lang="zh-hk" key="IDC_SINGLE_BOOT">單一啟動</entry> <entry lang="zh-hk" key="IDC_STD_VOL">標準 VeraCrypt 加密區</entry> @@ -69,8 +69,8 @@ <entry lang="zh-hk" key="IDC_SYSENC_NORMAL">正常</entry> - <entry lang="zh-hk" key="IDC_SYS_DEVICE">加密系統分割區或整個系統所在的碟機</entry> + <entry lang="zh-hk" key="IDC_SYS_DEVICE">加密系統分割區或整個系統磁碟機</entry> <entry lang="zh-hk" key="IDC_SYS_PARTITION">加密 Windows 作業系統分割區</entry> - <entry lang="zh-hk" key="IDC_WHOLE_SYS_DRIVE">加密整個碟機</entry> + <entry lang="zh-hk" key="IDC_WHOLE_SYS_DRIVE">加密整個磁碟機</entry> <entry lang="zh-hk" key="IDD_VOL_CREATION_WIZARD_DLG">VeraCrypt 加密區建立精靈</entry> - <entry lang="zh-hk" key="IDT_CLUSTER">配置單位</entry> - <entry lang="zh-hk" key="IDT_COLLECTING_RANDOM_DATA_NOTE">重要:請在這個視窗範圍內儘量隨意移動滑鼠。移動的時間越長越好。這將會有效增強加密鑰的加密強度。然後按「下一步」繼續。</entry> + <entry lang="zh-hk" key="IDT_CLUSTER">配置單位 </entry> + <entry lang="zh-hk" key="IDT_COLLECTING_RANDOM_DATA_NOTE">重要:請在這個視窗的範圍內儘量隨意移動滑鼠。移動的時間越長越好。這將會有效增強加密鑰的加密強度。然後按 [下一步] 繼續。</entry> <entry lang="zh-hk" key="IDT_CONFIRM">確認(&C):</entry> @@ -86,4 +86,4 @@ <entry lang="zh-hk" key="IDT_MASTER_KEY">主要加密鑰:</entry> - <entry lang="zh-hk" key="IDT_MULTI_BOOT">如果在這部電腦上安裝了兩個或以上的作業系統請選擇此項。\n\n例如:\n- Windows XP 和 Windows XP\n- Windows XP 和 Windows Vista\n- Windows 和 Mac OS X\n- Windows 和 Linux\n- Windows,Linux 和 Mac OS X</entry> - <entry lang="zh-hk" key="IDT_NON_SYS_DEVICE">加密一個內置或者外置磁碟機上的非系統分割區(如隨身碟)。也可以選擇性地建立一個隱藏的加密區。</entry> + <entry lang="zh-hk" key="IDT_MULTI_BOOT">如果在這部電腦上安裝了兩個或以上的作業系統請選擇此選項。\n\n例如:\n- Windows XP 和 Windows XP\n- Windows XP 和 Windows Vista\n- Windows 和 Mac OS X\n- Windows 和 Linux\n- Windows,Linux 和 Mac OS X</entry> + <entry lang="zh-hk" key="IDT_NON_SYS_DEVICE">加密一個內置或者外置磁碟機上的非系統分割區 (如隨身碟)。另外亦可選擇性地,建立一個隱藏加密區。</entry> <entry lang="zh-hk" key="IDT_PARTIAL_POOL_CONTENTS">目前暫存集區內容(局部)</entry> @@ -95,8 +95,8 @@ <entry lang="zh-hk" key="IDT_RANDOM_POOL">隨機集區:</entry> - <entry lang="zh-hk" key="IDT_SINGLE_BOOT">如果這部電腦只安裝了一個作業系統請選擇此項(即使該作業系統下可能有多個使用者)。</entry> + <entry lang="zh-hk" key="IDT_SINGLE_BOOT">如果這部電腦只安裝了一個作業系統請選擇此選項 (即使當中有多個使用者)。</entry> <entry lang="zh-hk" key="IDT_SPEED">速度</entry> <entry lang="zh-hk" key="IDT_STATUS">狀態</entry> - <entry lang="zh-hk" key="IDT_SYSENC_KEYS_GEN_INFO">加密鑰、salt、以及其他資料已被成功產生。如果您希望產生新的密鑰,請按「上一步」然後再按「下一步」。否則按「下一步」按鈕繼續。</entry> - <entry lang="zh-hk" key="IDT_SYS_DEVICE">加密已安裝 Windows 系統所在的分割區或磁碟機。加密後,任何人想要存取和使用這個系統、讀寫檔案等,都需要每次在 Windows 啟動前輸入正確的密碼。可選擇性地建立隱藏作業系統。</entry> - <entry lang="zh-hk" key="IDT_SYS_PARTITION">選擇這個選項以加密您目前正在運行的 Windows 作業系統所安裝的分割區。</entry> + <entry lang="zh-hk" key="IDT_SYSENC_KEYS_GEN_INFO">加密鑰、salt、以及其他數據已被成功產生。如果你希望產生新的加密鑰,請按 [上一步] 然後再按 [下一步]。否則按 [下一步] 繼續。</entry> + <entry lang="zh-hk" key="IDT_SYS_DEVICE">加密已安裝 Windows 系統所在的分割區或磁碟機。任何人想要存取和使用這個系統、讀寫檔案之類的操作,在加密後都將要每次在 Windows 啟動前輸入正確的密碼。另外亦可選擇性地建立隱藏作業系統。</entry> + <entry lang="zh-hk" key="IDT_SYS_PARTITION">選取這個選項以加密你目前正在運行的 Windows 作業系統所安裝的分割區。</entry> <entry lang="zh-hk" key="IDT_VOLUME_LABEL">在 Windows 中的磁碟區標籤名稱:</entry> @@ -104,13 +104,13 @@ <entry lang="zh-hk" key="IDCLOSE">關閉</entry> - <entry lang="zh-hk" key="IDC_ALLOW_ESC_PBA_BYPASS">容許按下 Esc 鍵時跳過開機驗證(啟用開機管理程式)(&A)</entry> + <entry lang="zh-hk" key="IDC_ALLOW_ESC_PBA_BYPASS">容許按 Esc 鍵來跳過開機前的驗證(啟用開機管理程式)(&A)</entry> <entry lang="zh-hk" key="IDC_AUTORUN_DISABLE">什麼都不做</entry> - <entry lang="zh-hk" key="IDC_AUTORUN_MOUNT">自動掛載 VeraCrypt 加密區(以下所列)(&A)</entry> - <entry lang="zh-hk" key="IDC_AUTORUN_START">執行 VeraCrypt(&S)</entry> + <entry lang="zh-hk" key="IDC_AUTORUN_MOUNT">自動掛載 VeraCrypt 加密區(以下指定)(&A)</entry> + <entry lang="zh-hk" key="IDC_AUTORUN_START">啟動 VeraCrypt(&S)</entry> <entry lang="zh-hk" key="IDC_AUTO_DETECT_PKCS11_MODULE">自動偵測程式庫(&D)</entry> - <entry lang="zh-hk" key="IDC_BOOT_LOADER_CACHE_PASSWORD">暫存啟動驗證密碼到驅動程式記憶體(用於掛載非系統加密區)(&C)</entry> + <entry lang="zh-hk" key="IDC_BOOT_LOADER_CACHE_PASSWORD">快取啟動前驗證密碼到驅動程式的記憶體(用於掛載非系統加密區)(&C)</entry> <entry lang="zh-hk" key="IDC_BROWSE_DIRS">瀏覽...</entry> <entry lang="zh-hk" key="IDC_BROWSE_FILES">瀏覽...</entry> - <entry lang="zh-hk" key="IDC_CACHE">在記憶體中暫存密碼和加密鑰檔案(&e)</entry> - <entry lang="zh-hk" key="IDC_CLOSE_BKG_TASK_WHEN_NOVOL">在沒有掛載任何加密區時自動結束程式</entry> - <entry lang="zh-hk" key="IDC_CLOSE_TOKEN_SESSION_AFTER_MOUNT">在加密區成功掛載後結束安全鑰匙工作階段(登出)(&C)</entry> + <entry lang="zh-hk" key="IDC_CACHE">在記憶體中快取密碼和加密鑰檔案(&e)</entry> + <entry lang="zh-hk" key="IDC_CLOSE_BKG_TASK_WHEN_NOVOL">在沒有掛載任何加密區時結束程式</entry> + <entry lang="zh-hk" key="IDC_CLOSE_TOKEN_SESSION_AFTER_MOUNT">在加密區成功掛載後結束權杖的工作階段(登出)(&C)</entry> <entry lang="zh-hk" key="IDC_COPY_EXPANDER">包含 VeraCrypt 磁碟區擴展工具</entry> @@ -119,5 +119,5 @@ <entry lang="zh-hk" key="IDC_CREATE_VOLUME">建立加密區(&C)</entry> - <entry lang="zh-hk" key="IDC_DISABLE_BOOT_LOADER_OUTPUT">不要在開機驗證畫面顯示任何文字(只顯示以下自設的訊息)(&S)</entry> - <entry lang="zh-hk" key="IDC_DISABLE_EVIL_MAID_ATTACK_DETECTION">停用 「邪惡女傭」 攻擊偵測</entry> - <entry lang="zh-hk" key="IDC_ENABLE_HARDWARE_ENCRYPTION">使用中央處理器的 AES 加速指令集為 AES 加密/解密作硬件加速(如有支援的話)</entry> + <entry lang="zh-hk" key="IDC_DISABLE_BOOT_LOADER_OUTPUT">不要在啟動前驗證畫面顯示任何文字(只顯示以下自訂訊息)(&S)</entry> + <entry lang="zh-hk" key="IDC_DISABLE_EVIL_MAID_ATTACK_DETECTION">停用 "邪惡女傭" 攻擊的偵測</entry> + <entry lang="zh-hk" key="IDC_ENABLE_HARDWARE_ENCRYPTION">使用中央處理器的 AES 加速指令集來硬件加速 AES 加密或解密(如果可用)</entry> <entry lang="zh-hk" key="IDC_ENABLE_KEYFILES">使用加密鑰檔案</entry> @@ -125,16 +125,16 @@ <entry lang="zh-hk" key="IDC_EXIT">離開(&X)</entry> - <entry lang="zh-hk" key="IDC_FAVORITES_HELP_LINK">最愛加密區的說明</entry> - <entry lang="zh-hk" key="IDC_FAVORITE_DISABLE_HOTKEY">按下「掛載最愛加密區」的快捷鍵時不要掛載這個加密區(&H)</entry> - <entry lang="zh-hk" key="IDC_FAVORITE_MOUNT_ON_ARRIVAL">當連接儲存裝置時掛載這個加密區(&C)</entry> - <entry lang="zh-hk" key="IDC_FAVORITE_MOUNT_ON_LOGON">登入時掛載這個加密區(&O)</entry> - <entry lang="zh-hk" key="IDC_FAVORITE_MOUNT_READONLY">以唯讀方式掛載這個加密區(&N)</entry> - <entry lang="zh-hk" key="IDC_FAVORITE_MOUNT_REMOVABLE">以可移除磁碟形式掛載這個加密區(&V)</entry> - <entry lang="zh-hk" key="IDC_FAVORITE_MOVE_DOWN">下移(&D)</entry> - <entry lang="zh-hk" key="IDC_FAVORITE_MOVE_UP">上移(&U)</entry> - <entry lang="zh-hk" key="IDC_FAVORITE_OPEN_EXPLORER_WIN_ON_MOUNT">當成功掛載加密區之後開啟檔案瀏覽器(&E)</entry> + <entry lang="zh-hk" key="IDC_FAVORITES_HELP_LINK">我的最愛加密區說明</entry> + <entry lang="zh-hk" key="IDC_FAVORITE_DISABLE_HOTKEY">在按 [掛載我的最愛加密區] 的快捷鍵時不要掛載這個加密區(&H)</entry> + <entry lang="zh-hk" key="IDC_FAVORITE_MOUNT_ON_ARRIVAL">當主機裝置連接時掛載已選取的加密區(&C)</entry> + <entry lang="zh-hk" key="IDC_FAVORITE_MOUNT_ON_LOGON">登入時掛載已選取的加密區(&O)</entry> + <entry lang="zh-hk" key="IDC_FAVORITE_MOUNT_READONLY">以唯讀方式掛載已選取的加密區(&N)</entry> + <entry lang="zh-hk" key="IDC_FAVORITE_MOUNT_REMOVABLE">以可移除磁碟形式掛載已選取的加密區(&V)</entry> + <entry lang="zh-hk" key="IDC_FAVORITE_MOVE_DOWN">向下移動(&D)</entry> + <entry lang="zh-hk" key="IDC_FAVORITE_MOVE_UP">向上移動(&U)</entry> + <entry lang="zh-hk" key="IDC_FAVORITE_OPEN_EXPLORER_WIN_ON_MOUNT">在成功掛載加密區後用檔案總管開啟(&E)</entry> <entry lang="zh-hk" key="IDC_FAVORITE_REMOVE">移除(&R)</entry> - <entry lang="zh-hk" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">使用自訂的標籤作為檔案瀏覽器的磁碟標籤</entry> + <entry lang="zh-hk" key="IDC_FAVORITE_USE_LABEL_IN_EXPLORER">使用我的最愛標籤作為檔案總管的磁碟機標籤</entry> <entry lang="zh-hk" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">全局設定</entry> - <entry lang="zh-hk" key="IDC_HK_DISMOUNT_BALLOON_TOOLTIP">使用快捷鍵成功解除掛載之後顯示氣泡提示框</entry> - <entry lang="zh-hk" key="IDC_HK_DISMOUNT_PLAY_SOUND">使用快捷鍵成功解除掛載之後播放系統提示音效</entry> + <entry lang="zh-hk" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">在使用快捷鍵成功解除掛載之後顯示氣泡提示框</entry> + <entry lang="zh-hk" key="IDC_HK_UNMOUNT_PLAY_SOUND">在使用快捷鍵成功解除掛載之後播放系統提示音效</entry> <entry lang="en" key="IDC_HK_MOD_ALT">Alt</entry> @@ -146,3 +146,3 @@ <entry lang="zh-hk" key="IDC_KEYFILES">加密鑰檔案...</entry> - <entry lang="zh-hk" key="IDC_LIMIT_ENC_THREAD_POOL">不要使用以下數目的處理器核心進行加密/解密:</entry> + <entry lang="zh-hk" key="IDC_LIMIT_ENC_THREAD_POOL">不要使用以下數目的邏輯處理器核心來加密或解密:</entry> <entry lang="zh-hk" key="IDC_MORE_INFO_ON_HW_ACCELERATION">更多資訊</entry> @@ -151,34 +151,34 @@ <entry lang="zh-hk" key="IDC_MOUNTALL">自動掛載磁碟機(&A)</entry> - <entry lang="zh-hk" key="IDC_MOUNT_OPTIONS">掛載選項(&A)...</entry> + <entry lang="zh-hk" key="IDC_MOUNT_OPTIONS">掛載選項...(&A)</entry> <entry lang="zh-hk" key="IDC_MOUNT_READONLY">以唯讀模式掛載加密區(&O)</entry> <entry lang="zh-hk" key="IDC_NEW_KEYFILES">加密鑰檔案...</entry> - <entry lang="zh-hk" key="IDC_OLD_PIM_HELP">(留空或輸入 0 以使用預設重復次數)</entry> - <entry lang="zh-hk" key="IDC_PIM_HELP">(留空或輸入 0 以使用預設重復次數)</entry> + <entry lang="zh-hk" key="IDC_OLD_PIM_HELP">(留空或輸入 0 以使用預設迭代次數)</entry> + <entry lang="zh-hk" key="IDC_PIM_HELP">(留空或輸入 0 以使用預設迭代次數)</entry> <entry lang="zh-hk" key="IDC_PREF_BKG_TASK_ENABLE">啟用</entry> - <entry lang="zh-hk" key="IDC_PREF_CACHE_PASSWORDS">在驅動程式記憶體中暫存密碼</entry> - <entry lang="zh-hk" key="IDC_PREF_DISMOUNT_INACTIVE">於超過以下時間無任何數據讀寫時自動解除掛載加密區</entry> - <entry lang="zh-hk" key="IDC_PREF_DISMOUNT_LOGOFF">使用者登出時</entry> - <entry lang="zh-hk" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">使用者階段被鎖定</entry> - <entry lang="zh-hk" key="IDC_PREF_DISMOUNT_POWERSAVING">進入待機狀態時</entry> - <entry lang="zh-hk" key="IDC_PREF_DISMOUNT_SCREENSAVER">螢幕保護載入時</entry> - <entry lang="zh-hk" key="IDC_PREF_FORCE_AUTO_DISMOUNT">即使加密區上有檔案或資料夾正在使用中仍強制解除掛載</entry> - <entry lang="zh-hk" key="IDC_PREF_LOGON_MOUNT_DEVICES">掛載所有裝置類的 VeraCrypt 加密區</entry> - <entry lang="zh-hk" key="IDC_PREF_LOGON_START">啟動 VeraCrypt 並在背景執行</entry> + <entry lang="zh-hk" key="IDC_PREF_CACHE_PASSWORDS">在驅動程式的記憶體中快取密碼</entry> + <entry lang="zh-hk" key="IDC_PREF_UNMOUNT_INACTIVE">在沒有任何數據讀寫時自動解除掛載加密區的時間長度</entry> + <entry lang="zh-hk" key="IDC_PREF_UNMOUNT_LOGOFF">使用者登出時</entry> + <entry lang="zh-hk" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">使用者階段被鎖定</entry> + <entry lang="zh-hk" key="IDC_PREF_UNMOUNT_POWERSAVING">進入待機狀態</entry> + <entry lang="zh-hk" key="IDC_PREF_UNMOUNT_SCREENSAVER">螢幕保護載入</entry> + <entry lang="zh-hk" key="IDC_PREF_FORCE_AUTO_UNMOUNT">即使加密區上有檔案或資料夾正在使用中仍強行解除掛載</entry> + <entry lang="zh-hk" key="IDC_PREF_LOGON_MOUNT_DEVICES">掛載所有寄存在裝置的 VeraCrypt 加密區</entry> + <entry lang="zh-hk" key="IDC_PREF_LOGON_START">啟動 VeraCrypt 並在背景運行</entry> <entry lang="zh-hk" key="IDC_PREF_MOUNT_READONLY">將加密區掛載成唯讀</entry> <entry lang="zh-hk" key="IDC_PREF_MOUNT_REMOVABLE">將加密區掛載成可移除媒體</entry> - <entry lang="zh-hk" key="IDC_PREF_OPEN_EXPLORER">在成功掛載加密區之後開啟檔案瀏覽器</entry> - <entry lang="zh-hk" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">在「掛載最愛磁碟區」時暫時儲存密碼</entry> - <entry lang="zh-hk" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">當有已掛載的加密區時使用不同的工作列圖示</entry> - <entry lang="zh-hk" key="IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT">自動解除掛載時清除暫存的密碼</entry> - <entry lang="zh-hk" key="IDC_PREF_WIPE_CACHE_ON_EXIT">結束程式時清除已暫存的密碼</entry> + <entry lang="zh-hk" key="IDC_PREF_OPEN_EXPLORER">在成功掛載加密區之後用檔案總管開啟</entry> + <entry lang="zh-hk" key="IDC_PREF_TEMP_CACHE_ON_MULTIPLE_MOUNT">在進行 [掛載最愛的加密區] 時暫時快取密碼</entry> + <entry lang="zh-hk" key="IDC_PREF_USE_DIFF_TRAY_ICON_IF_VOL_MOUNTED">在已掛載加密區時顯示不同的工作列圖示</entry> + <entry lang="zh-hk" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">自動解除掛載時清除已快取的密碼</entry> + <entry lang="zh-hk" key="IDC_PREF_WIPE_CACHE_ON_EXIT">結束程式時清除已快取的密碼</entry> <entry lang="zh-hk" key="IDC_PRESERVE_TIMESTAMPS">保留加密容器檔案的修改時間戳</entry> <entry lang="zh-hk" key="IDC_RESET_HOTKEYS">重設</entry> - <entry lang="zh-hk" key="IDC_SELECT_DEVICE">選擇裝置(&E)...</entry> - <entry lang="zh-hk" key="IDC_SELECT_FILE">選擇檔案(&F)...</entry> - <entry lang="zh-hk" key="IDC_SELECT_PKCS11_MODULE">選擇程式庫(&L)...</entry> + <entry lang="zh-hk" key="IDC_SELECT_DEVICE">選擇裝置...(&E)</entry> + <entry lang="zh-hk" key="IDC_SELECT_FILE">選擇檔案...(&F)</entry> + <entry lang="zh-hk" key="IDC_SELECT_PKCS11_MODULE">選擇程式庫...(&L)</entry> <entry lang="zh-hk" key="IDC_SHOW_PASSWORD_CHPWD_NEW">顯示密碼</entry> <entry lang="zh-hk" key="IDC_SHOW_PASSWORD_CHPWD_ORI">顯示密碼</entry> - <entry lang="zh-hk" key="IDC_TRAVEL_OPEN_EXPLORER">掛載加密區之後開啟檔案瀏覽器(&E)</entry> - <entry lang="zh-hk" key="IDC_TRAV_CACHE_PASSWORDS">在驅動程式的記憶體中暫存密碼(&C)</entry> - <entry lang="zh-hk" key="IDC_TRUECRYPT_MODE">TrueCrypt 模式</entry> + <entry lang="zh-hk" key="IDC_TRAVEL_OPEN_EXPLORER">掛載加密區之後用檔案總管開啟(&E)</entry> + <entry lang="zh-hk" key="IDC_TRAV_CACHE_PASSWORDS">在驅動程式的記憶體中快取密碼(&C)</entry> + <entry lang="zh-hk" key="IDC_TRUECRYPT_MODE">TrueCrypt 模式(&T)</entry> <entry lang="zh-hk" key="IDC_UNMOUNTALL">全部解除掛載(&S)</entry> @@ -186,5 +186,5 @@ <entry lang="zh-hk" key="IDC_VOLUME_TOOLS">加密區工具(&T)...</entry> - <entry lang="zh-hk" key="IDC_WIPE_CACHE">清除密碼暫存(&W)</entry> + <entry lang="zh-hk" key="IDC_WIPE_CACHE">清除密碼快取(&W)</entry> <entry lang="zh-hk" key="IDD_DEFAULT_MOUNT_PARAMETERS">VeraCrypt - 掛載參數</entry> - <entry lang="zh-hk" key="IDD_FAVORITE_VOLUMES">VeraCrypt - 最愛加密區</entry> + <entry lang="zh-hk" key="IDD_FAVORITE_VOLUMES">VeraCrypt - 我的最愛加密區</entry> <entry lang="zh-hk" key="IDD_HOTKEYS_DLG">VeraCrypt - 全系統性快捷鍵</entry> @@ -194,12 +194,12 @@ <entry lang="zh-hk" key="IDD_PERFORMANCE_SETTINGS">VeraCrypt - 效能及驅動程式選項</entry> - <entry lang="zh-hk" key="IDD_PREFERENCES_DLG">VeraCrypt - 喜好設定</entry> - <entry lang="zh-hk" key="IDD_SYSENC_SETTINGS">VeraCrypt - 系統加密設定選項</entry> - <entry lang="zh-hk" key="IDD_TOKEN_PREFERENCES">VeraCrypt - 安全鑰匙喜好設定</entry> - <entry lang="zh-hk" key="IDD_TRAVELER_DLG">VeraCrypt 隨身碟安裝</entry> + <entry lang="zh-hk" key="IDD_PREFERENCES_DLG">VeraCrypt - 偏好設定</entry> + <entry lang="zh-hk" key="IDD_SYSENC_SETTINGS">VeraCrypt - 系統加密設定</entry> + <entry lang="zh-hk" key="IDD_TOKEN_PREFERENCES">VeraCrypt - 安全權性杖偏好設定</entry> + <entry lang="zh-hk" key="IDD_TRAVELER_DLG"> VeraCrypt 隨身碟安裝工具</entry> <entry lang="zh-hk" key="IDD_VOLUME_PROPERTIES">VeraCrypt 加密區內容</entry> <entry lang="zh-hk" key="IDM_ABOUT">關於</entry> - <entry lang="zh-hk" key="IDM_ADD_REMOVE_VOL_KEYFILES">新增/移除加密鑰檔案...</entry> - <entry lang="zh-hk" key="IDM_ADD_VOLUME_TO_FAVORITES">新增已掛載的加密區到最愛...</entry> - <entry lang="zh-hk" key="IDM_ADD_VOLUME_TO_SYSTEM_FAVORITES">新增已掛載的加密區到系統最愛...</entry> - <entry lang="zh-hk" key="IDM_ANALYZE_SYSTEM_CRASH">分析系統崩潰原因...</entry> + <entry lang="zh-hk" key="IDM_ADD_REMOVE_VOL_KEYFILES">新增或移除加密區的加密鑰檔案...</entry> + <entry lang="zh-hk" key="IDM_ADD_VOLUME_TO_FAVORITES">新增已掛載的加密區到我的最愛...</entry> + <entry lang="zh-hk" key="IDM_ADD_VOLUME_TO_SYSTEM_FAVORITES">新增已掛載的加密區到我的最愛系統加密區...</entry> + <entry lang="zh-hk" key="IDM_ANALYZE_SYSTEM_CRASH">分析一個系統崩潰的原因...</entry> <entry lang="zh-hk" key="IDM_BACKUP_VOL_HEADER">備份加密區的標頭數據...</entry> @@ -208,10 +208,10 @@ <entry lang="zh-hk" key="IDM_CHANGE_PASSWORD">更改加密區密碼...</entry> - <entry lang="zh-hk" key="IDM_CHANGE_SYS_HEADER_KEY_DERIV_ALGO">設定表頭加密鑰衍生演算法...</entry> + <entry lang="zh-hk" key="IDM_CHANGE_SYS_HEADER_KEY_DERIV_ALGO">設定標頭加密鑰衍生演算法...</entry> <entry lang="zh-hk" key="IDM_CHANGE_SYS_PASSWORD">更改密碼...</entry> <entry lang="zh-hk" key="IDM_CLEAR_HISTORY">清除加密區歷史記錄</entry> - <entry lang="zh-hk" key="IDM_CLOSE_ALL_TOKEN_SESSIONS">關閉所有安全鑰匙工作階段</entry> - <entry lang="zh-hk" key="IDM_CONTACT">聯絡作者</entry> + <entry lang="zh-hk" key="IDM_CLOSE_ALL_TOKEN_SESSIONS">關閉所有安全性權杖的工作階段</entry> + <entry lang="zh-hk" key="IDM_CONTACT">聯絡方法</entry> <entry lang="zh-hk" key="IDM_CREATE_HIDDEN_OS">建立隱藏作業系統...</entry> - <entry lang="zh-hk" key="IDM_CREATE_RESCUE_DISK">建立救機光碟...</entry> - <entry lang="zh-hk" key="IDM_CREATE_VOLUME">建立新加密區...</entry> + <entry lang="zh-hk" key="IDM_CREATE_RESCUE_DISK">建立救機碟...</entry> + <entry lang="zh-hk" key="IDM_CREATE_VOLUME">建立新的加密區...</entry> <entry lang="zh-hk" key="IDM_DECRYPT_NONSYS_VOL">永久解密...</entry> @@ -219,3 +219,3 @@ <entry lang="zh-hk" key="IDM_DEFAULT_MOUNT_PARAMETERS">預設掛載參數...</entry> - <entry lang="zh-hk" key="IDM_DONATE">立即捐款...</entry> + <entry lang="zh-hk" key="IDM_DONATE">立即捐助...</entry> <entry lang="zh-hk" key="IDM_ENCRYPT_SYSTEM_DEVICE">加密系統分割區或磁碟機...</entry> @@ -225,21 +225,21 @@ <entry lang="zh-hk" key="IDM_HOTKEY_SETTINGS">快捷鍵...</entry> - <entry lang="zh-hk" key="IDM_KEYFILE_GENERATOR">加密鑰檔案產生器</entry> + <entry lang="zh-hk" key="IDM_KEYFILE_GENERATOR">加密鑰檔案產生工具</entry> <entry lang="zh-hk" key="IDM_LANGUAGE">語言...</entry> <entry lang="zh-hk" key="IDM_LICENSE">法律聲明</entry> - <entry lang="zh-hk" key="IDM_MANAGE_TOKEN_KEYFILES">管理安全鑰匙加密鑰檔案...</entry> - <entry lang="zh-hk" key="IDM_MOUNTALL">自動掛載全部儲存裝置類型的加密區</entry> - <entry lang="zh-hk" key="IDM_MOUNT_FAVORITE_VOLUMES">掛載最愛加密區</entry> - <entry lang="zh-hk" key="IDM_MOUNT_SYSENC_PART_WITHOUT_PBA">以非開機驗證方式掛載(&A)...</entry> + <entry lang="zh-hk" key="IDM_MANAGE_TOKEN_KEYFILES">管理安全性權杖的加密鑰檔案...</entry> + <entry lang="zh-hk" key="IDM_MOUNTALL">自動掛載所有寄存於裝置的密區</entry> + <entry lang="zh-hk" key="IDM_MOUNT_FAVORITE_VOLUMES">掛載我的最愛加密區</entry> + <entry lang="zh-hk" key="IDM_MOUNT_SYSENC_PART_WITHOUT_PBA">以非啟動前驗證方式掛載...(&A)</entry> <entry lang="zh-hk" key="IDM_MOUNT_VOLUME">掛載加密區</entry> - <entry lang="zh-hk" key="IDM_MOUNT_VOLUME_OPTIONS">以選項掛載加密區</entry> + <entry lang="zh-hk" key="IDM_MOUNT_VOLUME_OPTIONS">以自訂選項掛載加密區</entry> <entry lang="zh-hk" key="IDM_NEWS">新聞</entry> - <entry lang="zh-hk" key="IDM_ONLINE_HELP">線上幫助</entry> + <entry lang="zh-hk" key="IDM_ONLINE_HELP">線上說明</entry> <entry lang="zh-hk" key="IDM_ONLINE_TUTORIAL">新手教學</entry> - <entry lang="zh-hk" key="IDM_ORGANIZE_FAVORITES">管理最愛加密區...</entry> - <entry lang="zh-hk" key="IDM_ORGANIZE_SYSTEM_FAVORITES">管理系統最愛加密區...</entry> - <entry lang="zh-hk" key="IDM_PERFORMANCE_SETTINGS">效能/驅動程式設定</entry> + <entry lang="zh-hk" key="IDM_ORGANIZE_FAVORITES">整理我的最愛加密區...</entry> + <entry lang="zh-hk" key="IDM_ORGANIZE_SYSTEM_FAVORITES">整理我的最愛系統加密區...</entry> + <entry lang="zh-hk" key="IDM_PERFORMANCE_SETTINGS">效能或驅動程式設定</entry> <entry lang="zh-hk" key="IDM_PERMANENTLY_DECRYPT_SYS">永久解密系統分割區或磁碟機</entry> - <entry lang="zh-hk" key="IDM_PREFERENCES">喜好設定...</entry> - <entry lang="zh-hk" key="IDM_REFRESH_DRIVE_LETTERS">更新磁碟機代號列表</entry> - <entry lang="zh-hk" key="IDM_REMOVE_ALL_KEYFILES_FROM_VOL">從加密區中移除所有密鑰...</entry> + <entry lang="zh-hk" key="IDM_PREFERENCES">偏好設定...</entry> + <entry lang="zh-hk" key="IDM_REFRESH_DRIVE_LETTERS">重新整理磁碟機代號</entry> + <entry lang="zh-hk" key="IDM_REMOVE_ALL_KEYFILES_FROM_VOL">從加密區中移除所有加密鑰檔案...</entry> <entry lang="zh-hk" key="IDM_RESTORE_VOL_HEADER">還原加密區的標頭數據...</entry> @@ -248,3 +248,3 @@ <entry lang="zh-hk" key="IDM_SELECT_FILE">選擇檔案...</entry> - <entry lang="zh-hk" key="IDM_SYSENC_RESUME">繼續被中止的程序</entry> + <entry lang="zh-hk" key="IDM_SYSENC_RESUME">繼續被中斷的程序</entry> <entry lang="zh-hk" key="IDM_SYSENC_SETTINGS">系統加密...</entry> @@ -252,13 +252,13 @@ <entry lang="zh-hk" key="IDM_SYS_ENC_SETTINGS">設定...</entry> - <entry lang="zh-hk" key="IDM_SYS_FAVORITES_SETTINGS">系統最愛加密區...</entry> + <entry lang="zh-hk" key="IDM_SYS_FAVORITES_SETTINGS">我的最愛系統加密區...</entry> <entry lang="zh-hk" key="IDM_TC_DOWNLOADS">下載</entry> <entry lang="zh-hk" key="IDM_TEST_VECTORS">測試向量...</entry> - <entry lang="zh-hk" key="IDM_TOKEN_PREFERENCES">安全鑰匙...</entry> - <entry lang="zh-hk" key="IDM_TRAVELER">隨身碟安裝...</entry> - <entry lang="zh-hk" key="IDM_UNMOUNTALL">解除掛載全部掛載的加密區</entry> + <entry lang="zh-hk" key="IDM_TOKEN_PREFERENCES">安全性權杖...</entry> + <entry lang="zh-hk" key="IDM_TRAVELER">隨身碟安裝工具...</entry> + <entry lang="zh-hk" key="IDM_UNMOUNTALL">解除掛載所有已掛載的加密區</entry> <entry lang="zh-hk" key="IDM_UNMOUNT_VOLUME">解除掛載加密區</entry> - <entry lang="zh-hk" key="IDM_VERIFY_RESCUE_DISK">救機光碟</entry> + <entry lang="zh-hk" key="IDM_VERIFY_RESCUE_DISK">驗證救機碟</entry> <entry lang="zh-hk" key="IDM_VERIFY_RESCUE_DISK_ISO">驗證救機光碟映像檔</entry> <entry lang="zh-hk" key="IDM_VERSION_HISTORY">版本歷史</entry> - <entry lang="zh-hk" key="IDM_VOLUME_EXPANDER">磁碟區擴展工具</entry> + <entry lang="zh-hk" key="IDM_VOLUME_EXPANDER">加密區擴展工具</entry> <entry lang="zh-hk" key="IDM_VOLUME_PROPERTIES">加密區內容</entry> @@ -266,3 +266,3 @@ <entry lang="zh-hk" key="IDM_WEBSITE">官方網站</entry> - <entry lang="zh-hk" key="IDM_WIPE_CACHE">清除暫存的密碼</entry> + <entry lang="zh-hk" key="IDM_WIPE_CACHE">清除快取的密碼</entry> <entry lang="zh-hk" key="IDOK">確定</entry> @@ -270,14 +270,14 @@ <entry lang="zh-hk" key="IDT_ASSIGN_HOTKEY">快捷鍵</entry> - <entry lang="zh-hk" key="IDT_AUTORUN">自動執行設定檔(autorun.inf)</entry> - <entry lang="zh-hk" key="IDT_AUTO_DISMOUNT">自動解除掛載</entry> - <entry lang="zh-hk" key="IDT_AUTO_DISMOUNT_ON">於這些情況下解除掛載所有加密區:</entry> - <entry lang="zh-hk" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">開機管理程式畫面設定</entry> + <entry lang="zh-hk" key="IDT_AUTORUN">自動執行設定檔 (autorun.inf)</entry> + <entry lang="zh-hk" key="IDT_AUTO_UNMOUNT">自動解除掛載</entry> + <entry lang="zh-hk" key="IDT_AUTO_UNMOUNT_ON">觸發解除掛載所有加密區的事件:</entry> + <entry lang="zh-hk" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">開機管理程式畫面設定選項</entry> <entry lang="zh-hk" key="IDT_CONFIRM_PASSWORD">確認密碼:</entry> <entry lang="zh-hk" key="IDT_CURRENT">目前的密碼</entry> - <entry lang="zh-hk" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">在開機驗證畫面顯示以下自設訊息(最長 24 個字元):</entry> - <entry lang="zh-hk" key="IDT_DEFAULT_MOUNT_OPTIONS">預設掛載設定</entry> - <entry lang="zh-hk" key="IDT_DISMOUNT_ACTION">快捷鍵選項</entry> - <entry lang="zh-hk" key="IDT_DRIVER_OPTIONS">磁碟機設定</entry> - <entry lang="zh-hk" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">開啟延伸磁區控制指令支援</entry> - <entry lang="zh-hk" key="IDT_FAVORITE_LABEL">所選最愛加密區的標籤:</entry> + <entry lang="zh-hk" key="IDT_CUSTOM_BOOT_LOADER_MESSAGE">在開機驗證畫面顯示以下自訂訊息(最長 24 個字元):</entry> + <entry lang="zh-hk" key="IDT_DEFAULT_MOUNT_OPTIONS">預設掛載選項</entry> + <entry lang="zh-hk" key="IDT_UNMOUNT_ACTION">快捷鍵選項</entry> + <entry lang="zh-hk" key="IDT_DRIVER_OPTIONS">驅動程式設定</entry> + <entry lang="zh-hk" key="IDC_ENABLE_EXTENDED_IOCTL_SUPPORT">啟用延伸磁區控制指令的支援</entry> + <entry lang="zh-hk" key="IDT_FAVORITE_LABEL">已選取的我的最愛加密區的標籤:</entry> <entry lang="zh-hk" key="IDT_FILE_SETTINGS">檔案設定</entry> @@ -285,5 +285,5 @@ <entry lang="zh-hk" key="IDT_HW_AES_SUPPORTED_BY_CPU">這部電腦的中央處理器 (CPU) 支援 AES 硬件加速:</entry> - <entry lang="zh-hk" key="IDT_LOGON">Windows 登入時執行的操作</entry> + <entry lang="zh-hk" key="IDT_LOGON">Windows 登入時執行的動作</entry> <entry lang="zh-hk" key="IDT_MINUTES">分鐘</entry> - <entry lang="zh-hk" key="IDT_MOUNT_LETTER">以該磁碟機磁碟機代號掛載:</entry> + <entry lang="zh-hk" key="IDT_MOUNT_LETTER">以磁碟機代號掛載加密區:</entry> <entry lang="zh-hk" key="IDT_MOUNT_SETTINGS">掛載設定</entry> @@ -291,6 +291,6 @@ <entry lang="zh-hk" key="IDT_NEW_PASSWORD">密碼:</entry> - <entry lang="zh-hk" key="IDT_PARALLELIZATION_OPTIONS">以線程為基礎的平行運算</entry> + <entry lang="zh-hk" key="IDT_PARALLELIZATION_OPTIONS">以執行緒為基礎的平行運算</entry> <entry lang="zh-hk" key="IDT_PKCS11_LIB_PATH">PKCS #11 程式庫路徑</entry> - <entry lang="zh-hk" key="IDT_PKCS5_PRF">PKCS-5 PRF:</entry> - <entry lang="zh-hk" key="IDT_NEW_PKCS5_PRF">PKCS-5 PRF:</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="zh-hk" key="IDT_PW_CACHE_OPTIONS">密碼暫存</entry> @@ -301,4 +301,4 @@ <entry lang="zh-hk" key="IDT_TRAVEL_INSERTION">在插入隨身碟時:</entry> - <entry lang="zh-hk" key="IDT_TRAVEL_ROOT">建立隨身碟檔案於(隨身碟根目錄):</entry> - <entry lang="zh-hk" key="IDT_VOLUME">磁碟區</entry> + <entry lang="zh-hk" key="IDT_TRAVEL_ROOT">在這個路徑建立隨身碟檔案 (隨身碟的根目錄):</entry> + <entry lang="zh-hk" key="IDT_VOLUME">加密區</entry> <entry lang="zh-hk" key="IDT_WINDOWS_RELATED_SETTING">Windows</entry> @@ -310,17 +310,17 @@ <entry lang="zh-hk" key="IDC_ENCRYPT">加密(&E)</entry> - <entry lang="zh-hk" key="IDC_EXPORT">匯出(&E)...</entry> + <entry lang="zh-hk" key="IDC_EXPORT">匯出...(&E)</entry> <entry lang="zh-hk" key="IDC_GENERATE_AND_SAVE_KEYFILE">產生並儲存加密鑰檔案...</entry> - <entry lang="zh-hk" key="IDC_GENERATE_KEYFILE">產生隨機加密鑰檔案(&G)...</entry> + <entry lang="zh-hk" key="IDC_GENERATE_KEYFILE">產生隨機加密鑰檔案...(&G)</entry> <entry lang="zh-hk" key="IDC_GET_LANG_PACKS">下載語言包</entry> <entry lang="zh-hk" key="IDC_HW_AES_LABEL_LINK">硬件加速 AES:</entry> - <entry lang="zh-hk" key="IDC_IMPORT_KEYFILE">匯入加密鑰檔案到安全鑰匙(&I)...</entry> - <entry lang="zh-hk" key="IDC_KEYADD">新增文件(&F)...</entry> + <entry lang="zh-hk" key="IDC_IMPORT_KEYFILE">匯入加密鑰檔案到安全性權杖...(&I)</entry> + <entry lang="zh-hk" key="IDC_KEYADD">新增文件...(&F)</entry> <entry lang="zh-hk" key="IDC_KEYFILES_ENABLE_HIDVOL_PROT">使用加密鑰檔案(&A)</entry> - <entry lang="zh-hk" key="IDC_KEYFILES_HIDVOL_PROT">加密鑰檔案(&K)...</entry> + <entry lang="zh-hk" key="IDC_KEYFILES_HIDVOL_PROT">加密鑰檔案...(&K)</entry> <entry lang="zh-hk" key="IDC_KEYREMOVE">移除(&R)</entry> - <entry lang="zh-hk" key="IDC_KEYREMOVEALL">全部移除(&A)</entry> + <entry lang="zh-hk" key="IDC_KEYREMOVEALL">移除全部(&A)</entry> <entry lang="zh-hk" key="IDC_LINK_HIDVOL_PROTECTION_INFO">什麼是隱藏加密區保護?</entry> <entry lang="zh-hk" key="IDC_LINK_KEYFILES_INFO">更多關於加密鑰檔案的資訊</entry> - <entry lang="zh-hk" key="IDC_MOUNT_REMOVABLE">掛載加密區成為可移除媒體(&M)</entry> - <entry lang="zh-hk" key="IDC_MOUNT_SYSENC_PART_WITHOUT_PBA">以非開機前驗證方式掛載系統加密處理的分割區(&U)</entry> + <entry lang="zh-hk" key="IDC_MOUNT_REMOVABLE">掛載加密區成可移除媒體(&M)</entry> + <entry lang="zh-hk" key="IDC_MOUNT_SYSENC_PART_WITHOUT_PBA">以不是啟動前驗證的方式掛載系統加密的分割區(&U)</entry> <entry lang="zh-hk" key="IDC_PARALLELIZATION_LABEL_LINK">平行運算:</entry> @@ -328,26 +328,26 @@ <entry lang="zh-hk" key="IDC_PRINT">列印(&P)</entry> - <entry lang="zh-hk" key="IDC_PROTECT_HIDDEN_VOL">於外層加密區寫入資料時保護隱藏加密區(&P)</entry> + <entry lang="zh-hk" key="IDC_PROTECT_HIDDEN_VOL">在外層加密區寫入資料時保護隱藏加密區(&P)</entry> <entry lang="zh-hk" key="IDC_RESET">重設(&R)</entry> <entry lang="zh-hk" key="IDC_SHOW_PASSWORD_MO">顯示密碼(&A)</entry> - <entry lang="zh-hk" key="IDC_TOKEN_FILES_ADD">新增安全鑰匙(&T)...</entry> - <entry lang="zh-hk" key="IDC_USE_EMBEDDED_HEADER_BAK">如果有的話則使用內嵌在加密區中的備份標頭數據(&V)</entry> + <entry lang="zh-hk" key="IDC_TOKEN_FILES_ADD">新增安全性權杖(&T)...</entry> + <entry lang="zh-hk" key="IDC_USE_EMBEDDED_HEADER_BAK">如果可用的話使用內嵌在加密區中的備份標頭數據(&V)</entry> <entry lang="zh-hk" key="IDC_XTS_MODE_ENABLED">XTS 模式</entry> <entry lang="zh-hk" key="IDD_ABOUT_DLG">關於 VeraCrypt</entry> - <entry lang="zh-hk" key="IDD_BENCHMARK_DLG">VeraCrypt - 加密演算法效能測試</entry> + <entry lang="zh-hk" key="IDD_BENCHMARK_DLG">VeraCrypt - 演算法效能測試</entry> <entry lang="zh-hk" key="IDD_CIPHER_TEST_DLG">VeraCrypt - 測試向量</entry> - <entry lang="zh-hk" key="IDD_COMMANDHELP_DLG">命令行幫助</entry> + <entry lang="zh-hk" key="IDD_COMMANDHELP_DLG">指令行說明</entry> <entry lang="zh-hk" key="IDD_KEYFILES">VeraCrypt - 加密鑰檔案</entry> - <entry lang="zh-hk" key="IDD_KEYFILE_GENERATOR">VeraCrypt - 加密鑰檔案產生器</entry> + <entry lang="zh-hk" key="IDD_KEYFILE_GENERATOR">VeraCrypt - 加密鑰檔案產生工具</entry> <entry lang="zh-hk" key="IDD_LANGUAGE">VeraCrypt - 語言</entry> <entry lang="zh-hk" key="IDD_MOUNT_OPTIONS">VeraCrypt - 掛載選項</entry> - <entry lang="zh-hk" key="IDD_NEW_TOKEN_KEYFILE">新的安全鑰匙加密鑰檔案內容</entry> - <entry lang="zh-hk" key="IDD_RANDOM_POOL_ENRICHMENT">VeraCrypt - 增強隨機數據集區</entry> + <entry lang="zh-hk" key="IDD_NEW_TOKEN_KEYFILE">新的安全性權杖加密鑰檔案內容</entry> + <entry lang="zh-hk" key="IDD_RANDOM_POOL_ENRICHMENT">VeraCrypt - 加強隨機數據集區</entry> <entry lang="zh-hk" key="IDD_RAWDEVICES_DLG">選擇一個分割區或裝置</entry> <entry lang="zh-hk" key="IDD_STATIC_MODELESS_WAIT_DLG">VeraCrypt</entry> - <entry lang="zh-hk" key="IDD_TOKEN_KEYFILES">安全鑰匙加密鑰檔案</entry> - <entry lang="zh-hk" key="IDD_TOKEN_PASSWORD">必需安全鑰匙密碼/PIN</entry> + <entry lang="zh-hk" key="IDD_TOKEN_KEYFILES">安全性權杖加密鑰檔案</entry> + <entry lang="zh-hk" key="IDD_TOKEN_PASSWORD">必須安全性權杖密碼或 PIN</entry> <entry lang="zh-hk" key="IDT_ACTIVE_LANG_PACK">目前的語言包</entry> <entry lang="zh-hk" key="IDT_BOX_BENCHMARK_INFO">速度會受 CPU 負載及儲存裝置的性能影響。\n\n這些測試在記憶體中進行。</entry> - <entry lang="zh-hk" key="IDT_BUFFER_SIZE">快取大小:</entry> - <entry lang="zh-hk" key="IDT_CIPHER">密碼演算法:</entry> + <entry lang="zh-hk" key="IDT_BUFFER_SIZE">緩衝區大小:</entry> + <entry lang="zh-hk" key="IDT_CIPHER">加密法:</entry> <entry lang="zh-hk" key="IDT_HIDDEN_PROT_PASSWD">隱藏加密區的密碼(&A):\n(如為留空則會使用暫存)</entry> @@ -355,9 +355,9 @@ <entry lang="zh-hk" key="IDT_KEY">加密鑰長度:</entry> - <entry lang="zh-hk" key="IDT_KEYFILE_GENERATOR_NOTE">重要:在這個視窗內盡量隨意地移動滑鼠,移動的時間越長越好。這將會顯著增強加密鑰檔案的加密強度。</entry> - <entry lang="zh-hk" key="IDT_KEYFILE_WARNING">警告:如果您失去加密鑰檔案或者加密鑰檔案的開頭 1024 KiB 被修改,使用該加密鑰的加密區將會無法掛載!</entry> + <entry lang="zh-hk" key="IDT_KEYFILE_GENERATOR_NOTE">重要:在這個視窗內盡量隨意地移動滑鼠。移動的時間越長越好。這樣做的話可以顯著增強加密鑰檔案的加密強度。</entry> + <entry lang="zh-hk" key="IDT_KEYFILE_WARNING">警告:如果你失去加密鑰檔案,或者加密鑰檔案的開頭 1024 KiB 的任何部份被修改,使用該加密鑰檔案的加密區將會無法掛載!</entry> <entry lang="zh-hk" key="IDT_KEY_UNIT">位元</entry> - <entry lang="zh-hk" key="IDT_NUMBER_KEYFILES">加密鑰檔案數量</entry> + <entry lang="zh-hk" key="IDT_NUMBER_KEYFILES">加密鑰檔案數量:</entry> <entry lang="zh-hk" key="IDT_KEYFILES_SIZE">加密鑰檔案大小:</entry> <entry lang="zh-hk" key="IDT_KEYFILES_BASE_NAME">加密鑰檔案名稱前綴:</entry> - <entry lang="zh-hk" key="IDT_LANGPACK_AUTHORS">翻譯人員:</entry> + <entry lang="zh-hk" key="IDT_LANGPACK_AUTHORS">翻譯:</entry> <entry lang="zh-hk" key="IDT_PLAINTEXT">純文字長度:</entry> @@ -366,5 +366,5 @@ <entry lang="zh-hk" key="IDT_PRF">混合 PRF:</entry> - <entry lang="zh-hk" key="IDT_RANDOM_POOL_ENRICHMENT_NOTE">重要:在這個視窗內盡量隨意地移動滑鼠,移動的時間越長效果越好。這將會顯著增強安全性。當操作完成時按「繼續」 按鈕。</entry> - <entry lang="zh-hk" key="IDT_SECONDARY_KEY">次要加密鑰(十六進位)</entry> - <entry lang="zh-hk" key="IDT_SECURITY_TOKEN">安全鑰匙:</entry> + <entry lang="zh-hk" key="IDT_RANDOM_POOL_ENRICHMENT_NOTE">重要:在這個視窗內盡量隨意地移動滑鼠。移動的時間越長效果越好。這將會顯著增強安全性。當操作完成後按 [繼續]。</entry> + <entry lang="zh-hk" key="IDT_SECONDARY_KEY">次要加密鑰 (十六進位)</entry> + <entry lang="zh-hk" key="IDT_SECURITY_TOKEN">安全性權杖:</entry> <entry lang="zh-hk" key="IDT_SORT_METHOD">排序方式:</entry> @@ -374,5 +374,5 @@ <entry lang="zh-hk" key="IDT_TEST_CIPHERTEXT">加密字串(十六進位)</entry> - <entry lang="zh-hk" key="IDT_TEST_DATA_UNIT_NUMBER">資料單元數值(64-位元十六進位,資料單元大小為 512 位元組)</entry> - <entry lang="zh-hk" key="IDT_TEST_KEY">加密鑰(十六進位)</entry> - <entry lang="zh-hk" key="IDT_TEST_PLAINTEXT">純文字(十六進位)</entry> + <entry lang="zh-hk" key="IDT_TEST_DATA_UNIT_NUMBER">資料單元數值 (64 位元十六進制數值,資料單元大小為 512 位元組)</entry> + <entry lang="zh-hk" key="IDT_TEST_KEY">加密鑰 (十六進位)</entry> + <entry lang="zh-hk" key="IDT_TEST_PLAINTEXT">純文字 (十六進位)</entry> <entry lang="zh-hk" key="IDT_TOKEN_KEYFILE_NAME">加密鑰檔案名稱:</entry> @@ -380,24 +380,24 @@ <entry lang="zh-hk" key="MENU_SYSTEM_ENCRYPTION">系統(&Y)</entry> - <entry lang="zh-hk" key="MENU_VOLUMES">磁碟區(&V)</entry> - <entry lang="zh-hk" key="MENU_FAVORITES">最愛(&I)</entry> + <entry lang="zh-hk" key="MENU_VOLUMES">加密區(&V)</entry> + <entry lang="zh-hk" key="MENU_FAVORITES">我的最愛(&I)</entry> <entry lang="zh-hk" key="MENU_TOOLS">工具(&O)</entry> <entry lang="zh-hk" key="MENU_SETTINGS">設定(&G)</entry> - <entry lang="zh-hk" key="MENU_HELP">幫助(&H)</entry> + <entry lang="zh-hk" key="MENU_HELP">說明(&H)</entry> <entry lang="zh-hk" key="MENU_WEBSITE"> 主頁(&P) </entry> - <entry lang="zh-hk" key="ABOUTBOX">關於(&A)...</entry> + <entry lang="zh-hk" key="ABOUTBOX">關於...(&A)</entry> <entry lang="zh-hk" key="ACCESSMODEFAIL">無法修改舊版本加密區的唯讀屬性。請檢查該檔案的存取權。</entry> - <entry lang="zh-hk" key="ACCESS_DENIED">錯誤:存取被拒絕。\n\n您嘗試存取的分割區長度可能是 0 個磁區或者是開機裝置。</entry> + <entry lang="zh-hk" key="ACCESS_DENIED">錯誤:存取被拒絕。\n\n你嘗試存取的分割區長度可能是 0 個磁區,或者是開機裝置。</entry> <entry lang="zh-hk" key="ADMINISTRATOR">系統管理員</entry> - <entry lang="zh-hk" key="ADMIN_PRIVILEGES_DRIVER">您必需以擁有管理員權限的帳號登入,才可以載入 VeraCrypt 驅動程式。</entry> - <entry lang="zh-hk" key="ADMIN_PRIVILEGES_WARN_DEVICES">請注意,您必需以擁有管理員權限的帳號登入,才可以加密或格式化某一個分割區或裝置。\n\n檔案類型加密區則不受這個限制。</entry> - <entry lang="zh-hk" key="ADMIN_PRIVILEGES_WARN_MANAGE_VOLUME">無法啟用快速建立檔案:必須管理員權限。\n請以管理員重新啟動程式以啟用此功能。\n\n您是否還需要在不使用快速建立檔案的情況下繼續嗎?</entry> - <entry lang="zh-hk" key="ADMIN_PRIVILEGES_WARN_HIDVOL">您必需以擁有管理員權限的帳號登入,才可以建立隱藏的加密區。\n\n還需要繼續嗎?</entry> - <entry lang="zh-hk" key="ADMIN_PRIVILEGES_WARN_NTFS">請注意:您必需以擁有管理員權限的帳號登入,才可以將加密區格式化成 NTFS 檔案系統。\n\n若無管理員權限的話,您可以格式化加密區為 FAT 檔案系統。</entry> - <entry lang="zh-hk" key="AES_HELP">FIPS-認可的加密演算法(Rijndael,發表於 1998 年)可能被美國聯邦部門和機構用來對特定資訊進行最高級別保護。256 位密鑰、128-位塊、14 次離散迴圈(AES-256,發表於 2001 年)。操作模式為 XTS。</entry> + <entry lang="zh-hk" key="ADMIN_PRIVILEGES_DRIVER">你必需以擁有管理員權限的帳號登入,才可以載入 VeraCrypt 驅動程式。</entry> + <entry lang="zh-hk" key="ADMIN_PRIVILEGES_WARN_DEVICES">請注意你必需以擁有管理員權限的帳號登入,才可以加密或格式化某一個分割區或裝置。\n\n而檔案類型的加密區則不受這個限制。</entry> + <entry lang="zh-hk" key="ADMIN_PRIVILEGES_WARN_MANAGE_VOLUME">無法啟用快速建立檔案:必須管理員權限。\n請以管理員重新啟動程式以啟用這個功能。\n\n你是否還需要在不使用快速建立檔案的情況下繼續嗎?</entry> + <entry lang="zh-hk" key="ADMIN_PRIVILEGES_WARN_HIDVOL">你必需以擁有管理員權限的帳號登入,才可以建立隱藏的加密區。\n\n要繼續嗎?</entry> + <entry lang="zh-hk" key="ADMIN_PRIVILEGES_WARN_NTFS">請注意你必需以擁有管理員權限的帳號登入,才可以將加密區格式化成 NTFS 檔案系統。\n\n沒有系統管理員權限的話,你可以將加密區格式化成 FAT 檔案系統。</entry> + <entry lang="zh-hk" key="AES_HELP">FIPS 認可的加密演算法 (Rijndael,發表於 1998 年) 份有可能被美國聯邦部門和機構用來對特定資訊進行最高級別保護。256 位元加密鑰、128 位元區塊、14 次離散迴圈(AES-256,發表於 2001 年)。操作模式為 XTS。</entry> <entry lang="zh-hk" key="ALREADY_MOUNTED">加密區已經掛載。</entry> - <entry lang="zh-hk" key="ERR_SELF_TESTS_FAILED">注意:最少一個加密或雜湊演算法在內置的自動自我檢測時失敗!\n\n這個 VeraCrypt 安裝可能已經損壞。</entry> - <entry lang="zh-hk" key="ERR_NOT_ENOUGH_RANDOM_DATA">注意:隨機數值產生器集區中的資料不足,無法提供要求數量的隨機數據。\n\n您不應繼續進行。請從幫助功能表選擇「報告錯誤」來報告此軟件錯誤。</entry> - <entry lang="zh-hk" key="ERR_HARDWARE_ERROR">這部磁碟機已經損壞(上面有物理缺陷)或者線纜損壞,或者是記憶體出現故障。\n\n請注意這是您的硬體的問題,與 VeraCrypt 無關。因此,請不要將此報告為 VeraCrypt 的軟件錯誤或問題,並且也不要在 VeraCrypt 論壇對這個問題尋求幫助。請聯絡您的電腦供應商獲取技術支援,多謝!\n\n注意:如果這個提示反復出現在同一位置,那就很可能是磁碟上有壞磁區導致的,應透過使用第三方軟件來修復(請注意,在很多情況下,由於「chkdsk /r」命令只限於檔案系統層面運作,因此它不能修復此問題;在某些情況下,「chkdsk」工具甚至無法檢測到這類錯誤。</entry> - <entry lang="zh-hk" key="DEVICE_NOT_READY_ERROR">如果您正在存取磁碟機上的可移除媒體,請確認可移除媒體已經插入磁碟機。磁碟機或媒體可能已經損壞(上面可能有物理缺陷),或者線纜已經損壞或斷開連接。</entry> - <entry lang="zh-hk" key="WHOLE_DRIVE_ENCRYPTION_PREVENTED_BY_DRIVERS">您的系統似乎使用了內含不支援建立全碟加密缺陷的第三方的晶片驅動程式。\n\n請在繼續之前嘗試更新或者解除掛載任何第三方晶片驅動程式(非微軟認證的驅動)。 如果仍然沒有作用,請嘗試只加密系統分割區。</entry> + <entry lang="zh-hk" key="ERR_SELF_TESTS_FAILED">警告:最少一個加密或雜湊演算法在內置的自動自我檢測時失敗!\n\n這個 VeraCrypt 的安裝可能已經損壞。</entry> + <entry lang="zh-hk" key="ERR_NOT_ENOUGH_RANDOM_DATA">警告:隨機數值產生器集區中的資料不足以提供所需數量的隨機數據。\n\n你不應繼續進行。請從說明功能表選擇 [報告錯誤] 來報告此軟件錯誤。</entry> + <entry lang="zh-hk" key="ERR_HARDWARE_ERROR">這部磁碟機已經損壞 (上面有物理缺陷) 或者是線纜損壞,又或者是記憶體出現故障。\n\n請注意這是你的硬體出現問題,與 VeraCrypt 無關。因此,請不要將此報告為 VeraCrypt 的軟件錯誤或問題,並且也不要在 VeraCrypt 論壇對這個問題尋求幫助。請聯絡你的電腦供應商獲取技術支援,多謝!\n\n請注意:如果這個提示反復出現在同一位置,很大可能是磁碟上有壞磁區而導致的,應該透過使用第三方軟件來進行修復 (請注意,在很多情況下,由於 'chkdsk /r' 命令只局限於檔案系統層面運作,因此它不能修復這個問題;在某些情況下,'chkdsk' 工具甚至無法檢測到這類錯誤)。</entry> + <entry lang="zh-hk" key="DEVICE_NOT_READY_ERROR">如果你正在存取磁碟機上的可移除媒體,請確認可移除媒體已經插入磁碟機。磁碟機或媒體亦有可能已經損壞(上面可能有物理缺陷),或者線纜已經損壞或斷開連接。</entry> + <entry lang="zh-hk" key="WHOLE_DRIVE_ENCRYPTION_PREVENTED_BY_DRIVERS">你的系統似乎正使用第三方的晶片組驅動程式有不支援建立全碟加密的軟件錯誤。\n\n請在繼續之前嘗試更新或者解除安裝任何第三方的晶片驅動程式(並非微軟認證的驅動程式)。 如果仍然沒有幫助,請嘗試只加密系統的分割區。</entry> <entry lang="zh-hk" key="BAD_DRIVE_LETTER">無效的磁碟機代號。</entry> @@ -405,13 +405,13 @@ <entry lang="zh-hk" key="CANCEL">取消</entry> - <entry lang="zh-hk" key="CANNOT_CALC_SPACE">無法存取裝置。請確保已選的裝置是存在並且未被系統佔用。</entry> - <entry lang="zh-hk" key="CAPSLOCK_ON">警告:Caps Lock(大小寫鎖定)已啟用。這可能導致您錯誤地輸入密碼。</entry> + <entry lang="zh-hk" key="CANNOT_CALC_SPACE">無法存取裝置。請確保已選取的裝置是存在並且未被系統佔用。</entry> + <entry lang="zh-hk" key="CAPSLOCK_ON">警告:Caps Lock (大小寫鎖定) 已啟用。這可能會令你錯誤地輸入密碼。</entry> <entry lang="zh-hk" key="VOLUME_TYPE_TITLE">磁碟區類型</entry> - <entry lang="zh-hk" key="HIDDEN_VOLUME_TYPE_HELP">在某些情況下,您可能有機會被強迫交出加密區的密碼。很多情況下,您可能無法拒絕這種要求(例如敲詐勒索)。使用一個隱藏的加密區可以解決這類問題,而毋須交出隱藏加密區密碼。</entry> - <entry lang="zh-hk" key="NORMAL_VOLUME_TYPE_HELP">選擇這個選項來建立一般 VeraCrypt 加密區。</entry> - <entry lang="zh-hk" key="HIDDEN_OS_PRECLUDES_SINGLE_KEY_WDE">請注意如果您希望將作業系統安裝在隱藏加密分割區入面,會令整個系統磁碟機不能使用單一的加密鑰進行加密。</entry> - <entry lang="zh-hk" key="CIPHER_HIDVOL_HOST_TITLE">外層加密區加密選項</entry> + <entry lang="zh-hk" key="HIDDEN_VOLUME_TYPE_HELP">在某些情況下,你可能有機會被強迫交出加密區的密碼。很多情況下,你可能無法拒絕這種要求 (例如敲詐勒索) 。使用一個隱藏的加密區可以解決這類問題,而毋須交出隱藏加密區密碼。</entry> + <entry lang="zh-hk" key="NORMAL_VOLUME_TYPE_HELP">選取這個選項來建立一般的 VeraCrypt 加密區。</entry> + <entry lang="zh-hk" key="HIDDEN_OS_PRECLUDES_SINGLE_KEY_WDE">請注意如果你希望將作業系統安裝在隱藏加密分割區入面,那就不能使用同一的加密鑰將整個系統磁碟機進行加密。</entry> + <entry lang="zh-hk" key="CIPHER_HIDVOL_HOST_TITLE">外層加密區的加密選項</entry> <entry lang="zh-hk" key="CIPHER_HIDVOL_TITLE">隱藏加密區的加密選項</entry> <entry lang="zh-hk" key="CIPHER_TITLE">加密選項</entry> - <entry lang="zh-hk" key="CLEAN_WINMRU_FAILED">警告:無法清除上次所選擇的加密區或加密鑰檔案的路徑(由檔案選擇器記憶)!</entry> - <entry lang="zh-hk" key="COMPRESSION_NOT_SUPPORTED">錯誤:這個加密區容器檔案在檔案系統層面被壓縮過。VeraCrypt 不支援壓縮過的加密區容器檔案(原因是壓縮過的加密資料會降低效能和存在資料冗餘)。\n\n請依照以下步驟取消壓縮: 1)在 Windows 檔案瀏覽器中右按加密區容器檔案(不是在 VeraCrypt 視窗中)。 2)選擇 “內容”。 3)在 “內容” 對話方塊,選擇 “進階”。 4)在 “進階內容” 對話方塊,取消剔選 “壓縮內容以節省磁碟空間” 並按 「確定」。 5)返回到 “內容” 對話方塊,按 「確定」。</entry> + <entry lang="zh-hk" key="CLEAN_WINMRU_FAILED">警告:無法清除上次選取的加密區或加密鑰檔案的路徑 (由檔案選擇器記憶)!</entry> + <entry lang="zh-hk" key="COMPRESSION_NOT_SUPPORTED">錯誤:這個加密區容器檔案在檔案系統層面被壓縮過。VeraCrypt 不支援壓縮過的加密區容器檔案(原因是壓縮過的加密資料會降低效能和存在資料冗餘)。\n\n請依照以下步驟停用壓縮:\n1) 在 Windows 檔案總管中右按加密區容器檔案 (並非在 VeraCrypt 的視窗中)。 \n2) 選擇 [內容]。\n3) 在 [內容] 的對話方塊,選取 [進階]。\n4) 在 [進階內容] 的對話方塊,取消剔選 [壓縮內容以節省磁碟空間] 並按 [確定]。\n5) 返回到 [內容] 的對話方塊,按 [確定]。</entry> <entry lang="zh-hk" key="CREATE_FAILED">建立加密區 %s 失敗</entry> @@ -424,19 +424,19 @@ <entry lang="zh-hk" key="DEVICE_IN_USE_FORMAT">警告:這個磁碟機/分割區正在被系統或應用程式使用中。格式化該磁碟機/分割區可能會導致資料損壞或系統不穩定。\n\n要繼續嗎?</entry> - <entry lang="zh-hk" key="DEVICE_IN_USE_INPLACE_ENC">警告:這個分割區正在被作業系統或應用程式使用中。您應先關閉任何可能正在使用此分割區的程式(包括防毒軟件)。\n\n要繼續嗎?</entry> - <entry lang="zh-hk" 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-hk" key="INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS">錯誤:此檔案系統不能被鎖定和/或解除掛載。它可能正在被作業系統或應用程式使用中(例如防毒軟件)。加密這個分割區可能會導致資料損壞或者系統不穩定。\n\n請關閉任何可能正在使用這個分割區的程式(包括防毒軟件)然後再試一次。如果仍然無效,請依照以下步驟。</entry> - <entry lang="zh-hk" key="DEVICE_IN_USE_INFO">警告:一些已掛載的磁碟機/分割區正在使用中!\n\n若忽略這些則可能導致非期望的結果,包括系統不穩定。\n\n我們強烈建議您關閉所有可能正在使用此磁碟機/分割區的應用程式。</entry> + <entry lang="zh-hk" key="DEVICE_IN_USE_INPLACE_ENC">警告:這個分割區正在被作業系統或應用程式使用中。你應先關閉任何可能正在使用此分割區的程式(包括防毒軟件)。\n\n要繼續嗎?</entry> + <entry lang="zh-hk" 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-hk" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">錯誤:此檔案系統不能被鎖定和/或解除掛載。它可能正在被作業系統或應用程式使用中(例如防毒軟件)。加密這個分割區可能會導致資料損壞或者系統不穩定。\n\n請關閉任何可能正在使用這個分割區的程式(包括防毒軟件)然後再試一次。如果仍然無效,請依照以下步驟。</entry> + <entry lang="zh-hk" key="DEVICE_IN_USE_INFO">警告:一些已掛載的磁碟機/分割區正在使用中!\n\n若忽略這些則可能導致非期望的結果,包括系統不穩定。\n\n我們強烈建議你關閉所有可能正在使用此磁碟機/分割區的應用程式。</entry> <entry lang="zh-hk" key="DEVICE_PARTITIONS_ERR">已選取的裝置包含分割區。\n\n格式化該裝置可能會導致系統不穩定或資料丟失。請選取該裝置上某個分割區,或者移除該裝置上所有分割區,讓 VeraCrypt 能夠安全地將其格式化。</entry> - <entry lang="zh-hk" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">已選取的非系統裝置包含多個分割區。\n\n裝置類加密區也可以在不包含任何分割區的裝置中建立(包括硬碟以及固態硬碟裝置)。一個包含多個分割區的裝置,只有在此磁碟機為 Windows 安裝和啟動分割區時,才可以直接地完整加密(使用單一主要加密鑰)。\n\n如果您想使用單一主密鑰加密這個非系統裝置,您需要首先移除所有分割區以便 VeraCrypt 對其安全地格式化(格式化包含多個分割區的裝置可能會導致系統不穩定和/或損壞資料。另外,您也可以個別地加密磁碟機上的每個分割區(每個分割區將使用不同的主要加密鑰)。\n\n注意:如果您想從 GPT 磁片中移除所有分割區,您可能需要把它轉換為 MBR 磁片(使用諸如電腦管理工具)以便移除隱藏分割區。</entry> - <entry lang="zh-hk" key="WHOLE_NONSYS_DEVICE_ENC_CONFIRM">警告:如果您加密了整個裝置(而不是只加密裝置上的一個分割區),作業系統將會認為這個裝置是新的、空的,和未格式化的(因為它沒有分割區表),因此可能隨後會初始化這個裝置(或者詢問您是否初始化),這可能會損壞加密區。另外,也不能一如既往的將此加密區掛載為最愛磁碟區(例如,當磁碟機數目變化時),也不能為其賦予最愛磁碟區標籤。\n\n要避免此類事情發生,您可以考慮在此裝置上建立一個分割區並加密此分割區。\n\n您確認要加密整個裝置嗎?</entry> - <entry lang="zh-hk" key="AFTER_FORMAT_DRIVE_LETTER_WARN">重要:請記住此加密區不能使用當前分配給它的磁碟機磁碟機代號 %c: 來掛載/存取,這個磁碟機代號已經分配給了這個分割區!\n\n要掛載此加密區,按 VeraCrypt 主視窗的「自動掛載裝置」(也可以這樣,在 VeraCrypt 主視窗,按「選擇裝置」,之後選擇該分割區或磁碟機,然後點「掛載」按鈕)。這個加密區便會以不同的磁碟機代號掛載(這個磁碟機代號可以在 VeraCrypt 主視窗的磁碟機代號列表中選擇)。\n\n原始的驅動磁碟機代號 %c: 僅應該在您需要移除對該分割區或磁碟機的加密時使用(例如:如果您不再需要加密)。在這種情況下,右鍵單擊「我的電腦」(或者是「檔案瀏覽器」)中的磁碟機磁碟機代號 %c: 並選擇「格式化」。否則該磁碟機磁碟機代號 %c: 應該一直都不要使用(除非您移除它並把它指定給另外的分割區或磁碟機)。</entry> - <entry lang="zh-hk" key="OS_NOT_SUPPORTED_FOR_NONSYS_INPLACE_ENC">您的作業系統不支援就地加密非系統磁碟區(僅支援 Windows Vista 或以後版本)。\n\n原因是這個作業系統不支援壓縮檔案系統(需要壓縮檔案系統以加密區標頭數據以及備份標頭數據獲取空間)。</entry> + <entry lang="zh-hk" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">已選取的非系統裝置包含多個分割區。\n\n裝置類加密區也可以在不包含任何分割區的裝置中建立(包括硬碟以及固態硬碟裝置)。一個包含多個分割區的裝置,只有在此磁碟機為 Windows 安裝和啟動分割區時,才可以直接地完整加密(使用單一主要加密鑰)。\n\n如果你想使用單一主密鑰加密這個非系統裝置,你需要首先移除所有分割區以便 VeraCrypt 對其安全地格式化(格式化包含多個分割區的裝置可能會導致系統不穩定和/或損壞資料。另外,你也可以個別地加密磁碟機上的每個分割區(每個分割區將使用不同的主要加密鑰)。\n\n請注意:如果你想從 GPT 磁片中移除所有分割區,你可能需要把它轉換為 MBR 磁片(使用諸如電腦管理工具)以便移除隱藏分割區。</entry> + <entry lang="zh-hk" key="WHOLE_NONSYS_DEVICE_ENC_CONFIRM">警告:如果你完整地加密整個裝置(而不是只加密裝置上的其中一個分割區),作業系統將會誤認這個裝置是新的、空白及尚未格式化(因沒有任何分割區表),並有可能隨即初始化這個裝置(或詢問你是否要進行初始化),這個操作可能會損壞加密區。另外,用這個方式來建立的加密區,會無法穩定可靠地用我的最愛加密區的方式來進行掛載(例如當磁碟機編號有變化時),也不能為其自訂我的最愛加密區的標籤。\n\n要避免發生這類問題,反而你應該考慮在此裝置上建立一個分割區然後進行加密。\n\n你確認要用這個方式加密整個裝置嗎?</entry> + <entry lang="zh-hk" key="AFTER_FORMAT_DRIVE_LETTER_WARN">重要:請記住此加密區不能使用當前分配給它的磁碟機磁碟機代號 %c: 來掛載/存取,這個磁碟機代號已經分配給了這個分割區!\n\n要掛載此加密區,按 VeraCrypt 主視窗的 [自動掛載裝置] (也可以這樣,在 VeraCrypt 主視窗,按 [選擇裝置],之後選擇該分割區或磁碟機,然後點 [掛載] 按鈕)。這個加密區便會以不同的磁碟機代號掛載(這個磁碟機代號可以在 VeraCrypt 主視窗的磁碟機代號列表中選擇)。\n\n原始的驅動磁碟機代號 %c: 僅應該在你需要移除對該分割區或磁碟機的加密時使用(例如:如果你不再需要加密)。在這種情況下,右鍵單擊 [我的電腦](或者是 [檔案總管])中的磁碟機磁碟機代號 %c: 並選擇 [格式化]。否則該磁碟機磁碟機代號 %c: 應該一直都不要使用(除非你移除它並把它指定給另外的分割區或磁碟機)。</entry> + <entry lang="zh-hk" key="OS_NOT_SUPPORTED_FOR_NONSYS_INPLACE_ENC">你的作業系統不支援就地加密非系統磁碟區(僅支援 Windows Vista 或以後版本)。\n\n原因是這個作業系統不支援壓縮檔案系統(需要壓縮檔案系統以加密區標頭數據以及備份標頭數據獲取空間)。</entry> <entry lang="zh-hk" key="ONLY_NTFS_SUPPORTED_FOR_NONSYS_INPLACE_ENC">這個分割區看來並不包含 NTFS 檔案系統。僅在 NTFS 檔案系統下才支援就地加密。\n\n說明:原因是當前作業系統不支援檔案系統壓縮(需要壓縮檔案系統以騰出空間給加密區的標頭數據以及備份標頭數據)。</entry> - <entry lang="zh-hk" key="ONLY_MOUNTED_VOL_SUPPORTED_FOR_NONSYS_INPLACE_ENC">選擇的分割區似乎不包含 NTFS 檔案系統。僅在 NTFS 檔案系統下才支援就地加密。\n\n如果您想在此分割區內建立 VeraCrypt 加密區,請選擇「建立加密區並格式化」(而不是選擇「就地加密分割區」).</entry> + <entry lang="zh-hk" key="ONLY_MOUNTED_VOL_SUPPORTED_FOR_NONSYS_INPLACE_ENC">選擇的分割區似乎不包含 NTFS 檔案系統。僅在 NTFS 檔案系統下才支援就地加密。\n\n如果你想在此分割區內建立 VeraCrypt 加密區,請選擇 [建立加密區並格式化](而不是選擇[就地加密分割區]).</entry> <entry lang="zh-hk" key="PARTITION_TOO_SMALL_FOR_NONSYS_INPLACE_ENC">錯誤:分割區太細,VeraCrypt 不能將其直接加密。</entry> - <entry lang="zh-hk" key="INPLACE_ENC_ALTERNATIVE_STEPS">要加密此分割區的資料,請依照以下步驟:\n\n1)在一個空的 分割區/裝置 上建立一個 VeraCrypt 加密區之後掛載此加密區。\n\n2)複製待加密分割區中的所有資料到這個已經掛載的 VeraCrypt 加密區(該加密區已經在步驟 1) 中建立)。這種方式下,您就建立了一個被 VeraCrypt 加密了的資料備份。\n\n3)在要加密的分割區上建立一個 VeraCrypt 加密區並確認您選擇了(在 VeraCrypt 精靈中)選項「建立加密區並格式化」(而不是選擇選項「就地加密分割區」)。注意,所有儲存於該分割區的資料都會被抹除。加密區建立之後,掛載這個加密區。\n\n4)複製備份加密區(在步驟 1) 中建立的)中的所有檔到這個新建立和掛載的加密區中(在步驟 3) 中建立和掛載的)。\n\n完成以上步驟之後,資料將會被加密,並且,也會額外的備份了資料的加密副本。</entry> - <entry lang="zh-hk" key="RAW_DEV_NOT_SUPPORTED_FOR_INPLACE_ENC">VeraCrypt 只能就地加密分割區、動態磁碟區,或者整個系統啟動器。\n\n如果您想在選擇的非系統裝置中建立加密區,請選擇選項「建立加密區並格式化」(而不是選擇選項「就地加密分割區」)。</entry> - <entry lang="zh-hk" key="INPLACE_ENC_INVALID_PATH">錯誤:VeraCrypt 只能就地加密分割區、動態磁碟區,或者整個系統啟動器。請確認指定的路徑有效。</entry> - <entry lang="zh-hk" key="CANNOT_RESIZE_FILESYS">錯誤:的無法壓縮檔案系統(檔案系統需要壓縮來為加密區標頭數據以及備份標頭數據獲取空間)。\n\n可能原因及解決:\n\n- 該磁碟區上無足夠的剩餘空間。請確認沒有其他程式正在寫入此檔案系統。\n\n- 損壞的檔案系統。嘗試檢查和修復錯誤(在「我的電腦」裏右鍵單擊相應的磁碟機磁碟機代號,之後選擇 屬性 > 工具 > 「開始檢查」,確認已經選擇了選項「自動修復檔案系統錯誤」,之後單擊「開始」按鈕)。\n\n如果以上方法都不起作用,請依照以下步驟。</entry> - <entry lang="zh-hk" key="NOT_ENOUGH_FREE_FILESYS_SPACE_FOR_SHRINK">錯誤:剩餘空間不足,因此檔案系統不能被壓縮(檔案系統需要壓縮來為加密區標頭數據以及備份標頭數據獲取空間)。\n\n請刪除任何多餘的檔案並清理資源回收筒以便釋放 256KiB 的空間,之後再嘗試。注意由於 Windows 的問題,Windows 檔案瀏覽器報告的自由空間數量在作業系統重新啟動前可能是不正確的。如果重新啟動系統後並無幫助,檔案系統可能已經損壞了。嘗試檢查和修復錯誤(在「我的電腦」裏右鍵單擊相應的磁碟機磁碟機代號,之後選擇 屬性 > 工具 >「開始檢查」,確認已經選擇了選項「自動修復檔案系統錯誤」,之後單擊 「開始」 按鈕)。\n\n如果以上方法都不起作用,請依照以下步驟。</entry> + <entry lang="zh-hk" key="INPLACE_ENC_ALTERNATIVE_STEPS">要加密此分割區的資料,請依照以下步驟:\n\n1)在一個空的 分割區/裝置 上建立一個 VeraCrypt 加密區之後掛載此加密區。\n\n2)複製待加密分割區中的所有資料到這個已經掛載的 VeraCrypt 加密區(該加密區已經在步驟 1) 中建立)。這種方式下,你就建立了一個被 VeraCrypt 加密了的資料備份。\n\n3)在要加密的分割區上建立一個 VeraCrypt 加密區並確認你選擇了(在 VeraCrypt 精靈中)選項 [建立加密區並格式化](而不是選擇選項[就地加密分割區])。注意,所有儲存於該分割區的資料都會被抹除。加密區建立之後,掛載這個加密區。\n\n4)複製備份加密區(在步驟 1) 中建立的)中的所有檔到這個新建立和掛載的加密區中(在步驟 3) 中建立和掛載的)。\n\n完成以上步驟之後,資料將會被加密,並且,也會額外的備份了資料的加密副本。</entry> + <entry lang="zh-hk" key="RAW_DEV_NOT_SUPPORTED_FOR_INPLACE_ENC">VeraCrypt 只能就地加密分割區、動態磁碟區,或者整個系統啟動器。\n\n如果你想在選擇的非系統裝置中建立加密區,請選擇選項 [建立加密區並格式化](而不是選擇選項[就地加密分割區])。</entry> + <entry lang="zh-hk" key="INPLACE_ENC_INVALID_PATH">錯誤:VeraCrypt 只可以就地加密分割區、動態磁碟區,或者整個系統磁碟機。請確認指定的路徑是有效。</entry> + <entry lang="zh-hk" key="CANNOT_RESIZE_FILESYS">錯誤:無法縮小檔案系統 (檔案系統需要縮小以獲取用於加密區標頭數據以及備份標頭數據的空間)。\n\n可能的原因和解決方案:\n\n- 這個磁碟區沒有足夠的未使用空間。請確認沒有其他應用程式正在寫入到檔案系統。\n\n- 損壞的檔案系統。可嘗試檢查和修復錯誤(在 [我的電腦] 裏右按相應的磁碟機代號,然後選擇 [內容] > [工具] > [檢查],確認已經剔選了 [自動修復檔案系統錯誤] 選項,然後按 [開始] )。\n\n如果以上方法都沒有幫助,請依照以下的步驟。</entry> + <entry lang="zh-hk" key="NOT_ENOUGH_FREE_FILESYS_SPACE_FOR_SHRINK">錯誤:磁碟區沒有足夠的的可用空間而無法縮小 (檔案系統需要縮小以獲取用於加密區標頭數據以及備份標頭數據的空間)。\n\n請刪除任何多餘的檔案並清理資源回收筒以釋放最少 256KiB 的空間然後再試一次。請注意由於一個 WIndows 的問題,在作業系統重新啟動前檔案總管有可能會顯示不正確的可用空間。如果重新啟動系統後並沒有幫助,檔案系統有可能已經損壞。可嘗試檢查和修復錯誤(在 [我的電腦] 裏右按相應的磁碟機代號,然後選擇 [內容] > [工具] > [檢查],確認已經剔選了 [自動修復檔案系統錯誤] 選項,然後按 [開始] )。\n\n如果以上方法都沒有幫助,請依照以下的步驟。</entry> <entry lang="zh-hk" key="DISK_FREE_BYTES">磁碟機 %s 的可用空間大小為 %.2f 位元組。</entry> @@ -448,21 +448,21 @@ <entry lang="zh-hk" key="DRIVELETTERS">無法取得可用的磁碟機代號。</entry> - <entry lang="zh-hk" key="DRIVER_NOT_FOUND">錯誤:無法找到 VeraCrypt 驅動程式!\n\n請複製「veracrypt.sys」和「veracrypt-x64.sys」檔案到 VeraCrypt 的主程式「VeraCrypt.exe」所在的資料夾。</entry> - <entry lang="zh-hk" key="DRIVER_VERSION">錯誤:正在運行一個不兼容版本的 VeraCrypt 驅動程式。\n\n如你正嘗試在便攜模式下執行 VeraCrypt (例如在沒有安裝的情況下) 並且在系統已經安裝了另一個版本的 VeraCrypt,你必須先將其解除安裝 (或使用 VeraCrypt 安裝程式進行更新)。要解除安裝 VeraCrypt,請依照以下步驟:在Windows Vista 或更新的版本,選取「開始功能表」 > 電腦 > 「解除安裝或變更程式」 > VeraCrypt > 解除安裝; 在 Windows XP, 選取 「開始功能表」 > 設定 > 「控制台」 > 「新增或移除程式」 > VeraCrypt > 移除。\n\n同樣地,如果你只是嘗試以便攜模式下執行 VeraCrypt (例如沒有安裝的情況下) 並且另一版本的 VeraCrypt 已經正在便攜模式下執行中,你必須先重新啟動系統然後只執行這個新版本。</entry> + <entry lang="zh-hk" key="DRIVER_NOT_FOUND">錯誤:無法找到 VeraCrypt 驅動程式!\n\n請複製 'veracrypt.sys' 和 'veracrypt-x64.sys' 檔案到 VeraCrypt 的主程式 'VeraCrypt.exe' 所在的資料夾。</entry> + <entry lang="zh-hk" key="DRIVER_VERSION">錯誤:正在運行一個不兼容版本的 VeraCrypt 驅動程式。\n\n如你正嘗試在便攜模式下執行 VeraCrypt (例如在沒有安裝的情況下) 並且在系統已經安裝了另一個版本的 VeraCrypt,你必須先將其解除安裝 (或使用 VeraCrypt 安裝程式進行更新)。要解除安裝 VeraCrypt,請依照以下步驟:在Windows Vista 或更新的版本,選取 [開始功能表] > 電腦 > [解除安裝或變更程式] > VeraCrypt > 解除安裝; 在 Windows XP, 選取 [開始功能表] > 設定 > [控制台] > [新增或移除程式] > VeraCrypt > 移除。\n\n同樣地,如果你只是嘗試以便攜模式下執行 VeraCrypt (例如沒有安裝的情況下) 並且另一版本的 VeraCrypt 已經正在便攜模式下執行中,你必須先重新啟動系統然後只執行這個新版本。</entry> <entry lang="zh-hk" key="ERR_CIPHER_INIT_FAILURE">錯誤:加密演算法密碼初始化失敗。</entry> <entry lang="zh-hk" key="ERR_CIPHER_INIT_WEAK_KEY">錯誤:已偵測到有可能保安強度薄弱的加密鑰! 這個加密鑰將會被捨棄。請再試一次。</entry> - <entry lang="zh-hk" key="EXCEPTION_REPORT">發生了嚴重錯誤,VeraCrypt 必須被立即終止。如果這個錯誤是 VeraCrypt 的缺陷而導致,我們樂意對其進行修正。要協助我們改善這個軟件,您可以將 Veracrypt 自動產生的錯誤報告傳送給我們,報告內包含以下內容:\n\n- 程式版本\n- 作業系統版本\n- CPU 類型\n- VeraCrypt 元件名稱\n- VeraCrypt 執行檔的校驗碼\n- 對話方塊視窗的符號標記\n- 錯誤類型\n- 錯誤地址資訊\n- VeraCrypt 呼叫堆疊\n\n如果您選擇「是」,以下的 URL 網址 (包含錯誤報告) 將會在您預設的互聯網瀏覽器中開啟。\n\n%hs\n\n您希望將上述的錯誤報告傳送給我們嗎?</entry> - <entry lang="zh-hk" key="EXCEPTION_REPORT_EXT">系統發生了嚴重錯誤而必須終止 VeraCrypt。\n\n請注意的是此錯誤並非由 VeraCrypt 導致(因此 VeraCrypt 開發者無法修復這個錯誤)。請檢查您的系統來尋找可能的原因(例如:系統設定、網絡連接、硬件故障等)。</entry> - <entry lang="zh-hk" key="EXCEPTION_REPORT_EXT_FILESEL">系統發生了嚴重錯誤而必須終止 VeraCrypt。\n\n如果此錯誤一直存在,您可能需要嘗試禁用或解除安裝可能潛在導致此問題的應用程式,例如防病毒或防火牆軟件,系統「增強」、「優化」或「調節」軟件等等。如果仍然無法解決問題,您可能需要嘗試重新安裝您的作業系統(此問題也可能由惡意軟件導致)。</entry> + <entry lang="zh-hk" key="EXCEPTION_REPORT">發生了嚴重錯誤,VeraCrypt 必須被立即終止。如果這個錯誤是 VeraCrypt 的缺陷而導致,我們樂意對其進行修正。要協助我們改善這個軟件,你可以將 Veracrypt 自動產生的錯誤報告傳送給我們,報告內包含以下內容:\n\n- 程式版本\n- 作業系統版本\n- CPU 類型\n- VeraCrypt 元件名稱\n- VeraCrypt 執行檔的校驗碼\n- 對話方塊視窗的符號標記\n- 錯誤類型\n- 錯誤地址資訊\n- VeraCrypt 呼叫堆疊\n\n如果你選擇[是],以下的 URL 網址 (包含錯誤報告) 將會在你預設的互聯網瀏覽器中開啟。\n\n%hs\n\n你希望將上述的錯誤報告傳送給我們嗎?</entry> + <entry lang="zh-hk" key="EXCEPTION_REPORT_EXT">系統發生了嚴重錯誤而必須終止 VeraCrypt。\n\n請注意的是此錯誤並非由 VeraCrypt 導致(因此 VeraCrypt 開發者無法修復這個錯誤)。請檢查你的系統來尋找可能的原因(例如:系統設定、網絡連接、硬件故障等)。</entry> + <entry lang="zh-hk" key="EXCEPTION_REPORT_EXT_FILESEL">系統發生了一個嚴重錯誤而必須終止 VeraCrypt 程式。\n\n如果這個錯誤持續存在,你可能需要嘗試停用或解除安裝任何有可能導致這個問題的應用程式,例如防病毒或防火牆軟件,系統 "加強"、"最佳化" 或 "微調"的 之類的軟件。如果仍然無法這個解決問題,你可能要嘗試重新安裝你的作業系統 (這個問題也有可能由惡意軟件導致)。</entry> <entry lang="zh-hk" key="EXCEPTION_REPORT_TITLE">VeraCrypt 發生嚴重錯誤</entry> - <entry lang="zh-hk" key="SYSTEM_CRASHED_ASK_REPORT">VeraCrypt 檢測到作業系統最近曾經崩潰過。系統崩潰存在很多潛在的原因(例如硬體故障、裝置驅動程式存在軟件錯誤等等)\n\n您需要 VeraCrypt 檢查是否因 VeraCrypt 導致系統崩潰嗎?</entry> - <entry lang="zh-hk" key="ASK_KEEP_DETECTING_SYSTEM_CRASH">您需要 VeraCrypt 繼續檢測系統崩潰嗎?</entry> + <entry lang="zh-hk" key="SYSTEM_CRASHED_ASK_REPORT">VeraCrypt 檢測到作業系統最近曾經崩潰過。系統崩潰存在很多潛在的原因(例如硬體故障、裝置驅動程式存在軟件錯誤等等)\n\n你需要 VeraCrypt 檢查是否因 VeraCrypt 導致系統崩潰嗎?</entry> + <entry lang="zh-hk" key="ASK_KEEP_DETECTING_SYSTEM_CRASH">你需要 VeraCrypt 繼續檢測系統崩潰嗎?</entry> <entry lang="zh-hk" key="NO_MINIDUMP_FOUND">VeraCrypt 無法找到系統崩潰的迷你傾印檔案。</entry> <entry lang="zh-hk" key="ASK_DELETE_KERNEL_CRASH_DUMP">是否要刪除 Windows 藍屏當機檔案以釋放更多磁碟空間</entry> - <entry lang="zh-hk" key="ASK_DEBUGGER_INSTALL">為分析系統崩潰原因,VeraCrypt 需要先安裝微軟除錯工具。\n\n在按一下「確定」之後,Windows installer 程式將會從微軟伺服器下載微軟除錯工具安裝程式(16MiB)並且隨後會進行安裝( Windows installer 程式會從 veracrypt.org 伺服器上提交請求到微軟伺服器〖就是說先存取 VeraCrypt 網站再存取微軟〗,這樣即使微軟改變了安裝包的位址,此功能依然有效)。</entry> - <entry lang="zh-hk" key="SYSTEM_CRASH_ANALYSIS_INFO">在您按 「確定」 之後,VeraCrypt 將會分析系統崩潰原因,這個過程可能會需要幾分鐘的時間。</entry> - <entry lang="zh-hk" key="DEBUGGER_NOT_FOUND">請確認環境變數「PATH」包含「kd.exe」(系統核心除錯工具)的路徑。</entry> + <entry lang="zh-hk" key="ASK_DEBUGGER_INSTALL">為分析系統崩潰原因,VeraCrypt 需要先安裝微軟除錯工具。\n\n在按一下 [確定] 之後,Windows installer 程式將會從微軟伺服器下載微軟除錯工具安裝程式(16MiB)並且隨後會進行安裝( Windows installer 程式會從 veracrypt.org 伺服器上提交請求到微軟伺服器〖就是說先存取 VeraCrypt 網站再存取微軟〗,這樣即使微軟改變了安裝包的位址,此功能依然有效)。</entry> + <entry lang="zh-hk" key="SYSTEM_CRASH_ANALYSIS_INFO">在你按 [確定] 之後,VeraCrypt 將會分析系統崩潰原因,這個過程可能會需要幾分鐘的時間。</entry> + <entry lang="zh-hk" key="DEBUGGER_NOT_FOUND">請確認環境變數 [PATH] 包含 [kd.exe] (系統核心除錯工具)的路徑。</entry> <entry lang="zh-hk" key="SYSTEM_CRASH_NO_VERACRYPT">看來很可能 VeraCrypt 並不是導致系統崩潰的原因。系統崩潰有很多潛在原因(例如,硬體失敗,裝置驅動程式存在BUG等等)</entry> <entry lang="zh-hk" key="SYSTEM_CRASH_UPDATE_DRIVER">分析結果顯示更新以下的驅動可能會解決問題:</entry> - <entry lang="zh-hk" key="SYSTEM_CRASH_REPORT">要協助我們確認這個是否為 Veracrypt 的軟件錯誤,您可以傳送一份自動產生的錯誤報告給我們,錯誤報告中包括下面內容:\n- 程式版本\n- 作業系統版本\n- CPU類型\n- 錯誤分類\n- 驅動名稱和版本\n- 系統使用堆疊\n\n如果您選擇 “是”,下面的 URL 網址(包含錯誤報告)將會在您的預設瀏覽器中打開。</entry> - <entry lang="zh-hk" key="ASK_SEND_ERROR_REPORT">您希望將上述的錯誤報告傳送給我們嗎?</entry> + <entry lang="zh-hk" key="SYSTEM_CRASH_REPORT">要協助我們確認這個是否為 Veracrypt 的軟件錯誤,你可以傳送一份自動產生的錯誤報告給我們,錯誤報告中包括下面內容:\n- 程式版本\n- 作業系統版本\n- CPU類型\n- 錯誤分類\n- 驅動名稱和版本\n- 系統使用堆疊\n\n如果你選擇 [是],下面的 URL 網址(包含錯誤報告)將會在你的預設瀏覽器中打開。</entry> + <entry lang="zh-hk" key="ASK_SEND_ERROR_REPORT">你希望將上述的錯誤報告傳送給我們嗎?</entry> <entry lang="zh-hk" key="ENCRYPT">加密(&E)</entry> @@ -472,5 +472,5 @@ <entry lang="zh-hk" key="EXT_PARTITION">請為這個延伸分割區建立一個邏輯分割區,然後再試一次。</entry> - <entry lang="zh-hk" key="FILE_HELP">VeraCrypt 加密區可以存在於一個檔案之中(稱為 VeraCrypt 加密區容器),這個檔案可以存放在硬碟上,或存放在 USB 隨身碟上,等等。VeraCrypt 加密區容器檔案與一個普通檔案一樣(例如,它可以像任何普通檔一樣可以被移動、複製、刪除)。按一下「選擇檔案」為容器檔案選擇一個檔案名稱,以及它的儲存位置。\n\n警告:如果您選擇了一個已經存在的檔案,VeraCrypt 並不會加密它,但該檔將會被刪除,並且會被新建立的 VeraCrypt 容器檔案所覆蓋。您可以透過將檔複製到即將建立的 VeraCrypt 容器檔案內以加密相關的檔案。</entry> - <entry lang="zh-hk" key="FILE_HELP_HIDDEN_HOST_VOL">選擇要建立的外層加密區的位置(稍後將在此加密區裏面建立隱藏加密區)。\n\n一個 VeraCrypt 加密區可以存在於檔案之中(稱為 VeraCrypt 容器),這個加密區檔可以存放在硬碟上,或 USB 隨身碟上,等等。VeraCrypt 容器可以象任何普通檔一樣被移動、複製、和刪除。按一下「選擇檔案」為容器檔自訂一個檔案名和它的保存位置。如果您選擇了一個已經存在的檔,VeraCrypt 並不會加密它,而是該檔將會被刪除,並會被新建立的 VeraCrypt 加密容器所覆蓋。您可以透過將檔複製到即將建立的 VeraCrypt 容器內,以實現對相關檔案進行加密。</entry> - <entry lang="zh-hk" key="DEVICE_HELP">裝置類型的 VeraCrypt 加密區可以在硬碟、固態磁碟機、USB 隨身碟,以及其他儲存裝置的分割區上建立。分割區也可以就地加密。\n\n除此之外,裝置類加密區也可以在不包含任何分割區的裝置中建立(包括硬碟以及固態裝置)。\n\n注意:包含多個分割區的裝置,只有在此分割區為 Windows 安裝和啟動分割區時,才可以就地整盤加密(使用單一密鑰)。\n\n警告:如果您加密整個分割區或裝置,所有當前儲存於這個分割區或裝置上的資料將會被徹底抹除(僅在加密系統啟動分割區或磁碟機時該分割區上的資料才不會被破壞)。</entry> + <entry lang="zh-hk" key="FILE_HELP">VeraCrypt 加密區可以存在於一個檔案之中(稱為 VeraCrypt 加密區容器),這個檔案可以存放在硬碟上,或存放在 USB 隨身碟上,等等。VeraCrypt 加密區容器檔案與一個普通檔案一樣(例如,它可以像任何普通檔一樣可以被移動、複製、刪除)。按一下 [選擇檔案] 為容器檔案選擇一個檔案名稱,以及它的儲存位置。\n\n警告:如果你選擇了一個已經存在的檔案,VeraCrypt 並不會加密它,但該檔將會被刪除,並且會被新建立的 VeraCrypt 容器檔案所覆蓋。你可以透過將檔複製到即將建立的 VeraCrypt 容器檔案內以加密相關的檔案。</entry> + <entry lang="zh-hk" key="FILE_HELP_HIDDEN_HOST_VOL">選擇要建立的外層加密區的位置(稍後將在此加密區裏面建立隱藏加密區)。\n\n一個 VeraCrypt 加密區可以存在於檔案之中(稱為 VeraCrypt 容器),這個加密區檔可以存放在硬碟上,或 USB 隨身碟上,等等。VeraCrypt 容器可以象任何普通檔一樣被移動、複製、和刪除。按一下 [選擇檔案] 為容器檔自訂一個檔案名和它的保存位置。如果你選擇了一個已經存在的檔,VeraCrypt 並不會加密它,而是該檔將會被刪除,並會被新建立的 VeraCrypt 加密容器所覆蓋。你可以透過將檔複製到即將建立的 VeraCrypt 容器內,以實現對相關檔案進行加密。</entry> + <entry lang="zh-hk" key="DEVICE_HELP">裝置類型的 VeraCrypt 加密區可以在硬碟、固態磁碟機、USB 隨身碟,以及其他儲存裝置的分割區上建立。分割區也可以就地加密。\n\n除此之外,裝置類加密區也可以在不包含任何分割區的裝置中建立(包括硬碟以及固態裝置)。\n\n請注意:包含多個分割區的裝置,只有在此分割區為 Windows 安裝和啟動分割區時,才可以就地整盤加密(使用單一密鑰)。\n\n警告:如果你加密整個分割區或裝置,所有當前儲存於這個分割區或裝置上的資料將會被徹底抹除(僅在加密系統啟動分割區或磁碟機時該分割區上的資料才不會被破壞)。</entry> <entry lang="zh-hk" key="DEVICE_HELP_NO_INPLACE">裝置類型的 VeraCrypt 加密區可以在硬碟、固態磁碟機、USB 隨身碟,以及其他儲存裝置的分割區上建立。\n\n警告:分割區或裝置將會被格式化,同時儲存在入面的所有資料都將會丟失。</entry> @@ -483,10 +483,10 @@ <entry lang="zh-hk" key="FILESYS_PAGE_TITLE">大型檔案</entry> - <entry lang="zh-hk" key="FILESYS_PAGE_HELP_QUESTION">您是否打算在這個 VeraCrypt 加密區中儲存大於 4 GiB 的檔案?</entry> - <entry lang="zh-hk" key="FILESYS_PAGE_HELP_EXPLANATION">根據您以上的選擇,VeraCrypt 將為加密區選擇一個合適的檔案系統格式(您可以在下一步選擇檔案系統類型)。</entry> - <entry lang="zh-hk" key="FILESYS_PAGE_HELP_EXPLANATION_HIDVOL">當您建立外層加密區的時候,您應該考慮選擇「否」。如果您選擇「是」,預設的檔案系統將會是 NTFS,並不如 FAT 或 exFAT 檔案系統那樣適合用於建立外層加密區(例如格式化為 FAT 或 exFAT 檔案系統的外層加密區,可以建立隱藏加密區的最大容量會明顯較大)。正常地 FAT 為隱藏加密區和一般加密區的預設檔案系統 (因此 FAT 加密區並不會引起可疑)。然而,如果使用者打算在加密區中儲存大於 4 GiB 的檔案 (FAT 檔案系統並不支援),則 FAT 不會為預設的檔案系統。</entry> - <entry lang="zh-hk" key="FILESYS_PAGE_HELP_EXPLANATION_HIDVOL_CONFIRM">您確認要選擇「是」嗎?</entry> + <entry lang="zh-hk" key="FILESYS_PAGE_HELP_QUESTION">你是否打算在這個 VeraCrypt 加密區中儲存大於 4 GiB 的檔案?</entry> + <entry lang="zh-hk" key="FILESYS_PAGE_HELP_EXPLANATION">根據你以上的選擇,VeraCrypt 將為加密區選擇一個合適的檔案系統格式(你可以在下一步選擇檔案系統類型)。</entry> + <entry lang="zh-hk" key="FILESYS_PAGE_HELP_EXPLANATION_HIDVOL">當你建立外層加密區的時候,你應該考慮選擇 [否]。如果你選擇 [是],預設的檔案系統將會是 NTFS,並不如 FAT 或 exFAT 檔案系統那樣適合用於建立外層加密區(例如格式化為 FAT 或 exFAT 檔案系統的外層加密區,可以建立隱藏加密區的最大容量會明顯較大)。正常地 FAT 為隱藏加密區和一般加密區的預設檔案系統 (因此 FAT 加密區並不會引起可疑)。然而,如果使用者打算在加密區中儲存大於 4 GiB 的檔案 (FAT 檔案系統並不支援),則 FAT 不會為預設的檔案系統。</entry> + <entry lang="zh-hk" key="FILESYS_PAGE_HELP_EXPLANATION_HIDVOL_CONFIRM">你確認要選擇[是]嗎?</entry> <entry lang="zh-hk" key="DEVICE_TRANSFORM_MODE_PAGE_TITLE">加密區建立模式</entry> - <entry lang="zh-hk" key="DEVICE_TRANSFORM_MODE_PAGE_FORMAT_HELP">這是建立分割區類型或裝置類型加密區的最快方式(就地加密,是另外一種選項,速度比此種方式要慢,這是因為就地加密時每個磁區的內容都需要首先讀取、加密,之後再寫入)。任何當前儲存在選擇的分割區/裝置上的資料都會丟失(這些資料並不會被加密,它們將會被亂數據覆蓋)。如果您想加密一個分割區中的現有資料,請選擇其他的選項。</entry> - <entry lang="zh-hk" key="DEVICE_TRANSFORM_MODE_PAGE_INPLACE_HELP">整個指定的分割區以及位於該分割區上的資料將會被就地加密。如果分割區裏面沒有內容,您應該選擇其他的選項(以使加密區建立速度更快)。</entry> - <entry lang="zh-hk" key="NOTE_BEGINNING">注意: </entry> + <entry lang="zh-hk" key="DEVICE_TRANSFORM_MODE_PAGE_FORMAT_HELP">這是建立分割區類型或裝置類型加密區的最快方式(就地加密,是另外一種選項,速度比此種方式要慢,這是因為就地加密時每個磁區的內容都需要首先讀取、加密,之後再寫入)。任何當前儲存在選擇的分割區/裝置上的資料都會丟失(這些資料並不會被加密,它們將會被亂數據覆蓋)。如果你想加密一個分割區中的現有資料,請選擇其他的選項。</entry> + <entry lang="zh-hk" key="DEVICE_TRANSFORM_MODE_PAGE_INPLACE_HELP">整個指定的分割區以及位於該分割區上的資料將會被就地加密。如果分割區裏面沒有內容,你應該選擇其他的選項(以使加密區建立速度更快)。</entry> + <entry lang="zh-hk" key="NOTE_BEGINNING">請注意: </entry> <entry lang="zh-hk" key="RESUME">繼續(&R)</entry> @@ -502,17 +502,17 @@ <entry lang="zh-hk" key="WIPE_FINISHED_DECOY_SYSTEM_PARTITION">原本作業系統(隱形作業系統複製時的系統來源)分割區的內容已被成功抹除。</entry> - <entry lang="zh-hk" key="DECOY_OS_VERSION_WARNING">請確認您將要安裝的 Windows 版本(位於已抹除分割區)與您正在運行的 Windows 版本相同。這點是必須的,因為兩個系統會共用同一個開機分割區。</entry> - <entry lang="zh-hk" key="SYSTEM_ENCRYPTION_FINISHED">該系統分割區或磁碟機已經被成功加密。\n\n注意:如果存在您需要在 Windows 啟動時自動掛載非系統 VeraCrypt 加密區,您可以掛載它們並隨後設定其為系統最愛加密區,步驟:選擇「最愛」 > 保存已掛載的加密區為系統最愛加密區」)。</entry> + <entry lang="zh-hk" key="DECOY_OS_VERSION_WARNING">請確認你將要安裝的 Windows 版本(位於已抹除分割區)與你正在運行的 Windows 版本相同。這點是必須的,因為兩個系統會共用同一個開機分割區。</entry> + <entry lang="zh-hk" key="SYSTEM_ENCRYPTION_FINISHED">該系統分割區或磁碟機已經被成功加密。\n\n請注意:如果存在你需要在 Windows 啟動時自動掛載非系統 VeraCrypt 加密區,你可以掛載它們並隨後設定其為系統我的最愛加密區,步驟:選擇 [我的最愛] > 保存已掛載的加密區為系統我的最愛加密區])。</entry> <entry lang="zh-hk" key="SYSTEM_DECRYPTION_FINISHED">該系統分割區或磁碟機已經被成功解密。</entry> - <entry lang="zh-hk" key="FORMAT_FINISHED_HELP">\n\nVeraCrypt 加密區已被建立並準備就緒。要建立另外的 VeraCrypt 加密區,請按 「下一步」,否則請按 「退出」 按鈕。</entry> - <entry lang="zh-hk" key="SYSENC_HIDDEN_VOL_FORMAT_FINISHED_HELP">\n\n已成功建立隱藏的 VeraCrypt 加密區(隱形作業系統將包含在這個隱藏加密區之內)。\n\n按 「下一步」 按鈕繼續。</entry> + <entry lang="zh-hk" key="FORMAT_FINISHED_HELP">\n\nVeraCrypt 加密區已被建立並準備就緒。要建立另外的 VeraCrypt 加密區,請按 [下一步],否則請按 [退出] 按鈕。</entry> + <entry lang="zh-hk" key="SYSENC_HIDDEN_VOL_FORMAT_FINISHED_HELP">\n\n已成功建立隱藏的 VeraCrypt 加密區(隱形作業系統將包含在這個隱藏加密區之內)。\n\n按 [下一步] 按鈕繼續。</entry> <entry lang="zh-hk" key="NONSYS_INPLACE_ENC_FINISHED_TITLE">磁碟區已完成加密</entry> <entry lang="zh-hk" key="NONSYS_INPLACE_DEC_FINISHED_TITLE">磁碟區已完成解密</entry> - <entry lang="zh-hk" key="NONSYS_INPLACE_ENC_FINISHED_INFO">重要:要掛載這個新建立的 VERACRYPT 加密區和存取儲存於其中的資料,在 VERACRYPT 視窗中按「自動掛載裝置」。在您輸入正確密碼之後(和/或 提供正確的加密鑰檔案),加密區將會以您在 VERACRYPT 列表中選擇的磁碟機代號掛載(您也將能夠以該磁碟機代號存取加密資料)。\n\n【請記住或寫下上述步驟】。您在希望掛載這個加密區和存取其中的資料時必須依照上述步驟。另外一種方式是在 VeraCrypt 主視窗,按「選擇裝置」,之後選擇此 分割區/裝置,之後點「掛載」。\n\n此分割區/裝置 已被成功加密(選擇包含完全加密的 VeraCrypt 磁碟區)並為使用準備就緒。</entry> + <entry lang="zh-hk" key="NONSYS_INPLACE_ENC_FINISHED_INFO">重要:要掛載這個新建立的 VERACRYPT 加密區和存取儲存於其中的資料,在 VERACRYPT 視窗中按[自動掛載裝置]。在你輸入正確密碼之後(和/或 提供正確的加密鑰檔案),加密區將會以你在 VERACRYPT 列表中選擇的磁碟機代號掛載(你也將能夠以該磁碟機代號存取加密資料)。\n\n[請記住或寫下上述步驟]。你在希望掛載這個加密區和存取其中的資料時必須依照上述步驟。另外一種方式是在 VeraCrypt 主視窗,按[選擇裝置],之後選擇此 分割區/裝置,之後點[掛載]。\n\n此分割區/裝置 已被成功加密(選擇包含完全加密的 VeraCrypt 磁碟區)並為使用準備就緒。</entry> <entry lang="zh-hk" key="NONSYS_INPLACE_DEC_FINISHED_INFO">VeraCrypt 加密區已成功解密。</entry> <entry lang="zh-hk" key="NONSYS_INPLACE_DEC_FINISHED_DRIVE_LETTER_SEL_INFO">VeraCrypt 已成功解密磁碟區。\n\n請選擇所欲指定放置解密磁碟區的磁碟代號,然後再按完成。\n\n重要:等到出現可指定解密磁碟區的磁碟代號後,才可以讀取存放在此原加密區的資料。</entry> - <entry lang="zh-hk" key="NONSYS_INPLACE_DEC_FINISHED_NO_DRIVE_LETTER_AVAILABLE">警告:為可以存取已解密的檔案,必須指派磁碟代號給這個已解密的磁碟區。但是目前沒有任何可用的磁碟機代號。\n\n請釋放一個磁碟字母 (例如,先退出隨身碟或解除掛載外置硬碟... .) 然後再按「OK」。</entry> + <entry lang="zh-hk" key="NONSYS_INPLACE_DEC_FINISHED_NO_DRIVE_LETTER_AVAILABLE">警告:為可以存取已解密的檔案,必須指派磁碟代號給這個已解密的磁碟區。但是目前沒有任何可用的磁碟機代號。\n\n請釋放一個磁碟字母 (例如,先退出隨身碟或解除掛載外置硬碟... .) 然後再按 [確認]。</entry> <entry lang="zh-hk" key="FORMAT_FINISHED_INFO">已成功建立 VeraCrypt 加密區。</entry> <entry lang="zh-hk" key="FORMAT_FINISHED_TITLE">已建立加密區</entry> - <entry lang="zh-hk" key="FORMAT_HELP">重要:請在此視窗內隨機移動滑鼠,移動時間越長越好。這將會顯著增加密鑰的加密強度。之後按「格式化」按鈕建立加密區。</entry> - <entry lang="zh-hk" key="FORMAT_HIDVOL_HOST_HELP">按「格式化」按鈕建立外層的加密區。如若獲得更多資訊,請參考軟件文檔。</entry> + <entry lang="zh-hk" key="FORMAT_HELP">重要:請在此視窗內隨機移動滑鼠,移動時間越長越好。這將會顯著增加密鑰的加密強度。之後按[格式化]按鈕建立加密區。</entry> + <entry lang="zh-hk" key="FORMAT_HIDVOL_HOST_HELP">按[格式化]按鈕建立外層的加密區。如若獲得更多資訊,請參考軟件文檔。</entry> <entry lang="zh-hk" key="FORMAT_HIDVOL_HOST_TITLE">外層加密區格式化</entry> @@ -520,29 +520,29 @@ <entry lang="zh-hk" key="FORMAT_TITLE">磁碟區格式化</entry> - <entry lang="zh-hk" key="HELP_READER_ERROR">如要顯示或列印 VeraCrypt 用戶指南需要使用 Adobe Acrobat Reader(或與其兼容的工具)。\n\nAdobe Reader(免費軟件)下載位址: www.adobe.com\n\n您想改為查看網上的說明文件嗎?</entry> - <entry lang="zh-hk" key="HIDDEN_VOL_WIZARD_MODE_NORMAL_HELP">如果您選擇此選項,精靈將會首先協助您建立一個普通的 VeraCrypt 加密區,然後會在這個普通的加密區裏面建立一個隱藏的 VeraCrypt 加密區。新手用戶應選擇這個選項來建立隱藏加密區。</entry> - <entry lang="zh-hk" key="HIDDEN_VOL_WIZARD_MODE_DIRECT_HELP">如果您選擇此選項,您將會在已有的 VeraCrypt 加密區內建立一個隱藏的 VeraCrypt 加密區。這裏假設您已經建立好了適合於建立隱藏 VeraCrypt 加密區的 VeraCrypt 外層加密區。</entry> + <entry lang="zh-hk" key="HELP_READER_ERROR">如要顯示或列印 VeraCrypt 用戶指南需要使用 Adobe Acrobat Reader(或與其兼容的工具)。\n\nAdobe Reader(免費軟件)下載位址: www.adobe.com\n\n你想改為查看網上的說明文件嗎?</entry> + <entry lang="zh-hk" key="HIDDEN_VOL_WIZARD_MODE_NORMAL_HELP">如果你選擇此選項,精靈將會首先協助你建立一個普通的 VeraCrypt 加密區,然後會在這個普通的加密區裏面建立一個隱藏的 VeraCrypt 加密區。新手用戶應選擇這個選項來建立隱藏加密區。</entry> + <entry lang="zh-hk" key="HIDDEN_VOL_WIZARD_MODE_DIRECT_HELP">如果你選擇此選項,你將會在已有的 VeraCrypt 加密區內建立一個隱藏的 VeraCrypt 加密區。這裏假設你已經建立好了適合於建立隱藏 VeraCrypt 加密區的 VeraCrypt 外層加密區。</entry> <entry lang="zh-hk" key="HIDDEN_VOL_WIZARD_MODE_TITLE">建立加密區模式</entry> <entry lang="zh-hk" key="HIDVOL_FORMAT_FINISHED_TITLE">已建立隱藏加密區</entry> - <entry lang="zh-hk" key="HIDVOL_FORMAT_FINISHED_HELP">已成功建立隱藏的 VeraCrypt 加密區並可以立即使用。如果有依照所有指示,並且有依照 Veracrypt 用戶指南內「Security Precautions Pertaining to Hidden Volumes」章節中所列出的注意事項和要求,即使外層加密區被掛載,也不能證明當中存在隱藏加密區。\n\n警告:如果您沒有為隱藏加密區進行保護(關於其資訊可參考 VeraCrypt 用戶指南內「PROTECTION OF HIDDEN VOLUMES AGAINST DAMAGE」的章節),請不要向外層加密區寫入資料。否則,您可能會覆寫及損壞隱藏隱藏加密區!</entry> - <entry lang="zh-hk" key="FIRST_HIDDEN_OS_BOOT_INFO">您已經啟動了一個隱形作業系統。可能您已經注意到了,隱形作業系統似乎是安裝到原始作業系統所在的分割區。然而,實際上,隱形系統是安裝到系統分割區後面的分割區上的(安裝在隱藏加密區中)。所有的讀寫操作將會從系統分割區中透明的重定向到隱藏加密區裏面。\n\n作業系統本身和系統中的程式均不知道從系統分割區中讀寫的資料實際上是從系統分割區後面的分割區中讀寫的(讀/寫到隱藏加密區)。任何這樣的資料都是同樣即時加解密的(使用與即將建立的偽裝作業系統不同的加密鑰)。\n\n\n請單擊 「下一步」 按鈕繼續。</entry> - <entry lang="zh-hk" key="HIDVOL_HOST_FILLING_HELP_SYSENC">外層加密區已成功建立並作為 %hc:磁碟機掛載。對這個外層加密區,現在您應複製一些您不是真正要隱藏的貌似敏感的文件。這是為了對付那些強迫您給出系統分割區後面那個分割區密碼的人的,這個分割區可能包含外層加密區和隱藏加密區(以及其中的隱形作業系統)。您可以洩漏這個外層加密區的密碼,而此時沒有任何跡象可以識別存在隱藏加密區(以及隱形作業系統)。\n\n重要:您複製到外層加密區中的檔佔用的空間不應該超過 %s。否則,可能沒有足夠的自由空間來建立隱藏加密區(此時您將無法繼續後續操作)。在您複製完成之後,請按 「下一步」(不要解除掛載加密區)。</entry> - <entry lang="zh-hk" key="HIDVOL_HOST_FILLING_HELP">外層加密區已成功建立並作為 %hc:磁碟機掛載。對這個加密區,現在您應複製一些您不是真正要隱藏的看似敏感的文件。這是讓那些強迫您洩漏密碼的人能看到的檔。您將僅對這個外層加密區洩漏密碼,而不要洩漏給他們隱藏加密區的密碼。您真正要保護的檔將被儲存在稍候建立的隱藏加密區裏。當您完成複製後,請單擊"下一步",並且不要解除掛載此加密區。\n\n注意:單擊「下一步」後,將進行簇狀圖掃描來確定連續的自由空間大小,此自由空間的尾部與加密區尾部一致。該空間將提供用來建立隱藏加密區同時也是隱藏加密區的最大容量。簇狀圖掃描能夠保證外層加密中磁碟區的資料不會被隱藏磁碟區覆蓋。</entry> + <entry lang="zh-hk" key="HIDVOL_FORMAT_FINISHED_HELP">已成功建立隱藏的 VeraCrypt 加密區並可以立即使用。如果有依照所有指示,並且有依照 Veracrypt 用戶指南內[Security Precautions Pertaining to Hidden Volumes]章節中所列出的注意事項和要求,即使外層加密區被掛載,也不能證明當中存在隱藏加密區。\n\n警告:如果你沒有為隱藏加密區進行保護(關於其資訊可參考 VeraCrypt 用戶指南內[PROTECTION OF HIDDEN VOLUMES AGAINST DAMAGE]的章節),請不要向外層加密區寫入資料。否則,你可能會覆寫及損壞隱藏隱藏加密區!</entry> + <entry lang="zh-hk" key="FIRST_HIDDEN_OS_BOOT_INFO">你已經啟動了一個隱形作業系統。可能你已經注意到了,隱形作業系統似乎是安裝到原始作業系統所在的分割區。然而,實際上,隱形系統是安裝到系統分割區後面的分割區上的(安裝在隱藏加密區中)。所有的讀寫操作將會從系統分割區中透明的重定向到隱藏加密區裏面。\n\n作業系統本身和系統中的程式均不知道從系統分割區中讀寫的資料實際上是從系統分割區後面的分割區中讀寫的(讀/寫到隱藏加密區)。任何這樣的資料都是同樣即時加解密的(使用與即將建立的偽裝作業系統不同的加密鑰)。\n\n\n請單擊 [下一步] 按鈕繼續。</entry> + <entry lang="zh-hk" key="HIDVOL_HOST_FILLING_HELP_SYSENC">外層加密區已成功建立並作為 %hc:磁碟機掛載。對這個外層加密區,現在你應複製一些你不是真正要隱藏的貌似敏感的文件。這是為了對付那些強迫你給出系統分割區後面那個分割區密碼的人的,這個分割區可能包含外層加密區和隱藏加密區(以及其中的隱形作業系統)。你可以洩漏這個外層加密區的密碼,而此時沒有任何跡象可以識別存在隱藏加密區(以及隱形作業系統)。\n\n重要:你複製到外層加密區中的檔佔用的空間不應該超過 %s。否則,可能沒有足夠的自由空間來建立隱藏加密區(此時你將無法繼續後續操作)。在你複製完成之後,請按 [下一步](不要解除掛載加密區)。</entry> + <entry lang="zh-hk" key="HIDVOL_HOST_FILLING_HELP">外層加密區已成功建立並作為 %hc:磁碟機掛載。對這個加密區,現在你應複製一些你不是真正要隱藏的看似敏感的文件。這是讓那些強迫你洩漏密碼的人能看到的檔。你將僅對這個外層加密區洩漏密碼,而不要洩漏給他們隱藏加密區的密碼。你真正要保護的檔將被儲存在稍候建立的隱藏加密區裏。當你完成複製後,請單擊"下一步",並且不要解除掛載此加密區。\n\n請注意:單擊[下一步]後,將進行簇狀圖掃描來確定連續的自由空間大小,此自由空間的尾部與加密區尾部一致。該空間將提供用來建立隱藏加密區同時也是隱藏加密區的最大容量。簇狀圖掃描能夠保證外層加密中磁碟區的資料不會被隱藏磁碟區覆蓋。</entry> <entry lang="zh-hk" key="HIDVOL_HOST_FILLING_TITLE">外層加密區內容</entry> - <entry lang="zh-hk" key="HIDVOL_HOST_PRE_CIPHER_HELP">\n\n在下一步您將要為外層加密區(在其內將建立隱藏加密區)調整其選項。</entry> - <entry lang="zh-hk" key="HIDVOL_HOST_PRE_CIPHER_HELP_SYSENC">\n\n在下一步,您將會在系統分割區後面的第一個分割區內建立一個稱為的 VeraCrypt 外層加密區(在前面其中一個步驟曾經說明過)。</entry> + <entry lang="zh-hk" key="HIDVOL_HOST_PRE_CIPHER_HELP">\n\n在下一步你將要為外層加密區(在其內將建立隱藏加密區)調整其選項。</entry> + <entry lang="zh-hk" key="HIDVOL_HOST_PRE_CIPHER_HELP_SYSENC">\n\n在下一步,你將會在系統分割區後面的第一個分割區內建立一個稱為的 VeraCrypt 外層加密區(在前面其中一個步驟曾經說明過)。</entry> <entry lang="zh-hk" key="HIDVOL_HOST_PRE_CIPHER_TITLE">外層加密區</entry> - <entry lang="zh-hk" key="HIDDEN_OS_PRE_CIPHER_HELP">在以下步驟,您將會設定隱藏加密區的選項和密碼,這將會包含隱藏系統。\n\n註解:已完成掃描外層加密區的配置單位點陣圖,以確定外層加密區的末端部份未被數據佔用的空間。該區域將用於建立隱藏加密區,因此這將限制隱藏加密區的最大尺寸。已決定隱藏加密區最大可能的大小,並且已確認將會大於系統分割區的大小(這是必須的,因為整個系統分割區的內容將會被複製到隱藏加密區中)。這個做法確保寫入隱藏加密區的資料不會覆寫儲存在外層加密區內的資料。</entry> - <entry lang="zh-hk" key="HIDDEN_OS_PRE_CIPHER_WARNING">重要:請記住您在這個步驟所選擇的演算法。您在加密偽裝系統的時候也必須選擇這個演算法。否則將無法由隱形系統開機!(即偽裝系統和隱形系統必須使用同樣的加密演算法加密)。\n\n說明:原因是偽裝系統和隱形系統共用一個單一的開機管理程式,這個開機程式目前只支援一種用戶所選擇的演算法(每種演算法,都會對應一個特定的 VeraCrypt 開機管理程式版本)。</entry> - <entry lang="zh-hk" key="HIDVOL_PRE_CIPHER_HELP">\n\n已完成掃描外層加密區的配置單位點陣圖,並且已決定隱藏加密區的最大可能的大小。在下一步您可以調整隱藏加密區的選項、大小、和密碼。</entry> + <entry lang="zh-hk" key="HIDDEN_OS_PRE_CIPHER_HELP">在以下步驟,你將會設定隱藏加密區的選項和密碼,這將會包含隱藏系統。\n\n註解:已完成掃描外層加密區的配置單位點陣圖,以確定外層加密區的末端部份未被數據佔用的空間。該區域將用於建立隱藏加密區,因此這將限制隱藏加密區的最大尺寸。已決定隱藏加密區最大可能的大小,並且已確認將會大於系統分割區的大小(這是必須的,因為整個系統分割區的內容將會被複製到隱藏加密區中)。這個做法確保寫入隱藏加密區的資料不會覆寫儲存在外層加密區內的資料。</entry> + <entry lang="zh-hk" key="HIDDEN_OS_PRE_CIPHER_WARNING">重要:請記住你在這個步驟所選擇的演算法。你在加密偽裝系統的時候也必須選擇這個演算法。否則將無法由隱形系統開機!(即偽裝系統和隱形系統必須使用同樣的加密演算法加密)。\n\n說明:原因是偽裝系統和隱形系統共用一個單一的開機管理程式,這個開機程式目前只支援一種用戶所選擇的演算法(每種演算法,都會對應一個特定的 VeraCrypt 開機管理程式版本)。</entry> + <entry lang="zh-hk" key="HIDVOL_PRE_CIPHER_HELP">\n\n已完成掃描外層加密區的配置單位點陣圖,並且已決定隱藏加密區的最大可能的大小。在下一步你可以調整隱藏加密區的選項、大小、和密碼。</entry> <entry lang="zh-hk" key="HIDVOL_PRE_CIPHER_TITLE">隱藏加密區</entry> - <entry lang="zh-hk" key="HIDVOL_PROT_WARN_AFTER_MOUNT">隱藏加密區將現正進入保護狀態以防止損壞,直至外層加密區解除掛載為止。\n\n警告:如果有資料嘗試寫入到隱藏加密區的區域,VeraCrypt 會開始將整個加密區(外層磁碟區和隱藏磁碟區)進行寫入保護,直至解除掛載為止。這樣會令外層加密區的檔案系統發生錯誤,如果重複出現也會影響隱藏加密區的隱蔽性。因此應儘量避免寫入任何資料到隱藏加密區的區域。 任何寫入到隱藏加密區位置的資料將不被寫入並且會丟失!Windows 可能會報告為寫入錯誤(「延遲寫入失敗」或者是「參數不正確」)。</entry> - <entry lang="zh-hk" key="HIDVOL_PROT_WARN_AFTER_MOUNT_PLURAL">新掛載的加密區內每一個隱藏加密區現正進入保護狀態以防止損壞,直至解除掛載為止。\n\n警告:如果有資料嘗試寫入到任何隱藏加密區的區域,VeraCrypt 會將整個加密區(外層磁碟區和隱藏磁碟區)進行寫入保護直到解除掛載為止。這會令外層加密區的檔案系統發生錯誤,如若反復出現也會影響隱藏加密區的隱蔽性。因此應儘量避免寫入任何資料到隱藏加密區的區域。 任何寫入到隱藏加密區區域的資料將不被保存並且丟失! Windows 可能會報告為寫入錯誤(「延遲寫入失敗」或者是「參數不正確」)。</entry> - <entry lang="zh-hk" key="DAMAGE_TO_HIDDEN_VOLUME_PREVENTED">警告:已嘗試寫入資料到掛載為 %c: 加密區內的隱藏加密區的所在位置!VeraCrypt 已阻止相關的寫入以保護隱藏加密區。這樣會導致外層加密區的檔案系統發生錯誤。Windows 可能會報告出現寫入錯誤(「延遲寫入失敗」或者「參數不正確」)。整個加密區(外層加密區和隱藏加密區)將會進入唯讀模式直至加密區解除掛載為止。如果這不是 VeraCrypt 第一次阻止資料寫入資料到隱藏加密區的位置,這樣也會影響隱藏加密區的隱蔽性(這是因為在外層加密區檔案系統可能出現反常的關聯錯亂)。因此應考慮重新建立一個新的 VeraCrypt 加密區(禁用快速格式化)並將此加密區內的資料移動到新的加密區內;此加密區應該被安全地抹除(包括外層加密區和隱藏加密區)。我們強烈建議您現在重新啟動電腦。</entry> + <entry lang="zh-hk" key="HIDVOL_PROT_WARN_AFTER_MOUNT">隱藏加密區將現正進入保護狀態以防止損壞,直至外層加密區解除掛載為止。\n\n警告:如果有資料嘗試寫入到隱藏加密區的區域,VeraCrypt 會開始將整個加密區(外層磁碟區和隱藏磁碟區)進行寫入保護,直至解除掛載為止。這樣會令外層加密區的檔案系統發生錯誤,如果重複出現也會影響隱藏加密區的隱蔽性。因此應儘量避免寫入任何資料到隱藏加密區的區域。 任何寫入到隱藏加密區位置的資料將不被寫入並且會丟失!Windows 可能會報告為寫入錯誤([延遲寫入失敗]或者是[參數不正確])。</entry> + <entry lang="zh-hk" key="HIDVOL_PROT_WARN_AFTER_MOUNT_PLURAL">新掛載的加密區內每一個隱藏加密區現正進入保護狀態以防止損壞,直至解除掛載為止。\n\n警告:如果有資料嘗試寫入到任何隱藏加密區的區域,VeraCrypt 會將整個加密區(外層磁碟區和隱藏磁碟區)進行寫入保護直到解除掛載為止。這會令外層加密區的檔案系統發生錯誤,如若反復出現也會影響隱藏加密區的隱蔽性。因此應儘量避免寫入任何資料到隱藏加密區的區域。 任何寫入到隱藏加密區區域的資料將不被保存並且丟失! Windows 可能會報告為寫入錯誤([延遲寫入失敗] 或者是 [參數不正確])。</entry> + <entry lang="zh-hk" key="DAMAGE_TO_HIDDEN_VOLUME_PREVENTED">警告:已嘗試寫入資料到掛載為 %c: 加密區內的隱藏加密區的所在位置!VeraCrypt 已阻止相關的寫入以保護隱藏加密區。這樣會導致外層加密區的檔案系統發生錯誤。Windows 可能會報告出現寫入錯誤([延遲寫入失敗]或者[參數不正確])。整個加密區(外層加密區和隱藏加密區)將會進入唯讀模式直至加密區解除掛載為止。如果這不是 VeraCrypt 第一次阻止資料寫入資料到隱藏加密區的位置,這樣也會影響隱藏加密區的隱蔽性(這是因為在外層加密區檔案系統可能出現反常的關聯錯亂)。因此應考慮重新建立一個新的 VeraCrypt 加密區(禁用快速格式化)並將此加密區內的資料移動到新的加密區內;此加密區應該被安全地抹除(包括外層加密區和隱藏加密區)。我們強烈建議你現在重新啟動電腦。</entry> <entry lang="zh-hk" key="CANNOT_SATISFY_OVER_4G_FILE_SIZE_REQ">你已表明打算在磁碟區內儲存大於 4 GiB 的檔案。 這必須將磁碟區格式化為 NTFS/exFAT/ReFS,然而這是不可行的。</entry> <entry lang="zh-hk" key="CANNOT_CREATE_NON_HIDDEN_NTFS_VOLUMES_UNDER_HIDDEN_OS">請注意隱藏系統正在運行,非隱藏的 VeraCrypt 加密區無法格式化成 NTFS/exFAT/ReFS。 原因是加密區需要在沒有寫入保護的情況下暫時掛載,讓作業系統可以將其格式化為 NTFS(然而 FAT 是由 VeraCrypt 進行格式化,而不經作業系統,並無需掛載磁碟區). 要了解更詳盡的資訊,請參閱以下。你可以用偽裝作業系統建立非隱藏的 NTFS/exFAT/ReFS 加密區。</entry> - <entry lang="zh-hk" key="HIDDEN_VOL_CREATION_UNDER_HIDDEN_OS_HOWTO">為安全起見,當隱藏作業系統正在運行時,隱藏加密區只能以「直接」模式建立(這是因為外層加密區必須總是以唯讀方式掛載)。\n\n要安全的建立隱藏加密區,請依照如下步驟:\n\n1)啟動到偽裝作業系統。\n\n2)建立一個一般 VeraCrypt 加密區並複製一些你實際上並不想隱藏的貌似敏感的檔(該加密區會作為外層加密區)。\n\n3)啟動隱形作業系統並啟動 VeraCrypt 加密區建立精靈。如果這個加密區是檔類型的,移動該加密區到系統分割區或者是其他隱藏加密區中(否則,這個新建立的隱藏加密區將會以唯讀方式掛載並且不能被格式化)。按照精靈的步驟進行並選擇「直接」模式建立隱藏加密區。\n\n4)在精靈中,選擇您在步驟 2 中建立的加密區並依照精靈後面的步驟在這個加密區之內建立隱藏加密區。</entry> + <entry lang="zh-hk" key="HIDDEN_VOL_CREATION_UNDER_HIDDEN_OS_HOWTO">為安全起見,當隱藏作業系統正在運行時,隱藏加密區只能以[直接]模式建立(這是因為外層加密區必須總是以唯讀方式掛載)。\n\n要安全的建立隱藏加密區,請依照如下步驟:\n\n1)啟動到偽裝作業系統。\n\n2)建立一個一般 VeraCrypt 加密區並複製一些你實際上並不想隱藏的貌似敏感的檔(該加密區會作為外層加密區)。\n\n3)啟動隱形作業系統並啟動 VeraCrypt 加密區建立精靈。如果這個加密區是檔類型的,移動該加密區到系統分割區或者是其他隱藏加密區中(否則,這個新建立的隱藏加密區將會以唯讀方式掛載並且不能被格式化)。按照精靈的步驟進行並選擇 [直接] 模式建立隱藏加密區。\n\n4)在精靈中,選擇你在步驟 2 中建立的加密區並依照精靈後面的步驟在這個加密區之內建立隱藏加密區。</entry> <entry lang="zh-hk" key="HIDDEN_OS_WRITE_PROTECTION_BRIEF_INFO">為安全起見,當隱形作業系統正在運行時,本地的非加密的檔案系統和非隱藏 VeraCrypt 加密區會以唯讀方式掛載(沒有任何資料可以寫入這些檔案系統或 VeraCrypt 加密區)。\n\n而資料可以寫入到 VeraCrypt 隱藏加密區中(假設隱藏加密區的儲存容器並非位於非加密檔案系統上或並非位於其他任何唯讀檔案系統上)。</entry> - <entry lang="zh-hk" key="HIDDEN_OS_WRITE_PROTECTION_EXPLANATION">採取這樣的限制措施有三種主要原因:\n\n- 可以為掛載隱藏加密區提供更安全的平台。因此我們官方推薦僅在隱形作業系統運行的情況下掛載隱藏加密區。(更多資訊請參考文檔的「Security Precautions Pertaining to Hidden Volumes」 部份)\n\n- 在某些情況下,有可能確定在某一時間,某一特定的檔案系統(或者檔案系統中特定的檔並未保存或存取)並未在特定的作業系統的實例中掛載(例如,通過分析和比較檔案系統日誌、時間戳記、應用程式日誌、錯誤日誌等等)。這可能暗示電腦上安裝了隱形作業系統(譯者注:還原備份的系統、或者重新安裝系統也會造成這種跡象,作者考慮的因素並不全面)。而這裏的措施則可以避免此類情況發生。\n\n- 能夠防止資料損壞和保證安全的使用系統休眠功能,這裏假設所有掛載的檔案系統在系統休眠的時候均為同一狀態。VeraCrypt 通過對任何偽裝系統和隱形系統裏面可以存取的系統執行防寫來保證這點。如果沒有這樣的保護,當在一個系統中掛載一個檔案系統,而此檔案系統在另外系統中為休眠狀態時,檔案系統可能會被損壞。</entry> - <entry lang="zh-hk" key="DECOY_TO_HIDDEN_OS_DATA_TRANSFER_HOWTO">注意:如果您要安全的從偽裝作業系統向隱形作業系統中傳送檔,請依照以下步驟: 1)啟動偽裝作業系統。 2)保存這些檔到未加密的磁碟區或者是 VeraCrypt 外層/一般加密區。 3)啟動隱形作業系統。 4)如果是把檔保存到 VeraCrypt 加密區,則掛載這個加密區(該加密區會自動以唯讀模式掛載)。 5)複製這些檔到隱行作業系統的分割區或者是其他隱藏加密區。</entry> - <entry lang="zh-hk" key="CONFIRM_RESTART">您的電腦必須重新啟動。\n\n您希望現在重新啟動電腦嗎?</entry> + <entry lang="zh-hk" key="HIDDEN_OS_WRITE_PROTECTION_EXPLANATION">採取這樣的限制措施有三種主要原因:\n\n- 可以為掛載隱藏加密區提供更安全的平台。因此我們官方推薦僅在隱形作業系統運行的情況下掛載隱藏加密區。(更多資訊請參考文檔的 [Security Precautions Pertaining to Hidden Volumes] 部份)\n\n- 在某些情況下,有可能確定在某一時間,某一特定的檔案系統(或者檔案系統中特定的檔並未保存或存取)並未在特定的作業系統的實例中掛載(例如,通過分析和比較檔案系統日誌、時間戳記、應用程式日誌、錯誤日誌等等)。這可能暗示電腦上安裝了隱形作業系統(譯者注:還原備份的系統、或者重新安裝系統也會造成這種跡象,作者考慮的因素並不全面)。而這裏的措施則可以避免此類情況發生。\n\n- 能夠防止資料損壞和保證安全的使用系統休眠功能,這裏假設所有掛載的檔案系統在系統休眠的時候均為同一狀態。VeraCrypt 通過對任何偽裝系統和隱形系統裏面可以存取的系統執行防寫來保證這點。如果沒有這樣的保護,當在一個系統中掛載一個檔案系統,而此檔案系統在另外系統中為休眠狀態時,檔案系統可能會被損壞。</entry> + <entry lang="zh-hk" key="DECOY_TO_HIDDEN_OS_DATA_TRANSFER_HOWTO">請注意:如果你要安全的從偽裝作業系統向隱形作業系統中傳送檔,請依照以下步驟: 1)啟動偽裝作業系統。 2)保存這些檔到未加密的磁碟區或者是 VeraCrypt 外層/一般加密區。 3)啟動隱形作業系統。 4)如果是把檔保存到 VeraCrypt 加密區,則掛載這個加密區(該加密區會自動以唯讀模式掛載)。 5)複製這些檔到隱行作業系統的分割區或者是其他隱藏加密區。</entry> + <entry lang="zh-hk" key="CONFIRM_RESTART">你的電腦必須重新啟動。\n\n你希望現在重新啟動電腦嗎?</entry> <entry lang="zh-hk" key="ERR_GETTING_SYSTEM_ENCRYPTION_STATUS">取得系統加密狀態時發生錯誤。</entry> @@ -559,3 +559,3 @@ <entry lang="zh-hk" key="INIT_RAND">初始化亂數據產生器失敗!</entry> - <entry lang="zh-hk" key="CAPI_RAND">Windows 加密 API 失敗!\n\n\n(如果您報告與此相關的錯誤,請在錯誤報告中包含以下技術資訊:\n%hs, Last Error = 0x%.8X)</entry> + <entry lang="zh-hk" key="CAPI_RAND">Windows 加密 API 失敗!\n\n\n(如果你報告與此相關的錯誤,請在錯誤報告中包含以下技術資訊:\n%hs, Last Error = 0x%.8X)</entry> <entry lang="zh-hk" key="INIT_REGISTER">無法初始化應用程式。註冊對話方塊類失敗。</entry> @@ -572,4 +572,4 @@ <entry lang="zh-hk" key="NEW_VERSION_REQUIRED">需要較新版本的 VeraCrypt 來掛載這個加密區。</entry> - <entry lang="zh-hk" key="VOL_CREATION_WIZARD_NOT_FOUND">錯誤:找不到加密區建立精靈。\n\n請確認執行檔「VeraCrypt Format.exe」位於「VeraCrypt.exe」執行時的資料夾內。如果找不到該檔案,請重新安裝 VeraCrypt,或在磁碟中尋找「VeraCrypt Format.exe」然後執行它。</entry> - <entry lang="zh-hk" key="VOL_EXPANDER_NOT_FOUND">錯誤:找不到加密區擴展精靈。\n\n請確認執行檔「VeraCryptExpander.exe」位於「VeraCrypt.exe」執行時的資料夾內。 如果不是,請重新安裝 VeraCrypt,或在磁碟中尋找「VeraCryptExpander.exe」 然後執行它。</entry> + <entry lang="zh-hk" key="VOL_CREATION_WIZARD_NOT_FOUND">錯誤:找不到加密區建立精靈。\n\n請確認執行檔 [VeraCrypt Format.exe] 位於 [VeraCrypt.exe] 執行時的資料夾內。如果找不到該檔案,請重新安裝 VeraCrypt,或在磁碟中尋找[VeraCrypt Format.exe]然後執行它。</entry> + <entry lang="zh-hk" key="VOL_EXPANDER_NOT_FOUND">錯誤:找不到加密區擴展精靈。\n\n請確認執行檔[VeraCryptExpander.exe]位於[VeraCrypt.exe]執行時的資料夾內。 如果不是,請重新安裝 VeraCrypt,或在磁碟中尋找[VeraCryptExpander.exe] 然後執行它。</entry> <entry lang="zh-hk" key="NEXT">下一步(&N) ></entry> @@ -586,9 +586,9 @@ <entry lang="zh-hk" key="NO_FREE_DRIVE_FOR_OUTER_VOL">沒有可用磁碟機代號供外層加密區使用! 無法繼續建立加密區。</entry> - <entry lang="zh-hk" key="NO_OS_VER">無法判斷作業系統的版本,或您正在使用不支援的作業系統。</entry> + <entry lang="zh-hk" key="NO_OS_VER">無法判斷作業系統的版本,或你正在使用不支援的作業系統。</entry> <entry lang="zh-hk" key="NO_PATH_SELECTED">未有選擇路徑!</entry> <entry lang="zh-hk" key="NO_SPACE_FOR_HIDDEN_VOL">建立隱藏加密區的可用空間不足! 加密區建立無法繼續。</entry> - <entry lang="zh-hk" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">錯誤:您複製到外層加密區的檔案佔用的過多空間。因此,沒有足夠的空間建立隱藏加密區。\n\n注意,隱藏加密區的容量至少要大於系統分割區(當前運行的系統所在的分割區)的容量。原因是隱形作業系統需要把系統分割區的內容完全複製到隱藏加密區來建立。\n\n\n建立隱形作業系統的程序無法再繼續。</entry> + <entry lang="zh-hk" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">錯誤:你複製到外層加密區的檔案佔用的過多空間。因此,沒有足夠的空間建立隱藏加密區。\n\n注意,隱藏加密區的容量至少要大於系統分割區(當前運行的系統所在的分割區)的容量。原因是隱形作業系統需要把系統分割區的內容完全複製到隱藏加密區來建立。\n\n\n建立隱形作業系統的程序無法再繼續。</entry> <entry lang="zh-hk" key="OPENFILES_DRIVER">驅動程式無法解除掛載這個加密區。加密區上有些檔案可能仍然被打開。</entry> <entry lang="zh-hk" key="OPENFILES_LOCK">無法鎖定這個加密區。加密區上仍有些檔案被打開。因此無法解除掛載。</entry> - <entry lang="zh-hk" key="VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT">VeraCrypt 無法鎖定這個加密區,因為作業系統或者其他程式正在使用中(例如加密區中有檔案被打開)。\n\n您確認要強制解除掛載加密區嗎?</entry> + <entry lang="zh-hk" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt 無法鎖定這個加密區,因為作業系統或者其他程式正在使用中(例如加密區中有檔案被打開)。\n\n你確認要強制解除掛載加密區嗎?</entry> <entry lang="zh-hk" key="OPEN_VOL_TITLE">請選擇一個 VeraCrypt 加密區</entry> @@ -597,9 +597,9 @@ <entry lang="zh-hk" key="OUTOFMEMORY">記憶體不足</entry> - <entry lang="zh-hk" key="FORMAT_DEVICE_FOR_ADVANCED_ONLY">重要:我們強烈建議新手用戶在指定的分割區/裝置內建立檔類型的加密區,而不是嘗試加密整個分割區或磁碟機。\n\n例如,當您建立一個 VeraCrypt 加密區容器檔案時(相對於加密整個分割區或磁碟機),則不存在毀壞大量檔案的風險。請注意,一個 VeraCrypt 加密區容器檔案(儘管其包含虛擬的加密區)事實上就像一個普通的檔一樣。如若獲取更多資訊,請參考「VeraCrypt 使用者指南」中的「Beginner's Tutorial」 章節。\n\n您確認要加密整個磁碟機/分割區嗎?</entry> - <entry lang="zh-hk" key="OVERWRITEPROMPT">警告:加密區「%s」已存在!\n\n重要:VeraCrypt 將不會加密這個檔案,而是將會刪除這個檔案。 您確定要刪除這個檔案並用一個新的 VeraCrypt 加密區容器檔案來取代它嗎?</entry> - <entry lang="zh-hk" key="OVERWRITEPROMPT_DEVICE">注意:目前儲存在所選的 %s 「%s」%s 上的所有資料將會抹除並且丟失(它們並不會被加密)!\n\n您確定要繼續格式化嗎?</entry> - <entry lang="zh-hk" key="NONSYS_INPLACE_ENC_CONFIRM">警告:在磁碟區完全加密之前,你將不能掛載此磁碟區或者存取儲存於該磁碟區上的任何檔案。\n\n您確定要開始加密這個 %s 「%s」%s 嗎?</entry> - <entry lang="zh-hk" key="NONSYS_INPLACE_DEC_CONFIRM">警告:在磁碟區完全解密之前你將不能掛載此磁碟區或者存取儲存於該磁碟區上的任何檔案。\n\n您確定要開始解密所選的 %s 「%s」%s 嗎?</entry> - <entry lang="zh-hk" key="NONSYS_INPLACE_ENC_CONFIRM_BACKUP">警告:請注意如果在就地加密現有資料時突然斷電,或者在 VeraCrypt 就地加密現有資料時由於軟硬體故障而導致系統當機,有些資料可能會損壞或丟失。因此,在您開始加密前,請確認您已經備份了要加密的資料。\n\n您確認已經有這樣的備份了嗎?</entry> - <entry lang="zh-hk" key="OVERWRITEPROMPT_DEVICE_HIDDEN_OS_PARTITION">注意:所有儲存在分割區 「%s」%s(位於系統分割區後面的第一個分割區) 內的檔將會因被抹除而丟失。(這些檔並不會被加密)!\n\n您確認要繼續格式化嗎?</entry> + <entry lang="zh-hk" key="FORMAT_DEVICE_FOR_ADVANCED_ONLY">重要:我們強烈建議新手用戶在指定的分割區/裝置內建立檔類型的加密區,而不是嘗試加密整個分割區或磁碟機。\n\n例如,當你建立一個 VeraCrypt 加密區容器檔案時(相對於加密整個分割區或磁碟機),則不存在毀壞大量檔案的風險。請注意,一個 VeraCrypt 加密區容器檔案(儘管其包含虛擬的加密區)事實上就像一個普通的檔一樣。如若獲取更多資訊,請參考 [VeraCrypt 使用者指南] 中的 [Beginner's Tutorial] 章節。\n\n你確認要加密整個磁碟機/分割區嗎?</entry> + <entry lang="zh-hk" key="OVERWRITEPROMPT">警告:加密區 [%s] 已存在!\n\n重要:VeraCrypt 將不會加密這個檔案,而是將會刪除這個檔案。 你確定要刪除這個檔案並用一個新的 VeraCrypt 加密區容器檔案來取代它嗎?</entry> + <entry lang="zh-hk" key="OVERWRITEPROMPT_DEVICE">請注意:目前儲存在所選的 %s [%s]%s 上的所有資料將會抹除並且丟失(它們並不會被加密)!\n\n你確定要繼續格式化嗎?</entry> + <entry lang="zh-hk" key="NONSYS_INPLACE_ENC_CONFIRM">警告:在磁碟區完全加密之前,你將不能掛載此磁碟區或者存取儲存於該磁碟區上的任何檔案。\n\n你確定要開始加密這個 %s [%s]%s 嗎?</entry> + <entry lang="zh-hk" key="NONSYS_INPLACE_DEC_CONFIRM">警告:在磁碟區完全解密之前你將不能掛載此磁碟區或者存取儲存於該磁碟區上的任何檔案。\n\n你確定要開始解密所選的 %s [%s]%s 嗎?</entry> + <entry lang="zh-hk" key="NONSYS_INPLACE_ENC_CONFIRM_BACKUP">警告:請注意如果在就地加密現有資料時突然斷電,或者在 VeraCrypt 就地加密現有資料時由於軟硬體故障而導致系統當機,有些資料可能會損壞或丟失。因此,在你開始加密前,請確認你已經備份了要加密的資料。\n\n你確認已經有這樣的備份了嗎?</entry> + <entry lang="zh-hk" key="OVERWRITEPROMPT_DEVICE_HIDDEN_OS_PARTITION">請注意:所有儲存在分割區 [%s]%s(位於系統分割區後面的第一個分割區) 內的檔將會因被抹除而丟失。(這些檔並不會被加密)!\n\n你確認要繼續格式化嗎?</entry> <entry lang="zh-hk" key="OVERWRITEPROMPT_DEVICE_SECOND_WARNING_LOTS_OF_DATA">警告:指定的分割區包含大量的資料!!!任何儲存於此分割區上的檔將會被抹除(這些數據並不會被加密)!</entry> @@ -611,7 +611,7 @@ <entry lang="zh-hk" key="IDD_PCDM_REMOVE_ALL_KEYFILES_FROM_VOL">從加密區中移除所有加密鑰檔案</entry> - <entry lang="zh-hk" key="PASSWORD_CHANGED">密碼和/或加密鑰檔案已成功修改。\n\n重要:請確認您已經閱讀了用戶指南內「Security Requirements and Precautions」章節中「Changing Passwords and Keyfiles」的部分。</entry> - <entry lang="zh-hk" key="FAVORITE_PIM_CHANGED">此磁碟區已登記成為喜愛的系統磁碟區及其 PIM 已經變更。\n您是否需要 VeraCrypt 自動更新喜愛的系統磁碟區設定 (必須系統管理員權限)?\n\n請注意如您的回應為否,你將需要手動更新喜愛的系統磁碟區。</entry> - <entry lang="zh-hk" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">重要:如果您不銷毀 VeraCrypt 救機光碟,您的系統分割區或磁碟機仍然可以通過使用舊密碼解密(通過 VeraCrypt 救機光碟來開機和輸入舊密碼)。您應該建立一個新的 VeraCrypt 救機光碟,之後銷毀原先的救機光碟。\n\n您希望建立一個新的 VeraCrypt 救機光碟嗎?</entry> - <entry lang="zh-hk" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">請注意,VeraCrypt 救機光碟仍然使用著早期的加密演算法。如果您覺的先前的加密演算法不安全,您應該建立一個新的 VeraCrypt 救機光碟,之後銷毀原先的救機光碟。\n\n您希望建立一個新的 VeraCrypt 救機光碟嗎?</entry> - <entry lang="zh-hk" key="KEYFILES_NOTE">注意 VeraCrypt 絕不會修改加密鑰檔案的內容。您可選擇多於一個加密鑰檔案(次序並不重要)。如果您新增一個資料夾,所有內含的非隱藏檔案都會用作加密鑰檔案。選擇「加入令牌檔案」以選取儲存在安全鑰匙或智能卡 (或者匯入加密鑰檔案到安全鑰匙或智能卡)。</entry> + <entry lang="zh-hk" key="PASSWORD_CHANGED">密碼和/或加密鑰檔案已成功修改。\n\n重要:請確認你已經閱讀了用戶指南內 [Security Requirements and Precautions] 章節中 [Changing Passwords and Keyfiles] 的部分。</entry> + <entry lang="zh-hk" key="FAVORITE_PIM_CHANGED">此磁碟區已登記成為喜愛的系統磁碟區及其 PIM 已經變更。\n你是否需要 VeraCrypt 自動更新喜愛的系統磁碟區設定 (必須系統管理員權限)?\n\n請注意如你的回應為否,你將需要手動更新喜愛的系統磁碟區。</entry> + <entry lang="zh-hk" key="SYS_PASSWORD_CHANGED_ASK_RESCUE_DISK">重要:如果你不銷毀 VeraCrypt 救機光碟,你的系統分割區或磁碟機仍然可以通過使用舊密碼解密(通過 VeraCrypt 救機光碟來開機和輸入舊密碼)。你應該建立一個新的 VeraCrypt 救機光碟,之後銷毀原先的救機光碟。\n\n你希望建立一個新的 VeraCrypt 救機光碟嗎?</entry> + <entry lang="zh-hk" key="SYS_HKD_ALGO_CHANGED_ASK_RESCUE_DISK">請注意,VeraCrypt 救機光碟仍然使用著早期的加密演算法。如果你覺的先前的加密演算法不安全,你應該建立一個新的 VeraCrypt 救機光碟,之後銷毀原先的救機光碟。\n\n你希望建立一個新的 VeraCrypt 救機光碟嗎?</entry> + <entry lang="zh-hk" key="KEYFILES_NOTE">任何類型的檔案 (例如, .mp3, .jpg, .zip, .avi) 都可以用作 VeraCrypt 加密鑰檔案。注意 VeraCrypt 絕不會修改加密鑰檔案的內容。你可選擇多於一個加密鑰檔案(次序並不重要)。如果你新增一個資料夾,所有內含的非隱藏檔案都會用作加密鑰檔案。選擇 [加入令牌檔案] 以選取儲存在安全性權杖或智能卡 (或者匯入加密鑰檔案到安全性權杖或智能卡)。</entry> <entry lang="zh-hk" key="KEYFILE_CHANGED">加密鑰檔案已成功新增/移除。</entry> @@ -619,12 +619,12 @@ <entry lang="zh-hk" key="PKCS5_PRF_CHANGED">首密鑰衍生演算法已成功設定。</entry> - <entry lang="zh-hk" key="NONSYS_INPLACE_ENC_RESUME_PASSWORD_PAGE_HELP">請為您想要繼續就地加密的非系統分割區輸入密碼和/或加密鑰檔案。\n\n\n注解:在您按 「下一步」 之後,VeraCrypt 將嘗試查找所有加密過程已被中斷的非系統分割區(這些中斷加密的分割區的 VeraCrypt 標頭數據可以使用提供的密碼 和/或 加密鑰檔案解密)。如果發現了多個此類的分割區,您需要在下個步驟裏面選擇他們其中的一個。</entry> + <entry lang="zh-hk" key="NONSYS_INPLACE_ENC_RESUME_PASSWORD_PAGE_HELP">請為你想要繼續就地加密的非系統分割區輸入密碼和/或加密鑰檔案。\n\n\n注解:在你按 [下一步] 之後,VeraCrypt 將嘗試查找所有加密過程已被中斷的非系統分割區(這些中斷加密的分割區的 VeraCrypt 標頭數據可以使用提供的密碼 和/或 加密鑰檔案解密)。如果發現了多個此類的分割區,你需要在下個步驟裏面選擇他們其中的一個。</entry> <entry lang="zh-hk" key="NONSYS_INPLACE_ENC_RESUME_VOL_SELECT_HELP">請選擇下面列表中的一個加密區。此列表包含所有加密被中斷非系統加密區,它們的標頭數據可以使用提供的密碼 和/或 加密鑰檔案解密。</entry> - <entry lang="zh-hk" key="NONSYS_INPLACE_DEC_PASSWORD_PAGE_HELP">請輸入您想解密的非系統 VeraCrypt 加密區的密碼和/或加密鑰檔案。</entry> - <entry lang="zh-hk" key="PASSWORD_HELP">選擇一個安全的密碼非常重要。您應該避免選取能夠在字典中查到的簡單辭彙(或是 2、3、4 個這類字元的組合)作為密碼,也不應包含任何名字或生日,同時也不應該容易被猜到。安全的密碼應該包含隨機的大小寫字元、數位、以及類似 @ ^ = $ * + 這樣的特殊字元。我們推薦使用大於 20 個字元的密碼 (越長越好)。密碼最長容許的長度為 128 個字元。</entry> + <entry lang="zh-hk" key="NONSYS_INPLACE_DEC_PASSWORD_PAGE_HELP">請輸入你想解密的非系統 VeraCrypt 加密區的密碼和/或加密鑰檔案。</entry> + <entry lang="zh-hk" key="PASSWORD_HELP">選擇一個安全的密碼非常重要。你應該避免選取能夠在字典中查到的簡單辭彙(或是 2、3、4 個這類字元的組合)作為密碼,也不應包含任何名字或生日,同時也不應該容易被猜到。安全的密碼應該包含隨機的大小寫字元、數位、以及類似 @ ^ = $ * + 這樣的特殊字元。我們推薦使用大於 20 個字元的密碼 (越長越好)。密碼最長容許的長度為 128 個字元。</entry> <entry lang="zh-hk" key="PASSWORD_HIDDENVOL_HELP">請為隱藏加密區選擇一個密碼。 </entry> <entry lang="zh-hk" key="PASSWORD_HIDDEN_OS_HELP">請為隱藏作業系統設定一個密碼(即隱藏加密區的密碼)。</entry> - <entry lang="zh-hk" key="PASSWORD_HIDDEN_OS_NOTE">重要:您在本步驟中為隱形作業系統設定的密碼必須絕對不同於其他的兩個密碼(也就是要不同於外層加密區的密碼和偽裝作業系統的密碼)。</entry> - <entry lang="zh-hk" key="PASSWORD_HIDDENVOL_HOST_DIRECT_HELP">請輸入外層加密區的密碼(您將在該加密區中建立隱藏加密區)。\n\n在按一下「下一步」後,VeraCrypt 會嘗試掛載此加密區。一旦加密區被掛載,將進行簇狀圖掃描來確定連續的自由空間大小(如果有的話),此空間的尾部與加密區尾部一致。該區域將提供給隱藏加密區並因此會限制它的最大可能大小。簇狀圖掃描是必要的,這可以確保外層磁碟區的資料不會被隱藏磁碟區覆蓋。</entry> - <entry lang="zh-hk" key="PASSWORD_HIDDENVOL_HOST_HELP">\n請選擇外層加密區的密碼。在您被攻擊者強迫說出啟動驗證密碼的情況下,這個密碼可以告訴攻擊者。\n\n重要:您為外層加密區選擇的密碼必須不同於隱藏加密區的密碼。\n\n說明:密碼的最大長度為 128 個字元。</entry> - <entry lang="zh-hk" key="PASSWORD_SYSENC_OUTERVOL_HELP">請選擇外層加密區的密碼。在您被攻擊者強迫說出系統分割區後面的第一個分割區(外層加密區和包含隱形作業系統的隱藏加密區均位於這個分割區)密碼的情況下,這個密碼可以告訴這些攻擊者。而隱藏加密區和隱形作業系統仍然是安全的。需要注意的是,外層加密區的密碼並不是偽裝作業系統的密碼。\n\n重要:您為偽裝作業系統選擇的密碼必須不同於隱藏加密區的密碼(也就是隱形作業系統的密碼)。</entry> + <entry lang="zh-hk" key="PASSWORD_HIDDEN_OS_NOTE">重要:你在本步驟中為隱形作業系統設定的密碼必須絕對不同於其他的兩個密碼(也就是要不同於外層加密區的密碼和偽裝作業系統的密碼)。</entry> + <entry lang="zh-hk" key="PASSWORD_HIDDENVOL_HOST_DIRECT_HELP">請輸入外層加密區的密碼(你將在該加密區中建立隱藏加密區)。\n\n在按一下 [下一步] 後,VeraCrypt 會嘗試掛載此加密區。一旦加密區被掛載,將進行簇狀圖掃描來確定連續的自由空間大小(如果有的話),此空間的尾部與加密區尾部一致。該區域將提供給隱藏加密區並因此會限制它的最大可能大小。簇狀圖掃描是必要的,這可以確保外層磁碟區的資料不會被隱藏磁碟區覆蓋。</entry> + <entry lang="zh-hk" key="PASSWORD_HIDDENVOL_HOST_HELP">\n請選擇外層加密區的密碼。在你被攻擊者強迫說出啟動驗證密碼的情況下,這個密碼可以告訴攻擊者。\n\n重要:你為外層加密區選擇的密碼必須不同於隱藏加密區的密碼。\n\n說明:密碼的最大長度為 128 個字元。</entry> + <entry lang="zh-hk" key="PASSWORD_SYSENC_OUTERVOL_HELP">請選擇外層加密區的密碼。在你被攻擊者強迫說出系統分割區後面的第一個分割區(外層加密區和包含隱形作業系統的隱藏加密區均位於這個分割區)密碼的情況下,這個密碼可以告訴這些攻擊者。而隱藏加密區和隱形作業系統仍然是安全的。需要注意的是,外層加密區的密碼並不是偽裝作業系統的密碼。\n\n重要:你為偽裝作業系統選擇的密碼必須不同於隱藏加密區的密碼(也就是隱形作業系統的密碼)。</entry> <entry lang="zh-hk" key="PASSWORD_HIDVOL_HOST_TITLE">外層加密區密碼</entry> @@ -632,11 +632,11 @@ <entry lang="zh-hk" key="PASSWORD_HIDDEN_OS_TITLE">隱形作業系統的密碼</entry> - <entry lang="zh-hk" key="PASSWORD_LENGTH_WARNING">警告:簡短密碼容易被利用暴力破解方式破解!\n\n我們建議選擇一個超過 20 個字元的密碼。\n\n您確定要使用簡短的密碼嗎?</entry> + <entry lang="zh-hk" key="PASSWORD_LENGTH_WARNING">警告:簡短密碼容易被利用暴力破解方式破解!\n\n我們建議選擇一個超過 20 個字元的密碼。\n\n你確定要使用簡短的密碼嗎?</entry> <entry lang="zh-hk" key="PASSWORD_TITLE">加密區密碼</entry> - <entry lang="zh-hk" key="PASSWORD_WRONG">操作因以下一個或多個原因而失敗:\n - 錯誤的密碼。\n - 錯誤的加密區 PIM 數值。\n - 錯誤的 PRF (校驗碼)。\n - 並非有效的加密區。</entry> - <entry lang="zh-hk" key="PASSWORD_OR_KEYFILE_WRONG">操作因以下一個或多個原因而失敗:\n - 錯誤的加密鑰檔案。\n - 錯誤的密碼。\n - 錯誤的加密區 PIM 數值。\n - 錯誤的 PRF (校驗碼)。\n - 並非有效的加密區。</entry> - <entry lang="zh-hk" key="PASSWORD_OR_MODE_WRONG">操作因以下一個或多個原因而失敗:\n - 不正確的掛載模式。\n - 錯誤的密碼。\n - 錯誤的加密區 PIM 數值。\n - 錯誤的 PRF (校驗碼)。\n - 並非有效的加密區。</entry> - <entry lang="zh-hk" key="PASSWORD_OR_KEYFILE_OR_MODE_WRONG">操作因以下一個或多個原因而失敗:\n - 不正確的掛載模式。\n - 錯誤的加密鑰檔案。\n - 錯誤的密碼。\n - 錯誤的加密區 PIM 數值。\n - 錯誤的 PRF (校驗碼)。\n - 並非有效的加密區。</entry> - <entry lang="zh-hk" key="PASSWORD_WRONG_AUTOMOUNT">自動掛載因以下一個或多個原因而失敗:\n - 錯誤的密碼。\n - 錯誤的加密區 PIM 數值。\n - 錯誤的 PRF (校驗碼)。\n - 找不到有效的加密區。</entry> - <entry lang="zh-hk" key="PASSWORD_OR_KEYFILE_WRONG_AUTOMOUNT">自動掛載因以下一個或多個原因而失敗:\n - 錯誤的加密鑰檔案。\n - 錯誤的密碼。\n - 錯誤的加密區 PIM 數值。\n - 錯誤的 PRF (校驗碼)。\n - 找不到有效的加密區。</entry> - <entry lang="zh-hk" key="PASSWORD_WRONG_CAPSLOCK_ON">\n\n警告:Caps Lock 已經開啟。這可能導致您輸入錯誤的密碼。</entry> + <entry lang="zh-hk" key="PASSWORD_WRONG">操作因以下一個或多個原因而失敗:\n - 錯誤的密碼。\n - 錯誤的加密區 PIM 數值。\n - 錯誤的 PRF (雜湊值)。\n - 並非有效的加密區。\n - 加密區使用了非常舊並已經移除的的演算法。\n - TrueCrypt 格式的加密區已不再支援。</entry> + <entry lang="zh-hk" key="PASSWORD_OR_KEYFILE_WRONG">操作因以下一個或多個原因而失敗:\n - 錯誤的加密鑰檔案。\n - 錯誤的密碼。\n - 錯誤的加密區 PIM 數值。\n - 錯誤的 PRF (雜湊值)。\n - 並非有效的加密區。\n - 加密區使用了非常舊並已經移除的的演算法。\n - TrueCrypt 格式的加密區已不再支援。</entry> + <entry lang="zh-hk" key="PASSWORD_OR_MODE_WRONG">操作因以下一個或多個原因而失敗:\n - 不正確的掛載模式。\n - 錯誤的密碼。\n - 錯誤的加密區 PIM 數值。\n - 錯誤的 PRF (雜湊值)。\n - 並非有效的加密區。\n - 加密區使用了非常舊並已經移除的的演算法。\n - TrueCrypt 格式的加密區已不再支援。</entry> + <entry lang="zh-hk" key="PASSWORD_OR_KEYFILE_OR_MODE_WRONG">操作因以下一個或多個原因而失敗:\n - 不正確的掛載模式。\n - 錯誤的加密鑰檔案。\n - 錯誤的密碼。\n - 錯誤的加密區 PIM 數值。\n - 錯誤的 PRF (雜湊值)。\n - 並非有效的加密區。\n - 加密區使用了非常舊並已經移除的的演算法。\n - TrueCrypt 格式的加密區已不再支援。</entry> + <entry lang="zh-hk" key="PASSWORD_WRONG_AUTOMOUNT">自動掛載因以下一個或多個原因而失敗:\n - 錯誤的密碼。\n - 錯誤的加密區 PIM 數值。\n - 錯誤的 PRF (雜湊值)。\n - 找不到有效的加密區。\n - 加密區使用了非常舊並已經移除的的演算法。\n - TrueCrypt 格式的加密區已不再支援。</entry> + <entry lang="zh-hk" key="PASSWORD_OR_KEYFILE_WRONG_AUTOMOUNT">自動掛載因以下一個或多個原因而失敗:\n - 錯誤的加密鑰檔案。\n - 錯誤的密碼。\n - 錯誤的加密區 PIM 數值。\n - 錯誤的 PRF (雜湊值)。\n - 找不到有效的加密區。\n - 加密區使用了非常舊並已經移除的的演算法。\n - TrueCrypt 格式的加密區已不再支援。</entry> + <entry lang="zh-hk" key="PASSWORD_WRONG_CAPSLOCK_ON">\n\n警告:Caps Lock 已經啟用。這可能導致你輸入錯誤的密碼。</entry> <entry lang="zh-hk" key="PIM_CHANGE_WARNING">記住這個數字以掛載加密區</entry> @@ -645,21 +645,21 @@ <entry lang="zh-hk" key="PIM_HIDDEN_OS_TITLE">隱藏系統 PIM</entry> - <entry lang="en" key="PIM_HELP">PIM (Personal Iterations Multiplier) is a value that controls the number of iterations used by the header key derivation as follows:\n Iterations = 15000 + (PIM x 1000).\n\nWhen left empty or set to 0, VeraCrypt will use a default value (485) that ensures a high security.\n\nWhen the password is less than 20 characters, PIM can't be smaller than 485 in order to maintain a minimal security level.\nWhen the password is 20 characters or more, PIM can be set to any value.\n\nA PIM value larger than 485 will lead to slower mount. A small PIM value (less than 485) will lead to a quicker mount but it can reduce security if the password is not strong enough.</entry> - <entry lang="en" key="PIM_SYSENC_HELP">PIM (Personal Iterations Multiplier) is a value that controls the number of iterations used by the header key derivation as follows:\n Iterations = PIM x 2048.\n\nWhen left empty or set to 0, VeraCrypt will use a default value that ensures a high security.\n\nWhen the password is less than 20 characters, PIM can't be smaller than 98 in order to maintain a minimal security level.\nWhen the password is 20 characters or more, PIM can be set to any value.\n\nA PIM value larger than 98 will lead to slower boot. A small PIM value (less than 98) will lead to a quicker boot but it can reduce security if the password is not strong enough.</entry> + <entry lang="zh-hk" key="PIM_HELP">PIM (個人迭代倍數, Personal Iterations Multiplier)是一個標頭數據加密鑰衍生演算法用來控制迭代次數數目的數值如下所示:\n 迭代次數 = 15000 + (PIM x 1000)。\n\n當該數值留空或設定為 0 時,VeraCrypt 將會使用預設數值 (485) 以確保高度的安全性。\n\n當密碼的長度短於 20 字元時,PIM 的數值不可少於 485 以保持最低限度的安全性程度。\n當密碼的長度是 20 或更長時, PIM 可以設定為任何數值。\n\n一個大於 485 的 PIM 數值會引致掛載速度緩慢。一個細的 PIM 數值 (少於 485) 將可以令掛載速度較快,但如果同時密碼強度不足的話則會降低安全性。</entry> + <entry lang="zh-hk" key="PIM_SYSENC_HELP">PIM (個人迭代倍數, Personal Iterations Multiplier)是一個標頭數據加密鑰衍生演算法用來控制迭代次數數目的數值如下所示:\n 迭代次數 = PIM x 2048.\n\n。\n\n當該數值留空或設定為 0 時,VeraCrypt 將會使用預設數值以確保高度的安全性。\n\n當密碼的長度短於 20 字元時,PIM 的數值不可少於 98 以保持最低限度的安全性程度。\n當密碼的長度是 20 或更長時, PIM 可以設定為任何數值。\n\n一個大於 98 的 PIM 數值會引致開機速度緩慢。一個細的 PIM 數值 (少於 98) 將可以令開機速度較快,但如果同時密碼強度不足的話則會降低安全性。</entry> <entry lang="zh-hk" key="PIM_SYSENC_CHANGE_WARNING">記住這個用來重新啟動系統的數字</entry> <entry lang="zh-hk" key="PIM_LARGE_WARNING">選擇了一個大於 VeraCrypt 預設的 PIM 值。\n請注意這樣會造成掛載/啟動速度變慢。</entry> - <entry lang="en" key="PIM_SMALL_WARNING">You have chosen a Personal Iterations Multiplier (PIM) that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to a weaker security.\n\nDo you confirm that you are using a strong password?</entry> - <entry lang="en" key="PIM_SYSENC_TOO_BIG">Personal Iterations Multiplier (PIM) maximum value for system encryption is 65535.</entry> + <entry lang="zh-hk" key="PIM_SMALL_WARNING">你已選擇了數值細於預設的個人迭代倍數(Personal Iterations Multiplier, PIM)。請注意如你的密碼強度不足的話,將會引致較弱的安全性。\n\n你是否確認會使用一個強度高的密碼?</entry> + <entry lang="zh-hk" key="PIM_SYSENC_TOO_BIG">用於系統加密的個人迭代倍數(Personal Iterations Multiplier, PIM) 最大數值為 65535</entry> <entry lang="zh-hk" key="PIM_TITLE">加密區 PIM</entry> - <entry lang="en" key="HIDDEN_FILES_PRESENT_IN_KEYFILE_PATH">\n\nWARNING: Hidden file(s) have been found in a keyfile search path. Such hidden files cannot be used as keyfiles. If you need to use them as keyfiles, remove their 'Hidden' attribute (right-click each of them, select 'Properties', uncheck 'Hidden' and click OK). Note: Hidden files are visible only if the corresponding option is enabled (Computer > Organize > 'Folder and search options' > View).</entry> - <entry lang="zh-hk" key="HIDDEN_VOL_PROT_PASSWORD_US_KEYB_LAYOUT">如果您嘗試保護包含隱形系統的隱藏加密區,請確認輸入隱藏加密區密碼時您正在使用標準的美國鍵盤配置。這是因為這些密碼實在啟動驗證環境中輸入的,而此時非美國鍵盤配置將無法使用。</entry> + <entry lang="zh-hk" key="HIDDEN_FILES_PRESENT_IN_KEYFILE_PATH">\n\n警告:在加密鑰檔案的搜尋路徑中找到一個或多個的隱藏的檔案,這些檔案將不會用作加密鑰檔案。如你想要使用這些檔案作為加密鑰檔案,請移除這些檔案的隱藏屬性 (右按每個檔案然後選擇 [內容],取消剔選 [隱藏] 然後按 [確定])。請注意:隱藏檔案只會在相關選項啟用時才會被顯示 (本機 > 整理 > [變更資料夾和搜尋選項] > 檢示)。</entry> + <entry lang="zh-hk" key="HIDDEN_VOL_PROT_PASSWORD_US_KEYB_LAYOUT">如果你嘗試保護包含隱形系統的隱藏加密區,請確認輸入隱藏加密區密碼時你正在使用標準的美國鍵盤配置。這是因為這些密碼實在啟動驗證環境中輸入的,而此時非美國鍵盤配置將無法使用。</entry> <entry lang="zh-hk" key="FOUND_NO_PARTITION_W_DEFERRED_INPLACE_ENC">VeraCrypt 未發現加密過程被中斷的,同時標頭數據可以使用提供的密碼 和/或 加密鑰檔案解密的非系統分割區。\n\n請確認密碼 和/或 加密鑰檔案是正確的,並且確認此 分割區/磁碟區 並未被作業系統或其他程式(也包含殺毒軟件)佔用。</entry> - <entry lang="en" key="SELECTED_PARTITION_ALREADY_INPLACE_ENC">The selected partition/device is already fully encrypted.\nHeader Flags = 0x%.8X</entry> - <entry lang="en" key="SELECTED_PARTITION_NOT_INPLACE_ENC">The selected partition/device is not using in-place encryption.\nHeader Flags = 0x%.8X</entry> - <entry lang="zh-hk" key="SYSENC_MOUNT_WITHOUT_PBA_NOTE">\n\n注意:如果您試圖掛載不帶有啟動驗證的加密系統磁碟機中的分割區,或者是掛載沒有運行的加密系統分割區,您可以通過選擇「系統」 > 「以非啟動驗證方式掛載」。</entry> - <entry lang="zh-hk" key="MOUNT_WITHOUT_PBA_VOL_ON_ACTIVE_SYSENC_DRIVE">在此模式下,您不能掛載此磁碟機上的分割區(該磁碟機的部分內容處於當前活動加密系統的關鍵範圍)。\n\n要想以此模式掛載此分割區,您需要先啟動到安裝在不同磁碟機上的作業系統(與該系統是否加密無關),或者是先啟動一個未加密的作業系統。</entry> - <entry lang="zh-hk" key="CANT_DECRYPT_PARTITION_ON_ENTIRELY_ENCRYPTED_SYS_DRIVE">VeraCrypt 無法對完整加密的系統磁碟上進行個別分割區解密(僅能對整個磁碟予以解密)。</entry> - <entry lang="en" key="CANT_DECRYPT_PARTITION_ON_ENTIRELY_ENCRYPTED_SYS_DRIVE_UNSURE">Warning: As the drive contains the VeraCrypt Boot Loader, it may be an entirely encrypted system drive. If it is, please note that VeraCrypt cannot decrypt an individual partition on an entirely encrypted system drive (you can decrypt only the entire system drive). If that is the case, you will be able to continue now but you will receive the 'Incorrect password' error message later.</entry> + <entry lang="zh-hk" key="SELECTED_PARTITION_ALREADY_INPLACE_ENC">所選擇的分割區或裝置已經完整地加密。\n標頭標記 = 0x%.8X</entry> + <entry lang="zh-hk" key="SELECTED_PARTITION_NOT_INPLACE_ENC">>所選擇的分割區或裝置並非使用就地加密。\n標頭標記 = 0x%.8X</entry> + <entry lang="zh-hk" key="SYSENC_MOUNT_WITHOUT_PBA_NOTE">\n\n請注意:如果你嘗試掛載未經啟動驗證的加密系統磁碟機中的分割區,或者是掛載沒有運行的加密系統分割區,你可以通過選擇 [系統] > [以非啟動驗證方式掛載]。</entry> + <entry lang="zh-hk" key="MOUNT_WITHOUT_PBA_VOL_ON_ACTIVE_SYSENC_DRIVE">在這個模式,你不能掛載這個磁碟機上的分割區(該磁碟機的部分內容處於正在運作的加密系統的關鍵範圍)。\n\n要以這個模式來模式掛載此分割區,你需要先啟動到安裝於不同磁碟機上的作業系統(與該系統是否加密無關),或者先啟動一個未加密的作業系統。</entry> + <entry lang="zh-hk" key="CANT_DECRYPT_PARTITION_ON_ENTIRELY_ENCRYPTED_SYS_DRIVE">VeraCrypt 無法對完整加密的系統磁碟上進行個別分割區解密(僅能對整個磁碟進行解密)。</entry> + <entry lang="zh-hk" key="CANT_DECRYPT_PARTITION_ON_ENTIRELY_ENCRYPTED_SYS_DRIVE_UNSURE">警告:由於磁碟機內含 VeraCrypt 開機程式,這可能是已完整加密的系統磁碟機。如果是的話請注意 VeraCrypt 無法個別解密已完整加密的系統磁碟機內的分割區 (你只可以解密整個系統磁碟機)。如果是這個情況的話,你將可以現在繼續,但你將會稍後收到 [密碼不正確] 的錯誤訊息。</entry> <entry lang="zh-hk" key="PREV">< 上一步(&B)</entry> - <entry lang="zh-hk" key="RAWDEVICES">無法列出安裝在系統上的 raw 裝置!</entry> - <entry lang="zh-hk" key="READONLYPROMPT">加密區「%s」已存在,並且是唯讀的。您確定要代替它嗎?</entry> + <entry lang="zh-hk" key="RAWDEVICES">無法列出安裝於系統上的 raw 裝置!</entry> + <entry lang="zh-hk" key="READONLYPROMPT">加密區 [%s] 已存在,並且是唯讀的。你確定要代替它嗎?</entry> <entry lang="zh-hk" key="SELECT_DEST_DIR">選擇目標資料夾</entry> @@ -670,10 +670,10 @@ <entry lang="zh-hk" key="SERPENT_HELP">Serpent 為與 AES 競爭演算法中的一種。設計者為 Ross Anderson、Eli Biham、和 Lars Knudsen。發表於 1998 年。256 位密鑰,128 位元資料塊,操作模式為 XTS。</entry> - <entry lang="zh-hk" key="SIZE_HELP">請指定要建立的加密區的大小。\n\n如果您打算建立一個動態的(稀疏檔)容器,該參數對應於該容器的最大容量。\n\n注意:最小的 FAT 加密區大小為 292 KiB。最小的 NTFS 加密區大小為 3792 KiB。</entry> + <entry lang="zh-hk" key="SIZE_HELP">請指定要建立的加密區的大小。\n\n如果你打算建立一個動態的(稀疏檔)容器,該參數對應於該容器的最大容量。\n\n請注意:最小的 FAT 加密區大小為 292 KiB。最小的 NTFS 加密區大小為 3792 KiB。</entry> <entry lang="zh-hk" key="SIZE_HELP_HIDDEN_HOST_VOL">請指定要建立的外層加密區的大小(隨後將在其內建立隱藏加密區)。包含隱藏磁碟區的外層加密區最小可能容量為 340 KiB。</entry> - <entry lang="zh-hk" key="SIZE_HELP_HIDDEN_VOL">請指定要建立的隱藏加密區的大小。隱藏加密區的最小可能大小為 40 KiB(格式化為NTFS時為 3664 KiB)。最小可能的 NTFS 加密區大小為 2829 KiB。您可以指定加密區的最大容量如上面所示。</entry> + <entry lang="zh-hk" key="SIZE_HELP_HIDDEN_VOL">請指定要建立的隱藏加密區的大小。隱藏加密區的最小可能大小為 40 KiB(格式化為NTFS時為 3664 KiB)。最小可能的 NTFS 加密區大小為 2829 KiB。你可以指定加密區的最大容量如上面所示。</entry> <entry lang="zh-hk" key="SIZE_HIDVOL_HOST_TITLE">外層加密區大小</entry> <entry lang="zh-hk" key="SIZE_HIDVOL_TITLE">隱藏加密區大小</entry> - <entry lang="zh-hk" key="SIZE_PARTITION_HELP">請在確認指定的 分割區/裝置 的容量正確無誤後單擊「下一步」。</entry> - <entry lang="zh-hk" key="SIZE_PARTITION_HIDDEN_SYSENC_HELP">外層加密區和隱藏加密區(包含隱形作業系統)將存在於上面分割區。\n\n請確認上面顯示的分割區大小和數值是正確的,如果正確,請按「下一步」。</entry> - <entry lang="zh-hk" key="SIZE_PARTITION_HIDDEN_VOL_HELP">\n\n注意:如若在其內建立隱藏加密區,則外層加密區最小可能大小為 340 KiB。</entry> + <entry lang="zh-hk" key="SIZE_PARTITION_HELP">請在確認指定的 分割區/裝置 的容量正確無誤後單擊 [下一步]。</entry> + <entry lang="zh-hk" key="SIZE_PARTITION_HIDDEN_SYSENC_HELP">外層加密區和隱藏加密區(包含隱形作業系統)將存在於上面分割區。\n\n請確認上面顯示的分割區大小和數值是正確的,如果正確,請按[下一步]。</entry> + <entry lang="zh-hk" key="SIZE_PARTITION_HIDDEN_VOL_HELP">\n\n請注意:如若在其內建立隱藏加密區,則外層加密區最小可能大小為 340 KiB。</entry> <entry lang="zh-hk" key="SIZE_TITLE">加密區大小</entry> @@ -681,8 +681,8 @@ <entry lang="zh-hk" key="TESTS_FAILED">小心:自我檢查失敗!</entry> - <entry lang="zh-hk" key="TESTS_PASSED">全部演算法通過自我檢查</entry> - <entry lang="zh-hk" key="TEST_INCORRECT_TEST_DATA_UNIT_SIZE">您提供的資料單元數值太長或太短。</entry> - <entry lang="zh-hk" key="TEST_INCORRECT_SECONDARY_KEY_SIZE">您提供的次密鑰太長或太短。</entry> - <entry lang="zh-hk" key="TEST_CIPHERTEXT_SIZE">您提供的測試加密文本太長或太短。</entry> - <entry lang="zh-hk" key="TEST_KEY_SIZE">您提供的測試密鑰太長或太短。</entry> - <entry lang="zh-hk" key="TEST_PLAINTEXT_SIZE">您提供的測試純文字文本太長或太短。</entry> + <entry lang="zh-hk" key="TESTS_PASSED">全部演算法都通過自我檢查</entry> + <entry lang="zh-hk" key="TEST_INCORRECT_TEST_DATA_UNIT_SIZE">你提供的資料單元數值太長或太短。</entry> + <entry lang="zh-hk" key="TEST_INCORRECT_SECONDARY_KEY_SIZE">你提供的次密鑰太長或太短。</entry> + <entry lang="zh-hk" key="TEST_CIPHERTEXT_SIZE">你提供的測試加密文本太長或太短。</entry> + <entry lang="zh-hk" key="TEST_KEY_SIZE">你提供的測試密鑰太長或太短。</entry> + <entry lang="zh-hk" key="TEST_PLAINTEXT_SIZE">你提供的測試純文字文本太長或太短。</entry> <entry lang="zh-hk" key="TWO_LAYER_CASCADE_HELP">在 XTS 模式的層疊操作中需要兩個密碼。每個塊首先使用 %s(%d 位密鑰),之後使用 %s(%d 位密鑰加密。每個密碼使用其各自的密鑰。所有的密鑰均各自獨立。</entry> @@ -690,3 +690,3 @@ <entry lang="zh-hk" key="AUTORUN_MAY_NOT_ALWAYS_WORK">需要注意的是,依賴於作業系統配置,這些自動運行和自動掛載功能可能僅當隨身碟檔建立在非可讀寫 CD/DVD 類介質時才能使用。同樣也要注意這並不是 VeraCrypt 程式設計缺陷(而是 Windows 系統的限制)。</entry> - <entry lang="zh-hk" key="TRAVELER_DISK_CREATED">VeraCrypt 隨身碟已被成功建立。\n\n注意:您必須具有系統管理員身份才能以便攜模式運行 VeraCrypt。同時也要注意儘管以便攜模式運行 VeraCrypt,也可能能夠從註冊表中被檢測到曾經運行過 VeraCrypt。</entry> + <entry lang="zh-hk" key="TRAVELER_DISK_CREATED">VeraCrypt 隨身碟已被成功建立。\n\n請注意:你必須擁有系統管理員身份方可以便攜模式運行 VeraCrypt。同時也要注意儘管以便攜模式運行 VeraCrypt,也可能能夠從註冊表中被檢測到曾經運行過 VeraCrypt。</entry> <entry lang="zh-hk" key="TC_TRAVELER_DISK">VeraCrypt 隨身碟</entry> @@ -696,3 +696,3 @@ <entry lang="zh-hk" key="ERR_UNKNOWN">發生未預期的或未知錯誤(%d)。</entry> - <entry lang="zh-hk" key="UNMOUNTALL_LOCK_FAILED">一些加密區包含的檔或資料夾正在被應用程式或系統使用。\n\n要強行解除掛載嗎?</entry> + <entry lang="zh-hk" key="UNMOUNTALL_LOCK_FAILED">一些加密區包含的檔或資料夾正在被應用程式或系統使用中。\n\n要強行解除掛載嗎?</entry> <entry lang="zh-hk" key="UNMOUNT_BUTTON">解除掛載(&D)</entry> @@ -701,9 +701,9 @@ <entry lang="zh-hk" key="NO_VOLUME_MOUNTED_TO_DRIVE">指定的磁碟代號未掛載加密區。</entry> - <entry lang="zh-hk" key="VOL_ALREADY_MOUNTED">您嘗試要掛載的加密區已經被掛載。</entry> + <entry lang="zh-hk" key="VOL_ALREADY_MOUNTED">你嘗試要掛載的加密區已經被掛載。</entry> <entry lang="zh-hk" key="VOL_MOUNT_FAILED">嘗試掛載加密區時發生錯誤。</entry> <entry lang="zh-hk" key="VOL_SEEKING">在加密區裏定址時發生錯誤。</entry> - <entry lang="zh-hk" key="VOL_SIZE_WRONG">錯誤:錯誤的加密區大小.</entry> - <entry lang="en" key="WARN_QUICK_FORMAT">WARNING: You should use Quick Format 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 Quick Format?</entry> - <entry lang="zh-hk" key="CONFIRM_SPARSE_FILE">動態的容器是一個預先分配空間的 NTFS 稀疏檔案,它的物理大小(實際磁碟空間佔用)在有新資料新增到裏面的時候才會增加。\n\n警告: 以稀疏檔為基礎的加密區性能比一般加密區的效能比較差。稀疏檔基礎的加密區的安全性也要弱些-因為它有可能洩漏哪些加密區磁區未被使用的情況。另外,稀疏檔基礎的加密區無法實現隱蔽性(容納一個隱藏加密區)。同時需要注意到是如果資料被寫入到稀疏檔基礎的加密區,而此時主機檔案系統剩餘空間不足,加密的檔案系統可能會損壞。\n\n您確認要建立稀疏檔基礎的加密區嗎?</entry> - <entry lang="en" key="SPARSE_FILE_SIZE_NOTE">Note that the size of the dynamic container reported by Windows and by VeraCrypt will always be equal to its maximum size. To find out current physical size of the container (actual disk space it uses), right-click the container file (in a Windows Explorer window, not in VeraCrypt), then select 'Properties' and see the 'Size on disk' value.\n\nAlso note that if you move a dynamic container to another volume or drive, the physical size of the container will be extended to the maximum. (You can prevent that by creating a new dynamic container in the destination location, mounting it and then moving the files from the old container to the new one.)</entry> + <entry lang="zh-hk" key="VOL_SIZE_WRONG">錯誤:不正確的加密區大小。</entry> + <entry lang="zh-hk" key="WARN_QUICK_FORMAT">警告:你應該只在以下情況使用快速格式化\n\n1) 裝置上並沒有內含任何敏感數據並且無需要合理的否認。\n2) 這個裝置已經安全且完全地加密。\n\n你是否確認要使用快速格式化?</entry> + <entry lang="zh-hk" key="CONFIRM_SPARSE_FILE">動態的容器是一個預先分配空間的 NTFS 稀疏檔案,它的物理大小(實際磁碟空間佔用)在有新資料新增到裏面的時候才會增加。\n\n警告: 以稀疏檔為基礎的加密區性能比一般加密區的效能比較差。稀疏檔基礎的加密區的安全性也要弱些-因為它有可能洩漏哪些加密區磁區未被使用的情況。另外,稀疏檔基礎的加密區無法實現隱蔽性(容納一個隱藏加密區)。同時需要注意到是如果資料被寫入到稀疏檔基礎的加密區,而此時主機檔案系統剩餘空間不足,加密的檔案系統可能會損壞。\n\n你確認要建立稀疏檔基礎的加密區嗎?</entry> + <entry lang="zh-hk" key="SPARSE_FILE_SIZE_NOTE">請注意 Windows 報告動態加密容器的大小必定等同其最大的大小。要找出加密容器檔案的實際大小 (檔案實際佔用磁碟的空間),右按加密容器檔案 (在 Windows 的檔案總管中,而不是 VeraCrypt),然後選取 [內容] 並查看 [磁碟大小] 項目的數值。\n\n另外外請留意如果你移動態加密容器檔案到另一個磁碟區或磁碟機,加密容器檔案將會擴大至最大的大小。 (你可以透過在目的地建立新的動態加密容器並將其掛載,然後由舊的加密容器中移動檔案到新的加密容器,去避免這個情況發生。)</entry> <entry lang="zh-hk" key="PASSWORD_CACHE_WIPED_SHORT">密碼暫存已清除</entry> @@ -713,3 +713,3 @@ <entry lang="zh-hk" key="SELECT_A_MOUNTED_VOLUME">請在磁碟機列表中選擇一個已掛載的加密區。</entry> - <entry lang="zh-hk" key="AMBIGUOUS_VOL_SELECTION">當前選擇了兩個已掛載的加密區(一個位於磁碟機代號列表中,另外一個位於列表下面的文本輸入框中)。\n\n請選擇您要選擇的加密區:</entry> + <entry lang="zh-hk" key="AMBIGUOUS_VOL_SELECTION">當前選擇了兩個已掛載的加密區(一個位於磁碟機代號列表中,另外一個位於列表下面的文本輸入框中)。\n\n請選擇你要選擇的加密區:</entry> <entry lang="zh-hk" key="CANT_CREATE_AUTORUN">錯誤:無法建立 autorun.inf</entry> @@ -723,3 +723,3 @@ <entry lang="zh-hk" key="ERR_VOL_FORMAT_BAD">錯誤:錯誤的加密區格式。</entry> - <entry lang="zh-hk" key="ERR_HIDDEN_NOT_NORMAL_VOLUME">錯誤:您提供了一個隱藏加密區的密碼(而不是一般加密區的密碼)。</entry> + <entry lang="zh-hk" key="ERR_HIDDEN_NOT_NORMAL_VOLUME">錯誤:你提供了一個隱藏加密區的密碼(而不是一般加密區的密碼)。</entry> <entry lang="zh-hk" key="ERR_HIDDEN_VOL_HOST_ENCRYPTED_INPLACE">安全起見,隱藏加密區不能在帶有就地加密檔案系統的 VeraCrypt 加密區中建立(這是因為該磁碟區上的自由空間沒有填充亂數據)</entry> @@ -731,5 +731,5 @@ <entry lang="zh-hk" key="CANT_MOUNT_VOLUME">無法掛載加密區。</entry> - <entry lang="zh-hk" key="CANT_DISMOUNT_VOLUME">無法解除掛載加密區。</entry> - <entry lang="zh-hk" key="FORMAT_NTFS_FAILED">格式化為 NTFS 檔案系統時失敗。\n\n請選擇不同的檔案系統格式(如果可能的話)然後再嘗試一次。另外,您可以保留該磁碟區為未格式化磁碟區(檔案系統選擇為「無」),然後退出精靈,再掛載這個加密區,然後再使用系統或第三方的工具來格式化這個已經掛載的加密區(該掛載的磁碟區仍然為加密狀態)。</entry> - <entry lang="zh-hk" key="FORMAT_NTFS_FAILED_ASK_FAT">Windows 格式化加密區為 NTFS 時失敗。\n\n您希望格式化成 FAT 檔案系統嗎?</entry> + <entry lang="zh-hk" key="CANT_UNMOUNT_VOLUME">無法解除掛載加密區。</entry> + <entry lang="zh-hk" key="FORMAT_NTFS_FAILED">格式化為 NTFS 檔案系統時失敗。\n\n請選擇不同的檔案系統格式(如果可能的話)然後再嘗試一次。另外,你可以保留該磁碟區為未格式化磁碟區(檔案系統選擇為 [無]),然後退出精靈,再掛載這個加密區,然後再使用系統或第三方的工具來格式化這個已經掛載的加密區(該掛載的磁碟區仍然為加密狀態)。</entry> + <entry lang="zh-hk" key="FORMAT_NTFS_FAILED_ASK_FAT">Windows 格式化加密區為 NTFS 時失敗。\n\n你希望格式化成 FAT 檔案系統嗎?</entry> <entry lang="zh-hk" key="DEFAULT">預設</entry> @@ -749,5 +749,5 @@ <entry lang="zh-hk" key="HIDDEN_VOL_HOST_UNSUPPORTED_FILESYS_WIN2000">在 Windows 2000 作業系統,VeraCrypt 加密區建立精靈只能在 FAT 加密區內建立隱藏加密區。</entry> - <entry lang="zh-hk" key="HIDDEN_VOL_HOST_NTFS">注意:FAT 檔案系統比 NTFS 檔案系統更適合作為外層加密區(例如,如果外層加密區被格式化為 FAT 格式,能夠建立的隱藏加密區的大小可能會更大一些)。</entry> - <entry lang="zh-hk" key="HIDDEN_VOL_HOST_NTFS_ASK">注意:FAT 檔案系統比較 NTFS 檔案系統更適合作為外層加密區(例如,如果外層加密區被格式化為 FAT 格式,能夠建立的隱藏加密區的大小可能會更大一些)(原因是 NTFS 檔案系統總是在磁碟區的中部儲存內部資料,因此,隱藏加密區只能建立在外層加密區的後半部分)。\n\n您確認要繼續格式化外層為 NTFS 格式嗎?</entry> - <entry lang="zh-hk" key="OFFER_FAT_FORMAT_ALTERNATIVE">您想要把加密區格式化為 FAT 格式嗎?</entry> + <entry lang="zh-hk" key="HIDDEN_VOL_HOST_NTFS">請注意:FAT 檔案系統比 NTFS 檔案系統更適合作為外層加密區(例如,如果外層加密區被格式化為 FAT 格式,能夠建立的隱藏加密區的大小可能會更大一些)。</entry> + <entry lang="zh-hk" key="HIDDEN_VOL_HOST_NTFS_ASK">請注意:FAT 檔案系統比較 NTFS 檔案系統更適合作為外層加密區(例如,如果外層加密區被格式化為 FAT 格式,能夠建立的隱藏加密區的大小可能會更大一些)(原因是 NTFS 檔案系統總是在磁碟區的中部儲存內部資料,因此,隱藏加密區只能建立在外層加密區的後半部分)。\n\n你確認要繼續格式化外層為 NTFS 格式嗎?</entry> + <entry lang="zh-hk" key="OFFER_FAT_FORMAT_ALTERNATIVE">你想要把加密區格式化為 FAT 格式嗎?</entry> <entry lang="zh-hk" key="FAT_NOT_AVAILABLE_FOR_SO_LARGE_VOLUME">注意: 這個磁碟區無法格式化成 FAT,因為它超出 FAT32 檔案系統所支援的最大磁碟區大小以用於適合的磁區大小 (2 TiB 用於 512 位元組磁區及 16 TiB 用於 4096 位元組磁區).</entry> @@ -756,10 +756,10 @@ <entry lang="zh-hk" key="OUTER_VOLUME_TOO_SMALL_FOR_HIDDEN_OS_NTFS">錯誤:如果外層加密區被格式化為 NTFS,則它必須至少比系統分割區大 110%(2.1 倍)。原因是 NTFS 檔案系統總是在磁碟區的中部儲存內部資料,因此,隱藏加密區只能建立在外層加密區的後半部分。\n\n說明:外層加密區需和隱形作業系統位於同一分割區(即位於系統分割區後面的第一個分割區)。</entry> - <entry lang="zh-hk" key="NO_PARTITION_FOLLOWS_BOOT_PARTITION">錯誤:在系統分割區後面沒有其他分割區。\n\n注意,在您建立隱形作業系統之前,您需要在此系統磁碟機上建立一個分割區。該分割區必須是系統分割區後的第一個分割區,並且必須至少比系統分割區大 5%(系統分割區就是當前運行的作業系統所在的分割區)。然而,如果外層加密區(不要與系統分割區混淆)被格式化為 NTFS 格式,則該分割區必須至少比系統分割區大 110%(2.1 倍)(原因是 NTFS 檔案系統總是在磁碟區的中部儲存內部資料,因此,包含系統克隆的隱藏加密區只能建立在外層加密區的後半部分)。</entry> + <entry lang="zh-hk" key="NO_PARTITION_FOLLOWS_BOOT_PARTITION">錯誤:在系統分割區後面沒有其他分割區。\n\n注意,在你建立隱形作業系統之前,你需要在此系統磁碟機上建立一個分割區。該分割區必須是系統分割區後的第一個分割區,並且必須至少比系統分割區大 5%(系統分割區就是當前運行的作業系統所在的分割區)。然而,如果外層加密區(不要與系統分割區混淆)被格式化為 NTFS 格式,則該分割區必須至少比系統分割區大 110%(2.1 倍)(原因是 NTFS 檔案系統總是在磁碟區的中部儲存內部資料,因此,包含系統克隆的隱藏加密區只能建立在外層加密區的後半部分)。</entry> <entry lang="zh-hk" key="TWO_SYSTEMS_IN_ONE_PARTITION_REMARK">注釋:同時在單一分割區的 VeraCrypt 外層和隱藏加密區裏面建立兩個系統並不可行(因此也不被支援)。因為使用外層作業系統會經常要求寫入資料到隱形作業系統所在區域(如果使用隱藏加密區保護機制,也會因此而帶來系統崩潰,即藍屏錯誤)。</entry> - <entry lang="zh-hk" key="FOR_MORE_INFO_ON_PARTITIONS">關於建立和管理分割區的更多資訊,請參考您的作業系統所提供的文檔,或者聯繫您的電腦提供商以獲取技術支援。</entry> + <entry lang="zh-hk" key="FOR_MORE_INFO_ON_PARTITIONS">關於建立和管理分割區的更多資訊,請參考你的作業系統所提供的文檔,或者聯繫你的電腦提供商以獲取技術支援。</entry> <entry lang="zh-hk" key="SYSTEM_PARTITION_NOT_ACTIVE">錯誤:當前運行的作業系統並未安裝到啟動分割區(第一個作用/啟動的分割區)。目前不支援此情況。</entry> - <entry lang="zh-hk" key="CONFIRM_FAT_FOR_FILES_OVER_4GB">您已經表明了要在加密區裏面存放大於 4GB 的文件。然而,您選擇了 FAT 檔案系統,此系統無法儲存大於 4 GiB 的檔。\n\n您確認要格式化該磁碟區為 FAT 格式嗎?</entry> - <entry lang="zh-hk" key="NONSYS_INPLACE_DECRYPTION_BAD_VOL_FORMAT">錯誤:VeraCrypt 不支援就地解密以 VeraCrypt 1.0b 或更早版本所建立的舊版本非系統加密區。\n\n注意:您仍可以透過將儲存在入面的檔案複制/移動到無加密的磁碟區來解密檔案。</entry> - <entry lang="zh-hk" key="NONSYS_INPLACE_DECRYPTION_CANT_DECRYPT_HID_VOL">錯誤: VeraCrypt 無法解密隱藏的 VeraCrypt 加密區。\n\n注意:仍可透過將存於加密區上的檔案複製搬移到未加密區上進行解密。 </entry> - <entry lang="zh-hk" key="CONFIRM_VOL_CONTAINS_NO_HIDDEN_VOL">警告:請注意 VeraCrypt 無法就地解密內含隱藏加密區的加密區(藏加密區將會以偽隨機數據覆寫)。\n\n請先確認您將會解密的加密區沒有內含隱藏加密區。\n\n請注意:如果加密區內含隱藏加密區,但你不在乎失去隱藏加密區,你可以選取「繼續」(外層加密區將會安全地解密)。</entry> + <entry lang="zh-hk" key="CONFIRM_FAT_FOR_FILES_OVER_4GB">你已經表明了要在加密區裏面存放大於 4GB 的文件。然而,你選擇了 FAT 檔案系統,此系統無法儲存大於 4 GiB 的檔。\n\n你確認要格式化該磁碟區為 FAT 格式嗎?</entry> + <entry lang="zh-hk" key="NONSYS_INPLACE_DECRYPTION_BAD_VOL_FORMAT">錯誤:VeraCrypt 不支援就地解密以 VeraCrypt 1.0b 或更早版本所建立的舊版本非系統加密區。\n\n請注意:你仍可以透過將儲存在入面的檔案複制/移動到無加密的磁碟區來解密檔案。</entry> + <entry lang="zh-hk" key="NONSYS_INPLACE_DECRYPTION_CANT_DECRYPT_HID_VOL">錯誤: VeraCrypt 無法解密隱藏的 VeraCrypt 加密區。\n\n請注意:仍可透過將存於加密區上的檔案複製搬移到未加密區上進行解密。 </entry> + <entry lang="zh-hk" key="CONFIRM_VOL_CONTAINS_NO_HIDDEN_VOL">警告:請注意 VeraCrypt 無法就地解密內含隱藏加密區的加密區(藏加密區將會以偽隨機數據覆寫)。\n\n請先確認你將會解密的加密區沒有內含隱藏加密區。\n\n請注意:如果加密區內含隱藏加密區,但你不在乎失去隱藏加密區,你可以選取 [繼續](外層加密區將會安全地解密)。</entry> <entry lang="zh-hk" key="VOL_CONTAINS_NO_HIDDEN_VOL">加密區並不包含任何隱藏加密區。 繼續。</entry> @@ -768,8 +768,8 @@ <entry lang="zh-hk" key="CANT_GET_VOL_INFO">發生錯誤:無法取得加密區屬性</entry> - <entry lang="zh-hk" key="INPLACE_ENC_CANT_ACCESS_OR_GET_INFO_ON_VOL">錯誤:不能存取該磁碟區和/或獲取該磁碟區的資訊。\n\n請確認該磁碟區存在,並且未被作業系統或其他程式佔用,以及您具有對該磁碟區的讀寫權限,同時還要保證該分割區並沒有寫入保護。</entry> - <entry lang="zh-hk" key="INPLACE_ENC_CANT_ACCESS_OR_GET_INFO_ON_VOL_ALT">錯誤:不能存取該磁碟區 和/或 獲取該磁碟區的資訊。請確認選擇的磁碟區存在,並且未被作業系統或其他程式佔用,以及您具有對該磁碟區的讀寫權限,同時還要保證該分割區並沒有寫入保護。\n\n如果此問題仍然存在,依照以下步驟可能有所幫助。</entry> + <entry lang="zh-hk" key="INPLACE_ENC_CANT_ACCESS_OR_GET_INFO_ON_VOL">錯誤:不能存取該磁碟區和/或獲取該磁碟區的資訊。\n\n請確認該磁碟區存在,並且未被作業系統或其他程式佔用,以及你具有對該磁碟區的讀寫權限,同時還要保證該分割區並沒有寫入保護。</entry> + <entry lang="zh-hk" key="INPLACE_ENC_CANT_ACCESS_OR_GET_INFO_ON_VOL_ALT">錯誤:不能存取該磁碟區 和/或 獲取該磁碟區的資訊。請確認選擇的磁碟區存在,並且未被作業系統或其他程式佔用,以及你具有對該磁碟區的讀寫權限,同時還要保證該分割區並沒有寫入保護。\n\n如果此問題仍然存在,依照以下步驟可能有所幫助。</entry> <entry lang="zh-hk" key="INPLACE_ENC_GENERIC_ERR_ALT_STEPS">發生了一個錯誤,VeraCrypt 無法加密分割區。請嘗試修復任何前面報告的問題之後再次嘗試。如果此問題依然存在,依照以下步驟可能有所幫助。</entry> - <entry lang="zh-hk" key="INPLACE_ENC_GENERIC_ERR_RESUME">發生了一個錯誤,VeraCrypt 無法繼續加密分割區的過程。\n\n請嘗試修復任何前面報告的問題之後再次嘗試加密過程。注意:該磁碟區在完全加密前將無法掛載。</entry> + <entry lang="zh-hk" key="INPLACE_ENC_GENERIC_ERR_RESUME">發生了一個錯誤,VeraCrypt 無法繼續加密分割區的過程。\n\n請嘗試修復任何前面報告的問題之後再次嘗試加密過程。請注意:該磁碟區在完全加密前將無法掛載。</entry> <entry lang="zh-hk" key="INPLACE_DEC_GENERIC_ERR">一個錯誤令 VeraCrypt 無法解密磁碟區。請嘗試解決之前報告過的問題然後再試一次。</entry> - <entry lang="zh-hk" key="CANT_DISMOUNT_OUTER_VOL">錯誤:無法解除掛載外層加密區!\n\n如果加密區中的檔或資料夾被程式或被 系統使用,則該加密區不能被鎖定。\n\n請關閉任何可能使用加密區上檔或目錄 的程式,然後再按「重試」。</entry> + <entry lang="zh-hk" key="CANT_UNMOUNT_OUTER_VOL">錯誤:無法解除掛載外層加密區!\n\n如果加密區中的檔或資料夾被程式或被 系統使用,則該加密區不能被鎖定。\n\n請關閉任何可能使用加密區上檔或目錄 的程式,然後再按 [重試]。</entry> <entry lang="zh-hk" key="CANT_GET_OUTER_VOL_INFO">錯誤:無法取得外層加密區的資訊! 加密區建立不能繼續。</entry> @@ -830,7 +830,7 @@ <entry lang="zh-hk" key="SETUP_MODE_INFO">請選擇一種安裝模式,如果不確認選取那一個模式,請使用預設模式。</entry> - <entry lang="zh-hk" key="SETUP_MODE_HELP_INSTALL">如果您想安裝 VeraCrypt 到目前的系統,請選擇此選項。</entry> - <entry lang="zh-hk" key="SETUP_MODE_HELP_UPGRADE">注意:即使在系統分割區/裝置已加密的情況下,或者您正在使用隱形系統的情況下,您也可以執行更新而無需解密.</entry> - <entry lang="zh-hk" key="SETUP_MODE_HELP_EXTRACT">如果您選擇這個選項,所有檔案都會被從安裝程式中解壓縮出來,但是不會在系統中安裝任何檔案。如果您計畫加密 Windows 系統分割區或系統磁碟機,請不要選擇這個選項。選擇這個選項有時會比較有用,例如,你希望以便攜模式運行 VeraCrypt。VeraCrypt 不一定要必須安裝到系統中。在所有檔案解壓縮後後,你可以直接執行解壓縮後的「VeraCrypt.exe」執行檔案(這時 VeraCrypt 會以便攜模式運作)。您也可以將解壓縮後的檔案複製到其他電腦。</entry> + <entry lang="zh-hk" key="SETUP_MODE_HELP_INSTALL">如果你想安裝 VeraCrypt 到目前的系統,請選擇此選項。</entry> + <entry lang="zh-hk" key="SETUP_MODE_HELP_UPGRADE">請注意:即使在系統分割區/裝置已加密的情況下,或者你正在使用隱形系統的情況下,你也可以執行更新而無需解密.</entry> + <entry lang="zh-hk" key="SETUP_MODE_HELP_EXTRACT">如果你選擇這個選項,所有檔案都會被從安裝程式中解壓縮出來,但是不會在系統中安裝任何檔案。如果你計畫加密 Windows 系統分割區或系統磁碟機,請不要選擇這個選項。選擇這個選項有時會比較有用,例如,你希望以便攜模式運行 VeraCrypt。VeraCrypt 不一定要必須安裝到系統中。在所有檔案解壓縮後後,你可以直接執行解壓縮後的 'VeraCrypt.exe' 執行檔案(這時 VeraCrypt 會以便攜模式運作)。你也可以將解壓縮後的檔案複製到其他電腦。</entry> <entry lang="zh-hk" key="SETUP_OPTIONS_TITLE">安裝選項</entry> - <entry lang="zh-hk" key="SETUP_OPTIONS_INFO">您可以在這裡設定不同的選項來控制安裝的過程。</entry> + <entry lang="zh-hk" key="SETUP_OPTIONS_INFO">你可以在這裡設定不同的選項來控制安裝的過程。</entry> <entry lang="zh-hk" key="SETUP_PROGRESS_TITLE">正在安裝</entry> @@ -839,5 +839,5 @@ <entry lang="zh-hk" key="SETUP_FINISHED_UPGRADE_TITLE_DON">VeraCrypt 已順利完成更新</entry> - <entry lang="zh-hk" key="SETUP_FINISHED_INFO_DON">請考慮作出捐助。你可以隨時按「完成」結束安裝程式。</entry> + <entry lang="zh-hk" key="SETUP_FINISHED_INFO_DON">請考慮作出捐助。你可以隨時按 [完成] 結束安裝程式。</entry> <entry lang="zh-hk" key="EXTRACTION_OPTIONS_TITLE">解壓縮選項</entry> - <entry lang="zh-hk" key="EXTRACTION_OPTIONS_INFO">您可以在這裡設定不同選項來控制解壓縮的過程。</entry> + <entry lang="zh-hk" key="EXTRACTION_OPTIONS_INFO">你可以在這裡設定不同選項來控制解壓縮的過程。</entry> <entry lang="zh-hk" key="EXTRACTION_PROGRESS_INFO">正在解壓縮檔案,請稍候。</entry> @@ -846,11 +846,11 @@ <entry lang="zh-hk" key="AUTO_FOLDER_CREATION">如果指定的資料夾不存在,將會自動建立該資料夾。</entry> - <entry lang="zh-hk" key="SETUP_UPGRADE_DESTINATION">VeraCrypt 程式檔將會更新到 VeraCrypt 的安裝位置。如果您需要選擇一個不同的位置,請先解除掛載當前安裝的 VeraCrypt 。</entry> - <entry lang="zh-hk" key="AFTER_UPGRADE_RELEASE_NOTES">您想網頁查看目前版本的 VeraCrypt 的發行公告嗎?</entry> - <entry lang="zh-hk" key="AFTER_INSTALL_TUTORIAL">如果您以前從未沒有使用過 VeraCrypt,我們推薦您先閱讀「VeraCrypt 用戶指南」說明檔案中的「新手教學」章節。您想要查看用戶指南嗎?</entry> + <entry lang="zh-hk" key="SETUP_UPGRADE_DESTINATION">VeraCrypt 程式檔將會更新到 VeraCrypt 的安裝位置。如果你需要選擇一個不同的位置,請先解除掛載當前安裝的 VeraCrypt 。</entry> + <entry lang="zh-hk" key="AFTER_UPGRADE_RELEASE_NOTES">你想網頁查看目前版本的 VeraCrypt 的發行公告嗎?</entry> + <entry lang="zh-hk" key="AFTER_INSTALL_TUTORIAL">如果你以前從未沒有使用過 VeraCrypt,我們推薦你先閱讀 [VeraCrypt 用戶指南] 說明檔案中的 [新手教學] 章節。你想要查看用戶指南嗎?</entry> <entry lang="zh-hk" key="SELECT_AN_ACTION">請從下面選項中選擇要執行的動作:</entry> - <entry lang="zh-hk" key="REPAIR_REINSTALL">修復/重新安裝</entry> + <entry lang="zh-hk" key="REPAIR_REINSTALL">修復或重新安裝</entry> <entry lang="zh-hk" key="UPGRADE">升級</entry> - <entry lang="zh-hk" key="UNINSTALL">解除掛載</entry> - <entry lang="zh-hk" key="SETUP_ADMIN">要成功安裝或解除安裝 VeraCrypt,您必須擁有系統管理員權限。您確認要繼續嗎?</entry> - <entry lang="zh-hk" key="TC_INSTALLER_IS_RUNNING">VeraCrypt 安裝程式正在執行 VeraCrypt 的安裝或更新。在您繼續進行前,請等待其完成或者關閉它。如果您無法關閉它,請在繼續之前重新啟動電腦。</entry> + <entry lang="zh-hk" key="UNINSTALL">解除安裝</entry> + <entry lang="zh-hk" key="SETUP_ADMIN">要成功安裝或解除安裝 VeraCrypt,你必須擁有系統管理員權限。你確認要繼續嗎?</entry> + <entry lang="zh-hk" key="TC_INSTALLER_IS_RUNNING">VeraCrypt 安裝程式正在執行 VeraCrypt 的安裝或更新。在你繼續進行前,請等待其完成或者關閉它。如果你無法關閉它,請在繼續之前重新啟動電腦。</entry> <entry lang="zh-hk" key="INSTALL_FAILED">安裝失敗。</entry> @@ -866,5 +866,5 @@ <entry lang="zh-hk" key="SETUP_UPDATE_OK">VeraCrypt 已經成功更新。</entry> - <entry lang="zh-hk" key="UPGRADE_OK_REBOOT_REQUIRED">VeraCrypt 已經成功升級。但在開始使用前,必須重新啟動電腦。\n\n您是否想現在重新啟動?</entry> - <entry lang="zh-hk" key="SYS_ENC_UPGRADE_FAILED">VeraCrypt升級失敗!\n\n重要:你您關機或重新啟動系統前,我們強烈建議您使用系統還原(Windows 開始功能表 > 全部程式 > 附屬應用程式 > 系統工具 > 系統還原) 將系統還原到名為「VeraCrypt installation」的還原點。 如無法使用系統還原,你應該在關機或重新啟動系統之前再嘗試安裝原本或較新版本的 VeraCrypt。</entry> - <entry lang="zh-hk" key="UNINSTALL_OK">VeraCrypt 已成功解除安裝。\n\n按一下「完成」來移除 VeraCrypt 的安裝程式和資料夾 %s。注意:如果該資料夾中含有非安裝程式建立的檔,則該資料夾不會被移除。</entry> + <entry lang="zh-hk" key="UPGRADE_OK_REBOOT_REQUIRED">VeraCrypt 已經成功升級。但在開始使用前,必須重新啟動電腦。\n\n你是否想現在重新啟動?</entry> + <entry lang="zh-hk" key="SYS_ENC_UPGRADE_FAILED">VeraCrypt升級失敗!\n\n重要:你你關機或重新啟動系統前,我們強烈建議你使用系統還原(Windows 開始功能表 > 全部程式 > 附屬應用程式 > 系統工具 > 系統還原) 將系統還原到名為 [VeraCrypt installation] 的還原點。 如無法使用系統還原,你應該在關機或重新啟動系統之前再嘗試安裝原本或較新版本的 VeraCrypt。</entry> + <entry lang="zh-hk" key="UNINSTALL_OK">VeraCrypt 已成功解除安裝。\n\n按一下[完成]來移除 VeraCrypt 的安裝程式和資料夾 %s。請注意:如果該資料夾中含有非安裝程式建立的檔,則該資料夾不會被移除。</entry> <entry lang="zh-hk" key="REMOVING_REG">正在移除 VeraCrypt 註冊表項目。</entry> @@ -879,9 +879,9 @@ <entry lang="zh-hk" key="INSTALLER_UPDATING_BOOT_LOADER">正在更新開機管理程式</entry> - <entry lang="zh-hk" key="INSTALL_OF_FAILED">安裝「%s」失敗。 %s\n您想要繼續安裝嗎?</entry> - <entry lang="zh-hk" key="UNINSTALL_OF_FAILED">解除安裝「%s」失敗。 %s\n您想要繼續解除安裝嗎?</entry> + <entry lang="zh-hk" key="INSTALL_OF_FAILED">安裝 [%s] 失敗。 %s\n你想要繼續安裝嗎?</entry> + <entry lang="zh-hk" key="UNINSTALL_OF_FAILED">解除安裝[%s]失敗。 %s\n你想要繼續解除安裝嗎?</entry> <entry lang="zh-hk" key="INSTALL_COMPLETED">已完成安裝。</entry> - <entry lang="zh-hk" key="CANT_CREATE_FOLDER">無法建立資料夾「%s」</entry> + <entry lang="zh-hk" key="CANT_CREATE_FOLDER">無法建立資料夾 [%s]</entry> <entry lang="zh-hk" key="CLOSE_TC_FIRST">無法解除安裝 VeraCrypt 裝置驅動程式。\n\n請首先關閉所有正在打開的 VeraCrypt 視窗。如果這樣做之後仍然沒有幫助,請嘗試重新啟動電腦然後再試一次。</entry> - <entry lang="zh-hk" key="DISMOUNT_ALL_FIRST">在安裝或者解除安裝 VeraCrypt 之前必須先要解除掛載所有的 VeraCrypt 加密區。</entry> - <entry lang="zh-hk" key="UNINSTALL_OLD_VERSION_FIRST">目前系統已經安裝了一份不同版本的 VeraCrypt。在安裝新版本前需要解除安裝舊版本的 VeraCrypt。\n\n在您關閉此對話方塊之後,將會執行舊版本的解除安裝程式。在解除安裝的過程中將不會執行任何加密分割區的解密操作。在解除安裝舊版本的 VeraCrypt 之後,請再次執行新版本 VeraCrypt 的安裝程式。</entry> + <entry lang="zh-hk" key="UNMOUNT_ALL_FIRST">在安裝或者解除安裝 VeraCrypt 之前必須先要解除掛載所有的 VeraCrypt 加密區。</entry> + <entry lang="zh-hk" key="UNINSTALL_OLD_VERSION_FIRST">目前系統已經安裝了一份不同版本的 VeraCrypt。在安裝新版本前需要解除安裝舊版本的 VeraCrypt。\n\n在你關閉此對話方塊之後,將會執行舊版本的解除安裝程式。在解除安裝的過程中將不會執行任何加密分割區的解密操作。在解除安裝舊版本的 VeraCrypt 之後,請再次執行新版本 VeraCrypt 的安裝程式。</entry> <entry lang="zh-hk" key="REG_INSTALL_FAILED">安裝註冊表項目失敗</entry> @@ -896,4 +896,4 @@ <entry lang="zh-hk" key="TRAVELER_LIMITATIONS_NOTE">便攜模式須知:\n\n請注意驅動程式必須先註冊到作業系統才可以執行程式。因此 VeraCrypt 驅動程式並非(也不能)完全地便攜(然而 VeraCrypt 程式是完全可便攜),即它們無須先安裝或註冊到作業系統)。同時要注意 VeraCrypt 需要驅動程式以提供透明的即時加密/解密。</entry> - <entry lang="zh-hk" key="TRAVELER_UAC_NOTE">注意:如果您決定以便攜方式運行 VeraCrypt(不同於安裝後運行 VeraCrypt),系統會在您每次嘗試運行 VeraCrypt 的時候詢問您運行 VeraCrypt 的許可權(UAC 提示)。\n\n原因是您以便攜模式運行 VeraCrypt 時,VeraCrypt需要掛載和運行 VeraCrypt 裝置驅動程式。VeraCrypt 需要此裝置驅提供透明的即時加密/解密,並且不具有管理員許可權的用戶在 Windows 中將不能啟動裝置驅動程式。因此,系統將會要求您使用管理器特權運行 VeraCrypt 的許可權(UAC 提示)。\n\n說明:如果您在系統中安裝了 VeraCrypt,系統在每次啟動 VeraCrypt 時將不會詢問運行許可權(無 UAC 提示)。\n\n您確認要釋放這些檔嗎?</entry> - <entry lang="zh-hk" key="CONTAINER_ADMIN_WARNING">警告:這個加密區建立精靈的執行個體擁有管理員權限。\n\n您新建立的加密區可能在掛載時不允許向該加密區寫入資料。如果要避免這種情況發生,請關閉加密區精靈的執行個體並在非管理員身份下重新執行。\n\n您要關閉這個加密區建立精靈的執行個體嗎?</entry> + <entry lang="zh-hk" key="TRAVELER_UAC_NOTE">請注意:如果你決定以便攜方式運行 VeraCrypt(不同於安裝後運行 VeraCrypt),系統會在你每次嘗試運行 VeraCrypt 的時候詢問你運行 VeraCrypt 的許可權(UAC 提示)。\n\n原因是你以便攜模式運行 VeraCrypt 時,VeraCrypt需要掛載和運行 VeraCrypt 裝置驅動程式。VeraCrypt 需要此裝置驅提供透明的即時加密/解密,並且不具有管理員許可權的用戶在 Windows 中將不能啟動裝置驅動程式。因此,系統將會要求你使用管理器特權運行 VeraCrypt 的許可權(UAC 提示)。\n\n說明:如果你在系統中安裝了 VeraCrypt,系統在每次啟動 VeraCrypt 時將不會詢問運行許可權(無 UAC 提示)。\n\n你確認要釋放這些檔嗎?</entry> + <entry lang="zh-hk" key="CONTAINER_ADMIN_WARNING">警告:這個加密區建立精靈的執行個體擁有管理員權限。\n\n你新建立的加密區可能在掛載時不允許向該加密區寫入資料。如果要避免這種情況發生,請關閉加密區精靈的執行個體並在非管理員身份下重新執行。\n\n你要關閉這個加密區建立精靈的執行個體嗎?</entry> <entry lang="zh-hk" key="CANNOT_DISPLAY_LICENSE">錯誤:無法顯示授權許可。</entry> @@ -905,3 +905,3 @@ <entry lang="zh-hk" key="OPEN">開啟</entry> - <entry lang="zh-hk" key="DISMOUNT">解除掛載</entry> + <entry lang="zh-hk" key="UNMOUNT">解除掛載</entry> <entry lang="zh-hk" key="SHOW_TC">顯示 VeraCrypt</entry> @@ -925,14 +925,14 @@ <entry lang="zh-hk" key="FAVORITE_DISCONNECTED_DEV">裝置已移除</entry> - <entry lang="zh-hk" key="SYS_FAVORITE_VOLUMES_SAVED">已儲存系統最愛加密區。\n\n要想在系統啟動時掛載系統最愛加密區,請選擇「設定」 > 「系統最愛加密區」 > 「當 Windows 啟動時掛載系統最愛加密區」。</entry> - <entry lang="zh-hk" key="FAVORITE_ADD_DRIVE_DEV_WARNING">您新增最愛的既不是分割區也不是動態磁碟區。因此,如果裝置號發生改變,VeraCrypt 將不能掛載此最愛磁碟區。</entry> - <entry lang="zh-hk" key="FAVORITE_ADD_PARTITION_TYPE_WARNING">您新增最愛的磁碟區不是 Windows 能夠識別的分割區。\n\n因此,如果裝置號發生改變,VeraCrypt 將不能掛載此最愛磁碟區。請設定分割區的類型為 Windows 系統所能夠識別的類型(使用Windows「diskpart」工具的 SETID 命令)。之後再新增此分割區到最愛。</entry> - <entry lang="zh-hk" key="FAVORITE_ARRIVAL_MOUNT_BACKGROUND_TASK_ERR">VeraCrypt 背景工作已被停用,或者已設定為在沒有加密區被掛載時退出(或者 VeraCrypt 正在以便攜模式運行)。當含有這些加密區的裝置連接到電腦的時候,背景工作被禁用可能會阻止您的最愛加密區被自動掛載。\n\n說明:要啟用 VeraCrypt 背景工作,選擇「設定 > 喜好設定」之後剔選「VeraCrypt 背景工作」部份的「啟用」選項。</entry> + <entry lang="zh-hk" key="SYS_FAVORITE_VOLUMES_SAVED">已儲存系統我的最愛加密區。\n\n要想在系統啟動時掛載系統我的最愛加密區,請選擇 [設定] > [系統我的最愛加密區] > [當 Windows 啟動時掛載系統我的最愛加密區]。</entry> + <entry lang="zh-hk" key="FAVORITE_ADD_DRIVE_DEV_WARNING">你新增我的最愛的既不是分割區也不是動態磁碟區。因此,如果裝置號發生改變,VeraCrypt 將不能掛載此我的最愛磁碟區。</entry> + <entry lang="zh-hk" key="FAVORITE_ADD_PARTITION_TYPE_WARNING">你新增我的最愛的磁碟區不是 Windows 能夠識別的分割區。\n\n因此,如果裝置號發生改變,VeraCrypt 將不能掛載此我的最愛磁碟區。請設定分割區的類型為 Windows 系統所能夠識別的類型(使用Windows [diskpart] 工具的 SETID 命令)。之後再新增此分割區到我的最愛。</entry> + <entry lang="zh-hk" key="FAVORITE_ARRIVAL_MOUNT_BACKGROUND_TASK_ERR">VeraCrypt 背景工作已被停用,或者已設定為在沒有加密區被掛載時退出(或者 VeraCrypt 正在以便攜模式運行)。當含有這些加密區的裝置連接到電腦的時候,背景工作被禁用可能會阻止你的我的最愛加密區被自動掛載。\n\n說明:要啟用 VeraCrypt 背景工作,選擇 [設定 > 喜好設定] 之後剔選 [VeraCrypt 背景工作] 部份的 [啟用] 選項。</entry> <entry lang="zh-hk" key="FAVORITE_ARRIVAL_MOUNT_NETWORK_PATH_ERR">當含有這些加密區的裝置連接到電腦的時候,儲存於共用網路上的遠端檔案系統的加密容器不能被自動掛載。</entry> <entry lang="zh-hk" key="FAVORITE_ARRIVAL_MOUNT_DEVICE_PATH_ERR">下面顯示的裝置既不是分割區也不是動態磁碟區。因此,當裝置連接到電腦的時候,儲存於這些裝置中的加密區將不能被自動掛載。</entry> - <entry lang="zh-hk" key="FAVORITE_ARRIVAL_MOUNT_PARTITION_TYPE_ERR">請設定下面顯示的分割區的類型為 Windows 系統所能夠識別的類型(使用 Windows「diskpart」工具的 SETID 命令)。之後從最愛中移除該分割區並隨後再次新增它。這可以使裝置連接時,包含於其中的加密區可以被 VeraCrypt 自動掛載。</entry> + <entry lang="zh-hk" key="FAVORITE_ARRIVAL_MOUNT_PARTITION_TYPE_ERR">請設定下面顯示的分割區的類型為 Windows 系統所能夠識別的類型(使用 Windows [diskpart] 工具的 SETID 命令)。之後從我的最愛中移除該分割區並隨後再次新增它。這可以使裝置連接時,包含於其中的加密區可以被 VeraCrypt 自動掛載。</entry> <entry lang="zh-hk" key="FAVORITE_LABEL_DEVICE_PATH_ERR">下面顯示的裝置既不是分割區也不是動態磁碟區。因此,不會賦予它們標籤。</entry> - <entry lang="zh-hk" key="FAVORITE_LABEL_PARTITION_TYPE_ERR">請設定下面顯示的分割區的類型為 Windows 系統所能夠識別的類型(使用 Windows「diskpart」工具的 SETID 命令)。之後從最愛中移除該分割區並隨後再次新增它。這可以使 VeraCrypt 能夠賦予磁碟機代號給這個分割區。</entry> - <entry lang="zh-hk" key="SYSTEM_FAVORITE_NETWORK_PATH_ERR">由於 Windows 系統的限制,在網路上共用的遠端檔案系統上的加密容器不能被掛載為系統最愛加密區(然而,它可以在用戶登錄時被掛載為普通的最愛加密區)。</entry> + <entry lang="zh-hk" key="FAVORITE_LABEL_PARTITION_TYPE_ERR">請設定下面顯示的分割區的類型為 Windows 系統所能夠識別的類型(使用 Windows [diskpart] 工具的 SETID 命令)。之後從我的最愛中移除該分割區並然後再次新增它。這可以使 VeraCrypt 能夠賦予磁碟機代號給這個分割區。</entry> + <entry lang="zh-hk" key="SYSTEM_FAVORITE_NETWORK_PATH_ERR">由於 Windows 系統的限制,在網路上共用的遠端檔案系統上的加密容器不能被掛載為我的最愛系統加密區(然而,它可以在用戶登錄時被掛載為普通的我的最愛加密區)。</entry> <entry lang="zh-hk" key="ENTER_PASSWORD_FOR">輸入 %s 的密碼</entry> - <entry lang="zh-hk" key="ENTER_PASSWORD_FOR_LABEL">輸入「%s」的密碼</entry> + <entry lang="zh-hk" key="ENTER_PASSWORD_FOR_LABEL">輸入 [%s] 的密碼</entry> <entry lang="zh-hk" key="ENTER_NORMAL_VOL_PASSWORD">輸入一般外層加密區的密碼</entry> @@ -945,9 +945,9 @@ <entry lang="zh-hk" key="KEYFILE_INVALID_BASE_NAME">加密鑰檔案的基名無效</entry> - <entry lang="zh-hk" key="KEYFILE_ALREADY_EXISTS">加密鑰檔案「%s」已經存在。\n你是否想覆寫它?如您回應否的話產生程序將會停止。</entry> - <entry lang="zh-hk" key="HEADER_DAMAGED_AUTO_USED_HEADER_BAK">警告:加密區標頭數據已經損壞!VeraCrypt 將自動使用內嵌在加密區中的標頭數據備份。\n\n您應該通過選擇「工具」 >「還原加密區標頭數據」 來修復標頭數據。</entry> - <entry lang="zh-hk" key="VOL_HEADER_BACKED_UP">已經成功建立加密區標頭數據備份。\n\n重要:使用還原功能還原時也會還原當前加密區的密碼。另外,如果建立加密區的時候使用了加密鑰檔案,還原後也需要同樣的加密鑰檔案來打開加密區。\n\n警告:該加密區標頭數據備份只能用在這個提供備份的加密區上。如果你把該標頭數據備份還原到其他加密區,您可能能夠打開加密區,但是您將不能解密儲存於加密區的任何資料(這是因為您已經改變了加密區的主密鑰)。</entry> + <entry lang="zh-hk" key="KEYFILE_ALREADY_EXISTS">加密鑰檔案 [%s] 已經存在。\n你是否想覆寫它?如你回應否的話產生程序將會停止。</entry> + <entry lang="zh-hk" key="HEADER_DAMAGED_AUTO_USED_HEADER_BAK">警告:加密區標頭數據已經損壞!VeraCrypt 將自動使用內嵌在加密區中的標頭數據備份。\n\n你應該通過選擇[工具] >[還原加密區標頭數據] 來修復標頭數據。</entry> + <entry lang="zh-hk" key="VOL_HEADER_BACKED_UP">已經成功建立加密區標頭數據備份。\n\n重要:使用還原功能還原時也會還原當前加密區的密碼。另外,如果建立加密區的時候使用了加密鑰檔案,還原後也需要同樣的加密鑰檔案來打開加密區。\n\n警告:該加密區標頭數據備份只能用在這個提供備份的加密區上。如果你把該標頭數據備份還原到其他加密區,你可能能夠打開加密區,但是你將不能解密儲存於加密區的任何資料(這是因為你已經改變了加密區的主密鑰)。</entry> <entry lang="zh-hk" key="VOL_HEADER_RESTORED">已經成功還原加密區標頭數據備份。\n\n重要:請注意舊密碼也同樣被還原了。另外,備份時如果需要加密鑰檔案來掛載加密區,還原後也需要同樣的加密鑰檔案。</entry> - <entry lang="zh-hk" key="EXTERNAL_VOL_HEADER_BAK_FIRST_INFO">安全起見,您需要輸入正確的加密區密碼(和/或 提供正確的加密鑰檔案)。\n\n注意:如果該磁碟區中包含隱藏加密區,您需要先輸入正確的外層加密區的密碼(和/或 正確的加密鑰檔案)。之後,如果您選擇老備份隱藏加密區的標頭數據,您您需要輸入正確的隱藏加密區密碼(和/或 提供正確的加密鑰檔案)。</entry> - <entry lang="zh-hk" key="CONFIRM_VOL_HEADER_BAK">您確認要建立加密區 %s 的標頭數據的備份嗎?\n\n在您按「是」後,將會彈出備份的標頭數據檔的檔案名提示對話方塊。\n\n注意:一般加密區和隱藏加密區標頭數據均將使用新的元素加密並儲存到備份檔案中。如果磁碟區中沒有隱藏加密區,在備份檔案中為隱藏加密區保留的區域將會使用亂數據填充(以保持隱蔽性)。您需要輸入建立標頭數據備份時的正確的密碼(和/或 提供正確的加密鑰檔案)。密碼或加密鑰檔案會自動確定要還原的加密區標頭數據類型,即一般的或是隱藏的(VeraCrypt 通過嘗試和錯誤來偵測類型),儘管有時在加密區裏面並沒有隱藏加密區(為保留隱蔽性)。當從備份檔案中還原一個加密區的標頭數據時,可以選擇還原哪個標頭數據(例如,隱藏磁碟區或是標準磁碟區)</entry> - <entry lang="zh-hk" key="CONFIRM_VOL_HEADER_RESTORE">您確認要還原加密區 %s 的標頭數據嗎?\n\n警告:還原加密區標頭數據也會還原在建立備份時 有效的密碼。另外,如果在備份時需要使用加密鑰檔案掛載加密區,那麼在標頭數據還原後,仍然需要同樣的加密鑰檔案。\n\n在您按「是」後,您將選擇標頭數據備份檔案。</entry> + <entry lang="zh-hk" key="EXTERNAL_VOL_HEADER_BAK_FIRST_INFO">安全起見,你需要輸入正確的加密區密碼(和/或 提供正確的加密鑰檔案)。\n\n請注意:如果該磁碟區中包含隱藏加密區,你需要先輸入正確的外層加密區的密碼(和/或 正確的加密鑰檔案)。之後,如果你選擇老備份隱藏加密區的標頭數據,你你需要輸入正確的隱藏加密區密碼(和/或 提供正確的加密鑰檔案)。</entry> + <entry lang="zh-hk" key="CONFIRM_VOL_HEADER_BAK">你確認要建立加密區 %s 的標頭數據的備份嗎?\n\n在你按 [是] 之後,將會彈出備份的標頭數據檔的檔案名提示對話方塊。\n\n請注意:一般加密區和隱藏加密區標頭數據均將使用新的元素加密並儲存到備份檔案中。如果磁碟區中沒有隱藏加密區,在備份檔案中為隱藏加密區保留的區域將會使用亂數據填充(以保持隱蔽性)。你需要輸入建立標頭數據備份時的正確的密碼(和/或 提供正確的加密鑰檔案)。密碼或加密鑰檔案會自動確定要還原的加密區標頭數據類型,即一般的或是隱藏的(VeraCrypt 通過嘗試和錯誤來偵測類型),儘管有時在加密區裏面並沒有隱藏加密區(為保留隱蔽性)。當從備份檔案中還原一個加密區的標頭數據時,可以選擇還原哪個標頭數據(例如,隱藏磁碟區或是標準磁碟區)</entry> + <entry lang="zh-hk" key="CONFIRM_VOL_HEADER_RESTORE">你確認要還原加密區 %s 的標頭數據嗎?\n\n警告:還原加密區標頭數據也會還原在建立備份時 有效的密碼。另外,如果在備份時需要使用加密鑰檔案掛載加密區,那麼在標頭數據還原後,仍然需要同樣的加密鑰檔案。\n\n在你按 [是] 之後,你將選擇標頭數據備份檔案。</entry> <entry lang="zh-hk" key="DOES_VOLUME_CONTAIN_HIDDEN">此加密區包含隱藏加密區嗎?</entry> @@ -955,3 +955,3 @@ <entry lang="zh-hk" key="VOLUME_DOES_NOT_CONTAIN_HIDDEN">這個加密區不包含隱藏加密區</entry> - <entry lang="zh-hk" key="HEADER_RESTORE_EXTERNAL_INTERNAL">請選擇您要使用的加密區標頭數據備份類型:</entry> + <entry lang="zh-hk" key="HEADER_RESTORE_EXTERNAL_INTERNAL">請選擇你要使用的加密區標頭數據備份類型:</entry> <entry lang="zh-hk" key="HEADER_RESTORE_INTERNAL">從加密區內嵌的備份中還原加密區標頭數據</entry> @@ -960,20 +960,20 @@ <entry lang="zh-hk" key="VOLUME_HAS_NO_BACKUP_HEADER">加密區中沒有內嵌的備份標頭數據(注意,僅在 TrueCrypt 6.0 和以後的版本才包含內嵌的標頭數據)。</entry> - <entry lang="zh-hk" key="BACKUP_HEADER_NOT_FOR_SYS_DEVICE">您正在嘗試備份系統分割區/裝置的標頭數據,該功能不被允許。對於系統分割區/裝置標頭數據的備份/還原 只能通過使用 VeraCrypt 救機光碟來進行。\n\n您希望建立 VeraCrypt 救機光碟嗎?</entry> - <entry lang="zh-hk" key="RESTORE_HEADER_NOT_FOR_SYS_DEVICE">您正在嘗試還原系統分割區/裝置的標頭數據,但是您選擇的是系統分割區/裝置。該功能不被允許。 對於系統分割區/裝置標頭數據的備份/還原 只能通過使用 VeraCrypt 救機光碟來進行。\n\n您希望建立 VeraCrypt 救機光碟嗎?</entry> - <entry lang="zh-hk" key="RESCUE_DISK_NON_WIZARD_CREATION_SELECT_PATH">在按「確定」按鈕後,您將會設定新的 VeraCrypt 救機光碟 鏡像檔的名稱和存放位置。</entry> - <entry lang="zh-hk" key="RESCUE_DISK_NON_WIZARD_CREATION_BURN">救機光碟 ISO 映像檔已經建立並儲存成檔案: %s\n\n現在您需要將救機光碟燒錄到 CD 或 DVD。\n\n重要:檔案必須以 ISO 映像檔方式燒錄到 CD/DVD(不要燒錄成單個的資料檔案)。要獲取更多的關於如何燒錄 ISO 檔的資訊,請參考您的 CD/DVD 燒錄軟件的說明書。\n\n請您在燒錄救機光碟之後,選擇 「系統」 >「驗證救機光碟」來驗證救機光碟是否已經成功燒錄。</entry> - <entry lang="zh-hk" key="RESCUE_DISK_NON_WIZARD_CREATION_WIN_ISOBURN">救機光碟 ISO 鏡像檔已經建立並儲存成檔案: %s\n\n現在您需要把救機光碟燒錄到 CD 或 DVD。\n\n您想要啟動 Windows 自帶的磁片鏡像燒錄功能嗎?\n\n注意,請您在燒錄救機光碟之後,選擇 「系統」 >「驗證救機光碟」來驗證救機光碟是否已經成功燒錄。</entry> - <entry lang="zh-hk" key="RESCUE_DISK_NON_WIZARD_CHECK_INSERT">請插入 VeraCrypt 救機光碟到 CD/DVD 光碟機並點「確定」按鈕開始驗證。</entry> + <entry lang="zh-hk" key="BACKUP_HEADER_NOT_FOR_SYS_DEVICE">你正在嘗試備份系統分割區/裝置的標頭數據,該功能不被允許。對於系統分割區/裝置標頭數據的備份/還原 只能通過使用 VeraCrypt 救機光碟來進行。\n\n你希望建立 VeraCrypt 救機光碟嗎?</entry> + <entry lang="zh-hk" key="RESTORE_HEADER_NOT_FOR_SYS_DEVICE">你正在嘗試還原系統分割區/裝置的標頭數據,但是你選擇的是系統分割區/裝置。該功能不被允許。 對於系統分割區/裝置標頭數據的備份/還原 只能通過使用 VeraCrypt 救機光碟來進行。\n\n你希望建立 VeraCrypt 救機光碟嗎?</entry> + <entry lang="zh-hk" key="RESCUE_DISK_NON_WIZARD_CREATION_SELECT_PATH">在按 [確定] 後,你將會設定新的 VeraCrypt 救機光碟 鏡像檔的名稱和存放位置。</entry> + <entry lang="zh-hk" key="RESCUE_DISK_NON_WIZARD_CREATION_BURN">救機光碟 ISO 映像檔已經建立並儲存成檔案: %s\n\n現在你需要將救機光碟燒錄到 CD 或 DVD。\n\n重要:檔案必須以 ISO 映像檔方式燒錄到 CD/DVD(不要燒錄成單個的資料檔案)。要獲取更多的關於如何燒錄 ISO 檔的資訊,請參考你的 CD/DVD 燒錄軟件的說明書。\n\n請你在燒錄救機光碟之後,選擇 [系統] >[驗證救機光碟]來驗證救機光碟是否已經成功燒錄。</entry> + <entry lang="zh-hk" key="RESCUE_DISK_NON_WIZARD_CREATION_WIN_ISOBURN">救機光碟 ISO 鏡像檔已經建立並儲存成檔案: %s\n\n現在你需要把救機光碟燒錄到 CD 或 DVD。\n\n你想要啟動 Windows 自帶的磁片鏡像燒錄功能嗎?\n\n注意,請你在燒錄救機光碟之後,選擇 [系統] >[驗證救機光碟]來驗證救機光碟是否已經成功燒錄。</entry> + <entry lang="zh-hk" key="RESCUE_DISK_NON_WIZARD_CHECK_INSERT">請插入 VeraCrypt 救機光碟到 CD/DVD 光碟機並點 [確定] 按鈕開始驗證。</entry> <entry lang="zh-hk" key="RESCUE_DISK_NON_WIZARD_CHECK_PASSED">VeraCrypt 救機光碟已經被成功驗證。</entry> - <entry lang="zh-hk" key="RESCUE_DISK_NON_WIZARD_CHECK_FAILED">救機光碟驗證失敗。\n\n如果您已經燒錄了救機光碟,請彈出後重新插入救機光碟到 CD/DVD,之後再試一次。如果仍然無效,請嘗試使用其他 CD/DVD 燒錄軟件或燒錄盤。\n\n如果您嘗試驗證一個為不同的主密鑰、密碼、元素等建立的 VeraCrypt 救機光碟,請注意這樣的救機光碟會無法通過驗證。要建立一個新的和當前配置完全相容的救機光碟,請選擇 「系統」 > 「建立救機光碟」。</entry> + <entry lang="zh-hk" key="RESCUE_DISK_NON_WIZARD_CHECK_FAILED">救機光碟驗證失敗。\n\n如果你已經燒錄了救機光碟,請彈出後重新插入救機光碟到 CD/DVD,之後再試一次。如果仍然無效,請嘗試使用其他 CD/DVD 燒錄軟件或燒錄盤。\n\n如果你嘗試驗證一個為不同的主密鑰、密碼、元素等建立的 VeraCrypt 救機光碟,請注意這樣的救機光碟會無法通過驗證。要建立一個新的和當前配置完全相容的救機光碟,請選擇 [系統] > [建立救機光碟]。</entry> <entry lang="zh-hk" key="RESCUE_DISK_ISO_IMAGE_CHECK_PASSED">已成功驗證 VeraCrypt 救機光碟映像檔</entry> - <entry lang="zh-hk" key="RESCUE_DISK_ISO_IMAGE_CHECK_FAILED">救機碟映像檔驗證失敗。\n\n如您嘗試驗證一個以不同主密鑰、密碼、salt 之類來建立的 VeraCrypt 救機碟映像檔,請注意這樣的救機碟映像檔將總是無法通過此驗證。要建立可完全與現時設定相容的新救機碟映像檔,請選取「系統」>「建立救機碟」。</entry> + <entry lang="zh-hk" key="RESCUE_DISK_ISO_IMAGE_CHECK_FAILED">救機碟映像檔驗證失敗。\n\n如你嘗試驗證一個以不同主密鑰、密碼、salt 之類來建立的 VeraCrypt 救機碟映像檔,請注意這樣的救機碟映像檔將總是無法通過此驗證。要建立可完全與現時設定相容的新救機碟映像檔,請選取 [系統] > [建立救機碟]。</entry> <entry lang="zh-hk" key="ERROR_CREATING_RESCUE_DISK">建立 VeraCrypt 救機光碟時失敗。</entry> - <entry lang="zh-hk" key="CANNOT_CREATE_RESCUE_DISK_ON_HIDDEN_OS">VeraCrypt 救機光碟在隱形作業系統運行時無法建立。\n\n要建立 VeraCrypt 救機光碟,請啟動到偽裝作業系統之後選擇 「系統」 > 「建立救機光碟」。</entry> - <entry lang="zh-hk" key="RESCUE_DISK_CHECK_FAILED">不能確定救機光碟是否燒錄成功。\n\n如果您已經燒錄了救機光碟,請彈出後重新插入救機光碟到 CD/DVD,之後再嘗試驗證一次。如果仍然無效,請嘗試使用其他 %s 。\n\n如果您還沒有建立救機光碟,請首先建立一個,然後再點 「下一步」 按鈕。\n\n如果您嘗試驗證一個運行加密盤建立精靈以前建立的救機光碟,則這樣的救機光碟是無法用於當前系統的,這是因為它是使用了不同的主密鑰建立的。您需要燒錄和建立一個新的救機光碟。</entry> + <entry lang="zh-hk" key="CANNOT_CREATE_RESCUE_DISK_ON_HIDDEN_OS">VeraCrypt 救機光碟在隱形作業系統運行時無法建立。\n\n要建立 VeraCrypt 救機光碟,請啟動到偽裝作業系統之後選擇 [系統] > [建立救機光碟]。</entry> + <entry lang="zh-hk" key="RESCUE_DISK_CHECK_FAILED">不能確定救機光碟是否燒錄成功。\n\n如果你已經燒錄了救機光碟,請彈出後重新插入救機光碟到 CD/DVD,之後再嘗試驗證一次。如果仍然無效,請嘗試使用其他 %s 。\n\n如果你還沒有建立救機光碟,請首先建立一個,然後再點 [下一步] 按鈕。\n\n如果你嘗試驗證一個運行加密盤建立精靈以前建立的救機光碟,則這樣的救機光碟是無法用於當前系統的,這是因為它是使用了不同的主密鑰建立的。你需要燒錄和建立一個新的救機光碟。</entry> <entry lang="zh-hk" key="RESCUE_DISK_CHECK_FAILED_SENTENCE_APPENDIX"> 和/或 其他 CD/DVD 燒錄軟件</entry> - <entry lang="zh-hk" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - 系統最愛加密區</entry> - <entry lang="zh-hk" key="SYS_FAVORITES_HELP_LINK">什麼是系統最愛加密區?</entry> - <entry lang="zh-hk" key="SYS_FAVORITES_REQUIRE_PBA">系統分割區或磁碟機似乎沒有加密。\n\n系統最愛加密區只能使用啟動驗證中的密碼掛載。因此,要啟用系統最愛加密區功能,您需要先加密系統分割區或磁碟機。</entry> - <entry lang="zh-hk" key="DISMOUNT_FIRST">在操作前請解除掛載加密區。</entry> + <entry lang="zh-hk" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - 我的最愛系統加密區</entry> + <entry lang="zh-hk" key="SYS_FAVORITES_HELP_LINK">什麼是我的最愛系統加密區?</entry> + <entry lang="zh-hk" key="SYS_FAVORITES_REQUIRE_PBA">系統分割區或磁碟機似乎沒有加密。\n\n我的最愛系統加密區只能使用啟動驗證中的密碼掛載。因此,要啟用我的最愛系統加密區功能,你需要先加密系統分割區或磁碟機。</entry> + <entry lang="zh-hk" key="UNMOUNT_FIRST">在操作前請解除掛載加密區。</entry> <entry lang="zh-hk" key="CANNOT_SET_TIMER">錯誤:無法設定計時器。</entry> @@ -981,5 +981,5 @@ <entry lang="zh-hk" key="IDPM_REPAIR_FILESYS">修復檔案系統</entry> - <entry lang="zh-hk" key="IDPM_ADD_TO_FAVORITES">新增到最愛...</entry> - <entry lang="zh-hk" key="IDPM_ADD_TO_SYSTEM_FAVORITES">新增為系統最愛加密區...</entry> - <entry lang="zh-hk" key="IDPM_PROPERTIES">屬性(&R)...</entry> + <entry lang="zh-hk" key="IDPM_ADD_TO_FAVORITES">新增到我的最愛...</entry> + <entry lang="zh-hk" key="IDPM_ADD_TO_SYSTEM_FAVORITES">新增為我的最愛系統加密區...</entry> + <entry lang="zh-hk" key="IDPM_PROPERTIES">內容...(&R)</entry> <entry lang="zh-hk" key="HIDDEN_VOL_PROTECTION">隱藏加密區已被保護</entry> @@ -997,22 +997,22 @@ <entry lang="zh-hk" key="UNSUPPORTED_CHARS_IN_PWD">錯誤:密碼必須僅包含 ASCII 字元。\n\n密碼中的非 ASCII 字元可能會導致在作業系統配置改變時加密區不能掛載。\n\n允許使用下面字元:\n\n ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ 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-hk" key="UNSUPPORTED_CHARS_IN_PWD_RECOM">警告:密碼中包含非 ASCII 字元。可能會導致在作業系統配置改變時加密區不能掛載。\n\n您應該使用 ASCII 字元替換密碼中的非 ASCII 字元。 如要這樣做,按“加密區” -> “修改加密區密碼”\n\n下面字元為 ASCII 字元:\n\n ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ 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-hk" key="EXE_FILE_EXTENSION_CONFIRM">警告:我們強烈建議您避免使用可執行檔案名(例如 .exe,.sys,或 .dll)以及其他可能有問題的類似副檔名作為加密區的名稱。使用這些副檔名通常會導致 Windows 或防毒軟件干擾加密區,這很可能會嚴重影響加密區的性能,也可能會導致其他嚴重的問題。\n\n我們強烈建議您移除此副檔名或更換其副檔名(例如,改變為 .iso,.img,.dat)。\n\n您確認繼續使用可能有潛在問題的副檔名嗎?</entry> - <entry lang="zh-hk" key="EXE_FILE_EXTENSION_MOUNT_WARNING">警告:該加密區帶有可執行檔的副檔名(例如 .exe,.sys,或 .dll)或其他可能有問題的類似副檔名作為加密區的名稱。 這很可能導致 Windows 或防毒軟件干預加密區,會嚴重影響加密區的性能,也可能會導致其他嚴重的問題。\n\n我們強烈建議您在解除掛載加密區後移除此副檔名或更換為其他副檔名(例如,改變為 .iso,.img,.dat)。</entry> + <entry lang="zh-hk" key="UNSUPPORTED_CHARS_IN_PWD_RECOM">警告:密碼中包含非 ASCII 字元。可能會導致在作業系統配置改變時加密區不能掛載。\n\n你應該使用 ASCII 字元替換密碼中的非 ASCII 字元。 如要這樣做,按 [加密區] -> [修改加密區密碼]\n\n下面字元為 ASCII 字元:\n\n ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ 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-hk" key="EXE_FILE_EXTENSION_CONFIRM">警告:我們強烈建議你避免使用可執行檔案名 (例如 .exe,.sys 或 .dll) 以及其他可能有問題的類似副檔名作為加密區的名稱。使用這些副檔名通常會導致 Windows 或防毒軟件干擾加密區,這很可能會嚴重影響加密區的性能,也可能會導致其他嚴重的問題。\n\n我們強烈建議你移除此副檔名或更換其副檔名 (例如,改變為 .iso,.img,.dat)。\n\n你確認繼續使用可能有潛在問題的副檔名嗎?</entry> + <entry lang="zh-hk" key="EXE_FILE_EXTENSION_MOUNT_WARNING">警告:該加密區帶有可執行檔的副檔名(例如 .exe,.sys,或 .dll)或其他可能有問題的類似副檔名作為加密區的名稱。 這很可能導致 Windows 或防毒軟件干預加密區,會嚴重影響加密區的性能,也可能會導致其他嚴重的問題。\n\n我們強烈建議你在解除掛載加密區後移除此副檔名或更換為其他副檔名 (例如,改變為 .iso,.img,.dat)。</entry> <entry lang="zh-hk" key="HOMEPAGE">主頁</entry> - <entry lang="zh-hk" key="LARGE_IDE_WARNING_XP">警告:似乎還沒有安裝任何 Windows 作業系統的更新包。您不應該向未 安裝 SP1 或以後更新包的 Windows XP 系統中的大於128 GiB 的 IDE 硬碟寫 入資料!如果這樣做,磁碟區上的資料(不論是否為 VeraCrypt 加密區)可能 會損壞。注意:這是 Windows 作業系統的限制,而不是 VeraCrypt 的錯誤。</entry> - <entry lang="zh-hk" key="LARGE_IDE_WARNING_2K">警告:似乎您的 Windows 2000 系統還未安裝 SP3 或以後版本的修補程式。 您不應該向這個系統中大於 128 GiB 的 IDE 硬碟寫入資料!如果這樣做的話,磁碟上的資料(無論是否為 VeraCrypt 加密區)都可能會損壞。 注意:這是 Windows 作業系統的限制,並不是 VeraCrypt 的錯誤。\n\n注意:您也需在註冊表裏面啟用 48-位元 LBA 支援;更多資訊,請參考 http://support.microsoft.com/kb/305098/EN-US</entry> - <entry lang="zh-hk" key="LARGE_IDE_WARNING_2K_REGISTRY">警告:您的系統不支援 48-位元 LBA ATAPI。因此您將不能寫入到超過 128GB 容量的 IDE 磁碟!如果您仍然堅持這樣做,磁碟上的資料(不論其是否為 VeraCrypt 加密區)將會損壞。請注意,這是 Windows 系統的限制,並不是 VeraCrypt 軟件的限制。\n\n要啟用 48-位元 LBA 支持,請在註冊表的 HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\atapi\\Parameters 下新增一個「EnableBigLba」鍵值並設定其數值為 1。\n\n更多資訊請參考 http://support.microsoft.com/kb/305098</entry> - <entry lang="zh-hk" key="VOLUME_TOO_LARGE_FOR_FAT32">錯誤:大於 4 GB 的檔不能儲存於 FAT32 檔案系統。因此,儲存於 FAT32 檔案系統上的檔類型的加密區(或外層加密區)不能大於 4 GiB。\n\n如果您需要大容量的加密區,請在 NTFS 檔案系統(或者,如果您使用 Windows Vista SP1 或以後版本的系統,在擴展的 exFAT 檔案系統)中建立,除此之外,您也可以使用建立加密分割區來代替建立檔型加密盤。</entry> - <entry lang="zh-hk" key="VOLUME_TOO_LARGE_FOR_WINXP">警告:Windows XP 不支持大於 2048GB 的檔(將會被報告為「無足夠儲存空間」)。因此,在 Windows XP 中您不能建立大於 2048GB 的檔類型加密盤。\n\n請注意,在 Windows XP 中仍然是可以加密整個裝置或者建立大於 2048GB 的分割區類型 VeraCrypt 加密區的。</entry> - <entry lang="zh-hk" key="FREE_SPACE_FOR_WRITING_TO_OUTER_VOLUME">警告:如果您想以後向外層加密區中新增更多的資料或檔,您應該考慮為隱藏加密區選擇一個小一點的尺寸。\n\n您確認要以指定的尺寸繼續嗎?</entry> - <entry lang="zh-hk" key="NO_VOLUME_SELECTED">未選擇加密區。\n\n按「選擇裝置...」或「選擇檔案...」來選擇 VeraCrypt 加密區。</entry> - <entry lang="zh-hk" key="NO_SYSENC_PARTITION_SELECTED">沒有選擇分割區。\n\n按「選擇裝置」 來選擇一個通常需要啟動驗證的已解除掛載的分割區(例如,一個位於另外加密系統磁碟機上的另外一個沒有運行的系統的分割區,或者是另外一個作業系統的加密系統分割區)。\n\n注意:選擇的分割區將被以一般 VeraCrypt 加密區的方式掛載而無需啟動驗證。這在執行備份和修復等操作時比較有用。</entry> - <entry lang="zh-hk" key="CONFIRM_SAVE_DEFAULT_KEYFILES">警告:如果預設的加密鑰檔案被設定和啟用後,則不能掛載不使用該加密鑰檔案的加密區。因此,如果預設的加密鑰檔案被設定和啟用後,在打開非加密鑰檔案加密的加密區時,請記住取消對“使用加密鑰檔案”選項的選擇(在密碼輸入框的下面)。\n\n您確認保存指定的加密鑰檔案/路徑作為預設值嗎?</entry> + <entry lang="zh-hk" key="LARGE_IDE_WARNING_XP">警告:似乎還沒有安裝任何 Windows 作業系統的更新包。你不應該向未安裝 SP1 或以後更新包的 Windows XP 系統中的大於128 GiB 的 IDE 硬碟寫 入資料!如果這樣做,磁碟區上的資料(不論是否為 VeraCrypt 加密區)可能 會損壞。請注意:這是 Windows 作業系統的限制,而不是 VeraCrypt 的錯誤。</entry> + <entry lang="zh-hk" key="LARGE_IDE_WARNING_2K">警告:似乎你的 Windows 2000 系統還未安裝 SP3 或以後版本的修補程式。 你不應該向這個系統中大於 128 GiB 的 IDE 硬碟寫入資料!如果這樣做的話,磁碟上的資料(無論是否為 VeraCrypt 加密區)都可能會損壞。 請注意:這是 Windows 作業系統的限制,而並非 VeraCrypt 的錯誤。\n\n請注意:你也需在註冊表裏面啟用 48 位元的 LBA 支援;更多資訊,請參考 http://support.microsoft.com/kb/305098/EN-US</entry> + <entry lang="zh-hk" key="LARGE_IDE_WARNING_2K_REGISTRY">警告:你的系統已停用 48 位元 LBA ATAPI 的支援。因此你不應寫入到超過 128GB 容量的 IDE 磁碟機!如果你仍然堅持這樣做,磁碟機上的資料(不論其是否為 VeraCrypt 加密區)將會損壞。請注意,這是 Windows 系統的限制,並非 VeraCrypt 軟件的限制。\n\n如要啟用 48-位元 LBA 支持,請在註冊表的 HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\atapi\\Parameters 下新增一個 [EnableBigLba] 鍵值並設定其數值為 1。\n\n更多資訊請參考 http://support.microsoft.com/kb/305098</entry> + <entry lang="zh-hk" key="VOLUME_TOO_LARGE_FOR_FAT32">錯誤:大於 4 GB 的檔不能儲存於 FAT32 檔案系統。因此,儲存於 FAT32 檔案系統上的檔類型的加密區(或外層加密區)不能大於 4 GiB。\n\n如果你需要大容量的加密區,請在 NTFS 檔案系統(或者,如果你使用 Windows Vista SP1 或以後版本的系統,在擴展的 exFAT 檔案系統)中建立,除此之外,你也可以使用建立加密分割區來代替建立檔型加密盤。</entry> + <entry lang="zh-hk" key="VOLUME_TOO_LARGE_FOR_WINXP">警告:Windows XP 不支持大於 2048GB 的檔(將會被報告為 [無足夠儲存空間])。因此,在 Windows XP 中你不能建立大於 2048GB 的檔類型加密盤。\n\n請注意,在 Windows XP 中仍然是可以加密整個裝置或者建立大於 2048GB 的分割區類型 VeraCrypt 加密區的。</entry> + <entry lang="zh-hk" key="FREE_SPACE_FOR_WRITING_TO_OUTER_VOLUME">警告:如果你想以後向外層加密區中新增更多的資料或檔,你應該考慮為隱藏加密區選擇一個小一點的尺寸。\n\n你確認要以指定的尺寸繼續嗎?</entry> + <entry lang="zh-hk" key="NO_VOLUME_SELECTED">未選擇加密區。\n\n按 [選擇裝置...] 或 [選擇檔案...] 來選擇 VeraCrypt 加密區。</entry> + <entry lang="zh-hk" key="NO_SYSENC_PARTITION_SELECTED">沒有選擇分割區。\n\n按 [選擇裝置] 來選擇一個通常需要啟動驗證的已解除掛載的分割區(例如,一個位於另外加密系統磁碟機上的另外一個沒有運行的系統的分割區,或者是另外一個作業系統的加密系統分割區)。\n\n請注意:選擇的分割區將被以一般 VeraCrypt 加密區的方式掛載而無需啟動驗證。這在執行備份和修復等操作時比較有用。</entry> + <entry lang="zh-hk" key="CONFIRM_SAVE_DEFAULT_KEYFILES">警告:如果預設的加密鑰檔案被設定和啟用後,則不能掛載不使用該加密鑰檔案的加密區。因此,如果預設的加密鑰檔案被設定和啟用後,在打開非加密鑰檔案加密的加密區時,請記住取消對 [使用加密鑰檔案] 選項的選擇(在密碼輸入框的下面)。\n\n你確認保存指定的加密鑰檔案/路徑作為預設值嗎?</entry> <entry lang="zh-hk" key="HK_AUTOMOUNT_DEVICES">自動掛載裝置</entry> - <entry lang="zh-hk" key="HK_DISMOUNT_ALL">全部解除掛載</entry> + <entry lang="zh-hk" key="HK_UNMOUNT_ALL">全部解除掛載</entry> <entry lang="zh-hk" key="HK_WIPE_CACHE">清除暫存</entry> - <entry lang="zh-hk" key="HK_DISMOUNT_ALL_AND_WIPE">解除掛載全部 & 清除暫存</entry> - <entry lang="zh-hk" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">強制全部解除掛載並清除暫存</entry> - <entry lang="zh-hk" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">強制全部解除掛載清除暫存並退出程式</entry> - <entry lang="zh-hk" key="HK_MOUNT_FAVORITE_VOLUMES">掛載最愛加密區</entry> + <entry lang="zh-hk" key="HK_UNMOUNT_ALL_AND_WIPE">全部解除掛載並清除暫存</entry> + <entry lang="zh-hk" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">強制全部解除掛載並清除暫存</entry> + <entry lang="zh-hk" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">強制全部解除掛載清除暫存並退出程式</entry> + <entry lang="zh-hk" key="HK_MOUNT_FAVORITE_VOLUMES">掛載我的最愛加密區</entry> <entry lang="zh-hk" key="HK_SHOW_HIDE_MAIN_WINDOW">顯示/隱藏 VeraCrypt 主視窗</entry> @@ -1024,28 +1024,28 @@ <entry lang="zh-hk" key="HOTKEY_REGISTRATION_ERROR">警告:一個或多個 VeraCrypt 作用於系統範圍的快捷鍵不能使用!\n\n請確認 VeraCrypt 的這些快捷鍵沒有被其他程式或作業系統佔用。</entry> - <entry lang="zh-hk" key="PAGING_FILE_CREATION_PREVENTED">已阻止建立虛擬記憶體分頁檔案。\n\n請注意,由於 Windows 本身的問題,分頁檔案不可存在於非系統類 VeraCrypt 加密區(包括系統最愛加密區)。VeraCrypt 僅支援在加密的系統分割區/裝置上建立分頁檔案。</entry> - <entry lang="zh-hk" key="SYS_ENC_HIBERNATION_PREVENTED">VeraCrypt 加密休眠檔時發生了錯誤或者非相容問題。因此系統的休眠已被阻止。\n\n注意:當電腦處於休眠模式(或進入節電模式),系統記憶體的資訊會被寫入位於磁碟機上的休眠檔。VeraCrypt 不能阻止在記憶體中打開的加密密鑰和敏感檔的內容以未加密的形式存放於休眠檔。</entry> + <entry lang="zh-hk" key="PAGING_FILE_CREATION_PREVENTED">已阻止建立虛擬記憶體分頁檔案。\n\n請注意,由於 Windows 本身的問題,分頁檔案不可存在於非系統類 VeraCrypt 加密區(包括我的最愛系統加密區)。VeraCrypt 僅支援在加密的系統分割區/裝置上建立分頁檔案。</entry> + <entry lang="zh-hk" key="SYS_ENC_HIBERNATION_PREVENTED">VeraCrypt 加密休眠檔時發生了錯誤或者非相容問題。因此系統的休眠已被阻止。\n\n請注意:當電腦處於休眠模式(或進入節電模式),系統記憶體的資訊會被寫入位於磁碟機上的休眠檔。VeraCrypt 不能阻止在記憶體中打開的加密密鑰和敏感檔的內容以未加密的形式存放於休眠檔。</entry> <entry lang="zh-hk" key="HIDDEN_OS_HIBERNATION_PREVENTED">休眠功能已被阻止。\n\nVeraCrypt 不支援使用額外啟動分割區的隱形系統中的休眠功能。請注意啟動分割區是由偽裝系統和隱形系統共用的。因此,要防止資料洩露和休眠可能會帶來的問題,VeraCrypt 不得不阻止隱形系統向共用的啟動分割區寫入資料,以及阻止隱形系統休眠。</entry> - <entry lang="zh-hk" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED">VeraCrypt 掛載的加密區 %c:已完成解除掛載。 </entry> - <entry lang="zh-hk" key="MOUNTED_VOLUMES_DISMOUNTED">VeraCrypt 加密區已解除掛載。</entry> - <entry lang="zh-hk" key="VOLUMES_DISMOUNTED_CACHE_WIPED">已解除掛載 VeraCrypt 加密區並且已抹除密碼暫存。</entry> - <entry lang="zh-hk" key="SUCCESSFULLY_DISMOUNTED">已成功解除掛載</entry> - <entry lang="zh-hk" key="CONFIRM_BACKGROUND_TASK_DISABLED">警告:如果 VeraCrypt 背景工作被停用,以下的功能將會失效:\n\n1)系統快捷鍵\n2)自動解除掛載加密區(例如登出時,意外的主裝置移除,超時,等等)\n3)自動掛載最愛加密區\n4)提示(例如:對隱藏加密區的損壞被阻止時)\n5)通知欄圖示\n\n注意:您可以隨時在通過右鍵單擊 VeraCrypt 的通知欄圖示並選擇“退出”來停止背景工作。\n\n您確認要停止 VeraCrypt 的背景工作嗎?</entry> - <entry lang="zh-hk" key="CONFIRM_NO_FORCED_AUTODISMOUNT">警告:如果此選項被停用,包含打開的檔/目錄 的加密區將不能自動解除掛載。\n\n您確認要禁用這個選項嗎?</entry> - <entry lang="zh-hk" key="WARN_PREF_AUTO_DISMOUNT">警告:內含開啟的檔案/目錄的加密區將不能自動解除掛載。\n\n要防止這種情況,在對話方塊視窗中啟用下面選項:「無論加密區是否有被打開的檔案或資料夾都強制自動解除掛載」</entry> - <entry lang="zh-hk" key="WARN_PREF_AUTO_DISMOUNT_ON_POWER">警告:當筆記型電腦的電力不足時,Windows 可能會在電腦進入待機模式時,系統會向正在運行中的程式發送相應的資訊。因此,這種情況下 VeraCrypt 可能會無法自動解除掛載加密區。</entry> - <entry lang="zh-hk" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">您已經安排了加密分割區/裝置的計畫。該計畫尚未完成。\n\n您希望現在繼續這個加密過程嗎?</entry> - <entry lang="zh-hk" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">您已經計畫了加密或解密系統分割區或磁碟機的操作。但該操作尚未完成。\n\n您希望開始(或繼續)該操作嗎?</entry> - <entry lang="zh-hk" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">您想要軟件提示您是否要繼續當前計畫的加密非系統分割區/磁碟區的加密過程嗎?</entry> + <entry lang="zh-hk" key="VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED">VeraCrypt 掛載的加密區 %c:已完成解除掛載。 </entry> + <entry lang="zh-hk" key="MOUNTED_VOLUMES_UNMOUNTED">VeraCrypt 加密區已解除掛載。</entry> + <entry lang="zh-hk" key="VOLUMES_UNMOUNTED_CACHE_WIPED">已解除掛載 VeraCrypt 加密區並且已抹除密碼暫存。</entry> + <entry lang="zh-hk" key="SUCCESSFULLY_UNMOUNTED">已成功解除掛載</entry> + <entry lang="zh-hk" key="CONFIRM_BACKGROUND_TASK_DISABLED">警告:如果 VeraCrypt 背景工作被停用,以下的功能將會失效:\n\n1)系統快捷鍵\n2)自動解除掛載加密區(例如登出時,意外的主裝置移除,超時,等等)\n3)自動掛載我的最愛加密區\n4)提示(例如:對隱藏加密區的損壞被阻止時)\n5)通知欄圖示\n\n請注意:你可以隨時在通過右鍵單擊 VeraCrypt 的通知欄圖示並選擇 [退出] 來停止背景工作。\n\n你確認要停止 VeraCrypt 的背景工作嗎?</entry> + <entry lang="zh-hk" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">警告:如果此選項被停用,包含打開的檔/目錄 的加密區將不能自動解除掛載。\n\n你確認要禁用這個選項嗎?</entry> + <entry lang="zh-hk" key="WARN_PREF_AUTO_UNMOUNT">警告:內含開啟的檔案/目錄的加密區將不能自動解除掛載。\n\n要防止這種情況,在對話方塊視窗中啟用下面選項:[無論加密區是否有被打開的檔案或資料夾都強制自動解除掛載]</entry> + <entry lang="zh-hk" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">警告:當筆記型電腦的電力不足時,Windows 可能會在電腦進入待機模式時,系統會向正在運行中的程式發送相應的資訊。因此,這種情況下 VeraCrypt 可能會無法自動解除掛載加密區。</entry> + <entry lang="zh-hk" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">你已經安排了加密分割區/裝置的計畫。該計畫尚未完成。\n\n你希望現在繼續這個加密過程嗎?</entry> + <entry lang="zh-hk" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">你已經計畫了加密或解密系統分割區或磁碟機的操作。但該操作尚未完成。\n\n你希望開始(或繼續)該操作嗎?</entry> + <entry lang="zh-hk" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">你想要軟件提示你是否要繼續當前計畫的加密非系統分割區/磁碟區的加密過程嗎?</entry> <entry lang="zh-hk" key="KEEP_PROMPTING_ME">是,一直提示我</entry> <entry lang="zh-hk" key="DO_NOT_PROMPT_ME">否,不要再提示我</entry> - <entry lang="zh-hk" key="NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL_NOTE">重要:請一定記住,任何時候,您都可以通過從 VeraCrypt 視窗的主功能表中選擇「加密區」 >「繼續被中斷的過程」,來繼續任何非系統服務/磁碟區的加密過程。</entry> - <entry lang="zh-hk" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">您已經設定了加密解密系統分割區或磁碟機的計畫任務。然而,啟動驗證已失敗(或被繞過)。\n\n注意:如果您在啟動驗證環境中解密了系統分割區或磁碟機,您可能需要從 VeraCrypt 視窗的 「系統」 功能表 >「永久解密系統分割區或磁碟機」 完成最後的設定步驟。</entry> - <entry lang="zh-hk" key="CONFIRM_EXIT">警告:如果現在退出 VeraCrypt,以下功能將被停用:\n\n1)系統快捷鍵\n2)自動解除掛載加密區(例如登出時,意外移除主機裝置,超時,等等)\n3)自動掛載最愛加密區 \n4)提示(例如,當阻止損害隱藏加密區時)\n\n注意:如果您不希望 VeraCrypt 在關閉程式視窗後以背景方式運行,請在程式參數選擇內停用背景運作選項。(並且,如有必要,在程式參數裏面禁用 VeraCrypt 的自動運行)。\n\n您確定要退出 VeraCrypt 嗎?</entry> + <entry lang="zh-hk" key="NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL_NOTE">重要:請一定記住,任何時候,你都可以通過從 VeraCrypt 視窗的主功能表中選擇 [加密區] > [繼續被中斷的過程],來繼續任何非系統服務/磁碟區的加密過程。</entry> + <entry lang="zh-hk" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">你已經設定了加密解密系統分割區或磁碟機的計畫任務。然而,啟動驗證已失敗(或被繞過)。\n\n請注意:如果你在啟動驗證環境中解密了系統分割區或磁碟機,你可能需要從 VeraCrypt 視窗的 [系統] 功能表 > [永久解密系統分割區或磁碟機] 完成最後的設定步驟。</entry> + <entry lang="zh-hk" key="CONFIRM_EXIT">警告:如果現在退出 VeraCrypt,以下功能將被停用:\n\n1)系統快捷鍵\n2)自動解除掛載加密區(例如登出時,意外移除主機裝置,超時,等等)\n3)自動掛載我的最愛加密區 \n4)提示(例如,當阻止損害隱藏加密區時)\n\n請注意:如果你不希望 VeraCrypt 在關閉程式視窗後以背景方式運行,請在程式參數選擇內停用背景運作選項。(並且,如有必要,在程式參數裏面禁用 VeraCrypt 的自動運行)。\n\n你確定要退出 VeraCrypt 嗎?</entry> <entry lang="zh-hk" key="CONFIRM_EXIT_UNIVERSAL">要退出嗎?</entry> <entry lang="zh-hk" key="CHOOSE_ENCRYPT_OR_DECRYPT">VeraCrypt 沒有足夠資訊確定是否要加密還是解密。</entry> - <entry lang="zh-hk" key="CHOOSE_ENCRYPT_OR_DECRYPT_FINALIZE_DECRYPT_NOTE">VeraCrypt 無足夠的資訊來確定加解密狀態。\n\n注意:如果您在啟動驗證環境解密系統分割區或磁碟機,您可能需要按 Decrypt(解密)來最後完成解密過程。</entry> - <entry lang="zh-hk" key="NONSYS_INPLACE_ENC_REVERSE_INFO">注意:當你正在就地加密一個非系統分割區/磁碟區並且一個錯誤持續地阻止您完成此程序,你將無法掛載磁碟區 (以及存取儲存在入面的數據) 直至您完全解密磁碟區 (i.e. reverse the process).\n\n如您要這樣做的話,請依照以下步驟:\n1) 離開此精靈。\n2) 在 VeraCrypt 主視窗,選取「加密區」>「繼續已中斷的程序」。\n3) 選取「解密」。</entry> - <entry lang="zh-hk" key="NONSYS_INPLACE_ENC_DEFER_CONFIRM">您要打斷和推遲對分割區或磁碟機的加密嗎?\n\n注意:要記住這個加密區在完全加密前是不能被掛載的。您可以繼續加密過程,加密則會在中斷的地方繼續。要達到這點,例如,可以從 VeraCrypt 主視窗的功能表中選擇「加密區」 >「繼續被中斷的過程」。</entry> - <entry lang="zh-hk" key="SYSTEM_ENCRYPTION_DEFER_CONFIRM">您要打斷和推遲對系統分割區或磁碟機的加密嗎?\n\n注意:您以後也可以從中斷位置還原加密進度。操作如下:在 VeraCrypt 介面中選擇 「系統」 >「繼續被中斷的進度」。如果您想永久中止或回滾加密過程,請選擇 「系統」 > 「永久解密系統分割區或磁碟機」。</entry> - <entry lang="zh-hk" key="SYSTEM_DECRYPTION_DEFER_CONFIRM">您要打斷和推遲對系統分割區或磁碟機的加密嗎?\n\n注意:您以後也可以從中斷位置還原加密進度。操作如下:在 VeraCrypt 介面中選擇 「系統」 >「繼續被中斷的進度」。如果您想回滾解密過程(和開始加密),選擇 「系統」 > 「加密系統分割區或磁碟機」。</entry> + <entry lang="zh-hk" key="CHOOSE_ENCRYPT_OR_DECRYPT_FINALIZE_DECRYPT_NOTE">VeraCrypt 無足夠的資訊來確定加解密狀態。\n\n請注意:如果你在啟動驗證環境解密系統分割區或磁碟機,你可能需要按 Decrypt(解密)來最後完成解密過程。</entry> + <entry lang="zh-hk" key="NONSYS_INPLACE_ENC_REVERSE_INFO">請注意:當你正在就地加密一個非系統分割區/磁碟區並且一個錯誤持續地阻止你完成此程序,你將無法掛載磁碟區 (以及存取儲存在入面的數據) 直至你完全解密磁碟區 (i.e. reverse the process).\n\n如你要這樣做的話,請依照以下步驟:\n1) 離開此精靈。\n2) 在 VeraCrypt 主視窗,選取 [加密區] > [繼續已中斷的程序]。\n3) 選取 [解密]。</entry> + <entry lang="zh-hk" key="NONSYS_INPLACE_ENC_DEFER_CONFIRM">你要打斷和推遲對分割區或磁碟機的加密嗎?\n\n請注意:要記住這個加密區在完全加密前是不能被掛載的。你可以繼續加密過程,加密則會在中斷的地方繼續。要達到這點,例如,可以從 VeraCrypt 主視窗的功能表中選擇 [加密區] > [繼續被中斷的過程]。</entry> + <entry lang="zh-hk" key="SYSTEM_ENCRYPTION_DEFER_CONFIRM">你要打斷和推遲對系統分割區或磁碟機的加密嗎?\n\n請注意:你以後也可以從中斷位置還原加密進度。操作如下:在 VeraCrypt 介面中選擇 [系統] >[繼續被中斷的進度]。如果你想永久中止或回滾加密過程,請選擇 [系統] > [永久解密系統分割區或磁碟機]。</entry> + <entry lang="zh-hk" key="SYSTEM_DECRYPTION_DEFER_CONFIRM">你要打斷和推遲對系統分割區或磁碟機的加密嗎?\n\n請注意:你以後也可以從中斷位置還原加密進度。操作如下:在 VeraCrypt 介面中選擇 [系統] >[繼續被中斷的進度]。如果你想回滾解密過程(和開始加密),選擇 [系統] > [加密系統分割區或磁碟機]。</entry> <entry lang="zh-hk" key="FAILED_TO_INTERRUPT_SYSTEM_ENCRYPTION">錯誤:中斷加密/解密系統分割區或磁碟機的操作失敗。</entry> @@ -1054,6 +1054,6 @@ <entry lang="zh-hk" key="FAILED_TO_START_WIPING">錯誤:開始抹除過程時失敗。</entry> - <entry lang="zh-hk" key="INCONSISTENCY_RESOLVED">發現不一致性。\n\n\n(如果您使用此鏈結報告這個錯誤,請在報告中包含下面資訊: %hs)</entry> - <entry lang="zh-hk" key="UNEXPECTED_STATE">錯誤:未知的狀態。\n\n\n(如果您報告與之相關的 BUG,請在錯誤報告裏面包含下面的技術資訊: %hs)</entry> - <entry lang="zh-hk" key="NO_SYS_ENC_PROCESS_TO_RESUME">並沒有已中斷的系統分割區或磁碟機的加密/解密過程可以恢復。\n\n注意:如果您想恢復一個已中斷的非系統分割區/磁碟區的加密/解密過程,選取「磁碟區」>「恢復已中斷的過程」。</entry> - <entry lang="zh-hk" key="HIDVOL_PROT_BKG_TASK_WARNING">警告: VeraCrypt 背景工作已禁用。在您退出 VeraCrypt 後,如果對隱藏加密區的損壞企圖已被保護,您也將無法得到提示。\n\n注意:您可以隨時在通過右鍵單擊 VeraCrypt 的通知欄圖示並 選擇“退出”來停止背景工作。\n\n\n您要啟用 VeraCrypt 背景工作嗎?</entry> + <entry lang="zh-hk" key="INCONSISTENCY_RESOLVED">發現不一致性。\n\n\n(如果你使用此鏈結報告這個錯誤,請在報告中包含下面資訊: %hs)</entry> + <entry lang="zh-hk" key="UNEXPECTED_STATE">錯誤:未知的狀態。\n\n\n(如果你報告與之相關的 BUG,請在錯誤報告裏面包含下面的技術資訊: %hs)</entry> + <entry lang="zh-hk" key="NO_SYS_ENC_PROCESS_TO_RESUME">並沒有已中斷的系統分割區或磁碟機的加密/解密過程可以恢復。\n\n請注意:如果你想恢復一個已中斷的非系統分割區/磁碟區的加密/解密過程,選取 [磁碟區] >[恢復已中斷的過程]。</entry> + <entry lang="zh-hk" key="HIDVOL_PROT_BKG_TASK_WARNING">警告: VeraCrypt 背景工作已禁用。在你退出 VeraCrypt 後,如果對隱藏加密區的損壞企圖已被保護,你也將無法得到提示。\n\n請注意:你可以隨時在通過右鍵單擊 VeraCrypt 的通知欄圖示並 選擇 [退出] 來停止背景工作。\n\n\n你要啟用 VeraCrypt 背景工作嗎?</entry> <entry lang="zh-hk" key="LANG_PACK_VERSION">語言包版本: %s</entry> @@ -1061,43 +1061,43 @@ <entry lang="zh-hk" key="REPAIRING_FS">正在嘗試修復掛載成 %s 的 VeraCrypt 加密區的檔案系統...</entry> - <entry lang="zh-hk" key="WARN_64_BIT_BLOCK_CIPHER">警告:該加密區使用了已被廢棄的加密演算法。\n\n所有 64-位元塊加密演算法(Blowfish,CAST-128,和 Triple DES)已經逐漸不再被使用了。該加密區還是可以用更新版本的 VeraCrypt 來掛載。然而以後則不會針對這些廢棄演算法採取一些改善措施。我們推薦您新建立一個使用 128-位元塊加密演算法的 Veracrypt 加密區(如:AES,Serpent,Twofish,等等)然後將這個使用舊演算法的加密區內的檔案移動到新的加密區內。</entry> - <entry lang="zh-hk" key="SYS_AUTOMOUNT_DISABLED">您的系統未被設定為自動掛載新加密區。 因此也不可能掛載裝置類的加密區。自動解除掛載可以在執行下列命令後重新啟動系統來啟用。\n\n\nmountvol.exe /E</entry> - <entry lang="zh-hk" key="SYS_ASSIGN_DRIVE_LETTER">請在繼續前為該磁碟機/分割區分配一個磁碟機代號(「控制面板」>「系統和維護」 >「管理工具」 - 「建立和格式化分割區」)。\n\n這些是作業系統所要求的。</entry> + <entry lang="zh-hk" key="WARN_64_BIT_BLOCK_CIPHER">警告:該加密區使用了已被廢棄的加密演算法。\n\n所有 64-位元塊加密演算法(Blowfish,CAST-128,和 Triple DES)已經逐漸不再被使用了。該加密區還是可以用更新版本的 VeraCrypt 來掛載。然而以後則不會針對這些廢棄演算法採取一些改善措施。我們推薦你新建立一個使用 128-位元塊加密演算法的 Veracrypt 加密區(如:AES,Serpent,Twofish,等等)然後將這個使用舊演算法的加密區內的檔案移動到新的加密區內。</entry> + <entry lang="zh-hk" key="SYS_AUTOMOUNT_DISABLED">你的系統未被設定為自動掛載新加密區。 因此也不可能掛載裝置類的加密區。自動解除掛載可以在執行下列命令後重新啟動系統來啟用。\n\n\nmountvol.exe /E</entry> + <entry lang="zh-hk" key="SYS_ASSIGN_DRIVE_LETTER">請在繼續前為該磁碟機/分割區分配一個磁碟機代號([控制面板] > [系統和維護] > [管理工具] - [建立和格式化分割區])。\n\n這些是作業系統所要求的。</entry> <entry lang="zh-hk" key="MOUNT_TC_VOLUME">掛載 VeraCrypt 加密區</entry> - <entry lang="zh-hk" key="DISMOUNT_ALL_TC_VOLUMES">解除掛載所有 VeraCrypt 加密區</entry> + <entry lang="zh-hk" key="UNMOUNT_ALL_TC_VOLUMES">解除掛載所有 VeraCrypt 加密區</entry> <entry lang="zh-hk" key="UAC_INIT_ERROR">VeraCrypt 無法取得系統管理員許可權。</entry> - <entry lang="zh-hk" key="ERR_ACCESS_DENIED">存取已被作業系統拒絕。\n\n可能原因:作業系統要求你對某些資料夾、檔案、和儲存裝置具有讀寫權限(或管理員權限),以便您能夠從其中讀寫資料。一般情況下,非系統管理員僅允許在他自己的文件資料夾中建立、讀取和修改檔案。</entry> - <entry lang="zh-hk" key="SECTOR_SIZE_UNSUPPORTED">錯誤:該磁碟機使用了未支援的磁區尺寸。\n\n如果裝置的磁區大於 4096 位元組,目前不可能在其上建立 分割區/裝置 類的加密區。然而,您可以在此類磁碟機上建立檔類型的加密區。</entry> + <entry lang="zh-hk" key="ERR_ACCESS_DENIED">存取已被作業系統拒絕。\n\n可能原因:作業系統要求你對某些資料夾、檔案、和儲存裝置具有讀寫權限(或管理員權限),以便你能夠從其中讀寫資料。一般情況下,非系統管理員僅允許在他自己的文件資料夾中建立、讀取和修改檔案。</entry> + <entry lang="zh-hk" key="SECTOR_SIZE_UNSUPPORTED">錯誤:該磁碟機使用了未支援的磁區尺寸。\n\n如果裝置的磁區大於 4096 位元組,目前不可能在其上建立 分割區/裝置 類的加密區。然而,你可以在此類磁碟機上建立檔類型的加密區。</entry> <entry lang="zh-hk" key="SYSENC_UNSUPPORTED_SECTOR_SIZE_BIOS">目前情況下,如果安裝系統的磁片磁區尺寸不是 512 位元組,則無法在此基礎上建立加密系統。</entry> - <entry lang="zh-hk" key="NO_SPACE_FOR_BOOT_LOADER">VeraCrypt 開機管理器要求系統磁碟機最前端至少有 32 KiB 的未分配空間(VeraCrypt 開機管理程式需要安裝到該區域)。很不幸,您的磁碟機無法滿足這個條件。\n\n請不要把這個問題報告為 VeraCrypt 的程式缺陷。要解決這個問題,您需要對硬碟重新分割區並保留硬碟的前 32 KiB 為空閒狀態(大多數情況下,需要您刪除和重建第一個分割區)。我們推薦您使用微軟的分割區管理來完成這個操作,例如,當您安裝 Windows 時的分割區管理程式。</entry> - <entry lang="zh-hk" key="FEATURE_UNSUPPORTED_ON_CURRENT_OS">此功能不支援當前您正在使用的作業系統版本。</entry> - <entry lang="zh-hk" key="SYS_ENCRYPTION_UNSUPPORTED_ON_CURRENT_OS">VeraCrypt 不支援在您目前使用的作業系統版本內加密系統分割區或磁碟機。</entry> - <entry lang="zh-hk" key="SYS_ENCRYPTION_UNSUPPORTED_ON_VISTA_SP0">在您加密 Windows Vista 的系統分割區/裝置之前,您需要為 Vista 安裝 Service Pack 1 或更高版本的更新。\n\n提示:Vista Service Pack 1 解決了啟動系統時的自由基礎記憶體缺陷。</entry> + <entry lang="zh-hk" key="NO_SPACE_FOR_BOOT_LOADER">VeraCrypt 開機管理器要求系統磁碟機最前端至少有 32 KiB 的未分配空間(VeraCrypt 開機管理程式需要安裝到該區域)。很不幸,你的磁碟機無法滿足這個條件。\n\n請不要把這個問題報告為 VeraCrypt 的程式缺陷。要解決這個問題,你需要對硬碟重新分割區並保留硬碟的前 32 KiB 為空閒狀態(大多數情況下,需要你刪除和重建第一個分割區)。我們推薦你使用微軟的分割區管理來完成這個操作,例如,當你安裝 Windows 時的分割區管理程式。</entry> + <entry lang="zh-hk" key="FEATURE_UNSUPPORTED_ON_CURRENT_OS">此功能不支援當前你正在使用的作業系統版本。</entry> + <entry lang="zh-hk" key="SYS_ENCRYPTION_UNSUPPORTED_ON_CURRENT_OS">VeraCrypt 不支援在你目前使用的作業系統版本內加密系統分割區或磁碟機。</entry> + <entry lang="zh-hk" key="SYS_ENCRYPTION_UNSUPPORTED_ON_VISTA_SP0">在你加密 Windows Vista 的系統分割區/裝置之前,你需要為 Vista 安裝 Service Pack 1 或更高版本的更新。\n\n提示:Vista Service Pack 1 解決了啟動系統時的自由基礎記憶體缺陷。</entry> <entry lang="zh-hk" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ON_VISTA_SP0">VeraCrypt 不再支援對未安裝 SP 補丁的 Windows Vista 系統的系統分割區/裝置的加密。在升級 VeraCrypt 之前,請安裝 Vista 的 Service Pack 1 或更高補丁版本。</entry> - <entry lang="zh-hk" key="FEATURE_REQUIRES_INSTALLATION">錯誤:此功能要求 VeraCrypt 必須安裝於當前系統(您正在以便攜模式運行 VeraCrypt)。\n\n請安裝 VeraCrypt 之後再試一次。</entry> - <entry lang="zh-hk" key="WINDOWS_NOT_ON_BOOT_DRIVE_ERROR">警告:Windows 看來還未安裝在它所啟動的磁碟機上。此功能目前尚不支援。\n\n在繼續之您應該先確認 Windows 已安裝在它所啟動的磁碟機上。\n\n您確認要繼續嗎?</entry> - <entry lang="zh-hk" key="TC_BOOT_LOADER_ALREADY_INSTALLED">小心:VeraCrypt 開機管理程式已經安裝到了您的系統磁碟機上了!\n\n這可能在您的電腦上已經加密了另外一個系統。\n\n警告:繼續加密當前運行的系統可能會導致其他系統無法啟動或導致資料無法存取。\n\n您確定要繼續嗎?</entry> - <entry lang="zh-hk" key="SYS_LOADER_RESTORE_FAILED">還原原本的系統開機管理程式時失敗。\n\n請使用您的 VeraCrypt 救機光碟(「Repair Options」>「Restore original system loader」)或者 Windows 安裝盤來清除 VeraCrypt 開機管理程式。</entry> + <entry lang="zh-hk" key="FEATURE_REQUIRES_INSTALLATION">錯誤:此功能要求 VeraCrypt 必須安裝於當前系統(你正在以便攜模式運行 VeraCrypt)。\n\n請安裝 VeraCrypt 之後再試一次。</entry> + <entry lang="zh-hk" key="WINDOWS_NOT_ON_BOOT_DRIVE_ERROR">警告:Windows 看來還未安裝在它所啟動的磁碟機上。此功能目前尚不支援。\n\n在繼續之你應該先確認 Windows 已安裝在它所啟動的磁碟機上。\n\n你確認要繼續嗎?</entry> + <entry lang="zh-hk" key="TC_BOOT_LOADER_ALREADY_INSTALLED">小心:VeraCrypt 開機管理程式已經安裝到了你的系統磁碟機上了!\n\n這可能在你的電腦上已經加密了另外一個系統。\n\n警告:繼續加密當前運行的系統可能會導致其他系統無法啟動或導致資料無法存取。\n\n你確定要繼續嗎?</entry> + <entry lang="zh-hk" key="SYS_LOADER_RESTORE_FAILED">還原原本的系統開機管理程式時失敗。\n\n請使用你的 VeraCrypt 救機光碟([Repair Options] > [Restore original system loader])或者 Windows 安裝盤來清除 VeraCrypt 開機管理程式。</entry> <entry lang="zh-hk" key="SYS_LOADER_UNAVAILABLE_FOR_RESCUE_DISK">原本的系統開機程式將不會儲存到救機光碟上(可能原因:備份檔案已丟失)。</entry> - <entry lang="zh-hk" key="ERROR_MBR_PROTECTED">寫入 MBR 磁區時失敗。\n\n您的 BIOS 可能設定為保護 MBR 磁區或一些還原軟件也會保護 MBR。請確認沒有安裝保護 MBR 的還原軟件並且檢查您的 BIOS 設定(啟動電腦後按 F2,Delete,或 Esc)中的 MBR/反病毒保護。</entry> - <entry lang="zh-hk" key="BOOT_LOADER_FINGERPRINT_CHECK_FAILED">警告: VeraCrypt 開機程式的元整性驗證碼失敗!\n磁碟有可能已被攻擊者篡改 (「邪惡女傭」攻擊)。\n\n如您用了由不同版本的 VeraCrypt 所製作的救機光碟來還原 VeraCrypt 開機程式都有可能觸發這個警告。\n\n強烈建議閣下立即更換密碼以還原成正確的 VeraCrypt 開機程式。同時也建議重新安裝 VeraCrypt 並採取必要措施防止陌生人接近使用這台電腦。</entry> + <entry lang="zh-hk" key="ERROR_MBR_PROTECTED">寫入 MBR 磁區時失敗。\n\n你的 BIOS 可能設定為保護 MBR 磁區或一些還原軟件也會保護 MBR。請確認沒有安裝保護 MBR 的還原軟件並且檢查你的 BIOS 設定(啟動電腦後按 F2,Delete,或 Esc)中的 MBR/反病毒保護。</entry> + <entry lang="zh-hk" key="BOOT_LOADER_FINGERPRINT_CHECK_FAILED">警告: VeraCrypt 開機程式的元整性驗證碼失敗!\n磁碟有可能已被攻擊者篡改 ([邪惡女傭] 攻擊)。\n\n如你用了由不同版本的 VeraCrypt 所製作的救機光碟來還原 VeraCrypt 開機程式都有可能觸發這個警告。\n\n強烈建議閣下立即更換密碼以還原成正確的 VeraCrypt 開機程式。同時也建議重新安裝 VeraCrypt 並採取必要措施防止陌生人接近使用這台電腦。</entry> <entry lang="zh-hk" key="BOOT_LOADER_VERSION_INCORRECT_PREFERENCES">所要求版本的 VeraCrypt 開機管理程式當前沒有安裝。這可能導致某些設定無法保持。</entry> - <entry lang="zh-hk" key="CUSTOM_BOOT_LOADER_MESSAGE_HELP">提示:在某些環境,您可能希望避免外人(攻擊者)在您啟動電腦時看到您使用了 VeraCrypt 加密了系統。上面的選項允許您自訂 VeraCrypt 開機管理程式螢幕以避免此類發生被識別的情況。如果您啟用了第一個選項,在開機管理程式畫面不會顯示任何文字(即時您輸入錯誤的密碼也不會顯示)。在您輸入密碼的時候電腦似乎被凍結的一樣。此外,也可以顯示自訂的資訊來誤導攻擊者。例如,諸如「Missing operating system」之類的英文資訊(這個資訊在 Windows 開機管理程式未發現啟動分割區的時候顯示)。然而,必須要提醒的是,如果攻擊者分析硬碟的內容,他仍然可以發現硬碟上存在 VeraCrypt 開機管理程式。</entry> - <entry lang="zh-hk" key="CUSTOM_BOOT_LOADER_MESSAGE_PROMPT">警告:請記住,如果您啟用此選項,VeraCrypt 開機管理程式不會顯示任何文字(即便是輸錯密碼了也不會顯示任何文字)。電腦在夠輸入密碼的時候電腦似乎被凍結(沒有回應)一樣(游標不會移動並且在按下按鍵的時候也不會顯示遮罩)。\n\n您確認要啟用此選項嗎? </entry> - <entry lang="zh-hk" key="SYS_PARTITION_OR_DRIVE_APPEARS_FULLY_ENCRYPTED">您的系統分割區或磁碟機似乎已被完全加密了。</entry> + <entry lang="zh-hk" key="CUSTOM_BOOT_LOADER_MESSAGE_HELP">提示:在某些環境,你可能希望避免外人(攻擊者)在你啟動電腦時看到你使用了 VeraCrypt 加密了系統。上面的選項允許你自訂 VeraCrypt 開機管理程式螢幕以避免此類發生被識別的情況。如果你啟用了第一個選項,在開機管理程式畫面不會顯示任何文字(即時你輸入錯誤的密碼也不會顯示)。在你輸入密碼的時候電腦似乎被凍結的一樣。此外,也可以顯示自訂的資訊來誤導攻擊者。例如,諸如 [Missing operating system] 之類的英文資訊(這個資訊在 Windows 開機管理程式未發現啟動分割區的時候顯示)。然而,必須要提醒的是,如果攻擊者分析硬碟的內容,他仍然可以發現硬碟上存在 VeraCrypt 開機管理程式。</entry> + <entry lang="zh-hk" key="CUSTOM_BOOT_LOADER_MESSAGE_PROMPT">警告:請記住,如果你啟用此選項,VeraCrypt 開機管理程式不會顯示任何文字(即便是輸錯密碼了也不會顯示任何文字)。電腦在夠輸入密碼的時候電腦似乎被凍結(沒有回應)一樣(游標不會移動並且在按下按鍵的時候也不會顯示遮罩)。\n\n你確認要啟用此選項嗎? </entry> + <entry lang="zh-hk" key="SYS_PARTITION_OR_DRIVE_APPEARS_FULLY_ENCRYPTED">你的系統分割區或磁碟機似乎已被完全加密了。</entry> <entry lang="zh-hk" key="SYSENC_UNSUPPORTED_FOR_DYNAMIC_DISK">VeraCrypt 不支援加密已經轉換為動態磁碟的系統磁碟機。</entry> - <entry lang="zh-hk" key="WDE_UNSUPPORTED_FOR_EXTENDED_PARTITIONS">該系統磁碟機包含擴展(邏輯)分割區。\n\n 您只能在 Windows Vista 或以後版本中加密包含擴展(邏輯)分割區的整個系統磁碟機。而在 Windows XP 系統中,您只可以加密僅含有一個主分割區的整個系統磁碟機。\n\n請注意:您仍然可以加密系統分割區,來取代加密整個磁碟機(並且,有別於加密整個磁碟機,您可以在磁碟機上的任何非系統分割區建立分割區類型的 VeraCrypt 加密區)。</entry> - <entry lang="zh-hk" key="WDE_EXTENDED_PARTITIONS_WARNING">警告: 由於您運行的系統為 Windows XP/2003,在您開始加密磁碟機之後,您一定不要在其上面再建立建立擴展(邏輯)分割區(您只可以建立主分割區)。當您開始加密以後,任何的擴展分割區均將無法再繼續存取。\n\n說明:如果您無法接受這個條件,您可以返回和選擇只加密系統所在分割區而不是選擇加密系統所在硬碟磁碟機(另外,您可以在磁碟機上的任何非系統分割區建立分割區類型的加密區)。\n\n作為替代方案,如果您無法接受這個條件,您也可以考慮升級到 Windows Vista 或以後版本(您只可以在 Windows Vista 或以後版本中加密包含擴展/邏輯分割區的整個磁碟機)。</entry> + <entry lang="zh-hk" key="WDE_UNSUPPORTED_FOR_EXTENDED_PARTITIONS">該系統磁碟機包含擴展(邏輯)分割區。\n\n 你只能在 Windows Vista 或以後版本中加密包含擴展(邏輯)分割區的整個系統磁碟機。而在 Windows XP 系統中,你只可以加密僅含有一個主分割區的整個系統磁碟機。\n\n請注意:你仍然可以加密系統分割區,來取代加密整個磁碟機(並且,有別於加密整個磁碟機,你可以在磁碟機上的任何非系統分割區建立分割區類型的 VeraCrypt 加密區)。</entry> + <entry lang="zh-hk" key="WDE_EXTENDED_PARTITIONS_WARNING">警告: 由於你運行的系統為 Windows XP/2003,在你開始加密磁碟機之後,你一定不要在其上面再建立建立擴展(邏輯)分割區(你只可以建立主分割區)。當你開始加密以後,任何的擴展分割區均將無法再繼續存取。\n\n說明:如果你無法接受這個條件,你可以返回和選擇只加密系統所在分割區而不是選擇加密系統所在硬碟磁碟機(另外,你可以在磁碟機上的任何非系統分割區建立分割區類型的加密區)。\n\n作為替代方案,如果你無法接受這個條件,你也可以考慮升級到 Windows Vista 或以後版本(你只可以在 Windows Vista 或以後版本中加密包含擴展/邏輯分割區的整個磁碟機)。</entry> <entry lang="zh-hk" key="SYSDRIVE_NON_STANDARD_PARTITIONS">系統帶有非標準的分割區。\n\n如果是筆記型電腦,系統磁碟可能有含特別的救援回復分割區。在整個系統磁碟 (包括回復分割區)被加密後,如果使用設計不當的 BIOS 可能導致無法開機。這樣也會造成無法使用回復分割區,除非系統磁碟再次解密。因此建議最好只需加密系統分割區。 </entry> - <entry lang="zh-hk" key="ASK_ENCRYPT_PARTITION_INSTEAD_OF_DRIVE">您確認要加密系統所在分割區,而不是加密整個硬碟嗎?\n\n說明:除了加密系統所在分割區之外,您可以在該硬碟磁碟機上的非系統分割區建立分割區類型的 VeraCrypt 加密區。</entry> - <entry lang="zh-hk" key="WHOLE_SYC_DEVICE_RECOM">由於您的系統磁碟機僅包含一個佔據了整個磁碟機的分割區,更適合(更安全)加密整個包含鬆散空間(通常位於這樣分割區的周圍)的磁碟機。\n\n您希望加密整個系統磁碟機嗎?</entry> - <entry lang="zh-hk" key="TEMP_NOT_ON_SYS_PARTITION">您的系統已配置為在非系統分割區儲存暫存檔案。\n\n暫存檔案應該只位於系統分割區(基於安全理由)。</entry> - <entry lang="zh-hk" key="USER_PROFILE_NOT_ON_SYS_PARTITION">您的用戶配置檔並非設定在系統分割區。\n\n用戶配置檔應該只儲存於系統分割區(基於安全理由)。</entry> + <entry lang="zh-hk" key="ASK_ENCRYPT_PARTITION_INSTEAD_OF_DRIVE">你確認要加密系統所在分割區,而不是加密整個硬碟嗎?\n\n說明:除了加密系統所在分割區之外,你可以在該硬碟磁碟機上的非系統分割區建立分割區類型的 VeraCrypt 加密區。</entry> + <entry lang="zh-hk" key="WHOLE_SYC_DEVICE_RECOM">由於你的系統磁碟機僅包含一個佔據了整個磁碟機的分割區,更適合(更安全)加密整個包含鬆散空間(通常位於這樣分割區的周圍)的磁碟機。\n\n你希望加密整個系統磁碟機嗎?</entry> + <entry lang="zh-hk" key="TEMP_NOT_ON_SYS_PARTITION">你的系統已配置為在非系統分割區儲存暫存檔案。\n\n暫存檔案應該只位於系統分割區(基於安全理由)。</entry> + <entry lang="zh-hk" key="USER_PROFILE_NOT_ON_SYS_PARTITION">你的用戶配置檔並非設定在系統分割區。\n\n用戶配置檔應該只儲存於系統分割區(基於安全理由)。</entry> <entry lang="zh-hk" key="PAGING_FILE_NOT_ON_SYS_PARTITION">非系統分割區存在分頁檔案。\n\n分頁檔案應該只存放系統分割區(基於安全理由)</entry> - <entry lang="zh-hk" key="RESTRICT_PAGING_FILES_TO_SYS_PARTITION">您想要設定 Windows 僅在 Windows 分割區產生分頁檔案嗎?\n\n請注意,如果您按「是」,電腦將會重新啟動。之後請啟動 VeraCrypt 和嘗試再次建立隱形系統。</entry> - <entry lang="zh-hk" key="LEAKS_OUTSIDE_SYSPART_UNIVERSAL_EXPLANATION"> 否則,隱形系統的隱蔽性將會受到嚴重影響。\n\n說明:如果攻擊者分析這些檔的內容(存在於非系統分割區中),他可能會發現您在隱形系統建立模式裏面使用了此精靈(這可能暗示電腦上存在隱形系統)。還需說明的是,存放於系統分割區的此類檔案,在隱形系統建立過程中將會被安全抹除。</entry> - <entry lang="zh-hk" key="DECOY_OS_REINSTALL_WARNING">警告:在隱形系統建立過程中,您將會被要求全新安裝當前運行的作業系統(以便安全建立偽裝系統)。\n\n說明:當前運行的作業系統和該系統分割區的全部內容將會被複製到隱藏加密區(以便建立隱形系統)。\n\n\n您確認您將使用 Windows 安裝介質安裝此系統嗎(或使用服務分割區)?</entry> - <entry lang="zh-hk" key="DECOY_OS_REQUIREMENTS">安全起見,如果當前運行的作業系統需要啟動,則必須在繼續進行克隆前啟動。注意到隱形作業系統將通過複製當前作業系統的內容到隱藏加密區來得以建立(因此如果當前作業系統未啟動,則隱形作業系統也處於未啟動狀態)。更多資訊,請參考《VeraCrypt User's Guide》的 "Security Precautions Pertaining to Hidden Volumes" 章節。\n\n重要:在繼續進行前,確認您已經閱讀了《VeraCrypt User's Guide》的 "Security Precautions Pertaining to Hidden Volumes" 章節。\n\n\n當前運行的作業系統滿足上面的條件嗎?</entry> - <entry lang="zh-hk" key="CONFIRM_HIDDEN_OS_EXTRA_BOOT_PARTITION">您的系統使用了一個額外的啟動分割區。VeraCrypt 不支援使用額外啟動分割區的隱形系統的休眠(偽裝系統完全可以休眠)。\n\n請注意,啟動分割區應該被偽裝系統和隱形系統所共同使用。因此,為了防止資料洩露和由於休眠所導致的問題,VeraCrypt 只能阻止隱形系統寫入資料到共用的啟動分割區和阻止隱形系統使用休眠。\n\n\n您確認要繼續嗎?如果您選擇「否」,則會顯示移除額外啟動分割區的提示資訊。</entry> - <entry lang="zh-hk" key="EXTRA_BOOT_PARTITION_REMOVAL_INSTRUCTIONS">\n在安裝 Windows 之前可以移除額外的啟動分割區。想要如此,請依照以下步驟(譯者注:這些步驟沒有在XP安裝光碟看到,請讀者自悟吧,抱歉):\n\n1)啟動您的 Windows 安裝光碟。\n\n2)在 Windows 安裝螢幕,選擇「現在安裝」>「自訂(高級)」.\n\n3)按「磁碟機 選項」。\n\n4)選擇主系統分割區並選擇刪除這個分割區,之後再確認刪除(安裝盤刪除分割區的時候會多次確認)。\n\n5)選擇「系統保留」分割區,選擇 「擴展」,並增加它的大小直到可以安裝系統為止。\n\n6)選擇「套用」和確認。\n\n7)安裝 Windows 到「系統保留」分割區。\n\n\n如果攻擊者詢問您移除額外啟動分割區的原因,您可以回答是因為您不希望資料洩露到未加密的啟動分割區。\n\n注意:您可以通過按下面的「列印」 按鈕列印這些文本。如果您列印了這些文本,強烈建議您在移除額外啟動分割區後銷毀這些紙張(否則,如果這些紙張被發現,可能暗示著存在隱形系統)。</entry> - <entry lang="zh-hk" key="GAP_BETWEEN_SYS_AND_HIDDEN_OS_PARTITION">警告:在系統分割區和其後的第一個分割區之間存在未分配空間。在您建立隱形作業系統之後,您必須不能在此未分配空間上建立任何新的分割區,否則,隱形作業系統將無法啟動(直到刪除了這個新建立的分割區)。</entry> + <entry lang="zh-hk" key="RESTRICT_PAGING_FILES_TO_SYS_PARTITION">你想要設定 Windows 僅在 Windows 分割區產生分頁檔案嗎?\n\n請注意,如果你按[是],電腦將會重新啟動。之後請啟動 VeraCrypt 和嘗試再次建立隱形系統。</entry> + <entry lang="zh-hk" key="LEAKS_OUTSIDE_SYSPART_UNIVERSAL_EXPLANATION"> 否則,隱形系統的隱蔽性將會受到嚴重影響。\n\n說明:如果攻擊者分析這些檔的內容(存在於非系統分割區中),他可能會發現你在隱形系統建立模式裏面使用了此精靈(這可能暗示電腦上存在隱形系統)。還需說明的是,存放於系統分割區的此類檔案,在隱形系統建立過程中將會被安全抹除。</entry> + <entry lang="zh-hk" key="DECOY_OS_REINSTALL_WARNING">警告:在隱形系統建立過程中,你將會被要求全新安裝當前運行的作業系統(以便安全建立偽裝系統)。\n\n說明:當前運行的作業系統和該系統分割區的全部內容將會被複製到隱藏加密區(以便建立隱形系統)。\n\n\n你確認你將使用 Windows 安裝介質安裝此系統嗎(或使用服務分割區)?</entry> + <entry lang="zh-hk" key="DECOY_OS_REQUIREMENTS">安全起見,如果當前運行的作業系統需要啟動,則必須在繼續進行克隆前啟動。注意到隱形作業系統將通過複製當前作業系統的內容到隱藏加密區來得以建立(因此如果當前作業系統未啟動,則隱形作業系統也處於未啟動狀態)。更多資訊,請參考《VeraCrypt User's Guide》的 [Security Precautions Pertaining to Hidden Volumes] 章節。\n\n重要:在繼續進行前,確認你已經閱讀了《VeraCrypt User's Guide》的 "Security Precautions Pertaining to Hidden Volumes" 章節。\n\n\n當前運行的作業系統滿足上面的條件嗎?</entry> + <entry lang="zh-hk" key="CONFIRM_HIDDEN_OS_EXTRA_BOOT_PARTITION">你的系統使用了一個額外的啟動分割區。VeraCrypt 不支援使用額外啟動分割區的隱形系統的休眠(偽裝系統完全可以休眠)。\n\n請注意,啟動分割區應該被偽裝系統和隱形系統所共同使用。因此,為了防止資料洩露和由於休眠所導致的問題,VeraCrypt 只能阻止隱形系統寫入資料到共用的啟動分割區和阻止隱形系統使用休眠。\n\n\n你確認要繼續嗎?如果你選擇[否],則會顯示移除額外啟動分割區的提示資訊。</entry> + <entry lang="zh-hk" key="EXTRA_BOOT_PARTITION_REMOVAL_INSTRUCTIONS">\n在安裝 Windows 之前可以移除額外的啟動分割區。想要如此,請依照以下步驟(譯者注:這些步驟沒有在XP安裝光碟看到,請讀者自悟吧,抱歉):\n\n1)啟動你的 Windows 安裝光碟。\n\n2)在 Windows 安裝螢幕,選擇 [現在安裝] > [自訂(高級)]。\n\n3)按 [磁碟機選項]。\n\n4)選擇主系統分割區並選擇刪除這個分割區,之後再確認刪除(安裝盤刪除分割區的時候會多次確認)。\n\n5)選擇 [系統保留] 分割區,選擇 [擴展],並增加它的大小直到可以安裝系統為止。\n\n6)選擇 [套用] 和確認。\n\n7)安裝 Windows 到 [系統保留] 分割區。\n\n\n如果攻擊者詢問你移除額外啟動分割區的原因,你可以回答是因為你不希望資料洩露到未加密的啟動分割區。\n\n請注意:你可以通過按下面的 [列印] 按鈕列印這些文本。如果你列印了這些文本,強烈建議你在移除額外啟動分割區後銷毀這些紙張(否則,如果這些紙張被發現,可能暗示著存在隱形系統)。</entry> + <entry lang="zh-hk" key="GAP_BETWEEN_SYS_AND_HIDDEN_OS_PARTITION">警告:在系統分割區和其後的第一個分割區之間存在未分配空間。在你建立隱形作業系統之後,你必須不能在此未分配空間上建立任何新的分割區,否則,隱形作業系統將無法啟動(直到刪除了這個新建立的分割區)。</entry> <entry lang="zh-hk" key="ALGO_NOT_SUPPORTED_FOR_SYS_ENCRYPTION">此演算法目前不支援系統加密。</entry> @@ -1106,16 +1106,16 @@ <entry lang="zh-hk" key="PIM_REQUIRE_LONG_PASSWORD">密碼必須含有 20 或更多的字元長度以使用所指定的 PIM。\nPIM 需要是 485 或更高才可以使用較短的密碼。</entry> - <entry lang="zh-hk" key="BOOT_PIM_REQUIRE_LONG_PASSWORD">開機前認證密碼必須含有 20 或更多的字元長度以使用所指定的 PIM。\nPIM 需要是 98 或更高才可以使用較短的密碼。</entry> - <entry lang="zh-hk" key="KEYFILES_NOT_SUPPORTED_FOR_SYS_ENCRYPTION">加密鑰檔案當前不支援用在系統加密中。</entry> - <entry lang="zh-hk" key="CANNOT_RESTORE_KEYBOARD_LAYOUT">警告:VeraCrypt 不能儲存原始鍵盤配置。這可能導致您無法正確輸入密碼。</entry> + <entry lang="zh-hk" key="BOOT_PIM_REQUIRE_LONG_PASSWORD">啟動前驗證密碼必須含有 20 個或更多的字元以使用這個 PIM 數值。\n只可以在 PIM 的數值是 98 或更大時才可以使用較短的密碼。</entry> + <entry lang="zh-hk" key="KEYFILES_NOT_SUPPORTED_FOR_SYS_ENCRYPTION">加密鑰檔案目前並不支援用於系統加密。</entry> + <entry lang="zh-hk" key="CANNOT_RESTORE_KEYBOARD_LAYOUT">警告:VeraCrypt 不能儲存原始鍵盤配置。這可能導致你無法正確輸入密碼。</entry> <entry lang="zh-hk" key="CANT_CHANGE_KEYB_LAYOUT_FOR_SYS_ENCRYPTION">錯誤:不能設定 VeraCrypt 鍵盤配置為標準的美國鍵盤配置。\n\n說明:在 Windows 啟動前的啟動驗證裏需要輸入密碼,此時非美國標準鍵盤配置不可用。因此,密碼必須使用標準的美國鍵盤配置輸入。</entry> - <entry lang="zh-hk" key="ALT_KEY_CHARS_NOT_FOR_SYS_ENCRYPTION">由於 VeraCrypt 臨時改變鍵盤配置為標準的美國鍵盤,目前在按下 ALT 按鍵的情況下無法通過鍵盤輸入字元。然而您可以按下 Shift 鍵的時候輸入大多數此類字元。</entry> + <entry lang="zh-hk" key="ALT_KEY_CHARS_NOT_FOR_SYS_ENCRYPTION">由於 VeraCrypt 臨時改變鍵盤配置為標準的美國鍵盤,目前在按下 ALT 按鍵的情況下無法通過鍵盤輸入字元。然而你可以按下 Shift 鍵的時候輸入大多數此類字元。</entry> <entry lang="zh-hk" key="KEYB_LAYOUT_CHANGE_PREVENTED">VeraCrypt 已阻止修改鍵盤配置。</entry> - <entry lang="zh-hk" key="KEYB_LAYOUT_SYS_ENC_EXPLANATION">說明:在 Windows 啟動前的啟動驗證裏需要輸入密碼,此時非美國標準鍵盤配置不可用。因此,密碼必須使用標準的美國鍵盤配置輸入。然而,這不需要您必須使用真實的美國鍵盤。VeraCrypt 在您沒有美國鍵盤的情況下也能夠自動的保證您能夠安全的輸入密碼(現在和啟動驗證環境)。</entry> - <entry lang="zh-hk" key="RESCUE_DISK_INFO">在您加密系統分割區或磁碟機前,您必須建立一個 VeraCrypt 救機光碟,用途如下:\n\n- 如果 VeraCrypt 開機管理程式、主密鑰、或其他關鍵資料損壞了,可以使用救機光碟修復它們(當然你必須輸入正確的密碼)。\n\n- 如果 Windows 系統損壞了並且無法啟動,你可以在 Windows 啟動前使用救機光碟永久解密這個分割區或磁碟機。\n\n- 救機光碟包含第一個柱面當前內容的備份(通常包含系統引導器或者開機管理程式),在必要的時候你可以還原它們。\n\nVeraCrypt 救機光碟 ISO 映射檔將會在下面指定位置建立。</entry> - <entry lang="zh-hk" key="RESCUE_DISK_WIN_ISOBURN_PRELAUNCH_NOTE">在您按確定後,微軟的 Windows 磁片映射燒錄器將會被啟動。請使用它燒錄 VeraCrypt 救機光碟映射檔到 CD 或 DVD 中。\n\n在操作完這些之後,請返回到 VeraCrypt 加密區建立精靈並依照精靈的指令。</entry> - <entry lang="zh-hk" key="RESCUE_DISK_BURN_INFO">救機光碟 ISO 鏡像檔已經建立並儲存成檔案: %s\n\n現在您需要把救機光碟燒錄到 CD 或 DVD。\n\n在燒錄救機光碟後,按 「下一步」 按鈕驗證救機光碟已經成功燒錄。\n\n%ls在燒錄完救機光碟之後,請按 "下一步" 按鈕驗證救機光碟是否被成功燒錄。</entry> - <entry lang="zh-hk" key="RESCUE_DISK_BURN_INFO_NO_CHECK">救機光碟映射檔已經被建立並且儲存成檔案: %s\n\n現在您應該燒錄該救機光碟到 CD/DVD 中去或者移動該 ISO 檔到一個安全的位置以備以後使用。\n\n%ls按 「下一步」 繼續。</entry> - <entry lang="zh-hk" key="RESCUE_DISK_BURN_INFO_NONWIN_ISO_BURNER">重要:請注意,映射檔必須以 ISO 磁片映射檔的方式燒錄到 CD/DVD 中去(不能燒錄為單個的資料檔案)。要獲取更多的關於如何燒錄 ISO 檔的資訊,請參考您的 CD/DVD 燒錄軟件的說明書。如果您還沒有燒錄 ISO 鏡像檔的光碟燒錄軟件,請點下面鏈結下載這樣的免費燒錄軟件。\n\n</entry> + <entry lang="zh-hk" key="KEYB_LAYOUT_SYS_ENC_EXPLANATION">說明:在 Windows 啟動前的啟動驗證裏需要輸入密碼,此時非美國標準鍵盤配置不可用。因此,密碼必須使用標準的美國鍵盤配置輸入。然而,這不需要你必須使用真實的美國鍵盤。VeraCrypt 在你沒有美國鍵盤的情況下也能夠自動的保證你能夠安全的輸入密碼(現在和啟動驗證環境)。</entry> + <entry lang="zh-hk" key="RESCUE_DISK_INFO">在你加密系統分割區或磁碟機前,你必須建立一個 VeraCrypt 救機光碟,用途如下:\n\n- 如果 VeraCrypt 開機管理程式、主密鑰、或其他關鍵資料損壞了,可以使用救機光碟修復它們(當然你必須輸入正確的密碼)。\n\n- 如果 Windows 系統損壞了並且無法啟動,你可以在 Windows 啟動前使用救機光碟永久解密這個分割區或磁碟機。\n\n- 救機光碟包含第一個柱面當前內容的備份(通常包含系統引導器或者開機管理程式),在必要的時候你可以還原它們。\n\nVeraCrypt 救機光碟 ISO 映射檔將會在下面指定位置建立。</entry> + <entry lang="zh-hk" key="RESCUE_DISK_WIN_ISOBURN_PRELAUNCH_NOTE">在你按確定後,微軟的 Windows 磁片映射燒錄器將會被啟動。請使用它燒錄 VeraCrypt 救機光碟映射檔到 CD 或 DVD 中。\n\n在操作完這些之後,請返回到 VeraCrypt 加密區建立精靈並依照精靈的指令。</entry> + <entry lang="zh-hk" key="RESCUE_DISK_BURN_INFO">救機光碟 ISO 鏡像檔已經建立並儲存成檔案: %s\n\n現在你需要把救機光碟燒錄到 CD 或 DVD。\n\n在燒錄救機光碟後,按 [下一步] 按鈕驗證救機光碟已經成功燒錄。\n\n%ls在燒錄完救機光碟之後,請按 "下一步" 按鈕驗證救機光碟是否被成功燒錄。</entry> + <entry lang="zh-hk" key="RESCUE_DISK_BURN_INFO_NO_CHECK">救機光碟映射檔已經被建立並且儲存成檔案: %s\n\n現在你應該燒錄該救機光碟到 CD/DVD 中去或者移動該 ISO 檔到一個安全的位置以備以後使用。\n\n%ls按 [下一步] 繼續。</entry> + <entry lang="zh-hk" key="RESCUE_DISK_BURN_INFO_NONWIN_ISO_BURNER">重要:請注意,映射檔必須以 ISO 磁片映射檔的方式燒錄到 CD/DVD 中去(不能燒錄為單個的資料檔案)。要獲取更多的關於如何燒錄 ISO 檔的資訊,請參考你的 CD/DVD 燒錄軟件的說明書。如果你還沒有燒錄 ISO 鏡像檔的光碟燒錄軟件,請點下面鏈結下載這樣的免費燒錄軟件。\n\n</entry> <entry lang="zh-hk" key="LAUNCH_WIN_ISOBURN">啟動微軟 Windows 映像檔燒錄工具</entry> - <entry lang="zh-hk" key="RESCUE_DISK_BURN_NO_CHECK_WARN">警告:如果您已經建立了 VeraCrypt 救機光碟,它將不能再用於系統分割區或磁碟機,這是因為您每次加密系統分割區或磁碟機時都會使用不同的主密鑰,儘管您使用的是同樣的密碼,您也必須建立一個新的 VeraCrypt 救機光碟。</entry> + <entry lang="zh-hk" key="RESCUE_DISK_BURN_NO_CHECK_WARN">警告:如果你已經建立了 VeraCrypt 救機光碟,它將不能再用於系統分割區或磁碟機,這是因為你每次加密系統分割區或磁碟機時都會使用不同的主密鑰,儘管你使用的是同樣的密碼,你也必須建立一個新的 VeraCrypt 救機光碟。</entry> <entry lang="zh-hk" key="CANNOT_SAVE_SYS_ENCRYPTION_SETTINGS">錯誤:不能保存系統加密設定。</entry> @@ -1124,11 +1124,11 @@ <entry lang="zh-hk" key="WIPE_MODE_TITLE">抹除模式</entry> - <entry lang="zh-hk" key="INPLACE_ENC_WIPE_MODE_INFO">在某些儲存媒體上,當資料被其他資料覆蓋後,仍有可能通過磁力顯微技術修復到被覆蓋的資料。這也包括一些被加密方式覆蓋的資料(這在 VeraCrypt 加密那些原來沒有加密的系統分割區或系統磁碟機時可能會發生)。根據一些研究機構和政府機構發佈的文獻,通過使用偽隨機或非亂數據覆蓋一定次數可以阻止資料還原或使資料還原變的異常困難。因此,如果您確認攻擊者可能會使用類似磁力顯微技術還原您的加密資料,您可以選擇下拉清單中幾種抹除演算法中的一種(已經存在的資料不會丟失)。需要說明的是在分割區或磁碟機加密後不需要再執行抹除操作。當分割區或磁碟機被完全加密後,不會再有非加密資料向其寫入。寫入加密區中的任何資料都是在記憶體中即時加密,然後這些已加密資料才會被寫入到磁碟機。</entry> - <entry lang="zh-hk" key="WIPE_MODE_INFO">在某些儲存介質上,當資料被其他資料覆蓋後,也仍有可能通過磁力顯微技術還原出來被覆蓋的資料。根據一些研究機構和政府機構發佈的文獻,通過使用偽隨機或非亂數據覆蓋一定次數可以阻止資料還原或使資料還原變的異常困難。因此,如果您確認攻擊者可能會使用類似磁力顯微技術還原您的加密資料,您可以選擇下拉清單中幾種抹除演算法中的一種(已經存在的資料不會丟失)。\n\n說明:抹除次數越多,花費的時間越長。</entry> + <entry lang="zh-hk" key="INPLACE_ENC_WIPE_MODE_INFO">在某些儲存媒體上,當資料被其他資料覆蓋後,仍有可能通過磁力顯微技術修復到被覆蓋的資料。這也包括一些被加密方式覆蓋的資料(這在 VeraCrypt 加密那些原來沒有加密的系統分割區或系統磁碟機時可能會發生)。根據一些研究機構和政府機構發佈的文獻,通過使用偽隨機或非亂數據覆蓋一定次數可以阻止資料還原或使資料還原變的異常困難。因此,如果你確認攻擊者可能會使用類似磁力顯微技術還原你的加密資料,你可以選擇下拉清單中幾種抹除演算法中的一種(已經存在的資料不會丟失)。需要說明的是在分割區或磁碟機加密後不需要再執行抹除操作。當分割區或磁碟機被完全加密後,不會再有非加密資料向其寫入。寫入加密區中的任何資料都是在記憶體中即時加密,然後這些已加密資料才會被寫入到磁碟機。</entry> + <entry lang="zh-hk" key="WIPE_MODE_INFO">在某些儲存介質上,當資料被其他資料覆蓋後,也仍有可能通過磁力顯微技術還原出來被覆蓋的資料。根據一些研究機構和政府機構發佈的文獻,通過使用偽隨機或非亂數據覆蓋一定次數可以阻止資料還原或使資料還原變的異常困難。因此,如果你確認攻擊者可能會使用類似磁力顯微技術還原你的加密資料,你可以選擇下拉清單中幾種抹除演算法中的一種(已經存在的資料不會丟失)。\n\n說明:抹除次數越多,花費的時間越長。</entry> <entry lang="zh-hk" key="DEVICE_WIPE_PAGE_TITLE">正在抹除</entry> - <entry lang="zh-hk" key="DEVICE_WIPE_PAGE_INFO_HIDDEN_OS">\n說明:您可以中斷抹除的過程,關閉您的電腦,重新啟動隱形系統並在此後繼續這個過程(此精靈將會被自動執行)。然而,如果您中斷此過程,整個抹除將會從頭開始執行。</entry> - <entry lang="zh-hk" key="DEVICE_WIPE_PAGE_INFO">\n\n說明:如果您中斷了抹除的過程並想在以後繼續抹除,整個的過程將不得不從頭開始。</entry> - <entry lang="zh-hk" key="CONFIRM_WIPE_ABORT">您確認要放棄抹除過程嗎?</entry> + <entry lang="zh-hk" key="DEVICE_WIPE_PAGE_INFO_HIDDEN_OS">\n說明:你可以中斷抹除的過程,關閉你的電腦,重新啟動隱形系統並在此後繼續這個過程(此精靈將會被自動執行)。然而,如果你中斷此過程,整個抹除將會從頭開始執行。</entry> + <entry lang="zh-hk" key="DEVICE_WIPE_PAGE_INFO">\n\n說明:如果你中斷了抹除的過程並想在以後繼續抹除,整個的過程將不得不從頭開始。</entry> + <entry lang="zh-hk" key="CONFIRM_WIPE_ABORT">你確認要放棄抹除過程嗎?</entry> <entry lang="zh-hk" key="CONFIRM_WIPE_START">警告:這個分割區/裝置內全部內容將會被抹除並因而丟失。</entry> <entry lang="zh-hk" key="CONFIRM_WIPE_START_DECOY_SYS_PARTITION">作業系統原本所在的分割區將會被抹除。\n\n說明:該分割區內全部內容已經複製到了隱形系統分割區。</entry> - <entry lang="zh-hk" key="WIPE_MODE_WARN">警告:請注意如果使用 3-次抹除模式,加密磁碟機/分割區需要時間將會增加為原來的 4 倍。同樣,如果你選擇了 35-次抹除模式,所消耗的時間會是原來的 36 倍(如果分割區容量很大,很可能花費幾周的時間)。\n\n然而,請注意在分割區或磁碟機完全加密後〖無須〗再對其執行抹除操作。在分割區或磁碟機被完全加密後,將不會再有非加密的資料向該分割區或磁碟機寫入。所有寫入的資料首先都會在記憶體中即時加密,之後才會向分割區或磁碟機寫入加密的資料(因此並不會影響性能)。\n\n您確認要使用這種抹除模式嗎?</entry> + <entry lang="zh-hk" key="WIPE_MODE_WARN">警告:請注意如果使用 3-次抹除模式,加密磁碟機/分割區需要時間將會增加為原來的 4 倍。同樣,如果你選擇了 35-次抹除模式,所消耗的時間會是原來的 36 倍(如果分割區容量很大,很可能花費幾周的時間)。\n\n然而,請注意在分割區或磁碟機完全加密後〖無須〗再對其執行抹除操作。在分割區或磁碟機被完全加密後,將不會再有非加密的資料向該分割區或磁碟機寫入。所有寫入的資料首先都會在記憶體中即時加密,之後才會向分割區或磁碟機寫入加密的資料(因此並不會影響性能)。\n\n你確認要使用這種抹除模式嗎?</entry> <entry lang="zh-hk" key="WIPE_MODE_NONE">無(最快)</entry> @@ -1144,29 +1144,29 @@ <entry lang="zh-hk" key="SYSENC_MULTI_BOOT_SYS_EQ_BOOT_TITLE">開機磁碟機</entry> - <entry lang="zh-hk" key="SYSENC_MULTI_BOOT_SYS_EQ_BOOT_HELP">目前運行的作業系統安裝到了引導磁碟機上了嗎?\n\n說明:有時 Windows 可能並未安裝到 Windows 開機管理程式(活動分割區)分割區上。如果屬於這種情況,請選擇「否」。</entry> + <entry lang="zh-hk" key="SYSENC_MULTI_BOOT_SYS_EQ_BOOT_HELP">目前運行的作業系統安裝到了引導磁碟機上了嗎?\n\n說明:有時 Windows 可能並未安裝到 Windows 開機管理程式(活動分割區)分割區上。如果屬於這種情況,請選擇 [否]。</entry> <entry lang="zh-hk" key="SYS_PARTITION_MUST_BE_ON_BOOT_DRIVE">VeraCrypt 目前不支持加密安裝到非活動分割區上的系統。</entry> <entry lang="zh-hk" key="SYSENC_MULTI_BOOT_NBR_SYS_DRIVES_TITLE">系統磁碟機數目</entry> - <entry lang="zh-hk" key="SYSENC_MULTI_BOOT_NBR_SYS_DRIVES_HELP">有多少個磁碟機含有作業系統?\n\n說明:例如,您在主磁碟機上安裝了任意系統(例如. Windows,Mac OS X,Linux,等等),在第二個磁碟機上安裝了其他的作業系統,這時就選擇「2 個或多個」。</entry> - <entry lang="zh-hk" key="WDE_UNSUPPORTED_FOR_MULTIPLE_SYSTEMS_ON_ONE_DRIVE">VeraCrypt 目前不支援對包含多個作業系統的整個硬碟磁碟機的加密。\n\n可能的解決方法:\n\n- 您可以後退並選擇只加密單系統分割區加密其中的一個系統(與選擇加密整個系統磁碟機相反)。\n\n- 或者,你也可以把要加密的磁碟機中的其他系統遷移到其他的磁碟機,而只在其中保留一個系統。</entry> + <entry lang="zh-hk" key="SYSENC_MULTI_BOOT_NBR_SYS_DRIVES_HELP">有多少個磁碟機含有作業系統?\n\n說明:例如,你在主磁碟機上安裝了任意系統(例如. Windows,Mac OS X,Linux,等等),在第二個磁碟機上安裝了其他的作業系統,這時就選擇[2 個或多個]。</entry> + <entry lang="zh-hk" key="WDE_UNSUPPORTED_FOR_MULTIPLE_SYSTEMS_ON_ONE_DRIVE">VeraCrypt 目前不支援對包含多個作業系統的整個硬碟磁碟機的加密。\n\n可能的解決方法:\n\n- 你可以後退並選擇只加密單系統分割區加密其中的一個系統(與選擇加密整個系統磁碟機相反)。\n\n- 或者,你也可以把要加密的磁碟機中的其他系統遷移到其他的磁碟機,而只在其中保留一個系統。</entry> <entry lang="zh-hk" key="SYSENC_MULTI_BOOT_ADJACENT_SYS_TITLE">單磁碟機中包含多個系統</entry> - <entry lang="zh-hk" key="SYSENC_MULTI_BOOT_ADJACENT_SYS_HELP">在當前運行的系統所安裝的磁碟機中,是否包含其他任何作業系統?\n\n說明:例如當前運行的作業系統安裝在磁碟機 #0,該磁碟機包含幾個分割區,其中一個分割區安裝了 Windows 系統,而另一個分割區安裝了其他任何作業系統(例如. Windows,Mac OS X,Linux,等等.),請選擇「是」。</entry> + <entry lang="zh-hk" key="SYSENC_MULTI_BOOT_ADJACENT_SYS_HELP">在當前運行的系統所安裝的磁碟機中,是否包含其他任何作業系統?\n\n說明:例如當前運行的作業系統安裝在磁碟機 #0,該磁碟機包含幾個分割區,其中一個分割區安裝了 Windows 系統,而另一個分割區安裝了其他任何作業系統(例如. Windows,Mac OS X,Linux,等等.),請選擇 [是]。</entry> <entry lang="zh-hk" key="SYSENC_MULTI_BOOT_NONWIN_BOOT_LOADER_TITLE">非 Windows 開機管理程式</entry> - <entry lang="zh-hk" key="SYSENC_MULTI_BOOT_NONWIN_BOOT_LOADER_HELP">是否安裝了一個非 Windows 開機管理程式(或開機管理程式)到 MBR 中?\n\n說明:例如,可啟動的磁碟機的第一個柱面包含 GRUB、LILO、XOSL,或其他非 Windows 開機管理程式(或開機管理程式),則選擇「是」。</entry> + <entry lang="zh-hk" key="SYSENC_MULTI_BOOT_NONWIN_BOOT_LOADER_HELP">是否安裝了一個非 Windows 開機管理程式(或開機管理程式)到 MBR 中?\n\n說明:例如,可啟動的磁碟機的第一個柱面包含 GRUB、LILO、XOSL,或其他非 Windows 開機管理程式(或開機管理程式),則選擇 [是]。</entry> <entry lang="zh-hk" key="SYSENC_MULTI_BOOT_OUTCOME_TITLE">多系統開機</entry> - <entry lang="zh-hk" key="CUSTOM_BOOT_MANAGERS_IN_MBR_UNSUPPORTED">VeraCrypt 目前不支持在 MBR 中安裝的非 Windows 多重開機管理程式。\n\n可能的解決辦法:\n\n- 如果您使用了一個開機管理程式來啟動 Windows 或 Linux,把開機管理程式(典型的,例如 GRUB)從 MBR 中遷移到分割區上。之後再次啟動精靈和加密系統分割區/裝置。說明:VeraCrypt 開機管理程式將會成為主開機管理程式,並且會允許您把原來的開機管理程式(例如 GRUB)作為第二開機管理程式(通過在 VeraCrypt 開機管理程式螢幕按下 ESC 按鍵),因此你仍然可以啟動 Linux。</entry> - <entry lang="zh-hk" key="WINDOWS_BOOT_LOADER_HINTS">如果當前運行的系統安裝在活動分割區上,隨後,在您加密了該分割區後,儘管您想要啟動其他未加密的系統,您仍然要輸入正確的密碼(因為它們都會共用同一個加密的 Windows 開機管理程式)。\n\n相反的,如果當前運行的系統並沒有安裝到 Windows 的啟動分割區(或者如果其他系統並未使用 Windows 開機管理程式),隨後,在您加密了該分割區後,您在啟動其他未加密的系統時不需要輸入正確的密碼 -- 您只需按 ESC 按鍵來啟動未加密的系統(如果存在多個未加密的系統,您也同樣需要在 VeraCrypt 的開機管理程式中選擇要啟動的系統)。\n\n說明:通常情況下,最早安裝的那個系統一般都會安裝到啟動分割區。</entry> + <entry lang="zh-hk" key="CUSTOM_BOOT_MANAGERS_IN_MBR_UNSUPPORTED">VeraCrypt 目前不支持在 MBR 中安裝的非 Windows 多重開機管理程式。\n\n可能的解決辦法:\n\n- 如果你使用了一個開機管理程式來啟動 Windows 或 Linux,把開機管理程式(典型的,例如 GRUB)從 MBR 中遷移到分割區上。之後再次啟動精靈和加密系統分割區/裝置。說明:VeraCrypt 開機管理程式將會成為主開機管理程式,並且會允許你把原來的開機管理程式(例如 GRUB)作為第二開機管理程式(通過在 VeraCrypt 開機管理程式螢幕按下 ESC 按鍵),因此你仍然可以啟動 Linux。</entry> + <entry lang="zh-hk" key="WINDOWS_BOOT_LOADER_HINTS">如果當前運行的系統安裝在活動分割區上,隨後,在你加密了該分割區後,儘管你想要啟動其他未加密的系統,你仍然要輸入正確的密碼(因為它們都會共用同一個加密的 Windows 開機管理程式)。\n\n相反的,如果當前運行的系統並沒有安裝到 Windows 的啟動分割區(或者如果其他系統並未使用 Windows 開機管理程式),隨後,在你加密了該分割區後,你在啟動其他未加密的系統時不需要輸入正確的密碼 -- 你只需按 ESC 按鍵來啟動未加密的系統(如果存在多個未加密的系統,你也同樣需要在 VeraCrypt 的開機管理程式中選擇要啟動的系統)。\n\n說明:通常情況下,最早安裝的那個系統一般都會安裝到啟動分割區。</entry> <entry lang="zh-hk" key="SYSENC_PRE_DRIVE_ANALYSIS_TITLE">加密主機保護區域(Host Protected Area)</entry> - <entry lang="zh-hk" key="SYSENC_PRE_DRIVE_ANALYSIS_HELP">在很多硬碟的尾部,存在一個相對於作業系統隱藏的區域(這些區域通常被稱作主機保護區域)。然而,某些程式可以從這些區域中讀寫資料。\n\n警告:某些電腦供應商可能使用這些區域儲存用於 RAID、系統還原、系統設定、診斷的工具和資料,或用於其他目地。如果此類工具和資料必須在啟動前存取,那麼這些隱藏區域不應該被加密(在上面選擇「否」)。\n\n您希望 VeraCrypt 檢測和解密系統磁碟機尾部這些隱藏區域嗎?</entry> + <entry lang="zh-hk" key="SYSENC_PRE_DRIVE_ANALYSIS_HELP">在很多硬碟的尾部,存在一個相對於作業系統隱藏的區域(這些區域通常被稱作主機保護區域)。然而,某些程式可以從這些區域中讀寫資料。\n\n警告:某些電腦供應商可能使用這些區域儲存用於 RAID、系統還原、系統設定、診斷的工具和資料,或用於其他目地。如果此類工具和資料必須在啟動前存取,那麼這些隱藏區域不應該被加密(在上面選擇 [否])。\n\n你希望 VeraCrypt 檢測和解密系統磁碟機尾部這些隱藏區域嗎?</entry> <entry lang="zh-hk" key="SYSENC_TYPE_PAGE_TITLE">系統加密的類型</entry> - <entry lang="zh-hk" key="SYSENC_NORMAL_TYPE_HELP">如果您只想加密系統分割區或整個系統磁碟機,請選擇此項。</entry> - <entry lang="zh-hk" key="SYSENC_HIDDEN_TYPE_HELP">可能存在某些人強迫您解密作業系統的情況。在很多情況下您可能無法拒絕洩漏密碼(例如,被勒索)。如果您選擇了這個選項,您將會建立一個沒有任何手段可以識別的隱形作業系統(當然這得需要您依照一定的步驟建立)。因此,您一定不要解密或者洩漏隱形作業系統的密碼(譯者注:這是因為隱形作業系統的存在只有你才知道,你不說沒有任何手段可以檢測到),如若獲取更多資訊,請單擊下面鏈結。</entry> - <entry lang="zh-hk" key="HIDDEN_OS_PREINFO">可能存在某些人強迫您解密作業系統的情況。在很多情況下您可能無法拒絕洩漏密碼(例如,被勒索)。\n\n使用本精靈,您將能夠建立一個沒有任何手段可以識別的隱形作業系統(當然這得需要您依照一定的步驟建立)。因此,您一定不要解密隱形系統或者洩漏隱形作業系統的密碼(譯者注:這是因為隱形作業系統的存在只有你才知道,你不說沒有任何手段可以檢測到)。</entry> + <entry lang="zh-hk" key="SYSENC_NORMAL_TYPE_HELP">如果你只想加密系統分割區或整個系統磁碟機,請選擇此項。</entry> + <entry lang="zh-hk" key="SYSENC_HIDDEN_TYPE_HELP">可能存在某些人強迫你解密作業系統的情況。在很多情況下你可能無法拒絕洩漏密碼(例如,被勒索)。如果你選擇了這個選項,你將會建立一個沒有任何手段可以識別的隱形作業系統(當然這得需要你依照一定的步驟建立)。因此,你一定不要解密或者洩漏隱形作業系統的密碼(譯者注:這是因為隱形作業系統的存在只有你才知道,你不說沒有任何手段可以檢測到),如若獲取更多資訊,請單擊下面鏈結。</entry> + <entry lang="zh-hk" key="HIDDEN_OS_PREINFO">可能存在某些人強迫你解密作業系統的情況。在很多情況下你可能無法拒絕洩漏密碼(例如,被勒索)。\n\n使用本精靈,你將能夠建立一個沒有任何手段可以識別的隱形作業系統(當然這得需要你依照一定的步驟建立)。因此,你一定不要解密隱形系統或者洩漏隱形作業系統的密碼(譯者注:這是因為隱形作業系統的存在只有你才知道,你不說沒有任何手段可以檢測到)。</entry> <entry lang="zh-hk" key="SYSENC_HIDDEN_OS_REQ_CHECK_PAGE_TITLE">隱形作業系統</entry> - <entry lang="zh-hk" key="SYSENC_HIDDEN_OS_REQ_CHECK_PAGE_HELP">在後面步驟中,您將在系統分割區之後的分割區中建立兩個 VeraCrypt 加密區(外層的和隱藏的)。隱藏加密區將包含隱形作業系統。VeraCrypt 將通過複製系統分割區(即當前系統所在分割區)的內容到隱藏加密區來建立隱形作業系統。對於外層加密區而言,您可以複製一些您實際上並不想隱藏的貌似敏感的文件。它們將用來對付那些強迫您說出隱藏系統分割區密碼的人。您可以把含隱形作業系統的外層加密區的密碼告訴它們(此時仍然無法發現是否存在隱形作業系統)。\n\n最後,在當前當前運行的系統的分割區,您將會安裝一個新的系統並加密以後作為偽裝系統來使用。這個偽裝系統不要含有任何敏感檔並且用來對付那些強迫您說出啟動驗證密碼的人。總而言之,一共有三個密碼,兩個密碼用於對付那些攻擊者(分別對應偽裝作業系統和外層加密區。如果您使用第三個密碼,則將會啟動隱形作業系統。</entry> + <entry lang="zh-hk" key="SYSENC_HIDDEN_OS_REQ_CHECK_PAGE_HELP">在後面步驟中,你將在系統分割區之後的分割區中建立兩個 VeraCrypt 加密區(外層的和隱藏的)。隱藏加密區將包含隱形作業系統。VeraCrypt 將通過複製系統分割區(即當前系統所在分割區)的內容到隱藏加密區來建立隱形作業系統。對於外層加密區而言,你可以複製一些你實際上並不想隱藏的貌似敏感的文件。它們將用來對付那些強迫你說出隱藏系統分割區密碼的人。你可以把含隱形作業系統的外層加密區的密碼告訴它們(此時仍然無法發現是否存在隱形作業系統)。\n\n最後,在當前當前運行的系統的分割區,你將會安裝一個新的系統並加密以後作為偽裝系統來使用。這個偽裝系統不要含有任何敏感檔並且用來對付那些強迫你說出啟動驗證密碼的人。總而言之,一共有三個密碼,兩個密碼用於對付那些攻擊者(分別對應偽裝作業系統和外層加密區。如果你使用第三個密碼,則將會啟動隱形作業系統。</entry> <entry lang="zh-hk" key="SYSENC_DRIVE_ANALYSIS_TITLE">正在檢測隱藏磁區</entry> - <entry lang="zh-hk" key="SYSENC_DRIVE_ANALYSIS_INFO">當 VeraCrypt 正在檢測系統磁碟機尾部可能存在的隱藏磁區時,請稍候。注意該操作可能花費較長時間才能完成。\n\n注意:在極少數情況下,某些電腦環境中,系統可能在檢測過程中沒有回應。如果發生此情況,重新啟動電腦,運行 VeraCrypt,重複前面步驟並跳過此檢測過程。此問題並不是 VeraCrypt 的程式 Bug。</entry> + <entry lang="zh-hk" key="SYSENC_DRIVE_ANALYSIS_INFO">當 VeraCrypt 正在檢測系統磁碟機尾部可能存在的隱藏磁區時,請稍候。注意該操作可能花費較長時間才能完成。\n\n請注意:在極少數情況下,某些電腦環境中,系統可能在檢測過程中沒有回應。如果發生此情況,重新啟動電腦,運行 VeraCrypt,重複前面步驟並跳過此檢測過程。此問題並不是 VeraCrypt 的程式 Bug。</entry> <entry lang="zh-hk" key="SYS_ENCRYPTION_SPAN_TITLE">要加密的區域</entry> - <entry lang="zh-hk" key="SYS_ENCRYPTION_SPAN_WHOLE_SYS_DRIVE_HELP">如果您想加密作業系統安裝和啟動的分割區,請選擇此項。除了 VeraCrypt 開機管理程式存放的第一個柱面之外,包括所有分割區的整個硬碟磁碟機將會被加密。任何要存取該磁碟機上系統或檔的人都需要每次在系統啟動前輸入正確的密碼。如果 Windows 並未安裝到第二塊或外部磁碟機上並且沒有從這些磁碟機上啟動,此選項不能用於加密第二塊或外部磁碟機。</entry> + <entry lang="zh-hk" key="SYS_ENCRYPTION_SPAN_WHOLE_SYS_DRIVE_HELP">如果你想加密作業系統安裝和啟動的分割區,請選擇此項。除了 VeraCrypt 開機管理程式存放的第一個柱面之外,包括所有分割區的整個硬碟磁碟機將會被加密。任何要存取該磁碟機上系統或檔的人都需要每次在系統啟動前輸入正確的密碼。如果 Windows 並未安裝到第二塊或外部磁碟機上並且沒有從這些磁碟機上啟動,此選項不能用於加密第二塊或外部磁碟機。</entry> <entry lang="zh-hk" key="COLLECTING_RANDOM_DATA_TITLE">正在搜集亂數據</entry> <entry lang="zh-hk" key="KEYS_GEN_TITLE">已產生密鑰</entry> - <entry lang="zh-hk" key="CD_BURNER_NOT_PRESENT">VeraCrypt 在系統上找不到燒錄機。VeraCrypt 需要 CD/DVD 燒錄機來燒錄一隻可啟動的 VeraCrypt 救機光碟,救機光碟包含密鑰、VeraCrypt 開機管理程式、原始開機管理程式等資訊的備份。\n\n我們強烈建議您燒錄一隻 VeraCrypt 救機光碟。.</entry> + <entry lang="zh-hk" key="CD_BURNER_NOT_PRESENT">VeraCrypt 在系統上找不到燒錄機。VeraCrypt 需要 CD/DVD 燒錄機來燒錄一隻可啟動的 VeraCrypt 救機光碟,救機光碟包含密鑰、VeraCrypt 開機管理程式、原始開機管理程式等資訊的備份。\n\n我們強烈建議你燒錄一隻 VeraCrypt 救機光碟。.</entry> <entry lang="zh-hk" key="CD_BURNER_NOT_PRESENT_WILL_STORE_ISO">我並沒有 CD/DVD 燒碟機,但是我想在可移動磁碟機上存放救機光碟 ISO 映射檔(例如,USB 隨身碟)。</entry> @@ -1174,3 +1174,3 @@ <entry lang="zh-hk" key="CD_BURNER_NOT_PRESENT_CONNECTED_NOW">現在已經連接 CD/DVD 燒錄機到電腦。繼續並且燒錄救機光碟。</entry> - <entry lang="zh-hk" key="CD_BURNER_NOT_PRESENT_WILL_STORE_ISO_INFO">請依照以下步驟:\n\n1)現在連接可移除磁碟機到電腦上,例如 USB 隨身碟。\n\n2)複製 VeraCrypt 救機光碟映射檔(%s)到可移動磁碟機上。\n\n考慮到您以後有使用 VeraCrypt 救機光碟的可能,建議您把這個可移動磁碟機連接到其他有燒錄機的電腦上,使用這個映射檔燒錄一張救機光碟。重要:請注意,VeraCrypt 救機光碟映射檔必須以映射檔方式燒錄,不能燒錄為資料光碟。</entry> + <entry lang="zh-hk" key="CD_BURNER_NOT_PRESENT_WILL_STORE_ISO_INFO">請依照以下步驟:\n\n1)現在連接可移除磁碟機到電腦上,例如 USB 隨身碟。\n\n2)複製 VeraCrypt 救機光碟映射檔(%s)到可移動磁碟機上。\n\n考慮到你以後有使用 VeraCrypt 救機光碟的可能,建議你把這個可移動磁碟機連接到其他有燒錄機的電腦上,使用這個映射檔燒錄一張救機光碟。重要:請注意,VeraCrypt 救機光碟映射檔必須以映射檔方式燒錄,不能燒錄為資料光碟。</entry> <entry lang="zh-hk" key="RESCUE_DISK_RECORDING_TITLE">正在燒錄救機光碟</entry> @@ -1179,14 +1179,14 @@ <entry lang="zh-hk" key="RESCUE_DISK_DISK_VERIFIED_TITLE">已驗證救機光碟</entry> - <entry lang="zh-hk" key="RESCUE_DISK_VERIFIED_INFO">\nVeraCrypt 救機光碟已被成功驗證。請從光碟機中取出救機光碟並把它存放到安全的地方。\n\n按 「下一步」 繼續。</entry> - <entry lang="zh-hk" key="REMOVE_RESCUE_DISK_FROM_DRIVE">警告:在以下步驟中,VeraCrypt 救機光碟必須不能放在光碟機中。否則會無法正確完成此步驟。\n\n請從光碟機中取出救機光碟並把它放在一個安全的地方,之後按「確定」按鈕。</entry> + <entry lang="zh-hk" key="RESCUE_DISK_VERIFIED_INFO">\nVeraCrypt 救機光碟已被成功驗證。請從光碟機中取出救機光碟並把它存放到安全的地方。\n\n按 [下一步] 繼續。</entry> + <entry lang="zh-hk" key="REMOVE_RESCUE_DISK_FROM_DRIVE">警告:在以下步驟中,VeraCrypt 救機光碟必須不能放在光碟機中。否則會無法正確完成此步驟。\n\n請從光碟機中取出救機光碟並把它放在一個安全的地方,之後按 [確定] 按鈕。</entry> <entry lang="zh-hk" key="PREBOOT_NOT_LOCALIZED">警告:由於啟動驗證環境(即在 Windows 系統啟動前)的技術局限,VeraCrypt 在啟動驗證環境顯示的文本不能被本地化。VeraCrypt 引導管理器的介面完全為英文模式。\n\n確認繼續嗎?</entry> - <entry lang="zh-hk" key="SYS_ENCRYPTION_PRETEST_INFO">在加密系統分割區或啟動前,VeraCrypt 需要驗證每個環節都正確無誤。\n\n在按「測試」按鈕以後,所有的元件(例如,啟動驗證元件,即 VeraCrypt 開機管理程式)將會被安裝並且您的電腦將會重新啟動。之後您需要在 Windows 啟動前的 VeraCrypt 開機管理程式介面輸入您的密碼。在 Windows 啟動後,程式將會自動通知您測試的結果。\n\n以下裝置將會被修改: 磁碟機 #%d\n\n\n如果您按「取消」,將不會安裝任何內容並且前置測試將不會被執行。</entry> - <entry lang="zh-hk" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_1">重要提示 -- 請仔細閱讀或列印(按「列印」):\n\n注意:在您成功重新啟動電腦和啟動 Windows 前,您的檔並沒有被加密。因此,如果出現任何失敗,您的資料不會丟失。然而,如果過程中發生某些錯誤,您可能在啟動 Windows 時會遇到麻煩。因此,請閱讀(如果可能,請列印)下面的操作指南,以瞭解在重新啟動電腦後不能啟動 Windows 時如何操作。\n\n</entry> - <entry lang="zh-hk" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_2">不能啟動 Windows 時如何操作 ------------------------------------------------\n\n注意:這些指令僅在您還沒有開始加密時有效。\n\n- 如果在輸入正確的密碼後 Windows 未能啟動(或者您持續的輸入正確的密碼但 VeraCrypt 始終提示密碼錯誤),請不要驚慌。重新啟動電腦(或關機後再開機),在 TrueCrpyt 開機管理程式螢幕,按下鍵盤的 ESC 按鍵(並且如果您有多個系統,就選擇啟動哪個系統)。之後 Windows 應該會啟動(此時尚未加密系統)並且 VeraCrypt 會自動詢問你是否要解除掛載啟動驗證元件。如果由於系統分割區或磁碟機已經加密而導致前面步驟無效(沒有正確的密碼,沒有人可以啟動加密系統或者存取該磁碟機上的加密資料,即使他依照前面步驟)。\n\n</entry> - <entry lang="zh-hk" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_3">- 如果前面步驟無效或者 VeraCrypt 開機管理程式螢幕並沒有出現(在 Windows 啟動前),請在光碟機中插入 VeraCrypt 救機光碟並重新啟動電腦。如果 VeraCrypt 開機管理程式螢幕沒有出現 或者如果您在開機管理程式螢幕的「Keyboard Controls」部份沒有看到「Repair Options」 項目,很可能您的 BIOS 設定了硬碟優先於光碟機啟動。如果是這種情況,重新啟動電腦,當你一看到 BIOS 啟動螢幕的時候按下 F2 或 DEL 按鍵,直到 BISO 設定介面出現。如果 BIOS 設定介面沒有出現,再次重新啟動電腦,在你按下重新啟動鍵的時候就按住 F2 或 DEL 按鍵。當 BIOS 設定介面出現時,配置您的 BIOS 優先從光碟機啟動(相關資訊可以參考您的主板說明書或者資訊您的電腦供應商尋求技術協助)。之後重新啟動電腦。VeraCrypt 開機管理程式應該就會從救機光碟中啟動了。在VeraCrypt 開機管理程式螢幕,按下鍵盤的 F8 按鍵選擇修復選項(Repair Options)。在修復選項「Repair Options」功能表,選擇「Restore VeraCrypt Boot Loader」(還原開機管理程式)。之後從光碟機中取出救機光碟並重新啟動電腦。之後 Windows 應該會啟動(此時尚未加密系統)。\n\n</entry> + <entry lang="zh-hk" key="SYS_ENCRYPTION_PRETEST_INFO">在加密系統分割區或啟動前,VeraCrypt 需要驗證每個環節都正確無誤。\n\n在按 [測試] 按鈕以後,所有的元件(例如,啟動驗證元件,即 VeraCrypt 開機管理程式)將會被安裝並且你的電腦將會重新啟動。之後你需要在 Windows 啟動前的 VeraCrypt 開機管理程式介面輸入你的密碼。在 Windows 啟動後,程式將會自動通知你測試的結果。\n\n以下裝置將會被修改: 磁碟機 #%d\n\n\n如果你按 [取消],將不會安裝任何內容並且前置測試將不會被執行。</entry> + <entry lang="zh-hk" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_1">重要提示 -- 請仔細閱讀或列印(按 [列印]):\n\n請注意:在你成功重新啟動電腦和啟動 Windows 前,你的檔並沒有被加密。因此,如果出現任何失敗,你的資料不會丟失。然而,如果過程中發生某些錯誤,你可能在啟動 Windows 時會遇到麻煩。因此,請閱讀(如果可能,請列印)下面的操作指南,以瞭解在重新啟動電腦後不能啟動 Windows 時如何操作。\n\n</entry> + <entry lang="zh-hk" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_2">不能啟動 Windows 時如何操作 ------------------------------------------------\n\n請注意:這些指令僅在你還沒有開始加密時有效。\n\n- 如果在輸入正確的密碼後 Windows 未能啟動(或者你持續的輸入正確的密碼但 VeraCrypt 始終提示密碼錯誤),請不要驚慌。重新啟動電腦(或關機後再開機),在 TrueCrpyt 開機管理程式螢幕,按下鍵盤的 ESC 按鍵(並且如果你有多個系統,就選擇啟動哪個系統)。之後 Windows 應該會啟動(此時尚未加密系統)並且 VeraCrypt 會自動詢問你是否要解除掛載啟動驗證元件。如果由於系統分割區或磁碟機已經加密而導致前面步驟無效(沒有正確的密碼,沒有人可以啟動加密系統或者存取該磁碟機上的加密資料,即使他依照前面步驟)。\n\n</entry> + <entry lang="zh-hk" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_3">- 如果前面步驟無效或者 VeraCrypt 開機管理程式螢幕並沒有出現(在 Windows 啟動前),請在光碟機中插入 VeraCrypt 救機光碟並重新啟動電腦。如果 VeraCrypt 開機管理程式螢幕沒有出現 或者如果你在開機管理程式螢幕的 [Keyboard Controls] 部份沒有看到 [Repair Options] 項目,很可能你的 BIOS 設定了硬碟優先於光碟機啟動。如果是這種情況,重新啟動電腦,當你一看到 BIOS 啟動螢幕的時候按下 F2 或 DEL 按鍵,直到 BISO 設定介面出現。如果 BIOS 設定介面沒有出現,再次重新啟動電腦,在你按下重新啟動鍵的時候就按住 F2 或 DEL 按鍵。當 BIOS 設定介面出現時,配置你的 BIOS 優先從光碟機啟動(相關資訊可以參考你的主板說明書或者資訊你的電腦供應商尋求技術協助)。之後重新啟動電腦。VeraCrypt 開機管理程式應該就會從救機光碟中啟動了。在VeraCrypt 開機管理程式螢幕,按下鍵盤的 F8 按鍵選擇修復選項(Repair Options)。在修復選項 [Repair Options] 功能表,選擇 [Restore VeraCrypt Boot Loader](還原開機管理程式)。之後從光碟機中取出救機光碟並重新啟動電腦。之後 Windows 應該會啟動(此時尚未加密系統)。\n\n</entry> <entry lang="zh-hk" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_4">注意,如果由於系統分割區或磁碟機已經加密而導致前面步驟無效(沒有正確的密碼,沒有人可以啟動加密系統或者存取該磁碟機上的加密資料,即使他依照前面步驟)。\n\n\n即使你丟失了你的 VeraCrypt 救機光碟並且被攻擊者發現了,他們沒有正確的密碼也無法解密已經加密了的系統分割區或磁碟機。</entry> <entry lang="zh-hk" key="SYS_ENCRYPTION_PRETEST_RESULT_TITLE">前置測試已經完成</entry> - <entry lang="zh-hk" key="SYS_ENCRYPTION_PRETEST_RESULT_INFO">前置測試已經成功完成。\n\n警告:請注意,加密時如果遇到突然斷電、或者加密時由於軟硬體故障而導致的系統當機,有些資料可能會損壞或丟失。因此,在您開始加密前,請確認您已經備份了要加密的資料。如果您還沒有備份,請現在就備份這些資料(您可以按「推遲」,備份檔案,之後在以後的任何時候再運行 VeraCrypt,並選擇 「系統」 > 「繼續中斷的過程」 來啟動加密)。\n\n當一切準備就緒時,按「加密」開始執行加密過程。</entry> - <entry lang="zh-hk" key="SYSENC_ENCRYPTION_PAGE_INFO">您可以在任何時候按「暫停」或者「推遲」以打斷加解密過程、退出精靈、重新啟動或關閉電腦,並在以後繼續中斷的過程,繼續時將會從中斷位置開始。為防止對系統或程式讀寫系統磁碟機造成的速度降低,VeraCrypt 會自動等待資料讀寫完畢後(參考上面的狀態)自動繼續加解密。</entry> - <entry lang="zh-hk" key="NONSYS_INPLACE_ENC_ENCRYPTION_PAGE_INFO">\n\n您可以在加密過程的任何時候按「暫停」或者「推遲」,來中斷加密的過程,退出精靈,重新啟動電腦,並在此後繼續該過程,繼續的時候將會從上次中斷之處開始。注意:此加密區在完全加密之前無法被掛載。</entry> + <entry lang="zh-hk" key="SYS_ENCRYPTION_PRETEST_RESULT_INFO">前置測試已經成功完成。\n\n警告:請注意,加密時如果遇到突然斷電、或者加密時由於軟硬體故障而導致的系統當機,有些資料可能會損壞或丟失。因此,在你開始加密前,請確認你已經備份了要加密的資料。如果你還沒有備份,請現在就備份這些資料(你可以按 [推遲],備份檔案,之後在以後的任何時候再運行 VeraCrypt,並選擇 [系統] > [繼續中斷的過程] 來啟動加密)。\n\n當一切準備就緒時,按 [加密] 開始執行加密過程。</entry> + <entry lang="zh-hk" key="SYSENC_ENCRYPTION_PAGE_INFO">你可以在任何時候按 [暫停] 或者 [推遲] 以打斷加解密過程、退出精靈、重新啟動或關閉電腦,並在以後繼續中斷的過程,繼續時將會從中斷位置開始。為防止對系統或程式讀寫系統磁碟機造成的速度降低,VeraCrypt 會自動等待資料讀寫完畢後(參考上面的狀態)自動繼續加解密。</entry> + <entry lang="zh-hk" key="NONSYS_INPLACE_ENC_ENCRYPTION_PAGE_INFO">\n\n你可以在加密過程的任何時候按 [暫停] 或者 [推遲],來中斷加密的過程,退出精靈,重新啟動電腦,並在此後繼續該過程,繼續的時候將會從上次中斷之處開始。請注意:此加密區在完全加密之前無法被掛載。</entry> <entry lang="zh-hk" key="NONSYS_INPLACE_DEC_DECRYPTION_PAGE_INFO">\n\n可隨時按暫停或延緩來打斷解密過程,退出精靈模式,重新啟動或關機。若要重新還原解密,則會從原停止點再繼續進行。請注意,此時加密區在未完全解密前無法予以掛載。</entry> @@ -1194,5 +1194,5 @@ <entry lang="zh-hk" key="SYSENC_HIDDEN_OS_WIPE_INFO_TITLE">原本的系統</entry> - <entry lang="zh-hk" key="SYSENC_HIDDEN_OS_WIPE_INFO">Windows 會在系統分割區建立(通常情況下,您並不知道或者同意)不同的日誌檔、暫存檔案等等。同時也會在系統分割區儲存記憶體中的內容到休眠檔或虛擬記憶體分頁檔案。因此,如果攻擊者分析原始系統(即隱形系統所克隆的系統來源)所在分割區的檔,他可能會發現,例如,您使用過 VeraCrypt 精靈的隱形系統建立模式(因此可能暗示電腦中存在隱形系統。\n\n要預防此類問題,在後面步驟中,VeraCrypt 將會安全抹除原始系統所在分割區的所有內容。在此之後,為了達到隱蔽性,您需要在此分割區上安裝新的作業系統並使用 VeraCrypt 加密它(即成為所謂的偽裝系統)。因此您將會建立完成這個偽裝系統並且整個隱形系統的建立過程也會相應的完成。</entry> - <entry lang="zh-hk" key="OS_WIPING_NOT_FINISHED_ASK">隱形系統已經成功建立。然而,在您使用隱形系統(以及達到隱蔽性)之前,您需要安全抹除當前運行的系統所在分割區的全部內容(使用 VeraCrypt)。在您這樣做之前,您需要重新啟動電腦,並在之後的VeraCrypt 開機管理程式螢幕(在 Windows 啟動前出現),輸入隱形系統的密碼。之後,在隱形系統啟動後,VeraCrypt 精靈將會自動掛載。\n\n說明:如果您現在選擇終止隱形系統的建立過程,您將〖無法再〗繼續該過程並且隱形系統將〖不能再〗被存取(這是因為 VeraCrypt 開機管理程式將會被移除)。</entry> - <entry lang="zh-hk" key="HIDDEN_OS_CREATION_NOT_FINISHED_ASK">您已經設定了建立隱形系統的計畫任務。該計畫尚未完成。要完成該計畫,您需要重新啟動電腦,並在 VeraCrypt 開機管理程式螢幕(在 Windows 啟動前出現),輸入隱形系統的密碼。\n\n注意:如果您現在選擇終止隱形系統的建立過程,您將〖無法〗再繼續該過程。</entry> + <entry lang="zh-hk" key="SYSENC_HIDDEN_OS_WIPE_INFO">Windows 會在系統分割區建立(通常情況下,你並不知道或者同意)不同的日誌檔、暫存檔案等等。同時也會在系統分割區儲存記憶體中的內容到休眠檔或虛擬記憶體分頁檔案。因此,如果攻擊者分析原始系統(即隱形系統所克隆的系統來源)所在分割區的檔,他可能會發現,例如,你使用過 VeraCrypt 精靈的隱形系統建立模式(因此可能暗示電腦中存在隱形系統。\n\n要預防此類問題,在後面步驟中,VeraCrypt 將會安全抹除原始系統所在分割區的所有內容。在此之後,為了達到隱蔽性,你需要在此分割區上安裝新的作業系統並使用 VeraCrypt 加密它(即成為所謂的偽裝系統)。因此你將會建立完成這個偽裝系統並且整個隱形系統的建立過程也會相應的完成。</entry> + <entry lang="zh-hk" key="OS_WIPING_NOT_FINISHED_ASK">隱形系統已經成功建立。然而,在你使用隱形系統(以及達到隱蔽性)之前,你需要安全抹除當前運行的系統所在分割區的全部內容(使用 VeraCrypt)。在你這樣做之前,你需要重新啟動電腦,並在之後的VeraCrypt 開機管理程式螢幕(在 Windows 啟動前出現),輸入隱形系統的密碼。之後,在隱形系統啟動後,VeraCrypt 精靈將會自動掛載。\n\n說明:如果你現在選擇終止隱形系統的建立過程,你將〖無法再〗繼續該過程並且隱形系統將〖不能再〗被存取(這是因為 VeraCrypt 開機管理程式將會被移除)。</entry> + <entry lang="zh-hk" key="HIDDEN_OS_CREATION_NOT_FINISHED_ASK">你已經設定了建立隱形系統的計畫任務。該計畫尚未完成。要完成該計畫,你需要重新啟動電腦,並在 VeraCrypt 開機管理程式螢幕(在 Windows 啟動前出現),輸入隱形系統的密碼。\n\n請注意:如果你現在選擇終止隱形系統的建立過程,你將〖無法〗再繼續該過程。</entry> <entry lang="zh-hk" key="HIDDEN_OS_CREATION_NOT_FINISHED_CHOICE_RETRY">重新啟動電腦並繼續</entry> @@ -1200,91 +1200,91 @@ <entry lang="zh-hk" key="HIDDEN_OS_CREATION_NOT_FINISHED_CHOICE_ASK_LATER">什麼也不做並在以後詢問</entry> - <entry lang="zh-hk" key="RESCUE_DISK_HELP_PORTION_1">\n如果可以,請列印此段文字(按一下以下的「列印」按鈕)。\n\n\nVeraCrypt 救機光碟使用時機和使用方法(加密後)-----------------------------------------------------------------------------------\n\n</entry> - <entry lang="zh-hk" key="RESCUE_DISK_HELP_PORTION_2">I. 如何啟動 VeraCrypt 救機光碟\n\n要使用 VeraCrypt 救機光碟,把救機光碟插入光碟機並重新啟動電腦。如果 VeraCrypt 救機光碟螢幕並沒有出現(或者如果您在開機管理程式螢幕的「Keyboard Controls」部份沒有看到「Repair Options」項目),很可能您的 BIOS 設定了硬碟優先於光碟機啟動。如果是這種情況,重新啟動電腦,當你一看到 BIOS 啟動螢幕的時候按下 F2 或 DEL 按鍵,直到 BISO 設定介面出現。如果 BIOS 設定介面沒有出現,再次重新啟動電腦,在你按下重新啟動鍵的時候就按住 F2 或 DEL 按鍵。當 BIOS 設定介面出現時,配置您的 BIOS 優先從光碟機啟動(相關資訊可以參考您的主板說明書或者資訊您的電腦供應商尋求技術協助)。之後重新啟動電腦。VeraCrypt 開機管理程式應該就會從救機光碟中啟動了。提示:在VeraCrypt 開機管理程式螢幕,您可以按下鍵盤的 F8 按鍵選擇修復選項(Repair Options)。\n\n\n</entry> + <entry lang="zh-hk" key="RESCUE_DISK_HELP_PORTION_1">\n如果可以,請列印此段文字(按一下以下的 [列印] 按鈕)。\n\n\nVeraCrypt 救機光碟使用時機和使用方法(加密後)-----------------------------------------------------------------------------------\n\n</entry> + <entry lang="zh-hk" key="RESCUE_DISK_HELP_PORTION_2">I. 如何啟動 VeraCrypt 救機光碟\n\n要使用 VeraCrypt 救機光碟,把救機光碟插入光碟機並重新啟動電腦。如果 VeraCrypt 救機光碟螢幕並沒有出現(或者如果你在開機管理程式螢幕的 [Keyboard Controls] 部份沒有看到 [Repair Options] 項目),很可能你的 BIOS 設定了硬碟優先於光碟機啟動。如果是這種情況,重新啟動電腦,當你一看到 BIOS 啟動螢幕的時候按下 F2 或 DEL 按鍵,直到 BISO 設定介面出現。如果 BIOS 設定介面沒有出現,再次重新啟動電腦,在你按下重新啟動鍵的時候就按住 F2 或 DEL 按鍵。當 BIOS 設定介面出現時,配置你的 BIOS 優先從光碟機啟動(相關資訊可以參考你的主板說明書或者資訊你的電腦供應商尋求技術協助)。之後重新啟動電腦。VeraCrypt 開機管理程式應該就會從救機光碟中啟動了。提示:在VeraCrypt 開機管理程式螢幕,你可以按下鍵盤的 F8 按鍵選擇修復選項(Repair Options)。\n\n\n</entry> <entry lang="zh-hk" key="RESCUE_DISK_HELP_PORTION_3">II. VeraCrypt 救機光碟使用時機和使用方法(加密後)\n\n</entry> - <entry lang="zh-hk" key="RESCUE_DISK_HELP_PORTION_4">1)如果在你啟動電腦前沒有出現 VeraCrypt 開機管理程式螢幕(或者 Windows 沒有能夠啟動),那麼 VeraCrypt 開機管理程式可能已經損壞。VeraCrypt 救機光碟允許您還原開機管理程式並重新獲取對加密系統和資料的存取(當然您仍然需要輸入正確的密碼)。在救機光碟螢幕選擇修復選項「Repair Options」>「Restore VeraCrypt Boot Loader」(還原開機管理程式)。之後按下「Y」按鍵確認操作,從光碟機中取出救機光碟並重新啟動電腦。\n\n</entry> - <entry lang="zh-hk" key="RESCUE_DISK_HELP_PORTION_5">2)如果您持續輸入正確密碼而 VeraCrypt 仍然提示密碼錯誤(password is incorrect),很可能是主密鑰或其他關鍵資料已經毀壞。VeraCrypt 救機光碟允許您還原這些資料因此就可以重新存取這些加密的系統和資料了(當然您仍然需要輸入正確的密碼)。在救機光碟螢幕,選擇修復選項「Repair Options」> 「Restore key data」(還原密鑰資料)。之後輸入您的密碼,按下鍵盤的「Y」確認操作,從光碟機中取出救機光碟並重新啟動電腦。\n\n</entry> - <entry lang="zh-hk" key="RESCUE_DISK_HELP_PORTION_6">3)如果 VeraCrypt 開機管理程式被惡意程式損壞了或感染,您可以通過運行救機光碟來避免運行惡意程式。在光碟機中插入救機光碟之後在救機光碟螢幕輸入您的密碼。\n\n</entry> - <entry lang="zh-hk" key="RESCUE_DISK_HELP_PORTION_7">4)如果 Windows 已經損壞並且無法啟動,VeraCrypt 救機光碟也可以讓您在啟動 Windows 前永久解密分割區或磁碟機,在救機光碟螢幕,選擇修復選項「Repair Options」> 「Permanently decrypt system partition/drive」(永久地解密系統分割區或磁碟機)。之後輸入正確的密碼直到解密完成。接下來,您就可以啟動 Windows 的安裝光碟來修復 Windows 了。\n\n</entry> - <entry lang="zh-hk" key="RESCUE_DISK_HELP_PORTION_8">提示:另外,如果 Windows 已經損壞(無法啟動),您需要修復它(或者存取入面的檔案),您可以通過以下步驟避免解密系統分割區或磁碟機:如果您在電腦上安裝了多個作業系統,啟動其中的某個不需要啟動驗證的系統。如果您的電腦沒有安裝多個作業系統,您可以啟動一個 WinPE 或者 BartPE CD/DVD 系統,或者是把硬碟磁碟機連接到其他電腦上作為從盤並啟動其他電腦上的系統。在啟動到此類系統環境之後,運行 VeraCrypt,按「選擇裝置」,選擇該受影響的系統分割區,按「確定」,選擇 「系統」 > 「以非啟動驗證方式掛載」,輸入您的啟動驗證密碼並按「確定」按鈕。該分割區將會以一般 VeraCrypt 加密分割區的方式掛載(資料也會象一般加密區資料一樣在記憶體中即時加解密)。\n\n\n</entry> - <entry lang="zh-hk" key="RESCUE_DISK_HELP_PORTION_9">注意:即使你丟失了你的 VeraCrypt 救機光碟並且被攻擊者發現了,他們沒有正確的密碼也無法解密已經加密了的系統分割區或磁碟機。</entry> - <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_1">\n\n重要 -- 如有可能請列印出來(按 「列印」)。\n\n\n注意:這些文本在您每次啟動隱形系統時會自動顯示,直到您開始建立偽裝系統。\n\n\n</entry> - <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_2">如何成功和安全的建立偽裝系統 ----------------------------------------------------------------------------\n\n為了達到隱蔽性的目地,您現在應該建立偽裝系統。要達到這個目地,請依照如下步驟:\n\n</entry> - <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_3">1)安全考慮,關閉您的電腦並保持關機狀態幾分鐘(時間越長越好)。這是出於清除記憶體中敏感資料的需要。之後打開電腦但不要啟動隱形系統。\n\n</entry> - <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_4">2)在已被抹除內容的原系統分割區上安裝 Windows(也就是之前隱形系統克隆的系統源分割區)。\n\n重要:在您開始安裝偽裝作業系統時,隱形系統將無法啟動(這是因為 VeraCrypt 開機管理程式將會被 Windows 系統安裝程式所清除)。這種情況是很正常的,遇到了請不必驚慌。一旦您開始加密偽裝系統,您就能夠啟動隱形系統了(這是因為 VeraCrypt 之後會自動在系統啟動器上安裝 VeraCrypt 開機管理程式)。\n\n重要:偽裝系統分割區的大小必須等於隱藏加密區的大小(此條件已達到)。並且,您必須不能在偽裝系統分割區和隱形系統所在分割區之間建立任何分割區。\n\n</entry> - <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_5">3)啟動偽裝系統(即您在前面的第 2) 步中安裝的並把 VeraCrypt 安裝到其中的那個系統)。\n\n必須牢記偽裝系統中從來都不要包含任何敏感資料。\n\n</entry> - <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_6">4)在偽裝系統中,運行 VeraCrypt 並選擇「系統」>「加密系統分割區/裝置」。將會出現 VeraCrypt 加密區建立精靈。\n\n VeraCrypt 加密區建立精靈中執行以下步驟。\n\n</entry> - <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_7">5)在 VeraCrypt 加密區建立精靈中,不要選擇「隱藏」選項。保持「一般」選項為選中狀態並按 「下一步」。\n\n</entry> - <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_8">6)選擇選項「加密 Windows 系統分割區」並按 「下一步」。\n\n</entry> - <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_9">7)如果電腦中只安裝了一個隱形系統和偽裝系統,請選擇「單一系統」(如果在這兩個系統之外還有其他系統,請選擇 「多個系統」)。之後按 「下一步」。\n\n</entry> - <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_10">8)重要:在本步中,對於偽裝系統,您必須選擇與加密隱形系統相同的加密演算法和雜湊演算法!否則將無法存取隱形系統。換句話說,偽裝系統和隱形系統的加密演算法必須系統。說明:原因是偽裝系統和隱形系統共用一個單開機管理程式,這個管理器只支持用戶選擇的某個單一演算法(對於每種演算法,都會對應一個特定的 VeraCrypt 開機管理程式版本)。\n\n</entry> - <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_11">9)在這個步驟中,為偽裝系統選擇一個密碼。當您被要求或者強迫提供啟動驗證密碼時您可以洩漏這個偽裝系統的密碼(另外一個可以洩漏的密碼是外層加密區密碼)。而第三個密碼(也就是啟動驗證裏面用於啟動隱形系統的密碼)仍然是保密的。\n\n重要:偽裝系統的密碼必須完全不同於隱藏加密區的密碼(隱藏加密區的密碼也就是隱形作業系統的密碼)。\n\n</entry> + <entry lang="zh-hk" key="RESCUE_DISK_HELP_PORTION_4">1)如果在你啟動電腦前沒有出現 VeraCrypt 開機管理程式螢幕(或者 Windows 沒有能夠啟動),那麼 VeraCrypt 開機管理程式可能已經損壞。VeraCrypt 救機光碟允許你還原開機管理程式並重新獲取對加密系統和資料的存取(當然你仍然需要輸入正確的密碼)。在救機光碟螢幕選擇修復選項 [Repair Options] > [Restore VeraCrypt Boot Loader](還原開機管理程式)。之後按下[Y]按鍵確認操作,從光碟機中取出救機光碟並重新啟動電腦。\n\n</entry> + <entry lang="zh-hk" key="RESCUE_DISK_HELP_PORTION_5">2)如果你持續輸入正確密碼而 VeraCrypt 仍然提示密碼錯誤(password is incorrect),很可能是主密鑰或其他關鍵資料已經毀壞。VeraCrypt 救機光碟允許你還原這些資料因此就可以重新存取這些加密的系統和資料了(當然你仍然需要輸入正確的密碼)。在救機光碟螢幕,選擇修復選項 [Repair Options] > [Restore key data](還原密鑰資料)。之後輸入你的密碼,按下鍵盤的[Y]確認操作,從光碟機中取出救機光碟並重新啟動電腦。\n\n</entry> + <entry lang="zh-hk" key="RESCUE_DISK_HELP_PORTION_6">3)如果 VeraCrypt 開機管理程式被惡意程式損壞了或感染,你可以通過運行救機光碟來避免運行惡意程式。在光碟機中插入救機光碟之後在救機光碟螢幕輸入你的密碼。\n\n</entry> + <entry lang="zh-hk" key="RESCUE_DISK_HELP_PORTION_7">4)如果 Windows 已經損壞並且無法啟動,VeraCrypt 救機光碟也可以讓你在啟動 Windows 前永久解密分割區或磁碟機,在救機光碟螢幕,選擇修復選項 [Repair Options] > [Permanently decrypt system partition/drive](永久地解密系統分割區或磁碟機)。之後輸入正確的密碼直到解密完成。接下來,你就可以啟動 Windows 的安裝光碟來修復 Windows 了。\n\n</entry> + <entry lang="zh-hk" key="RESCUE_DISK_HELP_PORTION_8">提示:另外,如果 Windows 已經損壞(無法啟動),你需要修復它(或者存取入面的檔案),你可以通過以下步驟避免解密系統分割區或磁碟機:如果你在電腦上安裝了多個作業系統,啟動其中的某個不需要啟動驗證的系統。如果你的電腦沒有安裝多個作業系統,你可以啟動一個 WinPE 或者 BartPE CD/DVD 系統,或者是把硬碟磁碟機連接到其他電腦上作為從盤並啟動其他電腦上的系統。在啟動到此類系統環境之後,運行 VeraCrypt,按 [選擇裝置],選擇該受影響的系統分割區,按 [確定],選擇 [系統] > [以非啟動驗證方式掛載],輸入你的啟動驗證密碼並按 [確定] 按鈕。該分割區將會以一般 VeraCrypt 加密分割區的方式掛載(資料也會象一般加密區資料一樣在記憶體中即時加解密)。\n\n\n</entry> + <entry lang="zh-hk" key="RESCUE_DISK_HELP_PORTION_9">請注意:即使你丟失了你的 VeraCrypt 救機光碟並且被攻擊者發現了,他們沒有正確的密碼也無法解密已經加密了的系統分割區或磁碟機。</entry> + <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_1">\n\n重要 -- 如有可能請列印出來(按 [列印])。\n\n\n請注意:這些文本在你每次啟動隱形系統時會自動顯示,直到你開始建立偽裝系統。\n\n\n</entry> + <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_2">如何成功和安全的建立偽裝系統 ----------------------------------------------------------------------------\n\n為了達到隱蔽性的目地,你現在應該建立偽裝系統。要達到這個目地,請依照如下步驟:\n\n</entry> + <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_3">1)安全考慮,關閉你的電腦並保持關機狀態幾分鐘(時間越長越好)。這是出於清除記憶體中敏感資料的需要。之後打開電腦但不要啟動隱形系統。\n\n</entry> + <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_4">2)在已被抹除內容的原系統分割區上安裝 Windows(也就是之前隱形系統克隆的系統源分割區)。\n\n重要:在你開始安裝偽裝作業系統時,隱形系統將無法啟動(這是因為 VeraCrypt 開機管理程式將會被 Windows 系統安裝程式所清除)。這種情況是很正常的,遇到了請不必驚慌。一旦你開始加密偽裝系統,你就能夠啟動隱形系統了(這是因為 VeraCrypt 之後會自動在系統啟動器上安裝 VeraCrypt 開機管理程式)。\n\n重要:偽裝系統分割區的大小必須等於隱藏加密區的大小(此條件已達到)。並且,你必須不能在偽裝系統分割區和隱形系統所在分割區之間建立任何分割區。\n\n</entry> + <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_5">3)啟動偽裝系統(即你在前面的第 2) 步中安裝的並把 VeraCrypt 安裝到其中的那個系統)。\n\n必須牢記偽裝系統中從來都不要包含任何敏感資料。\n\n</entry> + <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_6">4)在偽裝系統中,運行 VeraCrypt 並選擇 [系統] > [加密系統分割區/裝置]。將會出現 VeraCrypt 加密區建立精靈。\n\n VeraCrypt 加密區建立精靈中執行以下步驟。\n\n</entry> + <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_7">5)在 VeraCrypt 加密區建立精靈中,不要選擇 [隱藏] 選項。保持 [一般] 選項為選中狀態並按 [下一步]。\n\n</entry> + <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_8">6)選擇選項 [加密 Windows 系統分割區] 並按 [下一步]。\n\n</entry> + <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_9">7)如果電腦中只安裝了一個隱形系統和偽裝系統,請選擇 [單一系統](如果在這兩個系統之外還有其他系統,請選擇 [多個系統])。之後按 [下一步]。\n\n</entry> + <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_10">8)重要:在本步中,對於偽裝系統,你必須選擇與加密隱形系統相同的加密演算法和雜湊演算法!否則將無法存取隱形系統。換句話說,偽裝系統和隱形系統的加密演算法必須系統。說明:原因是偽裝系統和隱形系統共用一個單開機管理程式,這個管理器只支持用戶選擇的某個單一演算法(對於每種演算法,都會對應一個特定的 VeraCrypt 開機管理程式版本)。\n\n</entry> + <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_11">9)在這個步驟中,為偽裝系統選擇一個密碼。當你被要求或者強迫提供啟動驗證密碼時你可以洩漏這個偽裝系統的密碼(另外一個可以洩漏的密碼是外層加密區密碼)。而第三個密碼(也就是啟動驗證裏面用於啟動隱形系統的密碼)仍然是保密的。\n\n重要:偽裝系統的密碼必須完全不同於隱藏加密區的密碼(隱藏加密區的密碼也就是隱形作業系統的密碼)。\n\n</entry> <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_12">10)依照精靈的其餘指令以加密偽裝作業系統。\n\n\n\n</entry> - <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_13">在偽裝作業系統建立之後\n------------------------------------------------\n\n在您加密了偽裝作業系統之後,這個隱形系統的建立就完成了,這時您可以使用三個密碼:\n\n1)啟動驗證中用於啟動隱形系統的密碼。\n\n2)啟動驗證中用於啟動偽裝作業系統的密碼。\n\n3)用於外層加密區的密碼。\n\n</entry> - <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_14">如果您想啟動隱形作業系統,只需要在 VeraCrypt 開機管理程式螢幕(該螢幕出現於您開機或者重新啟動系統的時候)輸入隱形作業系統的密碼。\n\n如果您想啟動偽裝作業系統,只需要在 VeraCrypt 開機管理程式螢幕輸入偽裝作業系統的密碼即可。\n\n偽裝作業系統的密碼可以洩漏給強迫您說出密碼的人,而此時隱藏加密區(以及隱形作業系統)的存在仍然是保密的。\n\n</entry> - <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_15">第三個密碼(外層加密區的密碼),可以洩漏給強迫您說出系統分割區之後那個分割區密碼的人(這個分割區包含外層加密區和隱藏加密區,隱藏加密區中即為隱形系統)。而此時隱藏加密區(以及隱形作業系統)的存在仍然是保密的。\n\n\n</entry> - <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_16">如果您把偽裝系統的密碼洩漏給強迫您說出密碼的人,如果他詢問為什麼(偽裝)系統分割區的自由空間包含亂數據,您可以回答,例如:"這個分割區以前包含 VeraCrypt 加密的系統但是我忘記了密碼(或者說這個系統已經損壞和無法啟動了),因此我不得不安裝了 Windows 和重新加密了這個分割區"。\n\n\n</entry> - <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_17">如果您已依照之前的指示,並且已依照《VeraCrypt 用戶指南》的 "Security Precautions Pertaining to Hidden Volumes" 章節所提及的注意事項和要求,則第三方無法證明隱藏加密區和隱形系統的存在,就算外層加密區已被掛載或偽裝作業系統已被解密/啟動。\n\n如果您儲存了一份此段文字的複本,或將此段文字列印出來(強烈建議,除非你的列印機會儲存列印過的文件在其內置磁碟機),在您已建立偽裝作業系統,並且已明白此段文字所述的內容之後,強烈建議您銷毀此段文字(否則,如果印有此段文字的紙張被發現,可能會間接暗示電腦上有可能存在隱形系統)。</entry> - <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_18">警告:如果您沒有保護隱藏加密區(關於相關做法的資訊,請參閱《VeraCrypt 用戶指南》的 "Protection of Hidden Volumes Against Damage" 章節),絕對不要寫入資料到外層加密區(要注意偽裝作業系統並不是安裝在外層加密區)。否則,您可能會覆寫並損壞隱藏加密區(以及其中的隱形作業系統)!</entry> + <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_13">在偽裝作業系統建立之後\n------------------------------------------------\n\n在你加密了偽裝作業系統之後,這個隱形系統的建立就完成了,這時你可以使用三個密碼:\n\n1)啟動驗證中用於啟動隱形系統的密碼。\n\n2)啟動驗證中用於啟動偽裝作業系統的密碼。\n\n3)用於外層加密區的密碼。\n\n</entry> + <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_14">如果你想啟動隱形作業系統,只需要在 VeraCrypt 開機管理程式螢幕(該螢幕出現於你開機或者重新啟動系統的時候)輸入隱形作業系統的密碼。\n\n如果你想啟動偽裝作業系統,只需要在 VeraCrypt 開機管理程式螢幕輸入偽裝作業系統的密碼即可。\n\n偽裝作業系統的密碼可以洩漏給強迫你說出密碼的人,而此時隱藏加密區(以及隱形作業系統)的存在仍然是保密的。\n\n</entry> + <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_15">第三個密碼(外層加密區的密碼),可以洩漏給強迫你說出系統分割區之後那個分割區密碼的人(這個分割區包含外層加密區和隱藏加密區,隱藏加密區中即為隱形系統)。而此時隱藏加密區(以及隱形作業系統)的存在仍然是保密的。\n\n\n</entry> + <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_16">如果你把偽裝系統的密碼洩漏給強迫你說出密碼的人,如果他詢問為什麼(偽裝)系統分割區的自由空間包含亂數據,你可以回答,例如:"這個分割區以前包含 VeraCrypt 加密的系統但是我忘記了密碼(或者說這個系統已經損壞和無法啟動了),因此我不得不安裝了 Windows 和重新加密了這個分割區"。\n\n\n</entry> + <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_17">如果你已依照之前的指示,並且已依照《VeraCrypt 用戶指南》的 "Security Precautions Pertaining to Hidden Volumes" 章節所提及的注意事項和要求,則第三方無法證明隱藏加密區和隱形系統的存在,就算外層加密區已被掛載或偽裝作業系統已被解密/啟動。\n\n如果你儲存了一份此段文字的複本,或將此段文字列印出來(強烈建議,除非你的列印機會儲存列印過的文件在其內置磁碟機),在你已建立偽裝作業系統,並且已明白此段文字所述的內容之後,強烈建議你銷毀此段文字(否則,如果印有此段文字的紙張被發現,可能會間接暗示電腦上有可能存在隱形系統)。</entry> + <entry lang="zh-hk" key="DECOY_OS_INSTRUCTIONS_PORTION_18">警告:如果你沒有保護隱藏加密區(關於相關做法的資訊,請參閱《VeraCrypt 用戶指南》的 "Protection of Hidden Volumes Against Damage" 章節),絕對不要寫入資料到外層加密區(要注意偽裝作業系統並不是安裝在外層加密區)。否則,你可能會覆寫並損壞隱藏加密區(以及其中的隱形作業系統)!</entry> <entry lang="zh-hk" key="HIDDEN_OS_CREATION_PREINFO_TITLE">正在複製作業系統</entry> - <entry lang="zh-hk" key="HIDDEN_OS_CREATION_PREINFO_HELP">在下一步,VeraCrypt 將會透過複製系統分割區的內容到隱藏加密區來建立隱形系統(被複製的資料將會使用與偽裝作業系統不同的加密鑰即時加密)。\n\n請注意該過程將會在啟動作業系統前的環境下進行(在 Windows 啟動前),並可能花費較長的時間;可能需要花費幾個小時或者幾天(依據系統分割區容量和電腦性能而定,例如PM1.6GHz加密時大概的速度是0.5GB/分鐘左右)。\n\n您可以中斷該過程,關機,啟動作業系統並在此之後繼續該過程。然而,如果您中斷該過程,整個複製系統的過程將會不得不從頭開始(因為系統分割區的內容在克隆期間必須不能被改變)。</entry> - <entry lang="zh-hk" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">您想要取消整個隱形作業系統的建立過程嗎?\n\n注意:如果現在取消,您將無法繼續該過程。</entry> - <entry lang="zh-hk" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">您要取消系統加密的前置測試嗎?</entry> - <entry lang="zh-hk" key="BOOT_PRETEST_FAILED_RETRY">VeraCrypt 系統加密前置測試失敗。您希望再試一次嗎?\n\n如果您選擇「否」,則啟動驗證元件將會被解除掛載。\n\n說明:如果 VeraCrypt 開機管理程式在 Windows 啟動前不要求您輸入密碼,這很可能是您的作業系統並沒有從該系統所安裝的磁碟機引導的。目前並不支援這種方式。\n\n- 如果您使用了AES 之外的加密演算法並且前置測試失敗了(並且您也輸入了密碼),這可能由有設計缺陷的驅動導致的。選擇「否」,嘗試再次加密系統分割區/裝置,但是要使用 AES 加密演算法(該演算法所需記憶體最低)。\n\n- 更多可能導致該錯誤的原因,請參考: https://www.veracrypt.fr/en/Troubleshooting.html</entry> + <entry lang="zh-hk" key="HIDDEN_OS_CREATION_PREINFO_HELP">在下一步,VeraCrypt 將會透過複製系統分割區的內容到隱藏加密區來建立隱形系統(被複製的資料將會使用與偽裝作業系統不同的加密鑰即時加密)。\n\n請注意該過程將會在啟動作業系統前的環境下進行(在 Windows 啟動前),並可能花費較長的時間;可能需要花費幾個小時或者幾天(依據系統分割區容量和電腦性能而定,例如PM1.6GHz加密時大概的速度是0.5GB/分鐘左右)。\n\n你可以中斷該過程,關機,啟動作業系統並在此之後繼續該過程。然而,如果你中斷該過程,整個複製系統的過程將會不得不從頭開始(因為系統分割區的內容在克隆期間必須不能被改變)。</entry> + <entry lang="zh-hk" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">你想要取消整個隱形作業系統的建立過程嗎?\n\n請注意:如果現在取消,你將無法繼續該過程。</entry> + <entry lang="zh-hk" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">你要取消系統加密的前置測試嗎?</entry> + <entry lang="zh-hk" key="BOOT_PRETEST_FAILED_RETRY">VeraCrypt 系統加密前置測試失敗。你希望再試一次嗎?\n\n如果你選擇 [否],則啟動驗證元件將會被解除掛載。\n\n說明:如果 VeraCrypt 開機管理程式在 Windows 啟動前不要求你輸入密碼,這很可能是你的作業系統並沒有從該系統所安裝的磁碟機引導的。目前並不支援這種方式。\n\n- 如果你使用了AES 之外的加密演算法並且前置測試失敗了(並且你也輸入了密碼),這可能由有設計缺陷的驅動導致的。選擇 [否],嘗試再次加密系統分割區/裝置,但是要使用 AES 加密演算法(該演算法所需記憶體最低)。\n\n- 更多可能導致該錯誤的原因,請參考: https://www.veracrypt.fr/en/Troubleshooting.html</entry> <entry lang="zh-hk" key="SYS_DRIVE_NOT_ENCRYPTED">該系統分割區或磁碟機似乎沒有被加密(或者是沒有被完全加密)。</entry> - <entry lang="zh-hk" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">您的系統分割區或磁碟機已加密(部分或完全加密)。\n\n請在繼續進行前解密這個系統分割區或磁碟機。操作步驟:在 VeraCrypt 主視窗的功能表中,選擇「系統」 >「永久解密系統分割區或磁碟機」。</entry> - <entry lang="zh-hk" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">當系統分割區或磁碟機已被部份或完全加密時,您不能降級 VeraCrypt 的版本(但是可以更新到新版本或者從新安裝同一版本)。</entry> - <entry lang="zh-hk" key="SYS_ENCRYPTION_OR_DECRYPTION_IN_PROGRESS">您的系統分割區或磁碟機正在被加密/解密,或正在被修改。請在繼續操作前中斷這個加密/解密/修改過程(或者等待直到其完成)。</entry> - <entry lang="zh-hk" key="SYSTEM_ENCRYPTION_IN_PROGRESS_ELSEWHERE">已經有 VeraCrypt 加密區建立精靈的實例在運行,並且正在執行對系統分割區或磁碟機的加密或解密操作。在您繼續前,請等候其完成或者關閉該實例。如果您無法關閉這個實例,請在繼續操作前重新啟動電腦。</entry> + <entry lang="zh-hk" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED">你的系統分割區或磁碟機已加密(部分或完全加密)。\n\n請在繼續進行前解密這個系統分割區或磁碟機。操作步驟:在 VeraCrypt 主視窗的功能表中,選擇 [系統] >[永久解密系統分割區或磁碟機]。</entry> + <entry lang="zh-hk" key="SETUP_FAILED_BOOT_DRIVE_ENCRYPTED_DOWNGRADE">當系統分割區或磁碟機已被部份或完全加密時,你不能降級 VeraCrypt 的版本(但是可以更新到新版本或者從新安裝同一版本)。</entry> + <entry lang="zh-hk" key="SYS_ENCRYPTION_OR_DECRYPTION_IN_PROGRESS">你的系統分割區或磁碟機正在被加密/解密,或正在被修改。請在繼續操作前中斷這個加密/解密/修改過程(或者等待直到其完成)。</entry> + <entry lang="zh-hk" key="SYSTEM_ENCRYPTION_IN_PROGRESS_ELSEWHERE">已經有 VeraCrypt 加密區建立精靈的實例在運行,並且正在執行對系統分割區或磁碟機的加密或解密操作。在你繼續前,請等候其完成或者關閉該實例。如果你無法關閉這個實例,請在繼續操作前重新啟動電腦。</entry> <entry lang="zh-hk" key="SYSTEM_ENCRYPTION_NOT_COMPLETED">加密或解密系統分割區或磁碟機的過程尚未完成。在過程完成前請稍候。</entry> <entry lang="zh-hk" key="ERR_ENCRYPTION_NOT_COMPLETED">錯誤:加密分割區或磁碟機的過程已經未完成,該過程必須首先完成。</entry> - <entry lang="zh-hk" key="ERR_NONSYS_INPLACE_ENC_INCOMPLETE">錯誤:加密 分割區/磁碟區 的過程尚未完成。您必須首先完成此過程。\n\n說明:要繼續該過程,在 TrueCrype 主介面的功能表中,選擇「加密區」 >「繼續被中斷的過程」。</entry> - <entry lang="zh-hk" key="ERR_SYS_HIDVOL_HEAD_REENC_MODE_WRONG">密碼正確,VeraCrypt 已經成功解密加密區標頭數據並檢測到該加密區存在一個隱形的作業系統。然而,您不能以此種方式修改隱形系統磁碟區的標頭數據。\n\n要修改隱形系統磁碟區的密碼,請啟動隱形作業系統,之後在 VeraCrypt 主介面選擇 「系統」 >「修改密碼」 。\n\n要設定首密鑰的產生演算法,啟動隱形作業系統並在程式視窗選擇 「系統」 >「設定首密鑰產生演算法」。</entry> - <entry lang="zh-hk" key="CANNOT_DECRYPT_HIDDEN_OS">VeraCrypt 不支援就地(在隱形系統內)解密隱形作業系統分割區。\n\n說明:如果您想要解密偽裝作業系統,可以啟動到偽裝作業系統,在 VeraCrypt 程式中選擇 「系統」 > 「永久解密系統分割區或磁碟機」。</entry> + <entry lang="zh-hk" key="ERR_NONSYS_INPLACE_ENC_INCOMPLETE">錯誤:加密 分割區/磁碟區 的過程尚未完成。你必須首先完成此過程。\n\n說明:要繼續該過程,在 TrueCrype 主介面的功能表中,選擇 [加密區] > [繼續被中斷的過程]。</entry> + <entry lang="zh-hk" key="ERR_SYS_HIDVOL_HEAD_REENC_MODE_WRONG">密碼正確,VeraCrypt 已經成功解密加密區標頭數據並檢測到該加密區存在一個隱形的作業系統。然而,你不能以此種方式修改隱形系統磁碟區的標頭數據。\n\n要修改隱形系統磁碟區的密碼,請啟動隱形作業系統,之後在 VeraCrypt 主介面選擇 [系統] >[ 修改密碼] 。\n\n要設定首密鑰的產生演算法,啟動隱形作業系統並在程式視窗選擇 [系統] > [設定首密鑰產生演算法]。</entry> + <entry lang="zh-hk" key="CANNOT_DECRYPT_HIDDEN_OS">VeraCrypt 不支援就地(在隱形系統內)解密隱形作業系統分割區。\n\n說明:如果你想要解密偽裝作業系統,可以啟動到偽裝作業系統,在 VeraCrypt 程式中選擇 [系統] > [永久解密系統分割區或磁碟機]。</entry> <entry lang="zh-hk" key="ERR_PARAMETER_INCORRECT">錯誤:錯誤/無效的參數。</entry> - <entry lang="zh-hk" key="DEVICE_SELECTED_IN_NON_DEVICE_MODE">您已經選擇了一個分割區或者裝置,但是在精靈模式您只能選擇檔案型加密區。\n\n您希望改變精靈模式嗎?</entry> - <entry lang="zh-hk" key="CONFIRM_CHANGE_WIZARD_MODE_TO_FILE_CONTAINER">您想取代建立為 VeraCrypt 檔型加密區嗎?</entry> - <entry lang="zh-hk" key="CONFIRM_SYSTEM_ENCRYPTION_MODE">您已經選擇了系統分割區或磁碟機(或啟動分割區),但是您選擇的精靈模式只適用於非系統磁碟機。\n\n您希望設定啟動驗證(意味著每次啟動 Windows 前,都需要您輸入密碼)和加密系統分割區或磁碟機嗎?</entry> - <entry lang="zh-hk" key="CONFIRM_DECRYPT_SYS_DEVICE">您確認要永久解密系統分割區或磁碟機嗎?</entry> - <entry lang="zh-hk" key="CONFIRM_DECRYPT_SYS_DEVICE_CAUTION">小心:如果您永久解密系統分割區或磁碟機,資料將會還原為未加密狀態。\n\n您確認要永久解密系統分割區或磁碟機嗎?</entry> - <entry lang="zh-hk" key="CONFIRM_DECRYPT_NON_SYS_DEVICE">您確認要永久解密以下的磁碟區?</entry> - <entry lang="zh-hk" key="CONFIRM_DECRYPT_NON_SYS_DEVICE_CAUTION">注意:如果永久解密 VeraCrypt 磁碟機的話,解密的數據將會寫入到磁碟上。\n\n你是否確定要繼續解密所選取的磁碟區?</entry> - <entry lang="zh-hk" key="CONFIRM_CASCADE_FOR_SYS_ENCRYPTION">警告:如果您使用一種級聯演算法加密作業系統,您可能會遇到以下問題:\n\n1)VeraCrypt 開機管理程式體積偏大,因此磁碟機的第一個柱面可能無法容納 VeraCrypt 開機管理程式的備份。因此,當其損壞的時候(這個可能會經常發生,例如,在某些程式的有設計缺陷的反隱私操作情況下),您將需要使用 VeraCrypt 救機光碟啟動和修復 VeraCrypt 開機管理程式。\n\n2)在一些電腦上,導致休眠時間過長。\n\n這些潛在的問題可以通過選擇一種非級聯演算法(例如 AES)來預防。\n\n您真的要堅持繼續使用級聯演算法嗎?</entry> - <entry lang="zh-hk" key="NOTE_CASCADE_FOR_SYS_ENCRYPTION">如果您遇到任何前面描述的問題,請解密該分割區或磁碟機(如果已加密)並使用一種非級聯演算法加密(例如 AES)。</entry> - <entry lang="en" key="UPDATE_TC_IN_DECOY_OS_FIRST">WARNING: For safety and security reasons, you should update VeraCrypt on the decoy operating system before you update it on the hidden operating system.\n\nTo do so, boot the decoy system and run the VeraCrypt installer from within it. Then boot the hidden system and run the installer from within it as well.\n\nNote: The decoy system and the hidden system share a single boot loader. If you upgraded VeraCrypt only on the hidden system (but not on the decoy system), the decoy system would contain a VeraCrypt driver and VeraCrypt applications whose version numbers are different from the version number of the VeraCrypt Boot Loader. Such a discrepancy might indicate that there is a hidden operating system on this computer.\n\n\nDo you want to continue?</entry> - <entry lang="zh-hk" key="UPDATE_TC_IN_HIDDEN_OS_TOO">VeraCrypt 開機管理程式的版本與系統中安裝的 VeraCrypt 驅動和程式版本不一致。\n\n您應該運行 VeraCrypt 安裝程式(版本號與 VeraCrypt 開機管理程式相同)來更新作業系統中的 VeraCrypt。</entry> - <entry lang="zh-hk" key="BOOT_LOADER_VERSION_DIFFERENT_FROM_DRIVER_VERSION">啟動該系統的 VeraCrypt 開機管理程式版本號不同於安裝在系統上的 VeraCrypt 裝置驅動程式或 VeraCrypt 應用程式的版本號。請注意,早期版本可能存在一些新版已經修復的 BUG。\n\n如果您並未從救機光碟啟動,您應該重新安裝 VeraCrypt 或者更新到最新的穩定版本(開機管理程式也會隨之更新)。\n\n如果您從救機光碟啟動,您應該更新救機光碟(「系統」 > 「建立救機光碟」)。</entry> - <entry lang="zh-hk" key="BOOT_LOADER_UPGRADE_OK">VeraCrypt 開機管理程式已經成功更新。\n\n強烈建議您重新啟動電腦後選擇 「系統」 > 「建立救機光碟」 來建立一個新的 VeraCrypt 救機光碟(將會包含新版的 VeraCrypt 開機管理程式)。</entry> - <entry lang="zh-hk" key="BOOT_LOADER_UPGRADE_OK_HIDDEN_OS">VeraCrypt 開機管理程式已經更新。\n\n強烈建議您啟動偽裝作業系統並透過選擇功能表 「系統」 > 「建立救機光碟」 建立一個新的 VeraCrypt救機光碟(將會包含新版本的 VeraCrypt 開機管理程式)。</entry> + <entry lang="zh-hk" key="DEVICE_SELECTED_IN_NON_DEVICE_MODE">你已經選擇了一個分割區或者裝置,但是在精靈模式你只能選擇檔案型加密區。\n\n你希望改變精靈模式嗎?</entry> + <entry lang="zh-hk" key="CONFIRM_CHANGE_WIZARD_MODE_TO_FILE_CONTAINER">你想取代建立為 VeraCrypt 檔型加密區嗎?</entry> + <entry lang="zh-hk" key="CONFIRM_SYSTEM_ENCRYPTION_MODE">你已經選擇了系統分割區或磁碟機(或啟動分割區),但是你選擇的精靈模式只適用於非系統磁碟機。\n\n你希望設定啟動驗證(意味著每次啟動 Windows 前,都需要你輸入密碼)和加密系統分割區或磁碟機嗎?</entry> + <entry lang="zh-hk" key="CONFIRM_DECRYPT_SYS_DEVICE">你確認要永久解密系統分割區或磁碟機嗎?</entry> + <entry lang="zh-hk" key="CONFIRM_DECRYPT_SYS_DEVICE_CAUTION">小心:如果你永久解密系統分割區或磁碟機,資料將會還原為未加密狀態。\n\n你確認要永久解密系統分割區或磁碟機嗎?</entry> + <entry lang="zh-hk" key="CONFIRM_DECRYPT_NON_SYS_DEVICE">你確認要永久解密以下的磁碟區?</entry> + <entry lang="zh-hk" key="CONFIRM_DECRYPT_NON_SYS_DEVICE_CAUTION">請注意:如果永久解密 VeraCrypt 磁碟機的話,解密的數據將會寫入到磁碟上。\n\n你是否確定要繼續解密所選取的磁碟區?</entry> + <entry lang="zh-hk" key="CONFIRM_CASCADE_FOR_SYS_ENCRYPTION">警告:如果你使用一種級聯演算法加密作業系統,你可能會遇到以下問題:\n\n1)VeraCrypt 開機管理程式體積偏大,因此磁碟機的第一個柱面可能無法容納 VeraCrypt 開機管理程式的備份。因此,當其損壞的時候(這個可能會經常發生,例如,在某些程式的有設計缺陷的反隱私操作情況下),你將需要使用 VeraCrypt 救機光碟啟動和修復 VeraCrypt 開機管理程式。\n\n2)在一些電腦上,導致休眠時間過長。\n\n這些潛在的問題可以通過選擇一種非級聯演算法(例如 AES)來預防。\n\n你真的要堅持繼續使用級聯演算法嗎?</entry> + <entry lang="zh-hk" key="NOTE_CASCADE_FOR_SYS_ENCRYPTION">如果你遇到任何前面描述的問題,請解密該分割區或磁碟機(如果已加密)並使用一種非級聯演算法加密(例如 AES)。</entry> + <entry lang="zh-hk" key="UPDATE_TC_IN_DECOY_OS_FIRST">警告:基於安全性的考慮,你應該先在偽裝作業系統升級 VeraCrypt 然後才在隱藏作業系統進行升級。\n\n要這樣做的話,請先啟動偽裝作業系統然後在其中執行 VeraCrypt 安裝程式進行升級。然後啟動隱藏作業系統然後同樣地在其中執行 VeraCrypt 安裝程式進行升級。\n\n請注意:偽裝作業系統與隱藏作業系統共用同一個開機程式。如果你只在隱藏作業系統升級了 VeraCrypt (但未有在偽裝作業系統進行升級),偽裝作業系統將會包含一個版本號碼與 VeraCrypt 開機程式版本號碼不相符的 VeraCrypt 驅動程式和 VeraCrypt 應用程式。這些差異將會曝露跡象暗示這部電腦有可能存在隱藏作業系統。\n\n\n你是否還要繼續?</entry> + <entry lang="zh-hk" key="UPDATE_TC_IN_HIDDEN_OS_TOO">VeraCrypt 開機管理程式的版本與系統中安裝的 VeraCrypt 驅動和程式版本不一致。\n\n你應該運行 VeraCrypt 安裝程式(版本號與 VeraCrypt 開機管理程式相同)來更新作業系統中的 VeraCrypt。</entry> + <entry lang="zh-hk" key="BOOT_LOADER_VERSION_DIFFERENT_FROM_DRIVER_VERSION">啟動該系統的 VeraCrypt 開機管理程式版本號不同於安裝在系統上的 VeraCrypt 裝置驅動程式或 VeraCrypt 應用程式的版本號。請注意,早期版本可能存在一些新版已經修復的 BUG。\n\n如果你並未從救機光碟啟動,你應該重新安裝 VeraCrypt 或者更新到最新的穩定版本(開機管理程式也會隨之更新)。\n\n如果你從救機光碟啟動,你應該更新救機光碟([系統] > [建立救機光碟])。</entry> + <entry lang="zh-hk" key="BOOT_LOADER_UPGRADE_OK">VeraCrypt 開機管理程式已經成功更新。\n\n強烈建議你重新啟動電腦後選擇 [系統] > [建立救機光碟] 來建立一個新的 VeraCrypt 救機光碟(將會包含新版的 VeraCrypt 開機管理程式)。</entry> + <entry lang="zh-hk" key="BOOT_LOADER_UPGRADE_OK_HIDDEN_OS">VeraCrypt 開機管理程式已經更新。\n\n強烈建議你啟動偽裝作業系統並透過選擇功能表 [系統] > [建立救機光碟] 建立一個新的 VeraCrypt救機光碟(將會包含新版本的 VeraCrypt 開機管理程式)。</entry> <entry lang="zh-hk" key="BOOT_LOADER_UPGRADE_FAILED">更新 VeraCrypt 開機管理程式時失敗。</entry> <entry lang="zh-hk" key="SYS_DRIVE_SIZE_PROBE_TIMEOUT">VeraCrypt 檢測系統磁碟機真實大小失敗,因此,作業系統所報告的大小(將會比實際小)將會被使用。另外需要指明的是,這並不是 VeraCrypt 的程式問題(BUG)。</entry> - <entry lang="zh-hk" key="HIDDEN_SECTOR_DETECTION_FAILED_PREVIOUSLY">警告:似乎 VeraCrypt 曾經檢測過此系統磁碟機上的隱藏磁區。如果您在上次檢測過程中遇到任何問題,您可以通過跳過隱藏磁區檢測來避免這個問題。注意,如果跳過檢測,VeraCrypt 將會使用作業系統報告的容量(要小於真實磁碟機的容量)。\n\n此問題並不是 VeraCrypt 的程式 Bug。</entry> + <entry lang="zh-hk" key="HIDDEN_SECTOR_DETECTION_FAILED_PREVIOUSLY">警告:似乎 VeraCrypt 曾經檢測過此系統磁碟機上的隱藏磁區。如果你在上次檢測過程中遇到任何問題,你可以通過跳過隱藏磁區檢測來避免這個問題。注意,如果跳過檢測,VeraCrypt 將會使用作業系統報告的容量(要小於真實磁碟機的容量)。\n\n此問題並不是 VeraCrypt 的程式 Bug。</entry> <entry lang="zh-hk" key="SKIP_HIDDEN_SECTOR_DETECTION">跳過隱藏磁區的檢測(使用作業系統報告的容量)</entry> <entry lang="zh-hk" key="RETRY_HIDDEN_SECTOR_DETECTION">嘗試再次檢測隱藏磁區</entry> - <entry lang="zh-hk" key="ENABLE_BAD_SECTOR_ZEROING">錯誤:磁片上一個或多個磁區的內容無法讀取(可能由於物理缺陷)。\n\n這些磁區能夠重新讀取之前,就地加密的程序將無法繼續。VeraCrypt 可以嘗試對其寫入零來使這些磁區可讀(之後這些填充的全零區塊將會被加密)。然而,請注意儲存於這些不可讀磁區的資料將會丟失。如果您想要避免資料丟失,您可以使用適當的第三方軟件還原這些損壞資料的某些部分。\n\n注意:在有物理損壞磁區的情況下(不同於簡單的資料損壞和校驗錯誤),當有資料嘗試對這些損壞磁區寫入資料時,大多數儲存裝置都會在內部為這些要寫入的資料重新分配磁區(因此當前損壞磁區上的現有資料可能在啟動器上仍然保持未加密狀態)。\n\n您希望 VeraCrypt 為這些不可讀磁區填充零嗎?</entry> - <entry lang="zh-hk" key="DISCARD_UNREADABLE_ENCRYPTED_SECTORS">錯誤:磁片上一個或多個磁區的內容無法讀取(可能由於物理因素影響)。\n\n為了能夠繼續加密,VeraCrypt 不得不放棄這些不可讀磁區(磁區內容會被偽亂數據填充)。請注意,在繼續進行之前,您可以嘗試使用適當的第三方軟件還原任何損壞資料的一部分。\n\n您希望 VeraCrypt 廢棄不可讀磁區中的資料嗎?</entry> - <entry lang="zh-hk" key="ZEROED_BAD_SECTOR_COUNT">注意:VeraCrypt 已經用已加密的全零純文字區塊來替換 %I64d 中無法讀取的磁區(%s)的內容。</entry> + <entry lang="zh-hk" key="ENABLE_BAD_SECTOR_ZEROING">錯誤:磁片上一個或多個磁區的內容無法讀取(可能由於物理缺陷)。\n\n這些磁區能夠重新讀取之前,就地加密的程序將無法繼續。VeraCrypt 可以嘗試對其寫入零來使這些磁區可讀(之後這些填充的全零區塊將會被加密)。然而,請注意儲存於這些不可讀磁區的資料將會丟失。如果你想要避免資料丟失,你可以使用適當的第三方軟件還原這些損壞資料的某些部分。\n\n請注意:在有物理損壞磁區的情況下(不同於簡單的資料損壞和校驗錯誤),當有資料嘗試對這些損壞磁區寫入資料時,大多數儲存裝置都會在內部為這些要寫入的資料重新分配磁區(因此當前損壞磁區上的現有資料可能在啟動器上仍然保持未加密狀態)。\n\n你希望 VeraCrypt 為這些不可讀磁區填充零嗎?</entry> + <entry lang="zh-hk" key="DISCARD_UNREADABLE_ENCRYPTED_SECTORS">錯誤:磁片上一個或多個磁區的內容無法讀取(可能由於物理因素影響)。\n\n為了能夠繼續加密,VeraCrypt 不得不放棄這些不可讀磁區(磁區內容會被偽亂數據填充)。請注意,在繼續進行之前,你可以嘗試使用適當的第三方軟件還原任何損壞資料的一部分。\n\n你希望 VeraCrypt 廢棄不可讀磁區中的資料嗎?</entry> + <entry lang="zh-hk" key="ZEROED_BAD_SECTOR_COUNT">請注意:VeraCrypt 已經用已加密的全零純文字區塊來替換 %I64d 中無法讀取的磁區(%s)的內容。</entry> <entry lang="zh-hk" key="SKIPPED_BAD_SECTOR_COUNT">VeraCrypt 已經用偽隨機數據來替換 %I64d 中無法讀取的磁區(%s)的內容。</entry> - <entry lang="zh-hk" key="ENTER_TOKEN_PASSWORD">輸入安全鑰匙「%s」的密碼/PIN:</entry> - <entry lang="zh-hk" key="PKCS11_LIB_LOCATION_HELP">為了讓 VeraCrypt 可以存取安全鑰匙或智慧卡,您首先需要為安全鑰匙或智慧卡安裝一個 PKCS #11 程式庫,這些程式庫可能已經隨裝置提供,或者可以從供應商網站或其他第三方網站上下載。\n\n在您安裝了程式庫後,您可以通過單擊「選擇程式庫」手動選擇,或者通過單擊 「自動檢測程式庫」來讓 VeraCrypt 發現和選擇(僅會搜索 Windows 系統目錄,比較耗費時間)。</entry> - <entry lang="zh-hk" key="SELECT_PKCS11_MODULE_HELP">注意:對於安裝到您電腦上的 PKCS #11 程式庫以及安全鑰匙或智慧卡的檔案名和位置,請參考安全鑰匙、智慧卡的文檔,或者參考第三方軟件。\n\n單擊「確定」 按鈕選擇路徑和檔案名。</entry> - <entry lang="zh-hk" key="NO_PKCS11_MODULE_SPECIFIED">為了讓 VeraCrypt 可以存取安全鑰匙或智慧卡,您需要為安全鑰匙或智慧卡選擇一個 PKCS #11 程式庫。要做到這點,請選擇「設定」 > 「安全鑰匙」。</entry> - <entry lang="zh-hk" key="PKCS11_MODULE_INIT_FAILED">初始化 PKCS #11 安全鑰匙程式庫失敗。\n\n請確認指定路徑和檔案名對應有效的 PKCS #11 程式庫。要指定 PKCS #11 程式庫路徑和檔案名,選擇 「設定」 > 「安全鑰匙」。</entry> - <entry lang="zh-hk" key="PKCS11_MODULE_AUTO_DETECTION_FAILED">在 Windows 系統目錄未發現 PKCS #11 程式庫。\n\n請確認您的安全鑰匙或智慧卡已經安裝了 PKCS #11 程式庫(這些程式庫可能已經隨裝置提供,或者可以從供應商網站或其他第三方網站上下載)。如果是被安裝到 Windows 系統目錄之外的地方,請按「選擇程式庫」來定位程式庫位置(例如:安全鑰匙/智能卡 的安裝資料夾。</entry> - <entry lang="zh-hk" key="NO_TOKENS_FOUND">未發現安全鑰匙。\n\n請確認您的安全鑰匙已經連接到您的電腦上並且已經安裝好了正確的裝置驅動程式程式。</entry> - <entry lang="zh-hk" key="TOKEN_KEYFILE_NOT_FOUND">安全鑰匙加密鑰檔案未發現。</entry> - <entry lang="zh-hk" key="TOKEN_KEYFILE_ALREADY_EXISTS">已經存在同名的安全鑰匙加密鑰檔案。</entry> - <entry lang="zh-hk" key="CONFIRM_SEL_FILES_DELETE">您想要刪除指定檔案嗎?</entry> - <entry lang="zh-hk" key="INVALID_TOKEN_KEYFILE_PATH">安全鑰匙加密鑰檔案路徑無效。</entry> - <entry lang="zh-hk" key="SECURITY_TOKEN_ERROR">安全鑰匙錯誤</entry> - <entry lang="zh-hk" key="CKR_PIN_INCORRECT">安全鑰匙密碼不正確。</entry> - <entry lang="zh-hk" key="CKR_DEVICE_MEMORY">安全鑰匙無足夠的 記憶體/空間 來執行請求的操作。\n\n如果您嘗試匯入一個加密鑰檔案,您應該選擇一個細一些的檔或使用由 VeraCrypt 產生的加密鑰檔案(選擇 「工具」 > 「加密鑰檔案產生器」)。</entry> - <entry lang="zh-hk" key="ALL_TOKEN_SESSIONS_CLOSED">所有開啟的安全鑰匙工作階段均已經關閉。</entry> - <entry lang="zh-hk" key="SELECT_TOKEN_KEYFILES">選擇安全鑰匙加密鑰檔案</entry> + <entry lang="zh-hk" key="ENTER_TOKEN_PASSWORD">輸入安全性權杖[%s]的密碼/PIN:</entry> + <entry lang="zh-hk" key="PKCS11_LIB_LOCATION_HELP">為了讓 VeraCrypt 可以存取安全性權杖或智慧卡,你首先需要為安全性權杖或智慧卡安裝一個 PKCS #11 程式庫,這些程式庫可能已經隨裝置提供,或者可以從供應商網站或其他第三方網站上下載。\n\n在你安裝了程式庫後,你可以通過單擊 [選擇程式庫]手動選擇,或者通過單擊 [自動檢測程式庫] 來讓 VeraCrypt 發現和選擇(僅會搜索 Windows 系統目錄,比較耗費時間)。</entry> + <entry lang="zh-hk" key="SELECT_PKCS11_MODULE_HELP">請注意:對於安裝到你電腦上的 PKCS #11 程式庫以及安全性權杖或智慧卡的檔案名和位置,請參考安全性權杖、智慧卡的文檔,或者參考第三方軟件。\n\n單擊[確定] 按鈕選擇路徑和檔案名。</entry> + <entry lang="zh-hk" key="NO_PKCS11_MODULE_SPECIFIED">為了讓 VeraCrypt 可以存取安全性權杖或智慧卡,你需要為安全性權杖或智慧卡選擇一個 PKCS #11 程式庫。要做到這點,請選擇 [設定] > [安全性權杖]。</entry> + <entry lang="zh-hk" key="PKCS11_MODULE_INIT_FAILED">初始化 PKCS #11 安全性權杖程式庫失敗。\n\n請確認指定路徑和檔案名對應有效的 PKCS #11 程式庫。要指定 PKCS #11 程式庫路徑和檔案名,選擇 [設定] > [安全性權杖]。</entry> + <entry lang="zh-hk" key="PKCS11_MODULE_AUTO_DETECTION_FAILED">在 Windows 系統目錄未發現 PKCS #11 程式庫。\n\n請確認你的安全性權杖或智慧卡已經安裝了 PKCS #11 程式庫(這些程式庫可能已經隨裝置提供,或者可以從供應商網站或其他第三方網站上下載)。如果是被安裝到 Windows 系統目錄之外的地方,請按 [選擇程式庫] 來定位程式庫位置(例如:安全性權杖/智能卡 的安裝資料夾。</entry> + <entry lang="zh-hk" key="NO_TOKENS_FOUND">未發現安全性權杖。\n\n請確認你的安全性權杖已經連接到你的電腦上並且已經安裝好了正確的裝置驅動程式程式。</entry> + <entry lang="zh-hk" key="TOKEN_KEYFILE_NOT_FOUND">安全性權杖加密鑰檔案未發現。</entry> + <entry lang="zh-hk" key="TOKEN_KEYFILE_ALREADY_EXISTS">已經存在同名的安全性權杖加密鑰檔案。</entry> + <entry lang="zh-hk" key="CONFIRM_SEL_FILES_DELETE">你想要刪除指定檔案嗎?</entry> + <entry lang="zh-hk" key="INVALID_TOKEN_KEYFILE_PATH">安全性權杖加密鑰檔案路徑無效。</entry> + <entry lang="zh-hk" key="SECURITY_TOKEN_ERROR">安全性權杖錯誤</entry> + <entry lang="zh-hk" key="CKR_PIN_INCORRECT">安全性權杖密碼不正確。</entry> + <entry lang="zh-hk" key="CKR_DEVICE_MEMORY">安全性權杖無足夠的 記憶體/空間 來執行請求的操作。\n\n如果你嘗試匯入一個加密鑰檔案,你應該選擇一個細一些的檔或使用由 VeraCrypt 產生的加密鑰檔案(選擇 [工具] > [加密鑰檔案產生器])。</entry> + <entry lang="zh-hk" key="ALL_TOKEN_SESSIONS_CLOSED">所有開啟的安全性權杖工作階段均已經關閉。</entry> + <entry lang="zh-hk" key="SELECT_TOKEN_KEYFILES">選擇安全性權杖中的加密鑰檔案</entry> <entry lang="zh-hk" key="TOKEN_SLOT_ID">插槽</entry> - <entry lang="zh-hk" key="TOKEN_NAME">安全鑰匙名稱</entry> + <entry lang="zh-hk" key="TOKEN_NAME">安全性權杖名稱</entry> <entry lang="zh-hk" key="TOKEN_DATA_OBJECT_LABEL">檔案名稱</entry> - <entry lang="zh-hk" key="BOOT_PASSWORD_CACHE_KEYBOARD_WARNING">重要:請注意,啟動驗證的密碼總是以美國鍵盤配置輸入的。因此,對於使用非美國鍵盤配置輸入密碼的加密區,在使用暫存的密碼掛載時是不可能被掛載的(注意這不是 VeraCrypt 的程式缺陷)。要允許這樣的加密區使用啟動驗證密碼掛載,請依照以下步驟:\n\n1)按「選擇檔案」或「選擇裝置」並選擇加密區。 2)選擇「加密區」>「更改加密區密碼」。 3)輸入當前加密區的密碼。 4)更改鍵盤配置為 English (US),通過按 Windows 通知欄上的語言欄和選擇「英語(美國)」。 5)在 VeraCrypt,在新密碼位置,輸入啟動驗證密碼。 6)在確認密碼位置重複輸入密碼,之後按「確定」。警告:如果您採用這些步驟,請牢記,加密區密碼總是只能以美國鍵盤配置輸入(這樣才能在啟動驗證環境中自動匹配)。</entry> - <entry lang="zh-hk" key="SYS_FAVORITES_KEYBOARD_WARNING">系統最愛加密區將會以啟動驗證密碼掛載。如果任何系統最愛加密區使用了不同的密碼,它將不會被掛載。</entry> - <entry lang="zh-hk" key="SYS_FAVORITES_ADMIN_ONLY_INFO">請注意,如果您希望系統最愛加密區不會受到一般 VeraCrypt 加密區操作的影響(例如「全部解除掛載」),您應該啟用選項「在 VeraCrypt 中,只允許系統管理員查看和解除掛載系統最愛加密區」。另外,如果 VeraCrypt 以非管理員身份運行(在 Windows Vista 和以後版本的系統中預設為非管理員身份),系統最愛加密區將不會出現在 VeraCrypt 程式視窗的驅動磁碟機代號列表中。</entry> - <entry lang="zh-hk" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">重要:請必須記住,此選項已經啟用並且 VeraCrypt 不具有系統管理員權限,已掛載的系統最愛加密區不會顯示在 VeraCrypt 程式視窗並且它們也不能被解除掛載。因此,如果您需要解除掛載系統最愛加密區,請先右按 VeraCrypt 圖示(在開始功能表中),然後選擇「以系統管理員帳戶執行」。「全部解除掛載」、「自動解除掛載」、「全部解除掛載」快捷鍵等功能也存在上述的限制。</entry> + <entry lang="zh-hk" key="BOOT_PASSWORD_CACHE_KEYBOARD_WARNING">重要:請注意,啟動驗證的密碼總是以美國鍵盤配置輸入的。因此,對於使用非美國鍵盤配置輸入密碼的加密區,在使用暫存的密碼掛載時是不可能被掛載的(注意這不是 VeraCrypt 的程式缺陷)。要允許這樣的加密區使用啟動驗證密碼掛載,請依照以下步驟:\n\n1)按 [選擇檔案] 或 [選擇裝置] 並選擇加密區。 2)選擇 [加密區] > [更改加密區密碼]。 3)輸入當前加密區的密碼。 4)更改鍵盤配置為 English (US),通過按 Windows 通知欄上的語言欄和選擇 [英語(美國)]。 5)在 VeraCrypt,在新密碼位置,輸入啟動驗證密碼。 6)在確認密碼位置重複輸入密碼,之後按[確定]。警告:如果你採用這些步驟,請牢記,加密區密碼總是只能以美國鍵盤配置輸入(這樣才能在啟動驗證環境中自動匹配)。</entry> + <entry lang="zh-hk" key="SYS_FAVORITES_KEYBOARD_WARNING">我的最愛系統加密區將會以啟動驗證密碼掛載。如果任何我的最愛系統加密區使用了不同的密碼,它將不會被掛載。</entry> + <entry lang="zh-hk" key="SYS_FAVORITES_ADMIN_ONLY_INFO">請注意,如果你希望我的最愛系統加密區不會受到一般 VeraCrypt 加密區操作的影響(例如 [全部解除掛載]),你應該啟用選項 [在 VeraCrypt 中,只允許系統管理員查看和解除掛載我的最愛系統加密區]。另外,如果 VeraCrypt 以非管理員身份運行(在 Windows Vista 和以後版本的系統中預設為非管理員身份),我的最愛系統加密區將不會出現在 VeraCrypt 程式視窗的驅動磁碟機代號列表中。</entry> + <entry lang="zh-hk" key="SYS_FAVORITES_ADMIN_ONLY_WARNING">重要:請必須記住,此選項已經啟用並且 VeraCrypt 不具有系統管理員權限,已掛載的我的最愛系統加密區不會顯示在 VeraCrypt 程式視窗並且它們也不能被解除掛載。因此,如果你需要解除掛載我的最愛系統加密區,請先右按 VeraCrypt 圖示(在開始功能表中),然後選擇 [以系統管理員帳戶執行]。[解除掛載所有] 功能、[自動掛載] 功能、[解除掛載所有] 的快捷鍵等功能也存在上述的限制。</entry> <entry lang="zh-hk" key="SETTING_REQUIRES_REBOOT">請注意,此設定在系統重新啟動後才會生效。</entry> @@ -1294,18 +1294,18 @@ <entry lang="zh-hk" key="SELECT_DEVICE_AND_MOUNT">選擇和掛載裝置(&D)...</entry> - <entry lang="zh-hk" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">在 VeraCrypt 中,只允許系統管理員查看和解除掛載系統最愛加密區</entry> - <entry lang="zh-hk" key="MOUNT_SYSTEM_FAVORITES_ON_BOOT">在 Windows 啟動時掛載系統最愛加密區(在啟動過程的初始階段)</entry> - <entry lang="zh-hk" key="MOUNTED_VOLUME_DIRTY">警告:掛載為「%s」的加密區上的檔案系統並未徹底解除掛載因此而存在錯誤。繼續使用損壞的檔案系統可能會導致資料丟失或者損壞。\n\n注意:在您物理移除或解除掛載包含已被掛載的 VeraCrypt 加密區的裝置(例如U盤或移動硬碟)之前,您應該先在 VeraCrypt 中解除掛載加密區。\n\n\n您希望 Windows 系統嘗試檢測和修復可能的檔案系統錯誤嗎?</entry> - <entry lang="zh-hk" key="SYS_FAVORITE_VOLUME_DIRTY">警告:一個或者多個系統最愛加密區並沒有完全解除掛載,因此可能包含檔案系統錯誤。請查看系統事件日誌獲取更多資訊。\n\n使用損壞的檔案系統可以導致資料丟失或者資料損壞。您應該檢查受影響的最愛加密區的磁片錯誤(在 VeraCrypt 中右鍵單擊每個打開的最愛加密區,之後選擇「修復檔案系統」)。</entry> - <entry lang="zh-hk" key="FILESYS_REPAIR_CONFIRM_BACKUP">警告:使用微軟的「chkdsk」工具修復受損的檔案系統時可能會導致受損區域的資料丟失。因此,建議您首先備份儲存在 VeraCrypt 加密區中的檔到另外完好的加密區。\n\n您確認現在就修復檔案系統嗎?</entry> - <entry lang="zh-hk" key="MOUNTED_CONTAINER_FORCED_READ_ONLY">由於寫入許可權被拒絕,加密區「%s」只能以唯讀模式掛載。\n\n請確認加密容器檔案的存取權允許您對其執行寫入操作(右按此容器並選擇 屬性 > 安全性)。\n\n注意,由於 Windows 的原因,您可能在設定成合適的安全屬性後還會看到這個警告,這並非是 VeraCrypt 的程式故障。其中一個解決方法是移動您的加密容器檔案,例如移動到另一個資料資料夾。\n\n如果您確實要保持加密區的唯讀模式,請設定加密區的屬性為唯讀(右鍵單擊加密盤檔並選擇屬性 > 唯讀),這樣就可以禁止顯示警告了。</entry> - <entry lang="zh-hk" key="MOUNTED_DEVICE_FORCED_READ_ONLY">由於寫入許可權被拒絕,加密區「%s」不得不以唯讀模式掛載。\n\n請確認沒有其他程式(例如,防病毒程式)正在存取加密區所在的分割區/裝置。</entry> - <entry lang="zh-hk" key="MOUNTED_DEVICE_FORCED_READ_ONLY_WRITE_PROTECTION">加密區「%s」已使用唯讀模式掛載,這是因為作業系統報告主裝置為防寫狀態。\n\n請注意,在一些第三方的晶片驅動中,已有錯誤報告指出可能會造成可寫入介質錯誤的被系統報告為防寫。這個問題並不是由 VeraCrypt 造成。這可以通過更新或解除掛載當前系統中的任何第三方晶片組驅動(非微軟認證)。</entry> + <entry lang="zh-hk" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">在 VeraCrypt 中只允許系統管理員查看和解除掛載我的最愛系統加密區</entry> + <entry lang="zh-hk" key="MOUNT_SYSTEM_FAVORITES_ON_BOOT">在 Windows 啟動時掛載我的最愛系統加密區(在啟動過程的初始階段)</entry> + <entry lang="zh-hk" key="MOUNTED_VOLUME_DIRTY">警告:掛載為 [%s]的加密區上的檔案系統並未徹底解除掛載因此而存在錯誤。繼續使用損壞的檔案系統可能會導致資料丟失或者損壞。\n\n請注意:在你物理移除或解除掛載包含已被掛載的 VeraCrypt 加密區的裝置(例如U盤或移動硬碟)之前,你應該先在 VeraCrypt 中解除掛載加密區。\n\n\n你希望 Windows 系統嘗試檢測和修復可能的檔案系統錯誤嗎?</entry> + <entry lang="zh-hk" key="SYS_FAVORITE_VOLUME_DIRTY">警告:一個或者多個我的最愛系統加密區並沒有完全解除掛載,因此可能包含檔案系統錯誤。請查看系統事件日誌獲取更多資訊。\n\n使用損壞的檔案系統可以導致資料丟失或者資料損壞。你應該檢查受影響的我的最愛加密區的磁片錯誤(在 VeraCrypt 中右鍵單擊每個打開的我的最愛加密區,之後選擇 [修復檔案系統])。</entry> + <entry lang="zh-hk" key="FILESYS_REPAIR_CONFIRM_BACKUP">警告:使用微軟的 [chkdsk] 工具修復受損的檔案系統時可能會導致受損區域的資料丟失。因此,建議你首先備份儲存在 VeraCrypt 加密區中的檔到另外完好的加密區。\n\n你確認現在就修復檔案系統嗎?</entry> + <entry lang="zh-hk" key="MOUNTED_CONTAINER_FORCED_READ_ONLY">由於寫入許可權被拒絕,加密區 [%s] 只能以唯讀模式掛載。\n\n請確認加密容器檔案的存取權允許你對其執行寫入操作(右按此容器並選擇 屬性 > 安全性)。\n\n注意,由於 Windows 的原因,你可能在設定成合適的安全屬性後還會看到這個警告,這並非是 VeraCrypt 的程式故障。其中一個解決方法是移動你的加密容器檔案,例如移動到另一個資料資料夾。\n\n如果你確實要保持加密區的唯讀模式,請設定加密區的屬性為唯讀(右鍵單擊加密盤檔並選擇屬性 > 唯讀),這樣就可以禁止顯示警告了。</entry> + <entry lang="zh-hk" key="MOUNTED_DEVICE_FORCED_READ_ONLY">由於寫入許可權被拒絕,加密區 [%s] 不得不以唯讀模式掛載。\n\n請確認沒有其他程式(例如,防病毒程式)正在存取加密區所在的分割區/裝置。</entry> + <entry lang="zh-hk" key="MOUNTED_DEVICE_FORCED_READ_ONLY_WRITE_PROTECTION">加密區 [%s] 已使用唯讀模式掛載,這是因為作業系統報告主裝置為防寫狀態。\n\n請注意,在一些第三方的晶片驅動中,已有錯誤報告指出可能會造成可寫入介質錯誤的被系統報告為防寫。這個問題並不是由 VeraCrypt 造成。這可以通過更新或解除掛載當前系統中的任何第三方晶片組驅動(非微軟認證)。</entry> <entry lang="zh-hk" key="LIMIT_ENC_THREAD_POOL_NOTE">請注意,超執行緒技術讓每個實體核心可提供多個邏輯核心。當超啟用執行緒技術時,以上選擇的數目代表邏輯處理器/核心的數目。</entry> <entry lang="zh-hk" key="NUMBER_OF_THREADS">%d 線程</entry> - <entry lang="zh-hk" key="DISABLED_HW_AES_AFFECTS_PERFORMANCE">請注意,硬體加速 AES 已被禁用,這將會影響測試結果(效能更差)。\n\n要啟用硬體加速,請選擇 「設定」 > 「性能」 並禁用相應選項。</entry> - <entry lang="zh-hk" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">請注意,線程的數目當前受限,這將會影響測試結果(效能更差)。\n\n要充份發揮中央處理器的潛能,請選擇 「設定」 > 「性能」並禁用相關選項。</entry> - <entry lang="zh-hk" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">您想要 VeraCrypt 嘗試停用此分割區/裝置的防寫保護嗎?</entry> - <entry lang="zh-hk" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">警告:此設定可能會降低效能。\n\n您確認要使用該設定嗎?</entry> - <entry lang="zh-hk" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE">警告: VeraCrypt 加密區已經自動卸掛載</entry> - <entry lang="zh-hk" key="HOST_DEVICE_REMOVAL_DISMOUNT_WARN">已掛載加密區的裝置在實體移除或關閉電源前,應該習慣先將加密區解除掛載。\n\n不預期地自行解除掛載通常由於電線、磁碟機 (外置盒)之類出現間歇性故障所致。</entry> + <entry lang="zh-hk" key="DISABLED_HW_AES_AFFECTS_PERFORMANCE">請注意,硬體加速 AES 已被禁用,這將會影響測試結果(效能更差)。\n\n要啟用硬體加速,請選擇 [設定] > [性能] 並禁用相應選項。</entry> + <entry lang="zh-hk" key="LIMITED_THREAD_COUNT_AFFECTS_PERFORMANCE">請注意,線程的數目當前受限,這將會影響測試結果(效能更差)。\n\n要充份發揮中央處理器的潛能,請選擇 [設定] > [性能]並禁用相關選項。</entry> + <entry lang="zh-hk" key="ASK_REMOVE_DEVICE_WRITE_PROTECTION">你想要 VeraCrypt 嘗試停用此分割區/裝置的防寫保護嗎?</entry> + <entry lang="zh-hk" key="CONFIRM_SETTING_DEGRADES_PERFORMANCE">警告:此設定可能會降低效能。\n\n你確認要使用該設定嗎?</entry> + <entry lang="zh-hk" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE">警告: VeraCrypt 加密區已經自動卸掛載</entry> + <entry lang="zh-hk" key="HOST_DEVICE_REMOVAL_UNMOUNT_WARN">已掛載加密區的裝置在實體移除或關閉電源前,應該習慣先將加密區解除掛載。\n\n不預期地自行解除掛載通常由於電線、磁碟機 (外置盒)之類出現間歇性故障所致。</entry> <entry lang="zh-hk" key="UNSUPPORTED_TRUECRYPT_FORMAT">這個加密區使用 TrueCrypt %x.%x 建立,但 VeraCrypt 只支援使用 TrueCrypt 6.x/7.x 系列所建立的加密區</entry> @@ -1314,3 +1314,3 @@ <entry lang="zh-hk" key="VKEY_08">退格</entry> - <entry lang="zh-hk" key="VKEY_09">Tab</entry> + <entry lang="en" key="VKEY_09">Tab</entry> <entry lang="zh-hk" key="VKEY_0C">清除</entry> @@ -1322,4 +1322,4 @@ <entry lang="zh-hk" key="VKEY_22">下一頁</entry> - <entry lang="zh-hk" key="VKEY_23">End</entry> - <entry lang="zh-hk" key="VKEY_24">Home</entry> + <entry lang="en" key="VKEY_23">End</entry> + <entry lang="en" key="VKEY_24">Home</entry> <entry lang="zh-hk" key="VKEY_25">左</entry> @@ -1343,3 +1343,3 @@ <entry lang="zh-hk" key="VKEY_AA">瀏覽器搜尋</entry> - <entry lang="zh-hk" key="VKEY_AB">瀏覽器最愛</entry> + <entry lang="zh-hk" key="VKEY_AB">瀏覽器我的最愛</entry> <entry lang="zh-hk" key="VKEY_AC">瀏覽器首頁</entry> @@ -1356,7 +1356,7 @@ <entry lang="zh-hk" key="VKEY_B7">應用程式 2</entry> - <entry lang="zh-hk" key="VKEY_F6">Attn</entry> - <entry lang="zh-hk" key="VKEY_F7">CrSel</entry> - <entry lang="zh-hk" key="VKEY_F8">ExSel</entry> - <entry lang="zh-hk" key="VKEY_FA">Play</entry> - <entry lang="zh-hk" key="VKEY_FB">Zoom</entry> + <entry lang="en" key="VKEY_F6">Attn</entry> + <entry lang="en" key="VKEY_F7">CrSel</entry> + <entry lang="en" key="VKEY_F8">ExSel</entry> + <entry lang="en" key="VKEY_FA">Play</entry> + <entry lang="en" key="VKEY_FB">Zoom</entry> <entry lang="zh-hk" key="VK_NUMPAD">數字鍵盤</entry> @@ -1364,10 +1364,10 @@ <entry lang="zh-hk" key="VK_CONTROL">控制</entry> - <entry lang="zh-hk" key="VK_ALT">Alt</entry> - <entry lang="zh-hk" key="VK_WIN">Win</entry> - <entry lang="zh-hk" key="BYTE">B</entry> - <entry lang="zh-hk" key="KB">KiB</entry> - <entry lang="zh-hk" key="MB">MiB</entry> - <entry lang="zh-hk" key="GB">GiB</entry> - <entry lang="zh-hk" key="TB">TiB</entry> - <entry lang="zh-hk" key="PB">PiB</entry> + <entry lang="en" key="VK_ALT">Alt</entry> + <entry lang="en" key="VK_WIN">Win</entry> + <entry lang="en" key="BYTE">B</entry> + <entry lang="en" key="KB">KiB</entry> + <entry lang="en" key="MB">MiB</entry> + <entry lang="en" key="GB">GiB</entry> + <entry lang="en" key="TB">TiB</entry> + <entry lang="en" key="PB">PiB</entry> <entry lang="zh-hk" key="B_PER_SEC">B/秒</entry> @@ -1379,3 +1379,3 @@ <entry lang="zh-hk" key="TRIPLE_DOT_GLYPH_ELLIPSIS">…</entry> - <entry lang="zh-hk" key="IDC_BOOT_LOADER_CACHE_PIM">當暫存開機前的驗證密碼同時包括 PIM(&P)</entry> + <entry lang="zh-hk" key="IDC_BOOT_LOADER_CACHE_PIM">當暫存啟動前的驗證密碼同時包括 PIM(&P)</entry> <entry lang="zh-hk" key="IDC_PREF_CACHE_PIM">暫存密碼的同時包括 PIM</entry> @@ -1389,3 +1389,3 @@ <entry lang="zh-hk" key="VOLUME_ID">磁碟區編號</entry> - <entry lang="zh-hk" key="IDC_FAVORITE_USE_VOLUME_ID">使用磁碟區編號來掛載最愛加密區</entry> + <entry lang="zh-hk" key="IDC_FAVORITE_USE_VOLUME_ID">使用磁碟區編號來掛載我的最愛加密區</entry> <entry lang="zh-hk" key="VOLUME_ID_INVALID">無效的加密區編號</entry> @@ -1393,20 +1393,20 @@ <entry lang="zh-hk" key="IDPM_COPY_VALUE_TO_CLIPBOARD">複製數值到剪貼簿...</entry> - <entry lang="zh-hk" key="IDC_DISABLE_BOOT_LOADER_PIM_PROMPT">不要在開機前驗證畫面詢問 PIM(PIM 數值會不加密地記錄在磁碟上)</entry> - <entry lang="zh-hk" key="DISABLE_BOOT_LOADER_PIM_PROMPT">警告:請留意如果你啟用這個選項,PIM 數值會將會不加密地記錄在磁碟上。\n\n您是否確認要啟用這個選項?</entry> - <entry lang="zh-hk" key="PIM_TOO_BIG">自設加密鑰的重復次數 (PIM) 最大數值為 2147468.</entry> + <entry lang="zh-hk" key="IDC_DISABLE_BOOT_LOADER_PIM_PROMPT">不要在啟動前驗證畫面詢問 PIM 數值(PIM 數值會不加密地記錄在磁碟上)</entry> + <entry lang="zh-hk" key="DISABLE_BOOT_LOADER_PIM_PROMPT">警告:請留意如果你啟用這個選項,PIM 數值會將會不加密地記錄在磁碟上。\n\n你是否確認要啟用這個選項?</entry> + <entry lang="zh-hk" key="PIM_TOO_BIG">自訂迭代倍數 (PIM) 最大數值為 2147468.</entry> <entry lang="zh-hk" key="IDC_SKIP_RESCUE_VERIFICATION">跳過救機光碟驗證</entry> <entry lang="zh-hk" key="IDC_HIDE_WAITING_DIALOG">在進行操作時不要顯示等候訊息畫面</entry> - <entry lang="zh-hk" key="IDC_DISABLE_BOOT_LOADER_HASH_PROMPT">在開機前的驗證畫面時不要使用雜湊演算法</entry> - <entry lang="en" key="KUZNYECHIK_HELP">Kuznyechik is a block cipher first published in 2015 and defined in the National Standard of the Russian Federation GOST R 34.12-2015 and also in RFC 7801. 256-bit key, 128-bit block. Mode of operation is XTS.</entry> - <entry lang="en" key="CAMELLIA_HELP">Jointly developed by Mitsubishi Electric and NTT of Japan. First published on 2000. 256-bit key, 128-bit block. Mode of operation is XTS. It has been approved for use by the ISO/IEC, the European Union's NESSIE project and the Japanese CRYPTREC project.</entry> + <entry lang="zh-hk" key="IDC_DISABLE_BOOT_LOADER_HASH_PROMPT">在啟動前驗證畫面時不要詢問雜湊演算法</entry> + <entry lang="zh-hk" key="KUZNYECHIK_HELP">Kuznyechik 為區塊加密法,最初發佈於 2015 年並被定義為俄羅斯聯邦的 GOST R 34.12-2015 和 RFC 7801 的國家標準。 256-bit 加密鑰,128-bit 區塊大小。運作模式為 XTS。</entry> + <entry lang="zh-hk" key="CAMELLIA_HELP">由日本的三菱電機和 NTT 共同開發。最初發佈於 2000 年。256-bit 加密鑰,128-bit 區塊大小。這個加密法已被批准使用在 ISO/IEC、歐盟的 NESSIE 計畫和日本的 CRYPTREC 計畫。</entry> <entry lang="zh-hk" key="TIME">時間</entry> <entry lang="zh-hk" key="ITERATIONS">重複次數</entry> - <entry lang="zh-hk" key="PRE-BOOT">開機前</entry> - <entry lang="en" key="RESCUE_DISK_EFI_INFO">Before you can encrypt the partition, you must create a VeraCrypt Rescue Disk (VRD), which serves the following purposes:\n\n- If the VeraCrypt Boot Loader, master key, or other critical data gets damaged, the VRD allows you to restore it (note, however, that you will still have to enter the correct password then).\n\n- If Windows gets damaged and cannot start, the VRD allows you to permanently decrypt the partition before Windows starts.\n\n- The VRD will contain a backup of the present EFI boot loader and will allow you to restore it if necessary.\n\nThe VeraCrypt Rescue Disk ZIP image will be created in the location specified below.</entry> - <entry lang="en" key="RESCUE_DISK_EFI_EXTRACT_INFO">The Rescue Disk ZIP image has been created and stored in this file:\n%s\n\nNow you need to extract it to a USB stick that is formatted as FAT/FAT32.\n\n%lsAfter you create the Rescue Disk, click Next to verify that it has been correctly created.</entry> - <entry lang="en" key="RESCUE_DISK_EFI_EXTRACT_INFO_NO_CHECK">The Rescue Disk ZIP image has been created and stored in this file:\n%s\n\nNow you should either extract the image to a USB stick that is formatted as FAT/FAT32 or move it to a safe location for later use.\n\n%lsClick Next to continue.</entry> + <entry lang="zh-hk" key="PRE-BOOT">啟動前</entry> + <entry lang="zh-hk" key="RESCUE_DISK_EFI_INFO">在你可以加密分割區前,你必須先建立 VeraCrypt 救機碟 (VeraCrypt Rescue Disk, VRD),其功用為如下:n\n- 如 VeraCrypt 開機程式、主加密鑰或其他重要數據受損,VRD 可以讓你還原它 (但是請注意你仍需要輸入正確的密碼)。\n\n- 如 Windows 已受損壞無法啟動,VRD 可以讓你在 Windows 啟動前永久解密其分割區。\n\n- VRD 內含 現時 EFI 開機程式的備份,可以讓你在必要時用來還原。\n\nVeraCrypt 救機碟的 ZIP 影像檔將會在下列的位置建立。</entry> + <entry lang="zh-hk" key="RESCUE_DISK_EFI_EXTRACT_INFO">救機碟 ZIP 影像檔已經建立並儲存到這個檔案:n%s\n\n現在你需要解壓縮影像檔到格式化為 FAT/FAT32 的 USB 隨身碟。n\n%ls在建立救機碟之後,按 [下一步] 來驗證救機碟已正確地被建立。</entry> + <entry lang="zh-hk" key="RESCUE_DISK_EFI_EXTRACT_INFO_NO_CHECK">救機碟 ZIP 影像檔已經建立並儲存到這個檔案:n%s\n\n現在你應該解壓縮影像檔到格式化為 FAT/FAT32 的 USB 隨身碟或將其移動到一個安全位置待日後使用。\n\n%ls按 [下一步] 繼續。</entry> <entry lang="zh-hk" key="RESCUE_DISK_EFI_EXTRACT_INFO_NOTE">重要:請注意 zip 壓縮檔必須直接解壓到隨身碟的根目錄。例如隨身碟的磁碟代號是 E: 那麼解壓 zip 壓縮檔時應會在隨身碟上新增一個目錄 E:\\EFI 。\n\n</entry> - <entry lang="en" key="RESCUE_DISK_EFI_CHECK_FAILED">Cannot verify that the Rescue Disk has been correctly extracted.\n\nIf you have extracted the Rescue Disk, please eject and reinsert the USB stick; then click Next to try again. If this does not help, please try another USB stick and/or another ZIP software.\n\nIf you have not extracted the Rescue Disk yet, please do so, and then click Next.\n\nIf you attempted to verify a VeraCrypt Rescue Disk created before you started this wizard, please note that such Rescue Disk cannot be used, because it was created for a different master key. You need to extract the newly generated Rescue Disk ZIP image.</entry> - <entry lang="en" key="RESCUE_DISK_EFI_NON_WIZARD_CHECK_FAILED">Cannot verify that the Rescue Disk has been correctly extracted.\n\nIf you have extracted the Rescue Disk image to a USB stick, please eject it and reinsert it; then try again. If this does not help, please try other ZIP software and/or medium.\n\nIf you attempted to verify a VeraCrypt Rescue Disk created for a different master key, password, salt, etc., please note that such Rescue Disk will always fail this verification. To create a new Rescue Disk fully compatible with your current configuration, select 'System' > 'Create Rescue Disk'.</entry> - <entry lang="en" key="RESCUE_DISK_EFI_NON_WIZARD_CREATION">The Rescue Disk image has been created and stored in this file:\n%s\n\nNow you need to extract the Rescue Disk image to a USB stick that is formatted as FAT/FAT32.\n\nIMPORTANT: Note that the zip file must be extracted directly to the root of the USB stick. For example, if the drive letter of the USB stick is E: then extracting the zip file should create a folder E:\\EFI on the USB stick.\n\nAfter you create the Rescue Disk, select 'System' > 'Verify Rescue Disk' to verify that it has been correctly created.</entry> + <entry lang="zh-hk" key="RESCUE_DISK_EFI_CHECK_FAILED">無法驗證救機碟已正確地進行解壓縮。\n\n如你已解壓縮救機碟影像檔到 USB 隨身碟,請將其退出然後重新插入,然後按 [下一步] 再試一次。如這樣做沒有幫助的話,請嘗試使用其他的 USB 隨身碟和/或其他的 ZIP 軟件。\n\n如你尚未解壓檔案,請現在進行這個步驟然後按 [下一步]。\n\n如你正已嘗試驗證在開啟這個精靈之前建立的 VeraCrypt 救機碟,請注意並不能使用這樣的救機碟,因為這樣的救機碟是建立給另一個主加密鑰。你需要解壓縮剛才新已產生的救機碟 ZIP 影像檔。</entry> + <entry lang="zh-hk" key="RESCUE_DISK_EFI_NON_WIZARD_CHECK_FAILED">無法驗證救機碟已正確地進行解壓縮。\n\n如你已解壓縮救機碟影像檔到 USB 隨身碟,請將其退出然後重新插入,然後再試一次。如這樣做沒有幫助的話,請嘗試使用其他的 ZIP 軟件和/或媒體。\n\n如你正已嘗試驗證建立給另一個主加密鑰的 VeraCrypt 救機碟、密碼、salt 之類,請注意這樣的救機碟將必定無法通過驗證。要建立完全兼容於現時設定的救機碟,選取 [系統] > [建立救機碟]。</entry> + <entry lang="zh-hk" key="RESCUE_DISK_EFI_NON_WIZARD_CREATION">救機碟影像檔已經建立到這個檔案:\n%s\n\n現在你可以解壓縮救機碟的影像檔到格式化為 FAT 或 FAT32 的 USB 隨身碟。\n\n重要資訊:請注意 zip 檔案需要直接解壓到 USB 隨身碟的根目錄。例如當 USB 隨身碟的磁碟機代號為 E:,解壓縮 zip 檔案時會在 USB 隨身碟上建立 E:\\EFI 資料夾。\n\n當你在建立救機碟之後,選取 [系統] > [驗證救機碟] 來驗證救機碟已正確地被建立。</entry> <entry lang="zh-hk" key="IDC_SECURE_DESKTOP_PASSWORD_ENTRY">輸入密碼時使用安全桌面</entry> @@ -1420,3 +1420,3 @@ <entry lang="zh-hk" key="IDT_ADVANCED_OPTIONS">進階選項</entry> - <entry lang="zh-hk" key="AFTER_UPGRADE_RESCUE_DISK">強烈建議您透過選取「系統」>「建立救機光碟」來建立新的 VeraCrypt 救機光碟(這將會內含新版本的 VeraCrypt 開機程式)。\n你想現在做嗎?</entry> + <entry lang="zh-hk" key="AFTER_UPGRADE_RESCUE_DISK">強烈建議你透過選取 [系統] > [建立救機光碟] 來建立新的 VeraCrypt 救機光碟(這將會內含新版本的 VeraCrypt 開機程式)。\n你想現在做嗎?</entry> <entry lang="zh-hk" key="IDC_ALLOW_TRIM_NONSYS_SSD">非系統的 SSD 分割區/磁碟可執行 TRIM 指令</entry> @@ -1432,5 +1432,5 @@ <entry lang="zh-hk" key="VIRTUAL_DEVICE">虛擬裝置</entry> - <entry lang="zh-hk" key="MOUNTED_VOLUME_NOT_ASSOCIATED">所選取的已掛載磁碟區在 Windows 與其磁碟機代號並沒有進行關聯,故無法使用 Windows 檔案瀏覽器開啟。</entry> + <entry lang="zh-hk" key="MOUNTED_VOLUME_NOT_ASSOCIATED">所選取的已掛載磁碟區在 Windows 與其磁碟機代號並沒有進行關聯,故無法使用 Windows 檔案總管開啟。</entry> <entry lang="zh-hk" key="IDC_CLEAR_KEYS_ON_NEW_DEVICE_INSERTION">當插入新裝置時清除記憶體中的加密鑰匙</entry> - <entry lang="zh-hk" key="CLEAR_KEYS_ON_DEVICE_INSERTION_WARNING">重要提示:\n - 請注意此選項於關機或重新開機之後不會維持其設定,因此您需要於本機下次啟動之後重新選取此選項。\n\n - 當此選項啟用並於新裝置連接時,本機會因加密磁碟的加密匙由記憶體中清除,導致 Windows 無法存取磁碟區而出現沒有回應的情況,並且系統最終會崩潰至藍屏死機畫面。\n</entry> + <entry lang="zh-hk" key="CLEAR_KEYS_ON_DEVICE_INSERTION_WARNING">重要提示:\n - 請注意此選項於關機或重新開機之後不會維持其設定,因此你需要於本機下次啟動之後重新選取此選項。\n\n - 當此選項啟用並於新裝置連接時,本機會因加密磁碟的加密匙由記憶體中清除,導致 Windows 無法存取磁碟區而出現沒有回應的情況,並且系統最終會崩潰至藍屏死機畫面。\n</entry> <entry lang="zh-hk" key="STARTING">啟動中</entry> @@ -1450,11 +1450,11 @@ <entry lang="zh-hk" key="CONFIRM_DISABLE_FAST_STARTUP">警告: Windows 快速開機功能已啟用,在使用 VeraCrypt 加密區時啟用這個功能已知會導致問題。建議在使用 VeraCrypt 加密區時停用這個功能以獲得更好的保安和可用性。\n\n你是否要停用 Windows 的快速開機功能?</entry> - <entry lang="zh-hk" key="QUICK_FORMAT_HELP">為了令您的操作系統可以掛載您的新加密區,你需要先將其格式化成一個檔案系統。請選擇一個檔案系統類型。\n\n如果您的加密區是寄存在一個裝置或分割區,您可以使用「快速格式化」以跳過加密加密區的未使用空間。</entry> + <entry lang="zh-hk" key="QUICK_FORMAT_HELP">為了令你的操作系統可以掛載你的新加密區,你需要先將其格式化成一個檔案系統。請選擇一個檔案系統類型。\n\n如果你的加密區是寄存在一個裝置或分割區,你可以使用 [快速格式化] 以跳過加密加密區的未使用空間。</entry> <entry lang="zh-hk" key="IDC_ENABLE_HARDWARE_ENCRYPTION_NEG">不要使用中央處理器的 AES 指令集來進行 AES 加密/解密加速</entry> - <entry lang="zh-hk" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">將所有已掛載的加密區加入到最愛...</entry> + <entry lang="zh-hk" key="IDM_ADD_ALL_VOLUME_TO_FAVORITES">將所有已掛載的加密區加入到我的最愛...</entry> <entry lang="zh-hk" key="TASKICON_PREF_MENU_ITEMS">任務欄圖示選項</entry> <entry lang="zh-hk" key="TASKICON_PREF_OPEN_VOL">開啟已掛載的加密區</entry> - <entry lang="zh-hk" key="TASKICON_PREF_DISMOUNT_VOL">解除掛載已掛載的加密區</entry> + <entry lang="zh-hk" key="TASKICON_PREF_UNMOUNT_VOL">解除掛載已掛載的加密區</entry> <entry lang="zh-hk" key="DISK_FREE">可用的空間: {0}</entry> <entry lang="zh-hk" key="VOLUME_SIZE_HELP">請指定要建立新的加密容器檔案的大小。注意最細容許的加密容器大小為 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="zh-hk" key="LINUX_CONFIRM_INNER_VOLUME_CALC">警告:你已選擇使用一個 FAT 以外的檔案系統用於外層加密區。\n請注意在這個情況下 VeraCrypt 無法準確計算隱藏加密區的最大容許大小並將會使用可能是錯誤的估算。\n因此這是你的責任為隱藏分割區決定一個適當的大小數值以避免與外層加密區出現重叠。\n\n你是否想要繼續使用已選取的檔案系統用於外層加密區?</entry> <entry lang="zh-hk" key="LINUX_PREF_TAB_SECURITY">保安</entry> @@ -1466,3 +1466,3 @@ <entry lang="zh-hk" key="LINUX_PREF_TAB_KEYFILES">加密鑰檔案</entry> - <entry lang="zh-hk" key="LINUX_PREF_TAB_TOKENS">安全鑰匙</entry> + <entry lang="zh-hk" key="LINUX_PREF_TAB_TOKENS">安全性權杖</entry> <entry lang="zh-hk" key="LINUX_PREF_KERNEL_SERVICES">系統核心服務</entry> @@ -1473,7 +1473,7 @@ <entry lang="zh-hk" key="LINUX_CROSS_SUPPORT_OTHER">我將會在其他平台掛載這個加密區</entry> - <entry lang="zh-hk" key="LINUX_CROSS_SUPPORT_OTHER_HELP">如您需要於其他平台上掛載此加密區請選取此選項。</entry> + <entry lang="zh-hk" key="LINUX_CROSS_SUPPORT_OTHER_HELP">如你需要於其他平台上掛載此加密區請選取此選項。</entry> <entry lang="zh-hk" key="LINUX_CROSS_SUPPORT_ONLY">我將只會在 {0} 掛載這個加密區</entry> - <entry lang="zh-hk" key="LINUX_CROSS_SUPPORT_ONLY_HELP">如您毋需於其他平台上掛載此加密區請選取此選項。</entry> + <entry lang="zh-hk" key="LINUX_CROSS_SUPPORT_ONLY_HELP">如你毋需於其他平台上掛載此加密區請選取此選項。</entry> <entry lang="zh-hk" key="LINUX_DESELECT">取消選取</entry> - <entry lang="zh-hk" key="LINUX_ADMIN_PW_QUERY">輸入您的使用者密碼或系統管理員密碼:</entry> + <entry lang="zh-hk" key="LINUX_ADMIN_PW_QUERY">輸入你的使用者密碼或系統管理員密碼:</entry> <entry lang="zh-hk" key="LINUX_ADMIN_PW_QUERY_TITLE">需要系統管理員權限</entry> @@ -1481,3 +1481,3 @@ <entry lang="zh-hk" key="LINUX_SYSTEM_ENC_PW_LENGTH_NOTE">系統加密密碼長於 {0} 個字元。</entry> - <entry lang="zh-hk" key="LINUX_MOUNT_SYSTEM_ENC_PREBOOT">使用系統加密 (開機前驗證) 來掛載分割區(&u)</entry> + <entry lang="zh-hk" key="LINUX_MOUNT_SYSTEM_ENC_PREBOOT">使用系統加密 (啟動前驗證) 來掛載分割區(&u)</entry> <entry lang="zh-hk" key="LINUX_DO_NOT_MOUNT">不要掛載(&n)</entry> @@ -1485,6 +1485,6 @@ <entry lang="zh-hk" key="LINUX_SELECT">選取(&l)...</entry> - <entry lang="zh-hk" key="LINUX_DISMOUNT_ALL_WHEN">解除掛載全部加密區於</entry> + <entry lang="zh-hk" key="LINUX_UNMOUNT_ALL_WHEN">解除掛載全部加密區於</entry> <entry lang="zh-hk" key="LINUX_ENTERING_POWERSAVING">系統正在進入節約能源模式</entry> <entry lang="zh-hk" key="LINUX_LOGIN_ACTION">使用者登入時執行的動作</entry> - <entry lang="zh-hk" key="LINUX_CLOSE_EXPL_ON_DISMOUNT">解除掛載加密區時關閉所有檔案瀏覽器視窗</entry> + <entry lang="zh-hk" key="LINUX_CLOSE_EXPL_ON_UNMOUNT">解除掛載加密區時關閉所有檔案瀏覽器視窗</entry> <entry lang="zh-hk" key="LINUX_HOTKEYS">快捷鍵</entry> @@ -1492,11 +1492,11 @@ <entry lang="zh-hk" key="LINUX_SOUND_NOTIFICATION">掛載/解除掛載後播放提示聲音</entry> - <entry lang="zh-hk" key="LINUX_CONFIRM_AFTER_DISMOUNT">解除掛載後顯示確認訊息</entry> + <entry lang="zh-hk" key="LINUX_CONFIRM_AFTER_UNMOUNT">解除掛載後顯示確認訊息</entry> <entry lang="zh-hk" key="LINUX_VC_QUITS">VeraCrypt 已結束</entry> <entry lang="zh-hk" key="LINUX_OPEN_FINDER">成功掛載加密區後開啟 Finder 視窗</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="zh-hk" key="LINUX_DISABLE_KERNEL_ONLY_SETTING">請注意這個選項只會在已停用核心加密服務時才會有效。</entry> + <entry lang="zh-hk" key="LINUX_DISABLE_KERNEL_CRYPT_CONFIRM">停用核心加密服務將會降低效能\n\n你是否肯定要停用?</entry> + <entry lang="zh-hk" key="LINUX_KERNEL_CRYPT_OPTION_CHANGE_MOUNTED_HINT">請注意停用這個選項有可能不會對正在使用核心加密服務的已掛載加密區有任何作用。</entry> + <entry lang="zh-hk" key="LINUX_REMOUNT_BECAUSEOF_SETTING">請注意在可以使用這項設定之前需要重新掛載現正已掛載的加密區。</entry> <entry lang="zh-hk" key="LINUX_UNKNOWN_EXC_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="zh-hk" key="LINUX_FIRST_AID">"磁碟工具將會在按下 [確定] 之後啟動。\n\n請在磁碟工具中選擇你的磁碟區,然後在 [救援] 頁面中按 [檢查磁碟] 或 [修復磁碟]。</entry> <entry lang="zh-hk" key="LINUX_MOUNT_ALL_DEV">掛載所有裝置</entry> @@ -1504,3 +1504,3 @@ <entry lang="zh-hk" key="LINUX_SELECT_FREE_SLOT">請在列表中選擇未使用的磁碟機位置。</entry> - <entry lang="zh-hk" key="LINUX_MESSAGE_ON_MOUNT_AGAIN">\n\n您是否需要下次掛載這個磁碟區時顯示這個訊息?</entry> + <entry lang="zh-hk" key="LINUX_MESSAGE_ON_MOUNT_AGAIN">\n\n你是否需要下次掛載這個磁碟區時顯示這個訊息?</entry> <entry lang="zh-hk" key="LINUX_WARNING">警告</entry> @@ -1509,18 +1509,18 @@ <entry lang="zh-hk" key="LINUX_FREE_SPACE_ON_DRIVE">磁碟上的未使用空間 {0}: 是 {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="zh-hk" key="LINUX_DYNAMIC_NOTICE">請注意如你的作業系統並非由可用空間的開始位置來分配檔案空間,隱藏分割區的最大可用空間有可能會大幅少於外層加密區的可用空間。這並非 VeraCrypt 的錯誤而是受作業系統的設計所限制。</entry> <entry lang="zh-hk" key="LINUX_MAX_HIDDEN_SIZE">最大可用的隱藏加密區大小為 {0}。</entry> <entry lang="zh-hk" key="LINUX_OPEN_OUTER_VOL">開啟外層加密區</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="zh-hk" key="LINUX_OUTER_VOL_IS_MOUNTED">外層加密區已成功建立並已掛載為 '{0}'。這個加密區的作用是用來存放一些你並非試圖隱藏但看似敏感的檔案。這些檔案是用來應付任何強迫你交出密碼的人士。你應該只透露這個外層加密區的密碼,而不是隱藏加密區的密碼。你真正關心的檔案將會存放在稍後建立的隱藏加密區中。當你完整檔案複制之後,請按 [下一步]。 不要解除掛載這個加密區。\n\n請注意:當你按 [下一步] 之後,將會分析及判斷由外層加密區末端部份開始連續的可用空間大小。這個區域將會用作容納隱藏加密區,因此這將會是限制最大可能的大小。這個程序是確保外層加密區的數據在建立隱藏分割區時不會被覆寫。</entry> + <entry lang="zh-hk" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_DRIVE">錯誤:你正在嘗試加密系統磁碟機。\n\nVeraCrypt 只可以在 Windows 之下加密系統磁碟機。</entry> + <entry lang="zh-hk" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">錯誤:你正在嘗試加密系統分割區。\n\nVeraCrypt 只可以在 Windows 之下加密系統分割區。</entry> + <entry lang="zh-hk" key="LINUX_WARNING_FORMAT_DESTROY_FS">警告:裝置進行格式化會銷毀所有在檔案系統 '{0}' 上的所有數據。\n\n你是否要繼續?</entry> <entry lang="zh-hk" key="LINUX_MOUNTET_HINT">所選擇的裝置上的檔案系統已經掛載。在繼續前請先解除掛載 '{0}' 。</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="zh-hk" key="LINUX_HIDDEN_PASS_NO_DIFF">隱藏加密區與外層加密區不可以使用相同的密碼,PIM 及加密鑰檔案</entry> + <entry lang="zh-hk" key="LINUX_NOT_FAT_HINT">請注意這個加密區將不會格式化為 FAT 檔案系統以及因此,你可能需要在平台上安裝除 {0} 以外的額外檔案系統驅動程式,使你能夠掛載這個加密區。</entry> + <entry lang="zh-hk" key="LINUX_ERROR_SIZE_HIDDEN_VOL">錯誤:將會建立的隱藏加密區大小超過 {0} TB ({1} GB)。可行的解決方案:\n- 建立一個大小少於 {0} TB 的加密容器檔案或分割區。\n</entry> + <entry lang="zh-hk" key="LINUX_MAX_SIZE_HINT">- 使用一個磁碟區大小為 4096 位元組的磁碟機能夠建立最大為 16 TB 寄存在分割區或檔案的隱藏加密區</entry> + <entry lang="zh-hk" key="LINUX_DOT_LF">.\n</entry> <entry lang="zh-hk" key="LINUX_NOT_SUPPORTED"> (這個平台上可用的元件未能支援)。\n</entry> - <entry lang="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="zh-hk" key="LINUX_VOL_DISMOUNTED">加密區 {0} 已經解除掛載。</entry> + <entry lang="zh-hk" key="LINUX_KERNEL_OLD">你的系統正在使用一個舊版本的 Linux 核心。\n\n由於 Linux 核心的一個錯誤,你的系統可能會在寫入數據到 VeraCrypt 加密區時停止回應。這個問題可以透過將核心升級到 2.6.24 或更新的版本來解決。</entry> + <entry lang="zh-hk" key="LINUX_VOL_UNMOUNTED">加密區 {0} 已經解除掛載。</entry> <entry lang="zh-hk" key="LINUX_VOL_MOUNTED">加密區 {0} 已經掛載。</entry> @@ -1530,7 +1530,7 @@ <entry lang="zh-hk" key="LINUX_CMD_HELP">VeraCrypt 指令行協助</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="zh-hk" key="LINUX_HIDDEN_FILES_PRESENT_IN_KEYFILE_PATH">\n\n警告:加密鑰檔案路徑中包含隱藏的檔案。如你需要使用這些檔案作為加密鑰檔案,請移除檔案名稱前端的點號。隱藏檔案只會在啟用系統選項中的相關設定才會被顯示。</entry> <entry lang="zh-hk" key="LINUX_EX2MSG_DEVICESECTORSIZEMISMATCH">儲存裝置及 VC 加密區的磁區大小不相符</entry> <entry lang="zh-hk" key="LINUX_EX2MSG_ENCRYPTEDSYSTEMREQUIRED">這個操作只能在寄存在加密區上的系統正在運行時才可以執行。</entry> - <entry lang="en" key="LINUX_EX2MSG_INSUFFICIENTDATA">未有足夠可用的數據。</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="zh-hk" key="LINUX_EX2MSG_INSUFFICIENTDATA">未有足夠的可用數據。</entry> + <entry lang="zh-hk" key="LINUX_EX2MSG_KERNELCRYPTOSERVICETESTFAILED">核心加密服務測試失敗。系統核心的核心加密服務很大可能並不援大於 2 TB 的加密區。\n\n可行的解決方案:\n- 升級 Linux 核心到 2.6.33 或更新的版本。\n- 停用核心加密服務 (設定 > 偏好設定 > 系統整合) 或在指令行中使用 'nokernelcrypto' 掛載參數。</entry> <entry lang="zh-hk" key="LINUX_EX2MSG_LOOPDEVICESETUPFAILED">無法設立一個 loop 裝置。</entry> @@ -1540,17 +1540,17 @@ <entry lang="zh-hk" key="LINUX_EX2MSG_MOUNTPOINTUNAVAILABLE">掛載點已經正在使用。</entry> - <entry lang="zh-hk" 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="zh-hk" key="LINUX_EX2MSG_PASSWORDEMPTY">沒有密碼或已指定加密鑰檔案。</entry> + <entry lang="zh-hk" key="LINUX_EX2MSG_PASSWORDORKEYBOARDLAYOUTINCORRECT">\n\n請注意需要在無法提供非美式鍵盤的啟動前環境下輸入啟動前驗證密碼。因此,啟動前驗證密碼必須使用標準美式鍵盤配置來輸入 (否則大部份情況下密碼將會錯誤地輸入)。但要注意,你毋需使用一個真實的美式鍵盤;你只需要在作業系統中變更鍵盤配置。</entry> + <entry lang="zh-hk" key="LINUX_EX2MSG_PASSWORDORMOUNTOPTIONSINCORRECT">\n\n請注意:如你正在嘗試在不使用啟動前驗證的情況下,掛載位於加密系統磁碟機上的分割區,或掛載並非運作中的作業系統的加密系統分割區,你可以透過選取 [選項 >] > [使用系統加密來掛載分割區] 來執行這個操作。</entry> <entry lang="zh-hk" key="LINUX_EX2MSG_PASSWORDTOOLONG">密碼超過 {0} 個字元。</entry> <entry lang="zh-hk" key="LINUX_EX2MSG_PARTITIONDEVICEREQUIRED">必需分割區的裝置</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="zh-hk" key="LINUX_EX2MSG_STRINGCONVERSIONFAILED">遇上無效的字元。</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="zh-hk" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">寄存的檔案或裝置已經正在使用中。</entry> - <entry lang="zh-hk" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">加密區位置不可用。</entry> + <entry lang="zh-hk" key="LINUX_EX2MSG_PROTECTIONPASSWORDINCORRECT">受保護隱藏的加密區密碼錯誤或隱藏的加密區並不存在。</entry> + <entry lang="zh-hk" key="LINUX_EX2MSG_PROTECTIONPASSWORDKEYFILESINCORRECT">受保護隱藏的加密區密碼與/或加密鑰檔案錯誤或隱藏加密區並不存在。</entry> + <entry lang="zh-hk" key="LINUX_EX2MSG_STRINGCONVERSIONFAILED">已遇到無效的字元。</entry> + <entry lang="zh-hk" key="LINUX_EX2MSG_STRINGFORMATTEREXCEPTION">解析格式化的字串時發生錯誤。</entry> + <entry lang="zh-hk" key="LINUX_EX2MSG_TEMPORARYDIRECTORYFAILURE">無法在暫存目錄中建立檔案或目錄。\n\n請確保暫存目錄存在及擁有允許其存取的安全權限,並且磁碟有足夠的可用空間。</entry> + <entry lang="zh-hk" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZEHIDDENVOLUMEPROTECTION">錯誤:這個磁碟機使用的磁區大小並非 512 位元組。\n\n由於當前平台可用的元件所限,寄存在主機的外層加密區無法使用隱藏加密區保護功能。\n\n可行的解決方案:\n- 使用磁區大小為 512 位元組的磁碟機\n- 在磁碟機上建立一個寄存在檔案的加密區(容器)。\n- 備份隱藏加密區的內容然後升級外層加密區。</entry> + <entry lang="zh-hk" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZENOKERNELCRYPTO">錯誤:這個磁碟機使用的磁區大小並非 512 位元組。\n\n由於當前平台可用的元件所限,寄存在分割區或裝置上的加密區只可使用核心加密服務進行掛載。\n\n可行的解決方案:\n- 啟用核心加密服務 (偏好設定 > 系統整合)。\n- 使用磁區大小為 512 位元組的磁碟機\n- 在磁碟機上建立一個在檔案寄存的加密區(容器)。</entry> + <entry lang="zh-hk" key="LINUX_EX2MSG_UNSUPPORTEDSECTORSIZE">錯誤:這個磁碟機使用的磁區大小並非 512 位元組。\n\n由於當前平台可用的元件所限,寄存在分割區或裝置上的加密區無法在磁碟機上建立或使用。\n\n可行的解決方案:\n- 在磁碟機上建立一個寄存在檔案的加密區(容器)。\n- 使用磁區大小為 512 位元組的磁碟機\n- 在另一個平台上使用 VeraCrypt。</entry> + <entry lang="zh-hk" key="LINUX_EX2MSG_VOLUMEHOSTINUSE">主機的檔案或裝置正在使用中。</entry> + <entry lang="zh-hk" key="LINUX_EX2MSG_VOLUMESLOTUNAVAILABLE">加密區的位置不可用。</entry> <entry lang="zh-hk" key="LINUX_EX2MSG_HIGHERFUSEVERSIONREQUIRED">VeraCrypt 需要 OSXFUSE 2.5 或更新版本。</entry> @@ -1570,9 +1570,9 @@ <entry lang="zh-hk" key="VOLUME_HOST_IN_USE">警告: 在本機上的檔案或裝置 {0} 已正在使用中!\n\n如果忽略的話會引致不良的後果,包括系統不穩定。請務必關閉所有在本機上可能正在使用的檔案或裝置的應用程式。\n\n要繼續掛載嗎?</entry> - <entry lang="zh-hk" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt 之前是使用 MSI 封包進行安裝因此無法使用標準安裝程式進行更新。\n\n請使用 MSI 封包來更新您的 VeraCrypt 安裝。</entry> + <entry lang="zh-hk" key="CANT_INSTALL_WITH_EXE_OVER_MSI">VeraCrypt 之前是使用 MSI 封包進行安裝因此無法使用標準安裝程式進行更新。\n\n請使用 MSI 封包來更新你的 VeraCrypt 安裝。</entry> <entry lang="zh-hk" key="IDC_USE_ALL_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="zh-hk" key="LINUX_EX2MSG_TERMINALNOTFOUND">無法找到支援的終端機應用程式,您需要使用 xterm, konsole 或 gnome-terminal (需要 dbus-x11).</entry> + <entry lang="zh-hk" key="SYS_ENCRYPTION_UPGRADE_UNSUPPORTED_ALGORITHM">VeraCrypt 無法進行升級,因為系統分割區或磁碟機使用了不再支援的加密演算法。\n請在升級 Veracrypt 之前先將你的系統解密然後再重新加密。</entry> + <entry lang="zh-hk" key="LINUX_EX2MSG_TERMINALNOTFOUND">無法找到支援的終端機應用程式,你需要使用 xterm, konsole 或 gnome-terminal (需要 dbus-x11).</entry> <entry lang="zh-hk" key="IDM_MOUNT_NO_CACHE">不暫存地掛載</entry> - <entry lang="zh-hk" key="EXPANDER_INFO">:: VeraCrypt 擴充工具 ::\n\n直接地擴充一個 VeraCrypt 加密區而毋須重新格式化\n\n\n支援所有格式化為 NTFS 的各種類型的加密區 (容器檔案、磁碟機及分割區)。唯一的條件是 VeraCrypt 加密區所載的磁碟機或裝置必須有足夠的可用空間。\n\n請不要使用這個擴充工具來擴充隱藏加密區,因為這樣做會摧毀隱藏加密區!\n</entry> - <entry lang="zh-hk" key="IDC_STEPSEXPAND">1. 選擇需要擴充的 VeraCrypt 加密區\n2. 點選「掛載」按鈕</entry> + <entry lang="zh-hk" key="EXPANDER_INFO">:: VeraCrypt 擴充工具 ::\n\n直接地擴充一個 VeraCrypt 加密區而毋須重新格式化\n\n\n支援所有格式化為 NTFS 的各種類型的加密區 (容器檔案、磁碟機及分割區)。唯一的條件是 VeraCrypt 加密區所在的主機磁碟機或主機裝置必須有足夠的可用空間。\n\n請不要使用這個擴充工具來擴充隱藏加密區,因為這樣做會摧毀隱藏加密區!\n</entry> + <entry lang="zh-hk" key="IDC_STEPSEXPAND">1. 選擇需要擴充的 VeraCrypt 加密區\n2. 點選[掛載]按鈕</entry> <entry lang="zh-hk" key="IDT_VOL_NAME">磁碟區:</entry> @@ -1585,8 +1585,8 @@ <entry lang="zh-hk" key="IDT_INIT_SPACE">填寫新的空間:</entry> - <entry lang="zh-hk" key="EXPANDER_FREE_SPACE">所載磁碟上的可用空間為 %s </entry> + <entry lang="zh-hk" key="EXPANDER_FREE_SPACE">主機磁碟上的可用空間為 %s </entry> <entry lang="zh-hk" key="EXPANDER_HELP_DEVICE">這是一個裝置式的 VeraCrypt 加密區。\n\n新的加密區大小將會自動選擇為所載裝置一樣的大小。</entry> <entry lang="zh-hk" key="EXPANDER_HELP_FILE">請指定新的 VeraCrypt 加密區大小 (必須為最少 %I64u KB 大於現時的大小).</entry> - <entry lang="zh-hk" key="QUICK_EXPAND_WARNING">警告:您應只在以下情況才使用快速擴充:\n\n1) 加密容器檔案所在的裝置不包含敏感數據並且您不需要 plausible deniability。\n2) 加密容器檔案所在的裝置已經穩妥並完整地加密。\n\n您確定要使用快速擴充?</entry> - <entry lang="zh-hk" key="EXPANDER_STATUS_TEXT">重要:請在這個視窗範圍內儘量隨意移動滑鼠。移動的時間越長越好。這將會有效增強加密鑰的加密強度。然後點選「下一步」擴充加密區。</entry> - <entry lang="zh-hk" key="EXPANDER_STATUS_TEXT_LEGACY">點選「繼續」以擴充加密區。</entry> + <entry lang="zh-hk" key="QUICK_EXPAND_WARNING">警告:你應只在以下情況才使用快速擴充:\n\n1) 加密容器檔案所在的裝置不包含敏感數據並且你不需要合理的否認。\n2) 加密容器檔案所在的裝置已經穩妥並完整地加密。\n\n你確定要使用快速擴充?</entry> + <entry lang="zh-hk" key="EXPANDER_STATUS_TEXT">重要:請在這個視窗範圍內儘量隨意移動滑鼠。移動的時間越長越好。這將會有效增強加密鑰的加密強度。然後點選[下一步]擴充加密區。</entry> + <entry lang="zh-hk" key="EXPANDER_STATUS_TEXT_LEGACY">點選 [繼續] 以擴充加密區。</entry> <entry lang="zh-hk" key="EXPANDER_FINISH_ERROR">錯誤:加密區擴充失敗。</entry> @@ -1594,3 +1594,3 @@ <entry lang="zh-hk" key="EXPANDER_FINISH_OK">已完成。 加密區已成功地擴充。</entry> - <entry lang="zh-hk" key="EXPANDER_CANCEL_WARNING">警告:加密區正在進行擴充!\n\n現在停止的話會引致加密區損壞。\n\n您認真想要取消嗎?</entry> + <entry lang="zh-hk" key="EXPANDER_CANCEL_WARNING">警告:加密區正在進行擴充!\n\n現在停止的話會引致加密區損壞。\n\n你認真想要取消嗎?</entry> <entry lang="zh-hk" key="EXPANDER_STARTING_STATUS">正在開始加密區擴充 ...\n</entry> @@ -1599,6 +1599,6 @@ <entry lang="zh-hk" key="EXPANDER_NO_FREE_SPACE">沒有足夠的可用空間來擴充加密區</entry> - <entry lang="zh-hk" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">警告:加密區容器檔案大於 VeraCrypt 加密區範圍。 VeraCrypt 加密區範圍之後的數據將會被覆寫。\n\n您想要繼續嗎?</entry> - <entry lang="zh-hk" key="EXPANDER_WARNING_FAT">警告:這個 VeraCrypt 加密區內含一個 FAT 檔案系統!\n\n只有這個 VeraCrypt 加密區本身將會被擴充,但並不是當中的檔案系統。\n\n您想要繼續嗎?</entry> - <entry lang="zh-hk" key="EXPANDER_WARNING_EXFAT">警告:這個 VeraCrypt 加密區內含一個 exFAT 檔案系統!\n\n只有這個 VeraCrypt 加密區本身將會被擴充,但並不是當中的檔案系統。\n\n您想要繼續嗎?</entry> - <entry lang="zh-hk" key="EXPANDER_WARNING_UNKNOWN_FS">警告:這個 VeraCrypt 加密區內含未知的或沒有檔案系統!\n\n只有這個 VeraCrypt 加密區本身將會被擴充,當中的檔案系統將保留不變。\n\n您想要繼續嗎?</entry> + <entry lang="zh-hk" key="EXPANDER_WARNING_FILE_CONTAINER_JUNK">警告:加密區容器檔案大於 VeraCrypt 加密區範圍。 VeraCrypt 加密區範圍之後的數據將會被覆寫。\n\n你想要繼續嗎?</entry> + <entry lang="zh-hk" key="EXPANDER_WARNING_FAT">警告:這個 VeraCrypt 加密區內含一個 FAT 檔案系統!\n\n只有這個 VeraCrypt 加密區本身將會被擴充,但並不是當中的檔案系統。\n\n你想要繼續嗎?</entry> + <entry lang="zh-hk" key="EXPANDER_WARNING_EXFAT">警告:這個 VeraCrypt 加密區內含一個 exFAT 檔案系統!\n\n只有這個 VeraCrypt 加密區本身將會被擴充,但並不是當中的檔案系統。\n\n你想要繼續嗎?</entry> + <entry lang="zh-hk" key="EXPANDER_WARNING_UNKNOWN_FS">警告:這個 VeraCrypt 加密區內含未知的或沒有檔案系統!\n\n只有這個 VeraCrypt 加密區本身將會被擴充,當中的檔案系統將保留不變。\n\n你想要繼續嗎?</entry> <entry lang="zh-hk" key="EXPANDER_ERROR_VOLUME_SIZE_TOO_SMALL">新的加密區大小太細,必須為最少 %I64u kB 大於現時的大小。</entry> @@ -1610,9 +1610,9 @@ <entry lang="zh-hk" key="FAST_CREATE">快速建立</entry> - <entry lang="zh-hk" key="WARN_FAST_CREATE">警告:您應只在以下情況才使用快速建立:\n\n1) 加密容器檔案所在的裝置不包含敏感數據並且您不需要 plausible deniability。\n2) 加密容器檔案所在的裝置已經穩妥並完整地加密。\n\n您確定要使用快速建立?</entry> + <entry lang="zh-hk" key="WARN_FAST_CREATE">警告:你應只在以下情況才使用快速建立:\n\n1) 加密容器檔案所在的裝置不包含敏感數據並且你不需要合理的否認。\n2) 加密容器檔案所在的裝置已經穩妥並完整地加密。\n\n你確定要使用快速建立?</entry> <entry lang="zh-hk" key="IDC_ENABLE_EMV_SUPPORT">啟用 EMV 支援</entry> <entry lang="zh-hk" key="COMMAND_APDU_INVALID">傳送到卡片的 APDU 指令為無效的。</entry> - <entry lang="en" key="EXTENDED_APDU_UNSUPPORTED">Extended APDU commands cannot be used with the current token.</entry> + <entry lang="zh-hk" key="EXTENDED_APDU_UNSUPPORTED">延伸 APDU 指令無法使用於當前的權杖。</entry> <entry lang="zh-hk" key="SCARD_MODULE_INIT_FAILED">載入 WinSCard / PCSC 程式庫時發生錯誤。</entry> <entry lang="zh-hk" key="EMV_UNKNOWN_CARD_TYPE">讀卡機中的卡片並不是支援的 EMV 卡片。</entry> - <entry lang="en" key="EMV_SELECT_AID_FAILED">The AID of the card in the reader could not be selected.</entry> + <entry lang="zh-hk" key="EMV_SELECT_AID_FAILED">讀卡機中卡片上的 AID 無法被選取。</entry> <entry lang="zh-hk" key="EMV_ICC_CERT_NOTFOUND">卡片中無法找到ICC 公開鑰匙證書。</entry> @@ -1620,3 +1620,3 @@ <entry lang="zh-hk" key="EMV_CPLC_NOTFOUND">EMV 卡片中無法找到 CPLC。</entry> - <entry lang="zh-hk" key="EMV_PAN_NOTFOUND">在 EMV 卡片中找不到 Primary Account Number (PAN)。</entry> + <entry lang="zh-hk" key="EMV_PAN_NOTFOUND">在 EMV 卡片中找不到 PAN(Primary Account Number)。</entry> <entry lang="zh-hk" key="INVALID_EMV_PATH">EMV 路徑無效。</entry> @@ -1626,19 +1626,22 @@ <entry lang="zh-hk" key="FORMATEX_API_FAILED">Windows FormatEx API 無法格式化加密區為 NTFS/exFAT/ReFS。\n\n錯誤狀態 = %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="zh-hk" key="EXPANDER_WRITING_RANDOM_DATA">正在寫入隨機數據到新的空間 ...\n</entry> + <entry lang="zh-hk" key="EXPANDER_WRITING_ENCRYPTED_BACKUP">正在寫入重新加密的備份標頭數據 ...\n</entry> + <entry lang="zh-hk" key="EXPANDER_WRITING_ENCRYPTED_PRIMARY">正在寫入重新加密的主要標頭數據 ...\n</entry> + <entry lang="zh-hk" key="EXPANDER_WIPING_OLD_HEADER">正在抹除舊有的備份標頭數據 ...\n</entry> + <entry lang="zh-hk" key="EXPANDER_MOUNTING_VOLUME">正在掛載加密區 ...\n</entry> + <entry lang="zh-hk" key="EXPANDER_UNMOUNTING_VOLUME">正在解除掛載加密區 ...\n</entry> + <entry lang="zh-hk" key="EXPANDER_EXTENDING_FILESYSTEM">正在擴充檔案系統 ...\n</entry> + <entry lang="zh-hk" key="PARTIAL_SYSENC_MOUNT_READONLY">警告:你正嘗試掛載的系統加密分割區尚未完整地完成加密。為安全起見加密區 '%s' 已經以唯讀模式掛載,以避免可能造成的損壞或不必要的修改。</entry> + <entry lang="zh-hk" key="IDC_LINK_KEYFILES_EXTENSIONS_WARNING">使用第三方副檔名檔案的重要資訊</entry> + <entry lang="zh-hk" key="IDC_DISABLE_MEMORY_PROTECTION">停用記憶體保護以兼容輔助使用工具</entry> + <entry lang="zh-hk" key="DISABLE_MEMORY_PROTECTION_WARNING">警告:停用記憶體保護會大幅度降低安全性。請盡量只在需要依賴輔助功能工具(例如螢幕閱讀器)與 VeraCrypt 的圖型介面進行互動時才啟用此選項。</entry> <entry lang="zh-hk" 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="zh-hk" key="LINUX_SELECT_SYS_DEFAULT_LANG">使用系統的預設語言</entry> + <entry lang="zh-hk" key="LINUX_RESTART_FOR_LANGUAGE_CHANGE">VeraCrypt 需要重新啟動以使語言變更生效。</entry> + <entry lang="zh-hk" key="ERR_XTS_MASTERKEY_VULNERABLE">警告:這個加密區的主加密鑰存在容易受到威脅數據安全攻擊的弱點。\n\n請建立新的加密區然後及移動數據到其中。</entry> + <entry lang="zh-hk" key="ERR_SYSENC_XTS_MASTERKEY_VULNERABLE">警告:這個系統加密區的主加密鑰存在容易受到威脅數據安全攻擊的弱點。\n請解密系統加密分割區或磁碟區然後重新將其加密。</entry> + <entry lang="zh-hk" key="ERR_XTS_MASTERKEY_VULNERABLE_SHORT">警告:這個加密區的主加密鑰存在安全漏洞。</entry> + <entry lang="zh-hk" key="MOUNTPOINT_BLOCKED">錯誤:磁碟區掛載點因其覆寫系統受保護的路徑而被阻止。\n\n請選擇另一個掛載點。</entry> + <entry lang="zh-hk" key="MOUNTPOINT_NOTALLOWED">錯誤: 磁碟區掛載點因其覆寫的路徑屬於 PATH 環境變數的一部份而不被接納。\n\n請選擇另一個掛載點。</entry> + <entry lang="zh-hk" key="INSECURE_MODE">[不安全模式]</entry> </localization> diff --git a/Translations/Language.zh-tw.xml b/Translations/Language.zh-tw.xml index 2d47d518..6a9c2bd4 100644 --- a/Translations/Language.zh-tw.xml +++ b/Translations/Language.zh-tw.xml @@ -2,3 +2,3 @@ <VeraCrypt> - <localization prog-version= "1.26.17"> + <localization prog-version= "1.26.20"> <language langid="zh-tw" name="繁體中文" en-name="Chinese (Taiwan)" version="0.1.0" translators="Barney Li, Simon Ma, ChangMing Hsu" /> @@ -137,4 +137,4 @@ <entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</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="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="zh-tw" key="IDC_HK_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="zh-tw" key="IDC_PREF_CACHE_PASSWORDS">在驅動記憶體中快取密碼</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_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_LOGON_MOUNT_DEVICES">掛載所有磁碟機類型 VeraCrypt 加密區</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">自動卸載時清除快取的密碼</entry> + <entry lang="zh-tw" key="IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT">自動卸載時清除快取的密碼</entry> <entry lang="zh-tw" key="IDC_PREF_WIPE_CACHE_ON_EXIT">結束時清除快取的密碼</entry> @@ -271,4 +271,4 @@ <entry lang="zh-tw" key="IDT_AUTORUN">自動執行組態(autorun.inf)</entry> - <entry lang="zh-tw" key="IDT_AUTO_DISMOUNT">自動卸載</entry> - <entry lang="zh-tw" key="IDT_AUTO_DISMOUNT_ON">全部卸載,當:</entry> + <entry lang="zh-tw" key="IDT_AUTO_UNMOUNT">自動卸載</entry> + <entry lang="zh-tw" key="IDT_AUTO_UNMOUNT_ON">全部卸載,當:</entry> <entry lang="en" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader Screen Options</entry> @@ -278,3 +278,3 @@ <entry lang="zh-tw" key="IDT_DEFAULT_MOUNT_OPTIONS">預設掛載選項</entry> - <entry lang="zh-tw" key="IDT_DISMOUNT_ACTION">快速鍵設定</entry> + <entry lang="zh-tw" key="IDT_UNMOUNT_ACTION">快速鍵設定</entry> <entry lang="zh-tw" key="IDT_DRIVER_OPTIONS">驅動配置</entry> @@ -425,4 +425,4 @@ <entry lang="zh-tw" key="DEVICE_IN_USE_INPLACE_ENC">警告:作業系統或應用程序正在使用該分區。 您應該關閉可能正在使用該分區的任何應用程序(包括防病毒軟件)。\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="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="DEVICE_IN_USE_INFO">警告:一些掛載的磁碟機/磁碟分割區正在使用中!\n\n忽略這些可能導致非期望的結果,包括系統不穩定。\n\n我們強烈建議您關閉所有可能正在使用此磁碟機/磁碟分割區的應用程式。</entry> @@ -527,3 +527,3 @@ <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 dismount 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 unmount the volume).</entry> <entry lang="zh-tw" key="HIDVOL_HOST_FILLING_HELP">外層加密區已成功建立並作為 %hc: 磁碟機掛載。對這個加密區,現在您應複製一些您不是真正要隱藏的看似敏感的檔案。這是讓那些強迫您洩漏密碼的人能看到的檔。您將僅對這個外層加密區洩漏密碼,而不要洩漏給他們隱藏加密區的密碼。您真正要保護的檔將被儲存在稍後建立的隱藏加密區裡。當您完成複製後,請點 '下一步',而且不要卸載此加密區。\n\n注意:點 '下一步' 後,將進行叢集圖掃描來確定連續的可用空間大小,此可用空間的結尾與加密區結尾一致。該空間將提供用來建立隱藏加密區同時也是隱藏加密區的最大容量。叢集圖掃描能夠保證外層加密區中的資料不會被隱藏加密區複寫。</entry> @@ -592,3 +592,3 @@ <entry lang="zh-tw" key="OPENFILES_LOCK">無法鎖定此加密區。此加密區上仍有些檔案被使用中。因而也無法卸載。</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="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="zh-tw" key="OPEN_VOL_TITLE">請選擇一個 VeraCrypt 加密區</entry> @@ -731,3 +731,3 @@ <entry lang="zh-tw" key="CANT_MOUNT_VOLUME">無法掛載加密區。</entry> - <entry lang="zh-tw" key="CANT_DISMOUNT_VOLUME">無法卸載加密區。</entry> + <entry lang="zh-tw" key="CANT_UNMOUNT_VOLUME">無法卸載加密區。</entry> <entry lang="zh-tw" key="FORMAT_NTFS_FAILED">Windows 格式化為 NTFS 檔案系統格式時失敗。\n\n請選擇不同的檔案系統格式(如果可能的話)再嘗試一次。另外,您可以保留該區為未格式化區(檔案系統選擇為 "無"),結束精靈,掛載這個加密區,然後再使用系統或第三方廠商工具格式化這個已經掛載的加密區(該掛載的區仍然為加密狀態)。</entry> @@ -773,3 +773,3 @@ <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_DISMOUNT_OUTER_VOL">錯誤:無法卸載外層加密區!\n\n如果加密區中的檔案或資料夾被程式或系統使用,則該加密區無法被鎖定。\n\n請關閉任何可能使用加密區上檔案或目錄的程式,然後再選取 '重試'。</entry> + <entry lang="zh-tw" key="CANT_UNMOUNT_OUTER_VOL">錯誤:無法卸載外層加密區!\n\n如果加密區中的檔案或資料夾被程式或系統使用,則該加密區無法被鎖定。\n\n請關閉任何可能使用加密區上檔案或目錄的程式,然後再選取 '重試'。</entry> <entry lang="zh-tw" key="CANT_GET_OUTER_VOL_INFO">錯誤:不能獲得外層加密區的訊息! 加密區建立不能繼續。</entry> @@ -884,3 +884,3 @@ <entry lang="zh-tw" key="CLOSE_TC_FIRST">無法卸載 VeraCrypt 裝置驅動程式。\n\n請先關閉所有使用中的 VeraCrypt 視窗。如果這樣仍然沒有作用,請重新啟動電腦然後再試一次。</entry> - <entry lang="zh-tw" key="DISMOUNT_ALL_FIRST">在安裝或者移除 VeraCrypt 之前必須先要卸載所有的 VeraCrypt 加密區。</entry> + <entry lang="zh-tw" key="UNMOUNT_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> @@ -905,3 +905,3 @@ <entry lang="zh-tw" key="OPEN">打開</entry> - <entry lang="zh-tw" key="DISMOUNT">卸載</entry> + <entry lang="zh-tw" key="UNMOUNT">卸載</entry> <entry lang="zh-tw" key="SHOW_TC">顯示 VeraCrypt</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">在操作前請卸載加密區。</entry> + <entry lang="zh-tw" key="UNMOUNT_FIRST">在操作前請卸載加密區。</entry> <entry lang="zh-tw" key="CANNOT_SET_TIMER">錯誤:不能設定計時器。</entry> @@ -999,3 +999,3 @@ <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 dismount 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 unmount the volume.</entry> <entry lang="zh-tw" key="HOMEPAGE">首頁(線上)</entry> @@ -1011,7 +1011,7 @@ <entry lang="zh-tw" key="HK_AUTOMOUNT_DEVICES">自動掛載磁碟機</entry> - <entry lang="zh-tw" key="HK_DISMOUNT_ALL">全部卸載</entry> + <entry lang="zh-tw" key="HK_UNMOUNT_ALL">全部卸載</entry> <entry lang="zh-tw" key="HK_WIPE_CACHE">清除快取</entry> - <entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All & 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="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All & 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="zh-tw" key="HK_MOUNT_FAVORITE_VOLUMES">掛載我的最愛加密區</entry> @@ -1027,10 +1027,10 @@ <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_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="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="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> @@ -1042,3 +1042,3 @@ <entry lang="zh-tw" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">您已經排定了加密或解密系統分割區/磁碟機的操作。然而,啟動前置認證已失敗(或被繞過)。\n\n注意:如果您在啟動前置認證環境中解密了系統分割區/磁碟機,您也許需要經由在 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-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">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="zh-tw" key="CONFIRM_EXIT_UNIVERSAL">結束嗎?</entry> @@ -1065,3 +1065,3 @@ <entry lang="zh-tw" key="MOUNT_TC_VOLUME">掛載 VeraCrypt 加密區</entry> - <entry lang="zh-tw" key="DISMOUNT_ALL_TC_VOLUMES">卸除所有 VeraCrypt 加密區</entry> + <entry lang="zh-tw" key="UNMOUNT_ALL_TC_VOLUMES">卸除所有 VeraCrypt 加密區</entry> <entry lang="zh-tw" key="UAC_INIT_ERROR">VeraCrypt 取得系統管理員權限失敗。</entry> @@ -1287,4 +1287,4 @@ <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 '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="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="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry> @@ -1294,6 +1294,6 @@ <entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &Device and Mount...</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="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount 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 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="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="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> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <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="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry> <entry lang="en" key="DISK_FREE">Free space available: {0}</entry> @@ -1485,10 +1485,10 @@ <entry lang="en" key="LINUX_SELECT">Se&lect...</entry> - <entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry> + <entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount 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_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</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_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_VC_QUITS">VeraCrypt quits</entry> @@ -1512,3 +1512,3 @@ <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_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_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> @@ -1516,3 +1516,3 @@ <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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry> <entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry> @@ -1524,3 +1524,3 @@ <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_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry> <entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/doc/chm/VeraCrypt User Guide.chm b/doc/chm/VeraCrypt User Guide.chm Binary files differindex 5d7be8ac..8c84c380 100644 --- a/doc/chm/VeraCrypt User Guide.chm +++ b/doc/chm/VeraCrypt User Guide.chm diff --git a/doc/chm/VeraCrypt.hhc b/doc/chm/VeraCrypt.hhc index 57e101b2..3c2223c7 100644 --- a/doc/chm/VeraCrypt.hhc +++ b/doc/chm/VeraCrypt.hhc @@ -98,4 +98,4 @@ <LI> <OBJECT type="text/sitemap"> - <param name="Name" value="Normal Dismount vs Force Dismount "> - <param name="Local" value="Normal Dismount vs Force Dismount.html"> + <param name="Name" value="Normal Unmount vs Force Unmount "> + <param name="Local" value="Normal Unmount vs Force Unmount.html"> </OBJECT> diff --git a/doc/html/Beginner's Tutorial.html b/doc/html/Beginner's Tutorial.html index c39ee596..531a71c2 100644 --- a/doc/html/Beginner's Tutorial.html +++ b/doc/html/Beginner's Tutorial.html @@ -190,5 +190,5 @@ You can copy files (or folders) to and from the VeraCrypt volume just as you wou Note that VeraCrypt never saves any decrypted data to a disk – 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 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 + 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 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 dismount 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 unmount the volume. To do so, follow these steps:<br> <br> @@ -197,3 +197,3 @@ Note that VeraCrypt never saves any decrypted data to a disk – it only sto 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>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> +<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> <h2>How to Create and Use a VeraCrypt-Encrypted Partition/Device</h2> diff --git a/doc/html/Command Line Usage.html b/doc/html/Command Line Usage.html index c463b04c..004eccc8 100644 --- a/doc/html/Command Line Usage.html +++ b/doc/html/Command Line Usage.html @@ -57,3 +57,3 @@ <td> -<p>It must be followed by a parameter indicating the file and path name of a VeraCrypt volume to mount (do not use when dismounting) or the Volume ID of the disk/partition to mount.<br> +<p>It must be followed by a parameter indicating the file and path name of a VeraCrypt volume to mount (do not use when unmounting) or the Volume ID of the disk/partition to mount.<br> The syntax of the volume ID is <strong>ID:XXXXXX...XX</strong> where the XX part is a 64 hexadecimal characters string that represent the 32-Bytes ID of the desired volume to mount.<br> @@ -76,3 +76,3 @@ You can also specify the Volume ID of the partition/device-hosted volume to moun <td><em>/beep</em> or <em>/b</em></td> -<td>Beep after a volume has been successfully mounted or dismounted.</td> +<td>Beep after a volume has been successfully mounted or unmounted.</td> </tr> @@ -84,4 +84,8 @@ You can also specify the Volume ID of the partition/device-hosted volume to moun <tr> +<td><em>/unmount</em> or <em>/u</em></td> +<td>Unmount volume specified by drive letter (e.g., /u x). When no drive letter is specified, unmounts all currently mounted VeraCrypt volumes.</td> +</tr> +<tr> <td><em>/dismount</em> or <em>/d</em></td> -<td>Dismount volume specified by drive letter (e.g., /d x). When no drive letter is specified, dismounts all currently mounted VeraCrypt volumes.</td> +<td>Deprecated. Please use /unmount or /u.</td> </tr> @@ -89,3 +93,3 @@ You can also specify the Volume ID of the partition/device-hosted volume to moun <td><em>/force</em> or <em>/f</em></td> -<td>Forces dismount (if the volume to be dismounted contains files being used by the system or an application) and forces mounting in shared mode (i.e., without exclusive access).</td> +<td>Forces unmount (if the volume to be unmounted contains files being used by the system or an application) and forces mounting in shared mode (i.e., without exclusive access).</td> </tr> @@ -316,3 +320,3 @@ If it is followed by <strong>n</strong> or <strong>no</strong>: the password dia <p>veracrypt /q /v d:\myvolume</p> -<p>Dismount a volume mounted as the drive letter <em>X</em> (the main program window will not be displayed):</p> +<p>Unmount a volume mounted as the drive letter <em>X</em> (the main program window will not be displayed):</p> <p>veracrypt /q /d x</p> diff --git a/doc/html/Documentation.html b/doc/html/Documentation.html index 9f6f6587..db4969bf 100644 --- a/doc/html/Documentation.html +++ b/doc/html/Documentation.html @@ -61,3 +61,3 @@ </li></ul> -</li><li><strong><a href="Normal%20Dismount%20vs%20Force%20Dismount.html">Normal Dismount vs Force Dismount</a></strong> +</li><li><strong><a href="Normal%20Unmount%20vs%20Force%20Unmount.html">Normal Unmount vs Force Unmount</a></strong> </li><li><strong><a href="Avoid%20Third-Party%20File%20Extensions.html">Avoid Third-Party File Extensions</a></strong> diff --git a/doc/html/Donation.html b/doc/html/Donation.html index 3abcf14d..9d0cd62f 100644 --- a/doc/html/Donation.html +++ b/doc/html/Donation.html @@ -9,2 +9,3 @@ <link href="styles.css" rel="stylesheet" type="text/css" /> +<script src="donation.js"></script> </head> @@ -29,3 +30,3 @@ <h1>Donation to VeraCrypt</h1> -<p>You can support VeraCrypt development through donations using PayPal, bank transfers and cryptocurrencies (<a href="#Bitcoin">Bitcoin</a>, <a href="#BitcoinCash">Bitcoin Cash</a>, <a href="#Ethereum">Ethereum</a>, <a href="#Litecoin">Litecoin</a> and <a href="#Monero">Monero</a>). It is also possible to donate using Liberapay and Flattr.</p> +<p>You can support VeraCrypt development through donations using PayPal, bank transfers and cryptocurrencies (<a href="#Bitcoin">Bitcoin</a>, <a href="#BitcoinCash">Bitcoin Cash</a>, <a href="#Ethereum">Ethereum</a>, <a href="#Litecoin">Litecoin</a> and <a href="#Monero">Monero</a>). It is also possible to donate using Liberapay.</p> @@ -33,29 +34,81 @@ <h3><img src="paypal_30x30.png" style="vertical-align: middle; margin-right: 5px">PayPal</h3> -<table> -<tbody> -<tr> -<td align="center"><a title="Donate to VeraCrypt in Euros" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=H25GJLUDHBMB6" target="_blank"><img src="Donation_donate_Euros.gif" alt="" width="92" height="26"></a></td> -<td align="center"><a title="VeraCrypt Donation in USD" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=B8PU86SHE2ZVA" target="_blank"><img src="Donation_donate_Dollars.gif" alt="" width="92" height="26"></a></td> -<td align="center"><a title="VeraCrypt Donation in GBP" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MFAZACXK9NXT8" target="_blank"><img src="Donation_donate_GBP.gif" alt="" width="92" height="26"></a></td> -<td align="center"><a title="VeraCrypt Donation in Canadian Dollar" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QAN6T5E5F7F5J" target="_blank"><img src="Donation_donate_Dollars.gif" alt="" width="92" height="26"></a></td> -<td align="center"><a title="VeraCrypt Donation in Swiss Francs" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=98RJHVLY5NJ5U" target="_blank"><img src="Donation_donate_CHF.gif" alt="" width="92" height="26"></a></td> -<td align="center"><a title="VeraCrypt Donation in Japanese Yen" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=M9DXZ83WD7S8Y" target="_blank"><img src="Donation_donate_YEN.gif" alt="" width="92" height="26"></a></td> -<td align="center"><a title="VeraCrypt Donation in Australian Dollar" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=S9L769QS6WAU6" target="_blank"><img src="Donation_donate_Dollars.gif" alt="" width="92" height="26"></a></td> -<td align="center"><a title="VeraCrypt Donation in Polish złoty" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2WDGT7KUJ5GH8" target="_blank"><img src="Donation_donate_PLN.gif" alt="" width="92" height="26"></a></td> -</tr> -<tr> -<td align="center">Euro</td> -<td align="center">US Dollar</td> -<td align="center">Pound Sterling</td> -<td align="center">Canadian Dollar</td> -<td align="center">Swiss Franc</td> -<td align="center">Japanese Yen</td> -<td align="center">Australian Dollar</td> -<td align="center">Polish złoty</td> -</tr> -</tbody> -</table> - -<p>For other currencies, click on the button below and then select your currency using the drop-down list under the amount.</p> -<a title="VeraCrypt Donation in any currency" href="https://www.paypal.me/idrix" target="_blank"><img src="Donation_donate.gif" alt="" width="92" height="26"></a> +<div class="donation-buttons"> + <div class="donation-button"> + <a title="Donate to VeraCrypt in Euros" href="https://www.paypal.com/ncp/payment/MN367WS3VY9ZU" target="_blank"> + <img src="Donation_donate_Euros.gif" alt="Donate in Euros" width="92" height="26"> + </a> + <div class="currency-label">Euro</div> + </div> + <div class="donation-button"> + <a title="VeraCrypt Donation in USD" href="https://www.paypal.com/ncp/payment/MDY6S3XNCUQRW" target="_blank"> + <img src="Donation_donate_Dollars.gif" alt="Donate in USD" width="92" height="26"> + </a> + <div class="currency-label">US Dollar</div> + </div> + <div class="donation-button"> + <a title="VeraCrypt Donation in GBP" href="https://www.paypal.com/ncp/payment/QLA86UP7S58H4" target="_blank"> + <img src="Donation_donate_GBP.gif" alt="Donate in GBP" width="92" height="26"> + </a> + <div class="currency-label">Pound Sterling</div> + </div> + <div class="donation-button"> + <a title="VeraCrypt Donation in Canadian Dollar" href="https://www.paypal.com/ncp/payment/6KA5U56B9S2LS" target="_blank"> + <img src="Donation_donate_Dollars.gif" alt="Donate in CAD" width="92" height="26"> + </a> + <div class="currency-label">Canadian Dollar</div> + </div> + <div class="donation-button"> + <a title="VeraCrypt Donation in Swiss Francs" href="https://www.paypal.com/ncp/payment/ZUD4RAVN3668G" target="_blank"> + <img src="Donation_donate_CHF.gif" alt="Donate in CHF" width="92" height="26"> + </a> + <div class="currency-label">Swiss Franc</div> + </div> + <div class="donation-button"> + <a title="VeraCrypt Donation in Japanese Yen" href="https://www.paypal.com/ncp/payment/7VDVBU3HDMZWE" target="_blank"> + <img src="Donation_donate_YEN.gif" alt="Donate in JPY" width="92" height="26"> + </a> + <div class="currency-label">Japanese Yen</div> + </div> + <div class="donation-button"> + <a title="VeraCrypt Donation in Australian Dollar" href="https://www.paypal.com/ncp/payment/JGW5REWFUUSJS" target="_blank"> + <img src="Donation_donate_Dollars.gif" alt="Donate in AUD" width="92" height="26"> + </a> + <div class="currency-label">Australian Dollar</div> + </div> + <div class="donation-button"> + <a title="VeraCrypt Donation in Polish złoty" href="https://www.paypal.com/ncp/payment/YVFANME4Y9WFU" target="_blank"> + <img src="Donation_donate_PLN.gif" alt="Donate in PLN" width="92" height="26"> + </a> + <div class="currency-label">Polish złoty</div> + </div> +</div> + +<p>For other currencies, select from the list below:</p> +<form method="get" action="" id="currency-form" target="_blank"> + <select name="currency" style="padding: 5px; margin-right: 10px;" required> + <option value="" disabled selected>Select your currency</option> + <option value="https://www.paypal.com/ncp/payment/MN367WS3VY9ZU">€ EUR - Euro</option> + <option value="https://www.paypal.com/ncp/payment/MDY6S3XNCUQRW">$ USD - US Dollar</option> + <option value="https://www.paypal.com/ncp/payment/JGW5REWFUUSJS">$ AUD - Australian Dollar</option> + <option value="https://www.paypal.com/ncp/payment/P8JABT6BWBQKG">R$ BRL - Brazilian Real</option> + <option value="https://www.paypal.com/ncp/payment/6KA5U56B9S2LS">$ CAD - Canadian Dollar</option> + <option value="https://www.paypal.com/ncp/payment/ZUD4RAVN3668G">₣ CHF - Swiss Franc</option> + <option value="https://www.paypal.com/ncp/payment/3LVJ8XBWNMCYQ">Kč CZK - Czech Koruna</option> + <option value="https://www.paypal.com/ncp/payment/542JDQZL74AZW">kr DKK - Danish Krone</option> + <option value="https://www.paypal.com/ncp/payment/QLA86UP7S58H4">£ GBP - British Pound</option> + <option value="https://www.paypal.com/ncp/payment/YXB526AAZACQ6">$ HKD - Hong Kong Dollar</option> + <option value="https://www.paypal.com/ncp/payment/VZBXSS49JNU6G">Ft HUF - Hungarian Forint</option> + <option value="https://www.paypal.com/ncp/payment/5FZRSA4VQ3UXA">₪ ILS - Israeli Shekel</option> + <option value="https://www.paypal.com/ncp/payment/7VDVBU3HDMZWE">¥ JPY - Japanese Yen</option> + <option value="https://www.paypal.com/ncp/payment/GAUPLADH3NV6S">$ MXN - Mexican Peso</option> + <option value="https://www.paypal.com/ncp/payment/6LGRTR5L7K5MQ">$ NZD - New Zealand Dollar</option> + <option value="https://www.paypal.com/ncp/payment/P5Z56HRYLSM6Q">kr NOK - Norwegian Krone</option> + <option value="https://www.paypal.com/ncp/payment/2AQ5GKLQJDLB8">₱ PHP - Philippine Peso</option> + <option value="https://www.paypal.com/ncp/payment/YVFANME4Y9WFU">zł PLN - Polish Złoty</option> + <option value="https://www.paypal.com/ncp/payment/542JDQZL74AZW">kr SEK - Swedish Krona</option> + <option value="https://www.paypal.com/ncp/payment/EFHP9Z9KL4H9N">S$ SGD - Singapore Dollar</option> + <option value="https://www.paypal.com/ncp/payment/QMSTMEMJ7UE3S">฿ THB - Thai Baht</option> + </select> + <input type="submit" value="Donate" style="padding: 5px 15px; background-color: #08aad7; color: white; border: none; cursor: pointer;"> +</form> @@ -75,6 +128,2 @@ <ul> -<li><strong>Legacy:</strong> -<p><img src="Donation_VeraCrypt_Bitcoin_small.png" alt="VeraCrypt Bitcoin Address" width="200" height="200"></p> -<p><strong>14atYG4FNGwd3F89h1wDAfeRDwYodgRLcf</strong></p> -</li> <li><strong>SegWit:</strong> @@ -83,2 +132,7 @@ </li> +<li><strong>Legacy:</strong> +<p><img src="Donation_VeraCrypt_Bitcoin_small.png" alt="VeraCrypt Bitcoin Address" width="200" height="200"></p> +<p><strong>14atYG4FNGwd3F89h1wDAfeRDwYodgRLcf</strong></p> +</li> + </ul> diff --git a/doc/html/FAQ.html b/doc/html/FAQ.html index e310f3e8..df1bfe8d 100644 --- a/doc/html/FAQ.html +++ b/doc/html/FAQ.html @@ -229,3 +229,3 @@ VeraCrypt volumes</a> are independent of the operating system. You will be able <div style="text-align:left; margin-top:19px; margin-bottom:19px; padding-top:0px; padding-bottom:0px"> -Before you unplug or turn off the device, you should always dismount the VeraCrypt volume in VeraCrypt first, and then perform the '<em style="text-align:left">Eject</em>' operation if available (right-click the device in the '<em style="text-align:left">Computer</em>' +Before you unplug or turn off the device, you should always unmount the VeraCrypt volume in VeraCrypt first, and then perform the '<em style="text-align:left">Eject</em>' operation if available (right-click the device in the '<em style="text-align:left">Computer</em>' or '<em style="text-align:left">My Computer</em>' list), or use the '<em style="text-align:left">Safely Remove Hardware</em>' function (built in Windows, accessible via the taskbar notification area). Otherwise, data loss may occur.</div> @@ -478,5 +478,5 @@ documentation</a>.</div> <br style="text-align:left"> -<strong style="text-align:left">Do I have to dismount VeraCrypt volumes before shutting down or restarting Windows?</strong></div> +<strong style="text-align:left">Do I have to unmount VeraCrypt volumes before shutting down or restarting Windows?</strong></div> <div style="text-align:left; margin-top:19px; margin-bottom:19px; padding-top:0px; padding-bottom:0px"> -No. VeraCrypt automatically dismounts all mounted VeraCrypt volumes on system shutdown/restart.</div> +No. VeraCrypt automatically unmounts all mounted VeraCrypt volumes on system shutdown/restart.</div> <div style="text-align:left; margin-top:19px; margin-bottom:19px; padding-top:0px; padding-bottom:0px"> @@ -488,3 +488,3 @@ No. VeraCrypt automatically dismounts all mounted VeraCrypt volumes on system sh Partitions/drives</a> may be better as regards performance. Note that reading and writing to/from a file container may take significantly longer when the container is heavily fragmented. To solve this problem, defragment the file system in which the container - is stored (when the VeraCrypt volume is dismounted).</div> + is stored (when the VeraCrypt volume is unmounted).</div> <div style="text-align:left; margin-top:19px; margin-bottom:19px; padding-top:0px; padding-bottom:0px"> diff --git a/doc/html/Hibernation File.html b/doc/html/Hibernation File.html index cc0888f1..0641c06c 100644 --- a/doc/html/Hibernation File.html +++ b/doc/html/Hibernation File.html @@ -46,3 +46,3 @@ <p>When a computer hibernates (or enters a power-saving mode), the content of its system memory is written to a so-called hibernation file on the hard drive. You can configure VeraCrypt (<em>Settings</em> > -<em>Preferences</em> > <em>Dismount all when: Entering power saving mode</em>) to automatically dismount all mounted VeraCrypt volumes, erase their master keys stored in RAM, and cached passwords (stored in RAM), if there are any, before a computer hibernates +<em>Preferences</em> > <em>Unmount all when: Entering power saving mode</em>) to automatically unmount all mounted VeraCrypt volumes, erase their master keys stored in RAM, and cached passwords (stored in RAM), if there are any, before a computer hibernates (or enters a power-saving mode). However, keep in mind, that if you do not use system encryption (see the chapter diff --git a/doc/html/Hidden Volume.html b/doc/html/Hidden Volume.html index 56f38e2b..bb415d36 100644 --- a/doc/html/Hidden Volume.html +++ b/doc/html/Hidden Volume.html @@ -48,3 +48,3 @@ It may happen that you are forced by somebody to reveal the password to an encry The principle is that a VeraCrypt volume is created within another VeraCrypt volume (within the free space on the volume). Even when the outer volume is mounted, it should be impossible to prove whether there is a hidden volume within it or not*, because free - space on <em style="text-align:left">any </em>VeraCrypt volume is always filled with random data when the volume is created** and no part of the (dismounted) hidden volume can be distinguished from random data. Note that VeraCrypt does not modify the file + space on <em style="text-align:left">any </em>VeraCrypt volume is always filled with random data when the volume is created** and no part of the (unmounted) hidden volume can be distinguished from random data. Note that VeraCrypt does not modify the file system (information about free space, etc.) within the outer volume in any way.</div> diff --git a/doc/html/Incompatibilities.html b/doc/html/Incompatibilities.html index 4c9e4bce..a87ed56d 100644 --- a/doc/html/Incompatibilities.html +++ b/doc/html/Incompatibilities.html @@ -66,3 +66,3 @@ Please note that this not a bug in VeraCrypt (the issue is caused by inappropria <div style="text-align:left; margin-top:19px; margin-bottom:19px; padding-top:0px; padding-bottom:0px"> -If Outpost Firewall or Outpost Security Suite is installed with Proactive Protection enabled, the machine freezes completely for 5-10 seconds during the volume mount/dismount operation. This is caused by a conflict between Outpost System Guard option that protects "Active Desktop" objects and VeraCrypt waiting dialog displayed during mount/dismount operations.</div> +If Outpost Firewall or Outpost Security Suite is installed with Proactive Protection enabled, the machine freezes completely for 5-10 seconds during the volume mount/unmount operation. This is caused by a conflict between Outpost System Guard option that protects "Active Desktop" objects and VeraCrypt waiting dialog displayed during mount/unmount operations.</div> <div style="text-align:left; margin-top:19px; margin-bottom:19px; padding-top:0px; padding-bottom:0px"> diff --git a/doc/html/Introduction.html b/doc/html/Introduction.html index 1a946be2..28009ec9 100644 --- a/doc/html/Introduction.html +++ b/doc/html/Introduction.html @@ -52,3 +52,3 @@ Let's suppose that there is an .avi video file stored on a VeraCrypt volume (the <p>Note that VeraCrypt never saves any decrypted data to a disk – 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 dismounted and files stored in it will be inaccessible (and encrypted). Even when power supply is suddenly interrupted (without proper system shut down), files stored in the volume are inaccessible (and encrypted). To make them accessible again, you + will be unmounted and files stored in it will be inaccessible (and encrypted). Even when power supply is suddenly interrupted (without proper system shut down), files stored in the volume are inaccessible (and encrypted). To make them accessible again, you have to mount the volume (and provide the correct password and/or keyfile). For a quick start guide, please see the chapter Beginner's Tutorial.</p> diff --git a/doc/html/Issues and Limitations.html b/doc/html/Issues and Limitations.html index eed2e222..4fa1e0e3 100644 --- a/doc/html/Issues and Limitations.html +++ b/doc/html/Issues and Limitations.html @@ -47,4 +47,4 @@ Also, there are other entries whose name start with "#{" and "\?? </li> -<li>On some Windows machines, VeraCrypt may hang intermittently when mounting or dismounting a volume. Similar hanging may affect other running applications during VeraCrypt mounting or dismounting operations. -This issue is caused by a conflict between VeraCrypt waiting dialog displayed during mount/dismount operations and other software installed on the machine (e.g. Outpost Firewall Pro). +<li>On some Windows machines, VeraCrypt may hang intermittently when mounting or unmounting a volume. Similar hanging may affect other running applications during VeraCrypt mounting or unmounting operations. +This issue is caused by a conflict between VeraCrypt waiting dialog displayed during mount/unmount operations and other software installed on the machine (e.g. Outpost Firewall Pro). In such situations, the issue can be solved by disabling VeraCrypt waiting dialog in the Preferences: use menu "Settings -> Preferences" and check the option "Don't show wait message dialog when performing operations". @@ -81,3 +81,3 @@ Note: The only exception is the multi-boot configuration where a running VeraCry systems (encrypted or unencrypted) installed on other drives connected to the computer (when drive #0 is disconnected, drive #1 becomes drive #0, etc.) -</li><li>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. +</li><li>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. </li><li>Preserving of any timestamp of any file (e.g. a container or keyfile) is not guaranteed to be reliably and securely performed (for example, due to filesystem journals, timestamps of file attributes, or the operating system failing to perform it for various @@ -105,3 +105,3 @@ link </a>explains how to disable it in Windows 8 and this <a href="https://www.t </li> -<li>Windows system Repair/Recovery Disk can't be created when a VeraCrypt volume is mounted as a fixed disk (which is the default). To solve this, either dismount all volumes or mount volumes are removable media. +<li>Windows system Repair/Recovery Disk can't be created when a VeraCrypt volume is mounted as a fixed disk (which is the default). To solve this, either unmount all volumes or mount volumes are removable media. </li><li>Further limitations are listed in the section <a href="Security%20Model.html"> diff --git a/doc/html/Language Packs.html b/doc/html/Language Packs.html index 7bd1af87..54f7f493 100644 --- a/doc/html/Language Packs.html +++ b/doc/html/Language Packs.html @@ -49,4 +49,4 @@ OK</em>.</div> <div style="text-align:left; margin-top:19px; margin-bottom:19px; padding-top:0px; padding-bottom:0px"> -You can still download an archive containing all language packs for the latest version (1.26.15) from -<a href="https://launchpad.net/veracrypt/trunk/1.26.15/+download/VeraCrypt_1.26.15_Language_Files.zip"> +You can still download an archive containing all language packs for the latest version (1.26.18) from +<a href="https://launchpad.net/veracrypt/trunk/1.26.18/+download/VeraCrypt_1.26.18_Language_Files.zip"> the following link</a>.</div> diff --git a/doc/html/Legal Information.html b/doc/html/Legal Information.html index f2eeb660..cbd3f172 100644 --- a/doc/html/Legal Information.html +++ b/doc/html/Legal Information.html @@ -45,6 +45,6 @@ can be found here</a>.</p> <br> -Copyright © 2013-2024 IDRIX. All rights reserved.<br> +Copyright © 2013-2025 IDRIX. All rights reserved.<br> <br> Portions of this software:</p> -<p>Copyright © 2013-2024 IDRIX. All rights reserved.<br> +<p>Copyright © 2013-2025 IDRIX. All rights reserved.<br> <br> diff --git a/doc/html/Main Program Window.html b/doc/html/Main Program Window.html index 30ee175b..c232633f 100644 --- a/doc/html/Main Program Window.html +++ b/doc/html/Main Program Window.html @@ -47,3 +47,3 @@ Note: There is a more comfortable way of mounting VeraCrypt partitions/devices & the volume will be mounted.</p> -<p>Important: Note that when you exit the VeraCrypt application, the VeraCrypt driver continues working and no VeraCrypt volume is dismounted.</p> +<p>Important: Note that when you exit the VeraCrypt application, the VeraCrypt driver continues working and no VeraCrypt volume is unmounted.</p> <h3 id="AutoMountDevices">Auto-Mount Devices</h3> @@ -58,9 +58,9 @@ If the password you enter is wrong, mounting is attempted using cached passwords Drive letters will be assigned starting from the one that is selected in the drive list in the main window.</p> -<h3>Dismount</h3> -<p>This function allows you to dismount the VeraCrypt volume selected in the drive list in the main window. To dismount a VeraCrypt volume means to close it and make it impossible to read/write from/to the volume.</p> -<h3>Dismount All</h3> +<h3>Unmount</h3> +<p>This function allows you to unmount the VeraCrypt volume selected in the drive list in the main window. To unmount a VeraCrypt volume means to close it and make it impossible to read/write from/to the volume.</p> +<h3>Unmount All</h3> <p>Note: The information in this section applies to all menu items and buttons with the same or similar caption (for example, it also applies to the system tray menu item -<em>Dismount All</em>).<br> +<em>Unmount All</em>).<br> <br> -This function allows you to dismount multiple VeraCrypt volumes. To dismount a VeraCrypt volume means to close it and make it impossible to read/write from/to the volume. This function dismounts all mounted VeraCrypt volumes except the following:</p> +This function allows you to unmount multiple VeraCrypt volumes. To unmount a VeraCrypt volume means to close it and make it impossible to read/write from/to the volume. This function unmounts all mounted VeraCrypt volumes except the following:</p> <ul> @@ -68,4 +68,4 @@ This function allows you to dismount multiple VeraCrypt volumes. To dismount a V </li><li>VeraCrypt volumes that are not fully accessible to the user account (e.g. a volume mounted from within another user account). -</li><li>VeraCrypt volumes that are not displayed in the VeraCrypt application window. For example, system favorite volumes attempted to be dismounted by an instance of VeraCrypt without administrator privileges when the option '<em>Allow only administrators to - view and dismount system favorite volumes in VeraCrypt</em>' is enabled. </li></ul> +</li><li>VeraCrypt volumes that are not displayed in the VeraCrypt application window. For example, system favorite volumes attempted to be unmounted by an instance of VeraCrypt without administrator privileges when the option '<em>Allow only administrators to + view and unmount system favorite volumes in VeraCrypt</em>' is enabled. </li></ul> <h3>Wipe Cache</h3> @@ -89,7 +89,7 @@ Note: You can clear the volume history by selecting <em>Tools</em> -> <em>Cle <h3>Exit</h3> -<p>Terminates the VeraCrypt application. The driver continues working and no VeraCrypt volumes are dismounted. When running in ‘portable’ mode, the VeraCrypt driver is unloaded when it is no longer needed (e.g., when all instances of the main application - and/or of the Volume Creation Wizard are closed and no VeraCrypt volumes are mounted). However, if you force dismount on a</p> +<p>Terminates the VeraCrypt application. The driver continues working and no VeraCrypt volumes are unmounted. When running in ‘portable’ mode, the VeraCrypt driver is unloaded when it is no longer needed (e.g., when all instances of the main application + and/or of the Volume Creation Wizard are closed and no VeraCrypt volumes are mounted). However, if you force unmount on a</p> <p>VeraCrypt volume when VeraCrypt runs in portable mode, or mount a writable NTFS-formatted volume on Windows Vista or later, the VeraCrypt driver may <em>not</em> be unloaded when you exit VeraCrypt (it will be unloaded only when you shut down or restart the system). This prevents various problems caused by a bug in Windows (for instance, it would be impossible to start VeraCrypt again as long as there are - applications using the dismounted volume).</p> + applications using the unmounted volume).</p> <h3>Volume Tools</h3> diff --git a/doc/html/Multi-User Environment.html b/doc/html/Multi-User Environment.html index 99456293..94c0f5e0 100644 --- a/doc/html/Multi-User Environment.html +++ b/doc/html/Multi-User Environment.html @@ -48,7 +48,7 @@ Moreover, on Windows, the password cache is shared by all logged on users (for m Also note that switching users in Windows XP or later (<em>Fast User Switching</em> functionality) does -<em>not</em> dismount a successfully mounted VeraCrypt volume (unlike system restart, which dismounts all mounted VeraCrypt volumes).<br> +<em>not</em> unmount a successfully mounted VeraCrypt volume (unlike system restart, which unmounts all mounted VeraCrypt volumes).<br> <br> On Windows 2000, the container file permissions are ignored when a file-hosted VeraCrypt volume is to be mounted. On all supported versions of Windows, users without administrator privileges can mount any partition/device-hosted VeraCrypt volume (provided that - they supply the correct password and/or keyfiles). A user without administrator privileges can dismount only volumes that he or she mounted. However, this does not apply to system favorite volumes unless you enable the option (disabled by default) -<em>Settings</em> > ‘<em>System Favorite Volumes</em>’ > ‘<em>Allow only administrators to view and dismount system favorite volumes in VeraCrypt</em>’.</p> + they supply the correct password and/or keyfiles). A user without administrator privileges can unmount only volumes that he or she mounted. However, this does not apply to system favorite volumes unless you enable the option (disabled by default) +<em>Settings</em> > ‘<em>System Favorite Volumes</em>’ > ‘<em>Allow only administrators to view and unmount system favorite volumes in VeraCrypt</em>’.</p> </div> diff --git a/doc/html/Normal Dismount vs Force Dismount.html b/doc/html/Normal Unmount vs Force Unmount.html index 4ebd52c8..72da246b 100644 --- a/doc/html/Normal Dismount vs Force Dismount.html +++ b/doc/html/Normal Unmount vs Force Unmount.html @@ -31,3 +31,3 @@ <img src="arrow_right.gif" alt=">>" style="margin-top: 5px"> -<a href="Normal%20Dismount%20vs%20Force%20Dismount.html">Normal Dismount vs Force Dismount</a> +<a href="Normal%20Unmount%20vs%20Force%20Unmount.html">Normal Unmount vs Force Unmount</a> </p></div> @@ -35,8 +35,8 @@ <div class="wikidoc"> -<h1>Normal Dismount vs Force Dismount</h1> -<p>Understanding the distinction between "Normal Dismount" and "Force Dismount" operation is important due to the potential impact on user data.</p> +<h1>Normal Unmount vs Force Unmount</h1> +<p>Understanding the distinction between "Normal Unmount" and "Force Unmount" operation is important due to the potential impact on user data.</p> -<h2>Normal Dismount Process</h2> +<h2>Normal Unmount Process</h2> -<p>During a normal dismount process, VeraCrypt performs the following steps:</p> +<p>During a normal unmount process, VeraCrypt performs the following steps:</p> @@ -52,23 +52,23 @@ -<h2>Force Dismount Process</h2> +<h2>Force Unmount Process</h2> -<p>The Force Dismount process is distinct but largely similar to the Normal Dismount. It essentially follows the same steps but disregards any failures that might occur during steps 1 and 2, and carries on with the rest of the procedure. However, if there are files open by the user or if the volume I/O cache has not yet been flushed, this could result in potential data loss. This situation parallels forcibly removing a USB device from your computer while Windows is still indicating its active usage.</p> +<p>The Force Unmount process is distinct but largely similar to the Normal Unmount. It essentially follows the same steps but disregards any failures that might occur during steps 1 and 2, and carries on with the rest of the procedure. However, if there are files open by the user or if the volume I/O cache has not yet been flushed, this could result in potential data loss. This situation parallels forcibly removing a USB device from your computer while Windows is still indicating its active usage.</p> -<p>Provided all applications using files on the mounted volume have been successfully closed and the I/O cache is fully flushed, neither data loss nor data/filesystem corruption should occur when executing a 'force dismount'. As in a normal dismount, the encryption keys are erased from RAM upon successful completion of a 'Force Dismount'.</p> +<p>Provided all applications using files on the mounted volume have been successfully closed and the I/O cache is fully flushed, neither data loss nor data/filesystem corruption should occur when executing a 'force unmount'. As in a normal unmount, the encryption keys are erased from RAM upon successful completion of a 'Force Unmount'.</p> -<h2>How to Trigger Force Dismount</h2> +<h2>How to Trigger Force Unmount</h2> -<p>There are three approaches to trigger a force dismount in VeraCrypt:</p> +<p>There are three approaches to trigger a force unmount in VeraCrypt:</p> <ol> - <li>Through the popup window that appears if a normal dismount attempt is unsuccessful.</li> - <li>Via Preferences, by checking the "force auto-dismount" option in the "Auto-Dismount" section.</li> - <li>Using the command line, by incorporating the /force or /f switch along with the /d or /dismount switch.</li> + <li>Through the popup window that appears if a normal unmount attempt is unsuccessful.</li> + <li>Via Preferences, by checking the "force auto-unmount" option in the "Auto-Unmount" section.</li> + <li>Using the command line, by incorporating the /force or /f switch along with the /d or /unmount switch.</li> </ol> -<p>In order to avoid inadvertent data loss or corruption, always ensure to follow suitable precautions when dismounting a VeraCrypt volume. This includes</p> +<p>In order to avoid inadvertent data loss or corruption, always ensure to follow suitable precautions when unmounting a VeraCrypt volume. This includes</p> <ol> - <li>Ensuring all files on the volume are closed before initiating a dismount.</li> + <li>Ensuring all files on the volume are closed before initiating a unmount.</li> <li>Allowing some time after closing all files to ensure Windows has completely flushed the I/O cache.</li> - <li>Take note that some antivirus software may keep file handles open on the volume after performing a scan, hindering a successful Normal Dismount. If you experience this issue, you might consider excluding the VeraCrypt volume from your antivirus scans. Alternatively, consult with your antivirus software provider to understand how their product interacts with VeraCrypt volumes and how to ensure it doesn't retain open file handles.</li> + <li>Take note that some antivirus software may keep file handles open on the volume after performing a scan, hindering a successful Normal Unmount. If you experience this issue, you might consider excluding the VeraCrypt volume from your antivirus scans. Alternatively, consult with your antivirus software provider to understand how their product interacts with VeraCrypt volumes and how to ensure it doesn't retain open file handles.</li> </ol> diff --git a/doc/html/Portable Mode.html b/doc/html/Portable Mode.html index b26cb35b..006c7d0f 100644 --- a/doc/html/Portable Mode.html +++ b/doc/html/Portable Mode.html @@ -66,5 +66,5 @@ Note: To extract files from the VeraCrypt self-extracting package, run it, and t <p>Note: When running in ‘portable’ mode, the VeraCrypt driver is unloaded when it is no longer needed (e.g., when all instances of the main application and/or of the Volume Creation Wizard are closed and no VeraCrypt volumes are mounted). However, - if you force dismount on a VeraCrypt volume when VeraCrypt runs in portable mode, or mount a writable NTFS-formatted volume on Windows Vista or later, the VeraCrypt driver may + if you force unmount on a VeraCrypt volume when VeraCrypt runs in portable mode, or mount a writable NTFS-formatted volume on Windows Vista or later, the VeraCrypt driver may <em>not</em> be unloaded when you exit VeraCrypt (it will be unloaded only when you shut down or restart the system). This prevents various problems caused by a bug in Windows (for instance, it would be impossible to start VeraCrypt again as long as there are - applications using the dismounted volume).</p> + applications using the unmounted volume).</p> <h3>Tools -> Traveler Disk Setup</h3> diff --git a/doc/html/Program Menu.html b/doc/html/Program Menu.html index c7ea0534..cbc52b84 100644 --- a/doc/html/Program Menu.html +++ b/doc/html/Program Menu.html @@ -43,5 +43,5 @@ <em>Auto-Mount Devices.</em></a></p> -<h3>Volumes -> Dismount All Mounted Volumes</h3> +<h3>Volumes -> Unmount All Mounted Volumes</h3> <p>See the section <a href="Main%20Program%20Window.html"> -<em>Dismount All.</em></a></p> +<em>Unmount All.</em></a></p> <h3>Volumes -> Change Volume Password</h3> @@ -188,4 +188,4 @@ If this option is checked and if there are two or more favorite volumes, then du </li><li>VeraCrypt volumes that are not fully accessible to the user account (e.g. a volume mounted from within another user account). -</li><li>VeraCrypt volumes that are not displayed in the VeraCrypt application window. For example, system favorite volumes attempted to be dismounted by an instance of VeraCrypt without administrator privileges when the option '<em>Allow only administrators to - view and dismount system favorite volumes in VeraCrypt</em>' is enabled. </li></ul> +</li><li>VeraCrypt volumes that are not displayed in the VeraCrypt application window. For example, system favorite volumes attempted to be unmounted by an instance of VeraCrypt without administrator privileges when the option '<em>Allow only administrators to + view and unmount system favorite volumes in VeraCrypt</em>' is enabled. </li></ul> <h4>VeraCrypt Background Task – Enabled</h4> @@ -197,6 +197,6 @@ If this option is checked and if there are two or more favorite volumes, then du <em>VeraCrypt Background Task</em></a>. Note that this option cannot be disabled when VeraCrypt runs in portable mode.</p> -<h4>Auto-dismount volume after no data has been read/written to it for</h4> -<p>After no data has been written/read to/from a VeraCrypt volume for <em>n</em> minutes, the volume is automatically dismounted.</p> -<h4>Force auto-dismount even if volume contains open files or directories</h4> -<p>This option applies only to auto-dismount (not to regular dismount). It forces dismount (without prompting) on the volume being auto-dismounted in case it contains open files or directories (i.e., file/directories that are in use by the system or applications).</p> +<h4>Auto-unmount volume after no data has been read/written to it for</h4> +<p>After no data has been written/read to/from a VeraCrypt volume for <em>n</em> minutes, the volume is automatically unmounted.</p> +<h4>Force auto-unmount even if volume contains open files or directories</h4> +<p>This option applies only to auto-unmount (not to regular unmount). It forces unmount (without prompting) on the volume being auto-unmounted in case it contains open files or directories (i.e., file/directories that are in use by the system or applications).</p> <p> </p> diff --git a/doc/html/Protection of Hidden Volumes.html b/doc/html/Protection of Hidden Volumes.html index 3e3e5890..ce320d21 100644 --- a/doc/html/Protection of Hidden Volumes.html +++ b/doc/html/Protection of Hidden Volumes.html @@ -63,4 +63,4 @@ Both passwords must be correct; otherwise, the outer volume will not be mounted. <em style="text-align:left">not</em> actually mount the hidden volume. It only decrypts its header (in RAM) and retrieves information about the size of the hidden volume (from the decrypted header). Then, the outer volume is mounted and any attempt to save - data to the area of the hidden volume will be rejected (until the outer volume is dismounted). -<strong style="text-align:left">Note that VeraCrypt never modifies the filesystem (e.g., information about allocated clusters, amount of free space, etc.) within the outer volume in any way. As soon as the volume is dismounted, the protection is lost. When + data to the area of the hidden volume will be rejected (until the outer volume is unmounted). +<strong style="text-align:left">Note that VeraCrypt never modifies the filesystem (e.g., information about allocated clusters, amount of free space, etc.) within the outer volume in any way. As soon as the volume is unmounted, the protection is lost. When the volume is mounted again, it is not possible to determine whether the volume has used hidden volume protection or not. The hidden volume protection can be activated only by users who supply the correct password (and/or keyfiles) for the hidden volume (each @@ -68,3 +68,3 @@ Both passwords must be correct; otherwise, the outer volume will not be mounted. </strong><br style="text-align:left"> -As soon as a write operation to the hidden volume area is denied/prevented (to protect the hidden volume), the entire host volume (both the outer and the hidden volume) becomes write-protected until dismounted (the VeraCrypt driver reports the 'invalid parameter' +As soon as a write operation to the hidden volume area is denied/prevented (to protect the hidden volume), the entire host volume (both the outer and the hidden volume) becomes write-protected until unmounted (the VeraCrypt driver reports the 'invalid parameter' error to the system upon each attempt to write data to the volume). This preserves plausible deniability (otherwise certain kinds of inconsistency within the file system could indicate that this volume has used hidden volume protection). When damage to hidden @@ -83,3 +83,3 @@ Moreover, the field <em style="text-align:left">Hidden Volume Protected </em>in Note that when damage to hidden volume is prevented, <em style="text-align:left"> -no</em> information about the event is written to the volume. When the outer volume is dismounted and mounted again, the volume properties will +no</em> information about the event is written to the volume. When the outer volume is unmounted and mounted again, the volume properties will <em style="text-align:left">not </em>display the string "<em style="text-align:left">damage prevented</em>".<em style="text-align:left"><br style="text-align:left"> @@ -102,3 +102,3 @@ The type of the mounted outer volume is <em style="text-align:left">Outer</em>: type "Outer" but "Normal"). The reason is that, during the time when an outer volume is mounted with the hidden volume protection enabled, the adversary -</strong></em><strong style="text-align:left">can</strong><em style="text-align:left"><strong style="text-align:left"> find out that a hidden volume exists within the outer volume (he/she will be able to find it out until the volume is dismounted and possibly +</strong></em><strong style="text-align:left">can</strong><em style="text-align:left"><strong style="text-align:left"> find out that a hidden volume exists within the outer volume (he/she will be able to find it out until the volume is unmounted and possibly even some time after the computer has been powered off - see <a href="Unencrypted%20Data%20in%20RAM.html" style="text-align:left; color:#0080c0; text-decoration:none.html"> diff --git a/doc/html/Release Notes.html b/doc/html/Release Notes.html index 0791e25f..a35d2f3d 100644 --- a/doc/html/Release Notes.html +++ b/doc/html/Release Notes.html @@ -42,3 +42,31 @@ -<p><strong style="text-align:left">1.26.17</strong> (November 24<sup>th</sup>, 2024):</p> +<p><strong style="text-align:left">1.26.20</strong> (February 3<sup>rd</sup>, 2025):</p> +<ul> +<li><strong>All OSes:</strong> + <ul> + <li>Implement SHA-256 acceleration on ARM64 platforms using CPU instructions.</li> + <li>Update translations.</li> + <li>Replace "Dismount" with "Unmount" across the UI and documentation to align with IT standards.</li> + </ul> +</li> +<li><strong>Windows:</strong> + <ul> + <li>Fix regression in driver that always allowed defragmentation and caused other side effects.</li> + <li>Revert to the previous method of gathering system entropy due to stability issues reported by users.</li> + </ul> +</li> +<li><strong>Linux:</strong> + <ul> + <li>Fix a regression in Linux Mint affecting administrator password authentication (GH #1473).</li> + </ul> +</li> +<li><strong>macOS:</strong> +<ul> +<li>Fix a regression that prevented volume unmounting (GH #1467).</li> +<li>Resolve a wxWidgets 3.2.6 assertion error related to the undefined switch <code>use-dummy-sudo-password</code> (GH #1470).</li> +</ul> +</li> +</ul> + +<p><strong style="text-align:left">1.26.18</strong> (January 20<sup>th</sup>, 2025):</p> <ul> @@ -47,2 +75,3 @@ <li>Added support for SHA-256 x86 intrinsic to enhance the performance of PBKDF2-HMAC-SHA256.</li> +<li>Added support for AES hardware on ARM64 platforms (e.g. Windows ARM64, macOS on Apple Silicon Mx).</li> <li>Updated translations</li> @@ -53,4 +82,4 @@ <li>Dropped support for Windows 32-bit.</li> - <li>Set Windows 10 May 2020 Update (version 2004) as the minimum supported version.</li> - <li>Fixed driver deadlock under low-memory scenarios caused by re-entrant IRP completions.</li> + <li>Set Windows 10 October 2018 Update (version 1809) as the minimum supported version.</li> + <li>Reduce driver deadlock occurences under low-memory scenarios caused by re-entrant IRP completions.</li> <li>Fixed failed EFI detection on some PCs where the BootOrder variable is not defined (proposed by @kriegste, GH #360).</li> @@ -58,3 +87,7 @@ <li>Fixed various issues affecting the EFI system encryption configuration editor.</li> + <li>Fixed regression in Traveler Disk creation (GH #886)</li> <li>Replaced the deprecated CryptGenRandom with BCryptGenRandom for generating secure random bytes.</li> + <li>Use modern API to gather system entropy for random generation instead of obsolete ones.</li> + <li> Update LZMA SDK to version 24.09</li> + <li>Update libzip to version 1.11.2</li> </ul> @@ -63,4 +96,9 @@ <ul> + <li>CVE-2024-54187: Added absolute paths when executing system binaries to prevent path hijacking (collaboration with SivertPL @__tfr)</li> + <li>CVE-2025-23021: Prevent mounting volumes on system directories and PATH (reported by SivertPL @__tfr)</li> <li>Fixed an assertion issue with the wxWidgets library included in Ubuntu.</li> <li>Improved directory-opening logic by prioritizing xdg-open and adding fallback mechanisms.</li> + <li>Ensure that volume exists before starting the mount operation.</li> + <li>Fix "Password too long" error message not expanded to include max length (GH #1456)</li> + <li>Simplify sudo session detection logic.</li> </ul> @@ -69,3 +107,7 @@ <ul> + <li>CVE-2024-54187: Added absolute paths when executing system binaries to prevent path hijacking (collaboration with SivertPL @__tfr)</li> + <li>CVE-2025-23021: Prevent mounting volumes on system directories and PATH (reported by SivertPL @__tfr)</li> <li>Disabled screen capture by default. Added the --allow-screencapture CLI switch to enable it if needed.</li> + <li>Ensure that volume exists before starting the mount operation.</li> + <li>Implement sudo session detection logic</li> </ul> @@ -228,3 +270,3 @@ <li>Don't allow selecting exFAT/BTRFS filesytem if they are not present or not compatible with the created volume.</li> -<li>Fix wrong dismount message displayed when mounting a volume.</li> +<li>Fix wrong unmount message displayed when mounting a volume.</li> <li>Hide PIM during entry and re-ask PIM when user entered a wrong value.</li> @@ -476,3 +518,3 @@ <li>Add switch /signalExit to support notifying <a href="https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/waitfor" target="_blank">WAITFOR</a> Windows command when VeraCrypt.exe exits if /q was specified in CLI (cf documentation for usage).</li> -<li>Don't display mount/dismount examples in help dialog for command line in Format and Expander.</li> +<li>Don't display mount/unmount examples in help dialog for command line in Format and Expander.</li> <li>Documentation and translation updates.</li> @@ -750,3 +792,3 @@ <li>Fix current application losing focus when VeraCrypt is run in command line with /quit /silent switches.</li> -<li>Fix some cases of external applications freezing during mount/dismount.</li> +<li>Fix some cases of external applications freezing during mount/unmount.</li> <li>Fix rare cases of secure desktop for password dialog not visible which caused UI to block.</li> @@ -1039,3 +1081,3 @@ incorrect Impersonation Token Handling. </li></ul> </li><li>Add possibility to show system encryption password in Windows GUI and bootloader -</li><li>Solve "Class Already exists" error that was happening for some users. </li><li>Solve some menu items and GUI fields not translatable </li><li>Make volumes correctly report Physical Sector size to Windows. </li><li>Correctly detect switch user/RDP disconnect operations for autodismount on session locked. +</li><li>Solve "Class Already exists" error that was happening for some users. </li><li>Solve some menu items and GUI fields not translatable </li><li>Make volumes correctly report Physical Sector size to Windows. </li><li>Correctly detect switch user/RDP disconnect operations for autounmount on session locked. </li><li>Add manual selection of partition when resuming in-place encryption. </li><li>Add command line option (/cache f) to temporarily cache password during favorites mounting. @@ -1074,3 +1116,3 @@ incorrect Impersonation Token Handling. </li></ul> <ul> -<li>Solve issue volumes not auto-dismounting when quitting VeraCrypt<strong>.</strong> +<li>Solve issue volumes not auto-unmounting when quitting VeraCrypt<strong>.</strong> </li><li>Solve issue VeraCrypt window not reopening by clicking dock icon. </li></ul> @@ -1111,3 +1153,3 @@ incorrect Impersonation Token Handling. </li></ul> </li><li>Correct a random crash when clicking the link for more information on keyfiles -</li><li>Implement option to auto-dismount when user session is locked </li><li>Add self-test vectors for SHA-256 </li><li>Modern look-and-feel by enabling visual styles </li><li>few minor fixed. </li></ul> +</li><li>Implement option to auto-unmount when user session is locked </li><li>Add self-test vectors for SHA-256 </li><li>Modern look-and-feel by enabling visual styles </li><li>few minor fixed. </li></ul> </li></ul> diff --git a/doc/html/Removable Medium Volume.html b/doc/html/Removable Medium Volume.html index 63c59c55..2be8297c 100644 --- a/doc/html/Removable Medium Volume.html +++ b/doc/html/Removable Medium Volume.html @@ -49,4 +49,4 @@ NTFS health checks as <a href="https://blogs.msdn.microsoft.com/b8/2012/05/09/redesigning-chkdsk-and-the-new-ntfs-health-model/" target="_blank"> -explained here</a>. Big thanks to Liran Elharar for discovering this. </li><li>Windows may use caching methods and write delays that are normally used for removable media (for example, USB flash drives). This might slightly decrease the performance but at the same increase the likelihood that it will be possible to dismount the volume - quickly without having to force the dismount. </li><li>The operating system may tend to keep the number of handles it opens to such a volume to a minimum. Hence, volumes mounted as removable media might require fewer forced dismounts than other volumes. +explained here</a>. Big thanks to Liran Elharar for discovering this. </li><li>Windows may use caching methods and write delays that are normally used for removable media (for example, USB flash drives). This might slightly decrease the performance but at the same increase the likelihood that it will be possible to unmount the volume + quickly without having to force the unmount. </li><li>The operating system may tend to keep the number of handles it opens to such a volume to a minimum. Hence, volumes mounted as removable media might require fewer forced unmounts than other volumes. </li><li>Under Windows Vista and earlier, the ‘<em>Computer</em>’ (or ‘<em>My Computer</em>’) list does not show the amount of free space on volumes mounted as removable (note that this is a Windows limitation, not a bug in VeraCrypt). diff --git a/doc/html/Removing Encryption.html b/doc/html/Removing Encryption.html index c2baf5c6..3f3bf139 100644 --- a/doc/html/Removing Encryption.html +++ b/doc/html/Removing Encryption.html @@ -45,3 +45,3 @@ for non-system partition/drive). If you need to remove encryption (e.g., if you <li>Mount the VeraCrypt volume. </li><li>Move all files from the VeraCrypt volume to any location outside the VeraCrypt volume (note that the files will be decrypted on the fly). -</li><li>Dismount the VeraCrypt volume. </li><li>delete it (the container) just like you delete any other file. </li></ol> +</li><li>Unmount the VeraCrypt volume. </li><li>delete it (the container) just like you delete any other file. </li></ol> <p>If in-place decryption of non-system partitions/drives is not desired, it is also possible in this case to follow the steps 1-3 described above.<br> diff --git a/doc/html/Security Model.html b/doc/html/Security Model.html index 79e154d2..edac59d2 100644 --- a/doc/html/Security Model.html +++ b/doc/html/Security Model.html @@ -53,3 +53,3 @@ </li><li>Preserve/verify the integrity or authenticity of encrypted or decrypted data. -</li><li>Prevent traffic analysis when encrypted data is transmitted over a network. </li><li>Prevent an attacker from determining in which sectors of the volume the content changed (and when and how many times) if he or she can observe the volume (dismounted or mounted) before and after data is written to it, or if the storage medium/device allows +</li><li>Prevent traffic analysis when encrypted data is transmitted over a network. </li><li>Prevent an attacker from determining in which sectors of the volume the content changed (and when and how many times) if he or she can observe the volume (unmounted or mounted) before and after data is written to it, or if the storage medium/device allows the attacker to determine such information (for example, the volume resides on a device that saves metadata that can be used to determine when data was written to a particular sector). @@ -67,5 +67,5 @@ Known Issues & Limitations</a>). </li></ul> <em>Settings</em> > ‘<em>System Encryption</em>’ > ‘<em>Allow pre-boot authentication to be bypassed by pressing the Esc key</em>’; note that this option can be enabled or disabled only by an administrator). -</li><li>Dismount, using VeraCrypt, (and, in the VeraCrypt application window, see the path to and properties of) any VeraCrypt volume mounted by him or her. However, this does not apply to ‘system favorite volumes’, which he or she can dismount (etc.) +</li><li>Unmount, using VeraCrypt, (and, in the VeraCrypt application window, see the path to and properties of) any VeraCrypt volume mounted by him or her. However, this does not apply to ‘system favorite volumes’, which he or she can unmount (etc.) regardless of who mounted them (this can be prevented by enabling the option <em> -Settings</em> > ‘<em>System Favorite Volumes</em>’ > ‘<em>Allow</em> only administrators to view and dismount system favorite volumes in VeraCrypt’; note that this option can be enabled or disabled only by an administrator). +Settings</em> > ‘<em>System Favorite Volumes</em>’ > ‘<em>Allow</em> only administrators to view and unmount system favorite volumes in VeraCrypt’; note that this option can be enabled or disabled only by an administrator). </li><li>Create a file-hosted VeraCrypt volume containing a FAT or no file system (provided that the relevant folder permissions allow it). @@ -89,3 +89,3 @@ Settings</em> > ‘<em>System Favorite Volumes</em>’ > ‘<e <li>Mount any file-hosted or partition/device-hosted VeraCrypt volume provided that the file/device permissions allow it. -</li><li>Dismount, using VeraCrypt, (and, in the VeraCrypt application window, see the path to and properties of) any VeraCrypt volume mounted by him or her. +</li><li>Unmount, using VeraCrypt, (and, in the VeraCrypt application window, see the path to and properties of) any VeraCrypt volume mounted by him or her. </li><li>Create a file-hosted or partition/device-hosted VeraCrypt volume provided that the relevant folder/device permissions allow it. diff --git a/doc/html/Security Requirements for Hidden Volumes.html b/doc/html/Security Requirements for Hidden Volumes.html index 3b5dbdb3..7ac28c40 100644 --- a/doc/html/Security Requirements for Hidden Volumes.html +++ b/doc/html/Security Requirements for Hidden Volumes.html @@ -46,3 +46,3 @@ hidden VeraCrypt volume</a>, you must follow the security requirements and preca <li style="text-align:left; margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px"> -If an adversary has access to a (dismounted) VeraCrypt volume at several points over time, he may be able to determine which sectors of the volume are changing. If you change the contents of a +If an adversary has access to a (unmounted) VeraCrypt volume at several points over time, he may be able to determine which sectors of the volume are changing. If you change the contents of a <a href="Hidden%20Volume.html" style="text-align:left; color:#0080c0; text-decoration:none.html"> diff --git a/doc/html/Sharing over Network.html b/doc/html/Sharing over Network.html index 829838b9..f1969f0f 100644 --- a/doc/html/Sharing over Network.html +++ b/doc/html/Sharing over Network.html @@ -47,3 +47,3 @@ <em>System Favorite Volumes</em></a>).</p> -</li><li>A dismounted VeraCrypt file container is stored on a single computer (for example, on a server). This encrypted file is shared over a network. Users on other computers or systems will locally mount the shared file. Thus, the volume will be mounted simultaneously +</li><li>A unmounted VeraCrypt file container is stored on a single computer (for example, on a server). This encrypted file is shared over a network. Users on other computers or systems will locally mount the shared file. Thus, the volume will be mounted simultaneously under multiple operating systems. diff --git a/doc/html/System Favorite Volumes.html b/doc/html/System Favorite Volumes.html index 491a6698..3dd06b74 100644 --- a/doc/html/System Favorite Volumes.html +++ b/doc/html/System Favorite Volumes.html @@ -54,4 +54,4 @@ each time the operating system starts. </li></ul> System favorite volumes <strong>can be configured to be available within VeraCrypt only to users with administrator privileges -</strong>(select <em>Settings </em>> ‘<em>System Favorite Volumes</em>’ > ‘<em>Allow only administrators to view and dismount system favorite volumes in VeraCrypt</em>’). This option should be enabled on servers to ensure that - system favorite volumes cannot be dismounted by users without administrator privileges. On non-server systems, this option can be used to prevent normal VeraCrypt volume actions (such as ‘<em>Dismount All</em>’, auto-dismount, etc.) from affecting +</strong>(select <em>Settings </em>> ‘<em>System Favorite Volumes</em>’ > ‘<em>Allow only administrators to view and unmount system favorite volumes in VeraCrypt</em>’). This option should be enabled on servers to ensure that + system favorite volumes cannot be unmounted by users without administrator privileges. On non-server systems, this option can be used to prevent normal VeraCrypt volume actions (such as ‘<em>Unmount All</em>’, auto-unmount, etc.) from affecting system favorite volumes. 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.</p> diff --git a/doc/html/Troubleshooting.html b/doc/html/Troubleshooting.html index 3eece663..e3cfb49f 100644 --- a/doc/html/Troubleshooting.html +++ b/doc/html/Troubleshooting.html @@ -316,3 +316,3 @@ Replace the motherboard with a different one (different type and/or brand). </li <div style="text-align:left; margin-top:19px; margin-bottom:19px; padding-top:0px; padding-bottom:0px"> -<em style="text-align:left">When mounting or dismounting a VeraCrypt volume, the system crashes (a 'blue screen' error screen appears or the +<em style="text-align:left">When mounting or unmounting a VeraCrypt volume, the system crashes (a 'blue screen' error screen appears or the <span style="text-align:left">computer abruptly restarts)</span>.</em></div> diff --git a/doc/html/Unencrypted Data in RAM.html b/doc/html/Unencrypted Data in RAM.html index 9c4de777..96fe5813 100644 --- a/doc/html/Unencrypted Data in RAM.html +++ b/doc/html/Unencrypted Data in RAM.html @@ -42,7 +42,7 @@ It is important to note that VeraCrypt is <em style="text-align:left">disk</em> Keep in mind that most programs do not clear the memory area (buffers) in which they store unencrypted (portions of) files they load from a VeraCrypt volume. This means that after you exit such a program, unencrypted data it worked with may remain in memory - (RAM) until the computer is turned off (and, according to some researchers, even for some time after the power is turned off*). Also note that if you open a file stored on a VeraCrypt volume, for example, in a text editor and then force dismount on the VeraCrypt - volume, then the file will remain unencrypted in the area of memory (RAM) used by (allocated to) the text editor. This also applies to forced auto-dismount.</div> + (RAM) until the computer is turned off (and, according to some researchers, even for some time after the power is turned off*). Also note that if you open a file stored on a VeraCrypt volume, for example, in a text editor and then force unmount on the VeraCrypt + volume, then the file will remain unencrypted in the area of memory (RAM) used by (allocated to) the text editor. This also applies to forced auto-unmount.</div> <div style="text-align:left; margin-top:19px; margin-bottom:19px; padding-top:0px; padding-bottom:0px"> -Inherently, unencrypted master keys have to be stored in RAM too. When a non-system VeraCrypt volume is dismounted, VeraCrypt erases its master keys (stored in RAM). When the computer is cleanly restarted (or cleanly shut down), all non-system VeraCrypt volumes - are automatically dismounted and, thus, all master keys stored in RAM are erased by the VeraCrypt driver (except master keys for system partitions/drives — see below). However, when power supply is abruptly interrupted, when the computer is reset (not +Inherently, unencrypted master keys have to be stored in RAM too. When a non-system VeraCrypt volume is unmounted, VeraCrypt erases its master keys (stored in RAM). When the computer is cleanly restarted (or cleanly shut down), all non-system VeraCrypt volumes + are automatically unmounted and, thus, all master keys stored in RAM are erased by the VeraCrypt driver (except master keys for system partitions/drives — see below). However, when power supply is abruptly interrupted, when the computer is reset (not cleanly restarted), or when the system crashes, <strong style="text-align:left"> @@ -72,5 +72,5 @@ Hibernation File</a>).</td> (e.g. -50 °C). New types of memory modules allegedly exhibit a much shorter decay time (e.g. 1.5-2.5 seconds) than older types (as of 2008).</span><br style="text-align:left"> -<span style="text-align:left; font-size:10px; line-height:12px">** Before a key can be erased from RAM, the corresponding VeraCrypt volume must be dismounted. For non-system volumes, this does not cause any problems. However, as Microsoft currently does not - provide any appropriate API for handling the final phase of the system shutdown process, paging files located on encrypted system volumes that are dismounted during the system shutdown process may still contain valid swapped-out memory pages (including portions - of Windows system files). This could cause 'blue screen' errors. Therefore, to prevent 'blue screen' errors, VeraCrypt does not dismount encrypted system volumes and consequently cannot clear the master keys of the system volumes when the system is shut down +<span style="text-align:left; font-size:10px; line-height:12px">** Before a key can be erased from RAM, the corresponding VeraCrypt volume must be unmounted. For non-system volumes, this does not cause any problems. However, as Microsoft currently does not + provide any appropriate API for handling the final phase of the system shutdown process, paging files located on encrypted system volumes that are unmounted during the system shutdown process may still contain valid swapped-out memory pages (including portions + of Windows system files). This could cause 'blue screen' errors. Therefore, to prevent 'blue screen' errors, VeraCrypt does not unmount encrypted system volumes and consequently cannot clear the master keys of the system volumes when the system is shut down or restarted.</span></p> diff --git a/doc/html/Using VeraCrypt Without Administrator Privileges.html b/doc/html/Using VeraCrypt Without Administrator Privileges.html index 742ae0e9..1bb1bbb9 100644 --- a/doc/html/Using VeraCrypt Without Administrator Privileges.html +++ b/doc/html/Using VeraCrypt Without Administrator Privileges.html @@ -42,3 +42,3 @@ <br> -After a system administrator installs VeraCrypt on the system, users without administrator privileges will be able to run VeraCrypt, mount/dismount any type of VeraCrypt volume, load/save data from/to it, and create file-hosted VeraCrypt volumes on the system. +After a system administrator installs VeraCrypt on the system, users without administrator privileges will be able to run VeraCrypt, mount/unmount any type of VeraCrypt volume, load/save data from/to it, and create file-hosted VeraCrypt volumes on the system. However, users without administrator privileges cannot encrypt/format partitions, cannot create NTFS volumes, cannot install/uninstall VeraCrypt, cannot change passwords/keyfiles for VeraCrypt partitions/devices, cannot backup/restore headers of VeraCrypt diff --git a/doc/html/VeraCrypt Background Task.html b/doc/html/VeraCrypt Background Task.html index 2ded6d50..bc56155b 100644 --- a/doc/html/VeraCrypt Background Task.html +++ b/doc/html/VeraCrypt Background Task.html @@ -41,3 +41,3 @@ <ol> -<li>Hot keys </li><li>Auto-dismount (e.g., upon logoff, inadvertent host device removal, time-out, etc.) +<li>Hot keys </li><li>Auto-unmount (e.g., upon logoff, inadvertent host device removal, time-out, etc.) </li><li>Auto-mount of favorite volumes </li><li>Notifications (e.g., when damage to hidden volume is prevented) </li><li>Tray icon </li></ol> diff --git a/doc/html/VeraCrypt Hidden Operating System.html b/doc/html/VeraCrypt Hidden Operating System.html index 8881b925..fcaeef57 100644 --- a/doc/html/VeraCrypt Hidden Operating System.html +++ b/doc/html/VeraCrypt Hidden Operating System.html @@ -221,3 +221,3 @@ When an attacker gets hold of your computer when a VeraCrypt volume is mounted ( limit the time the volume is mounted to a minimum. Obviously, this may be impossible or difficult if the sensitive data is stored on an encrypted system partition or on an entirely encrypted system drive (because you would also have to limit the time you work - with the computer to a minimum). Hence, you can answer that you created a separate partition (encrypted with a different key than your system partition) for your most sensitive data and that you mount it only when necessary and dismount it as soon as possible + with the computer to a minimum). Hence, you can answer that you created a separate partition (encrypted with a different key than your system partition) for your most sensitive data and that you mount it only when necessary and unmount it as soon as possible (so as to limit the time the volume is mounted to a minimum). On the system partition, you store data that is less sensitive (but which you need to access often) than data you store on the non-system partition (i.e. on the outer volume). diff --git a/doc/html/VeraCrypt RAM Encryption.html b/doc/html/VeraCrypt RAM Encryption.html index 5bfb6aa5..033a4522 100644 --- a/doc/html/VeraCrypt RAM Encryption.html +++ b/doc/html/VeraCrypt RAM Encryption.html @@ -60,3 +60,3 @@ <li>For each I/O request for a volume, the master keys are decrypted only for the duration of that request and then securely wiped.</li> - <li>Upon volume dismounting, the encrypted master keys are securely removed from memory.</li> + <li>Upon volume unmounting, the encrypted master keys are securely removed from memory.</li> <li>At Windows shutdown or reboot, the memory region allocated during startup is securely wiped.</li> diff --git a/doc/html/donation.js b/doc/html/donation.js new file mode 100644 index 00000000..2718bbc9 --- /dev/null +++ b/doc/html/donation.js @@ -0,0 +1,9 @@ +document.addEventListener('DOMContentLoaded', function() { + document.getElementById('currency-form').addEventListener('submit', function(e) { + e.preventDefault(); + const select = this.querySelector('select'); + if (select.value) { + window.open(select.value, '_blank'); + } + }); +}); diff --git a/doc/html/ru/Command Line Usage.html b/doc/html/ru/Command Line Usage.html index c3fc1efe..e0d41dfa 100644 --- a/doc/html/ru/Command Line Usage.html +++ b/doc/html/ru/Command Line Usage.html @@ -84,3 +84,3 @@ <tr> -<td> <em>/dismount</em> или <em>/d</em></td> +<td> <em>/unmount</em> или <em>/d</em></td> <td>Размонтировать том с указанной буквой диска (пример: <code>/d x</code>). Если буква диска не указана, то будут размонтированы все смонтированные на данный момент тома VeraCrypt.</td> diff --git a/doc/html/ru/Documentation.html b/doc/html/ru/Documentation.html index 00fcc0ea..81f74c84 100644 --- a/doc/html/ru/Documentation.html +++ b/doc/html/ru/Documentation.html @@ -61,3 +61,3 @@ </li></ul> -</li><li><strong><a href="Normal%20Dismount%20vs%20Force%20Dismount.html">Обычное размонтирование против принудительного</a></strong> +</li><li><strong><a href="Normal%20Unmount%20vs%20Force%20Unmount.html">Обычное размонтирование против принудительного</a></strong> </li><li><strong><a href="Avoid%20Third-Party%20File%20Extensions.html">О рисках, связанных со сторонними расширениями файлов</a></strong> diff --git a/doc/html/ru/Legal Information.html b/doc/html/ru/Legal Information.html index e9d6324e..05a91b81 100644 --- a/doc/html/ru/Legal Information.html +++ b/doc/html/ru/Legal Information.html @@ -45,6 +45,6 @@ <br> -Copyright © 2013-2024 IDRIX. Все права защищены.<br> +Copyright © 2013-2025 IDRIX. Все права защищены.<br> <br> На части данного ПО:</p> -<p>Copyright © 2013-2024 IDRIX. Все права защищены.<br> +<p>Copyright © 2013-2025 IDRIX. Все права защищены.<br> <br> diff --git a/doc/html/ru/Normal Dismount vs Force Dismount.html b/doc/html/ru/Normal Unmount vs Force Unmount.html index 1bc91dcf..1d02e6db 100644 --- a/doc/html/ru/Normal Dismount vs Force Dismount.html +++ b/doc/html/ru/Normal Unmount vs Force Unmount.html @@ -31,3 +31,3 @@ <img src="arrow_right.gif" alt=">>" style="margin-top: 5px"> -<a href="Normal%20Dismount%20vs%20Force%20Dismount.html">Чем обычное размонтирование отличается от принудительного</a> +<a href="Normal%20Unmount%20vs%20Force%20Unmount.html">Чем обычное размонтирование отличается от принудительного</a> </p></div> @@ -65,3 +65,3 @@ <li>Через настройки программы, включив опцию <em>Принудительное авторазмонтирование даже при открытых файлах или папках</em> в группе параметров <em>Автоматическое размонтирование</em>.</li> - <li>Через командную строку, указав ключ /force или /f вместе с ключом /d или /dismount.</li> + <li>Через командную строку, указав ключ /force или /f вместе с ключом /d или /unmount.</li> </ol> diff --git a/doc/html/ru/Release Notes.html b/doc/html/ru/Release Notes.html index b761deb5..8e867f78 100644 --- a/doc/html/ru/Release Notes.html +++ b/doc/html/ru/Release Notes.html @@ -45,3 +45,3 @@ VeraCrypt старее, чем 1.18a.</span></li> -<p><strong style="text-align:left">1.26.17</strong> (24 ноября 2024 года):</p> +<p><strong style="text-align:left">1.26.20</strong> (3 февраля 2025 года):</p> <ul> @@ -49,4 +49,5 @@ VeraCrypt старее, чем 1.18a.</span></li> <ul> - <li>Добавлена поддержка SHA-256 x86 intrinsic для повышения производительности PBKDF2-HMAC-SHA256.</li> + <li>Ускорено вычисление SHA-256 на платформах ARM64 с помощью инструкций процессора.</li> <li>Обновлены переводы.</li> + <li>Во всём интерфейсе и документации (на английском языке) термин "Dismount" заменён на "Unmount" для соответствия ИТ-стандартам.</li> </ul> @@ -55,9 +56,41 @@ VeraCrypt старее, чем 1.18a.</span></li> <ul> + <li>Устранена регрессия в драйвере, приводившая к постоянному разрешению дефрагментации и вызывавшая другие побочные эффекты.</li> + <li>Восстановлен предыдущий метод сбора системной энтропии из-за сообщений пользователей о проблемах со стабильностью.</li> + </ul> +</li> +<li><strong>Linux:</strong> + <ul> + <li>Исправлена регрессия в Linux Mint, влияющая на аутентификацию администратора по паролю (GH #1473).</li> + </ul> +</li> +<li><strong>macOS:</strong> + <ul> + <li>Исправлена регрессия, из-за которой было невозможно размонтировать тома (GH #1467).</li> + <li>Исправлена ошибка утверждения wxWidgets 3.2.6, связанная с неопределённым параметром <code>use-dummy-sudo-password</code> (GH #1470).</li> + </ul> +</li> +</ul> + +<p><strong style="text-align:left">1.26.18</strong> (20 января 2025 года):</p> +<ul> +<li><strong>Все ОС:</strong> + <ul> + <li>Добавлена поддержка встроенного интерфейса SHA-256 x86 для ускорения PBKDF2-HMAC-SHA256.</li> + <li>Добавлена поддержка аппаратного шифрования AES на платформах ARM64 (например, Windows ARM64, macOS на компьютерах с процессорами Apple Silicon Mx).</li> + <li>Обновлены переводы.</li> +</ul> +</li> +<li><strong>Windows:</strong> + <ul> <li>Прекращена поддержка 32-разрядных версий Windows.</li> - <li>Минимально поддерживаемая версия Windows — обновление от 10 мая 2020 года (версия 2004).</li> - <li>Исправлена блокировка драйвера при низком объёме памяти, вызванная повторяющимися завершениями IRP.</li> - <li>Исправлено определение EFI на некоторых ПК, где не определена переменная BootOrder (предложено @kriegste, GH #360).</li> - <li>Исправлена ошибка отказа в доступе при обновлении VeraCrypt с использованием EXE-установщика после обновления Windows.</li> - <li>Исправлены различные проблемы, связанные с редактором конфигурации шифрования EFI-системы.</li> - <li>Для генерации безопасных случайных данных теперь вместо устаревшего CryptGenRandom применяется BCryptGenRandom.</li> + <li>Минимально поддерживаемая версия Windows 10 – обновление от октября 2018 года (версия 1809).</li> + <li>Уменьшена вероятность взаимоблокировок драйверов при нехватке памяти из-за повторных завершений IRP.</li> + <li>Исправлено определение EFI на некоторых компьютерах, где не определена переменная BootOrder (предложено @kriegste, GH #360).</li> + <li>Исправлена ошибка отказа в доступе при обновлении VeraCrypt с помощью EXE-установщика после обновления Windows.</li> + <li>Исправлены различные проблемы, влияющие на редактор конфигурации шифрования EFI-системы.</li> + <li>Исправлена регрессия при создании Переносного (Traveler) диска (GH #886).</li> + <li>Теперь для генерации безопасных случайных данных вместо устаревшего CryptGenRandom применяется BCryptGenRandom.</li> + <li>Сбор системной энтропии для генерации случайных данных выполняется с помощью современного API вместо устаревших способов.</li> + <li>LZMA SDK обновлён до версии 24.09.</li> + <li>Библиотека libzip обновлена до версии 1.11.2.</li> </ul> @@ -66,4 +99,9 @@ VeraCrypt старее, чем 1.18a.</span></li> <ul> - <li>Исправлена ошибка утверждения в библиотеке wxWidgets, включённой в Ubuntu.</li> + <li>CVE-2024-54187: Добавлены абсолютные пути при выполнении системных двоичных файлов для предотвращения перехвата пути (сотрудничество с SivertPL @__tfr).</li> + <li>CVE-2025-23021: Запрещено монтирование томов к системным каталогам и пути к ним (сообщил SivertPL @__tfr).</li> + <li>Исправлена ошибка утверждения во включённой в Ubuntu библиотеке wxWidgets.</li> <li>Улучшена логика открытия каталогов: теперь в первую очередь используется xdg-open с добавлением резервных механизмов.</li> + <li>Перед началом монтирования проверяется, что том существует.</li> + <li>Исправлено сообщение об ошибке "Слишком длинный Пароль", не расширенное до максимальной длины (GH #1456).</li> + <li>Упрощена логика обнаружения сеанса sudo.</li> </ul> @@ -72,3 +110,7 @@ VeraCrypt старее, чем 1.18a.</span></li> <ul> - <li>Захват экрана по умолчанию отключён. Если вам требуется эта функция, используйте параметр командной строки --allow-screencapture.</li> + <li>CVE-2024-54187: Добавлены абсолютные пути при выполнении системных двоичных файлов для предотвращения перехвата пути (сотрудничество с SivertPL @__tfr).</li> + <li>CVE-2025-23021: Запрещено монтирование томов к системным каталогам и пути к ним (сообщил SivertPL @__tfr).</li> + <li>Захват экрана по умолчанию отключён. Если вам требуется эта функция, используйте ключ --allow-screencapture в командной строке.</li> + <li>Перед началом монтирования проверяется, что том существует.</li> + <li>Реализована логика обнаружения сеанса sudo.</li> </ul> diff --git a/doc/html/styles.css b/doc/html/styles.css index 6d9a5695..84c1515d 100644 --- a/doc/html/styles.css +++ b/doc/html/styles.css @@ -31 +31,52 @@ } + +#currency-form select:hover, #currency-form input[type="submit"]:hover { + background-color: #111111; + color: white; +} + +#currency-form select { + border: 1px solid #08aad7; + border-radius: 3px; +} + +#currency-form input[type="submit"] { + border-radius: 3px; +} + +.donation-buttons { + display: flex; + flex-wrap: wrap; + gap: 15px; + margin: 20px 0; +} + +.donation-button { + display: flex; + flex-direction: column; + align-items: center; + min-width: 100px; +} + +.donation-button a { + display: block; + text-decoration: none; +} + +.donation-button img { + display: block; + max-width: 100%; + height: auto; +} + +.currency-label { + margin-top: 5px; + text-align: center; + font-size: 0.9em; +} + +.donation-button a:hover { + opacity: 0.9; + transform: translateY(-1px); + transition: all 0.2s ease; +} diff --git a/src/Boot/Windows/Bios.h b/src/Boot/Windows/Bios.h index 0282fad7..a8a3c731 100644 --- a/src/Boot/Windows/Bios.h +++ b/src/Boot/Windows/Bios.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/BootCommon.h b/src/Boot/Windows/BootCommon.h index 45a1a650..38cd4361 100644 --- a/src/Boot/Windows/BootCommon.h +++ b/src/Boot/Windows/BootCommon.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/BootConfig.cpp b/src/Boot/Windows/BootConfig.cpp index 948dfd93..77286f92 100644 --- a/src/Boot/Windows/BootConfig.cpp +++ b/src/Boot/Windows/BootConfig.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/BootConfig.h b/src/Boot/Windows/BootConfig.h index 5338109f..27270c56 100644 --- a/src/Boot/Windows/BootConfig.h +++ b/src/Boot/Windows/BootConfig.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/BootConsoleIo.cpp b/src/Boot/Windows/BootConsoleIo.cpp index 046f580b..e1dea4ed 100644 --- a/src/Boot/Windows/BootConsoleIo.cpp +++ b/src/Boot/Windows/BootConsoleIo.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/BootConsoleIo.h b/src/Boot/Windows/BootConsoleIo.h index cf10d2c6..99ae860d 100644 --- a/src/Boot/Windows/BootConsoleIo.h +++ b/src/Boot/Windows/BootConsoleIo.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/BootDebug.cpp b/src/Boot/Windows/BootDebug.cpp index b490f5e8..9295cd31 100644 --- a/src/Boot/Windows/BootDebug.cpp +++ b/src/Boot/Windows/BootDebug.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/BootDebug.h b/src/Boot/Windows/BootDebug.h index 35fce41f..febb12af 100644 --- a/src/Boot/Windows/BootDebug.h +++ b/src/Boot/Windows/BootDebug.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/BootDefs.h b/src/Boot/Windows/BootDefs.h index 3d65f0a0..8191fb71 100644 --- a/src/Boot/Windows/BootDefs.h +++ b/src/Boot/Windows/BootDefs.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/BootDiskIo.cpp b/src/Boot/Windows/BootDiskIo.cpp index ddd00e1c..f9ac359a 100644 --- a/src/Boot/Windows/BootDiskIo.cpp +++ b/src/Boot/Windows/BootDiskIo.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/BootDiskIo.h b/src/Boot/Windows/BootDiskIo.h index 0b92aa29..7936430c 100644 --- a/src/Boot/Windows/BootDiskIo.h +++ b/src/Boot/Windows/BootDiskIo.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/BootEncryptedIo.cpp b/src/Boot/Windows/BootEncryptedIo.cpp index 24fbbbd0..731fae44 100644 --- a/src/Boot/Windows/BootEncryptedIo.cpp +++ b/src/Boot/Windows/BootEncryptedIo.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/BootEncryptedIo.h b/src/Boot/Windows/BootEncryptedIo.h index d2fa6d96..1ada93ec 100644 --- a/src/Boot/Windows/BootEncryptedIo.h +++ b/src/Boot/Windows/BootEncryptedIo.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/BootMain.cpp b/src/Boot/Windows/BootMain.cpp index f6024d34..9f4b8613 100644 --- a/src/Boot/Windows/BootMain.cpp +++ b/src/Boot/Windows/BootMain.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/BootMain.h b/src/Boot/Windows/BootMain.h index af445024..77a662b4 100644 --- a/src/Boot/Windows/BootMain.h +++ b/src/Boot/Windows/BootMain.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/BootMemory.cpp b/src/Boot/Windows/BootMemory.cpp index 9eed757f..2fedb308 100644 --- a/src/Boot/Windows/BootMemory.cpp +++ b/src/Boot/Windows/BootMemory.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/BootMemory.h b/src/Boot/Windows/BootMemory.h index 183c4469..96f56374 100644 --- a/src/Boot/Windows/BootMemory.h +++ b/src/Boot/Windows/BootMemory.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/BootStrings.h b/src/Boot/Windows/BootStrings.h index b7cfe703..4d0dd3b4 100644 --- a/src/Boot/Windows/BootStrings.h +++ b/src/Boot/Windows/BootStrings.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/IntFilter.cpp b/src/Boot/Windows/IntFilter.cpp index 36837d58..5ec07622 100644 --- a/src/Boot/Windows/IntFilter.cpp +++ b/src/Boot/Windows/IntFilter.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/IntFilter.h b/src/Boot/Windows/IntFilter.h index 65b0c7ce..e9625b64 100644 --- a/src/Boot/Windows/IntFilter.h +++ b/src/Boot/Windows/IntFilter.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/Platform.cpp b/src/Boot/Windows/Platform.cpp index 3b94d22c..f592e26d 100644 --- a/src/Boot/Windows/Platform.cpp +++ b/src/Boot/Windows/Platform.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/Platform.h b/src/Boot/Windows/Platform.h index 1c41ec03..cec9d0c7 100644 --- a/src/Boot/Windows/Platform.h +++ b/src/Boot/Windows/Platform.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Boot/Windows/Release/BootLoader.com.gz b/src/Boot/Windows/Release/BootLoader.com.gz Binary files differindex 248f7833..23c921f8 100644 --- a/src/Boot/Windows/Release/BootLoader.com.gz +++ b/src/Boot/Windows/Release/BootLoader.com.gz diff --git a/src/Boot/Windows/Release_AES/BootLoader.com.gz b/src/Boot/Windows/Release_AES/BootLoader.com.gz Binary files differindex a674bb0b..ab262fed 100644 --- a/src/Boot/Windows/Release_AES/BootLoader.com.gz +++ b/src/Boot/Windows/Release_AES/BootLoader.com.gz diff --git a/src/Boot/Windows/Release_AES_SHA2/BootLoader.com.gz b/src/Boot/Windows/Release_AES_SHA2/BootLoader.com.gz Binary files differindex 298b3ac2..25a89b3e 100644 --- a/src/Boot/Windows/Release_AES_SHA2/BootLoader.com.gz +++ b/src/Boot/Windows/Release_AES_SHA2/BootLoader.com.gz diff --git a/src/Boot/Windows/Release_Camellia/BootLoader.com.gz b/src/Boot/Windows/Release_Camellia/BootLoader.com.gz Binary files differindex b8cbc0a9..5cf49d63 100644 --- a/src/Boot/Windows/Release_Camellia/BootLoader.com.gz +++ b/src/Boot/Windows/Release_Camellia/BootLoader.com.gz diff --git a/src/Boot/Windows/Release_Camellia_SHA2/BootLoader.com.gz b/src/Boot/Windows/Release_Camellia_SHA2/BootLoader.com.gz Binary files differindex 62b2b111..2a231431 100644 --- a/src/Boot/Windows/Release_Camellia_SHA2/BootLoader.com.gz +++ b/src/Boot/Windows/Release_Camellia_SHA2/BootLoader.com.gz diff --git a/src/Boot/Windows/Release_SHA2/BootLoader.com.gz b/src/Boot/Windows/Release_SHA2/BootLoader.com.gz Binary files differindex f660e397..33413df5 100644 --- a/src/Boot/Windows/Release_SHA2/BootLoader.com.gz +++ b/src/Boot/Windows/Release_SHA2/BootLoader.com.gz diff --git a/src/Boot/Windows/Release_Serpent/BootLoader.com.gz b/src/Boot/Windows/Release_Serpent/BootLoader.com.gz Binary files differindex 2526d68b..7f330347 100644 --- a/src/Boot/Windows/Release_Serpent/BootLoader.com.gz +++ b/src/Boot/Windows/Release_Serpent/BootLoader.com.gz diff --git a/src/Boot/Windows/Release_Serpent_SHA2/BootLoader.com.gz b/src/Boot/Windows/Release_Serpent_SHA2/BootLoader.com.gz Binary files differindex 1446855b..50592bba 100644 --- a/src/Boot/Windows/Release_Serpent_SHA2/BootLoader.com.gz +++ b/src/Boot/Windows/Release_Serpent_SHA2/BootLoader.com.gz diff --git a/src/Boot/Windows/Release_Twofish/BootLoader.com.gz b/src/Boot/Windows/Release_Twofish/BootLoader.com.gz Binary files differindex f9463c1c..64d147af 100644 --- a/src/Boot/Windows/Release_Twofish/BootLoader.com.gz +++ b/src/Boot/Windows/Release_Twofish/BootLoader.com.gz diff --git a/src/Boot/Windows/Release_Twofish_SHA2/BootLoader.com.gz b/src/Boot/Windows/Release_Twofish_SHA2/BootLoader.com.gz Binary files differindex e736e85e..8b4664fe 100644 --- a/src/Boot/Windows/Release_Twofish_SHA2/BootLoader.com.gz +++ b/src/Boot/Windows/Release_Twofish_SHA2/BootLoader.com.gz diff --git a/src/Boot/Windows/Rescue/BootLoader.com.gz b/src/Boot/Windows/Rescue/BootLoader.com.gz Binary files differindex 2e852d6c..a12b1cab 100644 --- a/src/Boot/Windows/Rescue/BootLoader.com.gz +++ b/src/Boot/Windows/Rescue/BootLoader.com.gz diff --git a/src/Boot/Windows/Rescue_AES/BootLoader.com.gz b/src/Boot/Windows/Rescue_AES/BootLoader.com.gz Binary files differindex ff0f10a8..edbe080b 100644 --- a/src/Boot/Windows/Rescue_AES/BootLoader.com.gz +++ b/src/Boot/Windows/Rescue_AES/BootLoader.com.gz diff --git a/src/Boot/Windows/Rescue_AES_SHA2/BootLoader.com.gz b/src/Boot/Windows/Rescue_AES_SHA2/BootLoader.com.gz Binary files differindex 2218aced..c10db1c7 100644 --- a/src/Boot/Windows/Rescue_AES_SHA2/BootLoader.com.gz +++ b/src/Boot/Windows/Rescue_AES_SHA2/BootLoader.com.gz diff --git a/src/Boot/Windows/Rescue_Camellia/BootLoader.com.gz b/src/Boot/Windows/Rescue_Camellia/BootLoader.com.gz Binary files differindex 88db9603..c260583a 100644 --- a/src/Boot/Windows/Rescue_Camellia/BootLoader.com.gz +++ b/src/Boot/Windows/Rescue_Camellia/BootLoader.com.gz diff --git a/src/Boot/Windows/Rescue_Camellia_SHA2/BootLoader.com.gz b/src/Boot/Windows/Rescue_Camellia_SHA2/BootLoader.com.gz Binary files differindex 57ff5be5..04c98ddb 100644 --- a/src/Boot/Windows/Rescue_Camellia_SHA2/BootLoader.com.gz +++ b/src/Boot/Windows/Rescue_Camellia_SHA2/BootLoader.com.gz diff --git a/src/Boot/Windows/Rescue_SHA2/BootLoader.com.gz b/src/Boot/Windows/Rescue_SHA2/BootLoader.com.gz Binary files differindex a95efbfb..fdddea41 100644 --- a/src/Boot/Windows/Rescue_SHA2/BootLoader.com.gz +++ b/src/Boot/Windows/Rescue_SHA2/BootLoader.com.gz diff --git a/src/Boot/Windows/Rescue_Serpent/BootLoader.com.gz b/src/Boot/Windows/Rescue_Serpent/BootLoader.com.gz Binary files differindex 944f5d81..27b9418a 100644 --- a/src/Boot/Windows/Rescue_Serpent/BootLoader.com.gz +++ b/src/Boot/Windows/Rescue_Serpent/BootLoader.com.gz diff --git a/src/Boot/Windows/Rescue_Serpent_SHA2/BootLoader.com.gz b/src/Boot/Windows/Rescue_Serpent_SHA2/BootLoader.com.gz Binary files differindex fff9856b..5fbde6fc 100644 --- a/src/Boot/Windows/Rescue_Serpent_SHA2/BootLoader.com.gz +++ b/src/Boot/Windows/Rescue_Serpent_SHA2/BootLoader.com.gz diff --git a/src/Boot/Windows/Rescue_Twofish/BootLoader.com.gz b/src/Boot/Windows/Rescue_Twofish/BootLoader.com.gz Binary files differindex 79281133..06df2b66 100644 --- a/src/Boot/Windows/Rescue_Twofish/BootLoader.com.gz +++ b/src/Boot/Windows/Rescue_Twofish/BootLoader.com.gz diff --git a/src/Boot/Windows/Rescue_Twofish_SHA2/BootLoader.com.gz b/src/Boot/Windows/Rescue_Twofish_SHA2/BootLoader.com.gz Binary files differindex 40960c8a..375de162 100644 --- a/src/Boot/Windows/Rescue_Twofish_SHA2/BootLoader.com.gz +++ b/src/Boot/Windows/Rescue_Twofish_SHA2/BootLoader.com.gz diff --git a/src/Build/CMakeLists.txt b/src/Build/CMakeLists.txt index b8a7c8ad..e3426495 100644 --- a/src/Build/CMakeLists.txt +++ b/src/Build/CMakeLists.txt @@ -13,4 +13,4 @@ endif() # - Set version of the package -set( FULL_VERSION "1.26.17" ) -set( VERSION "1.26.17" ) +set( FULL_VERSION "1.26.20" ) +set( VERSION "1.26.20" ) set( RELEASE "1" ) @@ -254,3 +254,15 @@ if ( ( PLATFORM STREQUAL "Debian" ) OR ( PLATFORM STREQUAL "Ubuntu" ) ) set( CPACK_DEBIAN_FILE_NAME ${CPACK_PACKAGE_FILE_NAME}.deb ) # mandatory - set( CPACK_DEBIAN_PACKAGE_VERSION ${CPACK_PACKAGE_VERSION} ) # mandatory + # -- Use a distro-specific version string to avoid repository conflicts -- + # e.g. 1.26.17-1~deb11, 1.26.17-1~deb12, 1.26.17-1~ubuntu20.04, etc. + if (PLATFORM STREQUAL "Ubuntu") + # For something like "24.04", it becomes 1.26.17-1~ubuntu24.04 + set(CPACK_DEBIAN_PACKAGE_VERSION + "${VERSION}-${RELEASE}~ubuntu${PLATFORM_VERSION}") + else() # Debian + # Usually just take the major number from e.g. "11.7" => "11" + string(REGEX MATCH "^[0-9]+" PLATFORM_VERSION_MAJOR "${PLATFORM_VERSION}") + set(CPACK_DEBIAN_PACKAGE_VERSION + "${VERSION}-${RELEASE}~deb${PLATFORM_VERSION_MAJOR}") + endif() + set( CPACK_DEBIAN_PACKAGE_RELEASE ${CPACK_PACKAGE_RELEASE} ) diff --git a/src/Build/Include/Makefile.inc b/src/Build/Include/Makefile.inc index 11ab12c2..281d206a 100644 --- a/src/Build/Include/Makefile.inc +++ b/src/Build/Include/Makefile.inc @@ -16,3 +16,3 @@ clean: @echo Cleaning $(NAME) - rm -f $(APPNAME) $(NAME).a $(OBJS) $(OBJSEX) $(OBJSNOOPT) $(OBJSHANI) $(OBJSSSE41) $(OBJSSSSE3) $(OBJS:.o=.d) $(OBJSEX:.oo=.d) $(OBJSNOOPT:.o0=.d) $(OBJSHANI:.oshani=.d) $(OBJSSSE41:.osse41=.d) $(OBJSSSSE3:.ossse3=.d) *.gch + rm -f $(APPNAME) $(NAME).a $(OBJS) $(OBJSEX) $(OBJSNOOPT) $(OBJSHANI) $(OBJSSSE41) $(OBJSSSSE3) $(OBJARMV8CRYPTO) $(OBJS:.o=.d) $(OBJSEX:.oo=.d) $(OBJSNOOPT:.o0=.d) $(OBJSHANI:.oshani=.d) $(OBJSSSE41:.osse41=.d) $(OBJSSSSE3:.ossse3=.d) $(OBJARMV8CRYPTO:.oarmv8crypto=.d) *.gch @@ -38,2 +38,6 @@ clean: +%.oarmv8crypto: %.c + @echo Compiling $(<F) + $(CC) $(CFLAGS) -march=armv8-a+crypto -c $< -o $@ + %.o: %.cpp @@ -98,8 +102,8 @@ TR_SED_BIN := tr '\n' ' ' | tr -s ' ' ',' | sed -e 's/^,//g' -e 's/,$$/n/' | tr # Dependencies --include $(OBJS:.o=.d) $(OBJSEX:.oo=.d) $(OBJSNOOPT:.o0=.d) $(OBJSHANI:.oshani=.d) $(OBJSSSE41:.osse41=.d) $(OBJSSSSE3:.ossse3=.d) +-include $(OBJS:.o=.d) $(OBJSEX:.oo=.d) $(OBJSNOOPT:.o0=.d) $(OBJSHANI:.oshani=.d) $(OBJSSSE41:.osse41=.d) $(OBJSSSSE3:.ossse3=.d) $(OBJARMV8CRYPTO:.oarmv8crypto=.d) -$(NAME).a: $(OBJS) $(OBJSEX) $(OBJSNOOPT) $(OBJSHANI) $(OBJSSSE41) $(OBJSSSSE3) +$(NAME).a: $(OBJS) $(OBJSEX) $(OBJSNOOPT) $(OBJSHANI) $(OBJSSSE41) $(OBJSSSSE3) $(OBJARMV8CRYPTO) @echo Updating library $@ - $(AR) $(AFLAGS) -rcu $@ $(OBJS) $(OBJSEX) $(OBJSNOOPT) $(OBJSHANI) $(OBJSSSE41) $(OBJSSSSE3) + $(AR) $(AFLAGS) -rc $@ $(OBJS) $(OBJSEX) $(OBJSNOOPT) $(OBJSHANI) $(OBJSSSE41) $(OBJSSSSE3) $(OBJARMV8CRYPTO) $(RANLIB) $@ diff --git a/src/COMReg/COMReg.rc b/src/COMReg/COMReg.rc index 4723bde9..d0fd5284 100644 --- a/src/COMReg/COMReg.rc +++ b/src/COMReg/COMReg.rc @@ -29,4 +29,4 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,26,17,2 - PRODUCTVERSION 1,26,17,2 + FILEVERSION 1,26,20,0 + PRODUCTVERSION 1,26,20,0 FILEFLAGSMASK 0x17L @@ -47,3 +47,3 @@ BEGIN VALUE "FileDescription", "VeraCrypt COMReg" - VALUE "FileVersion", "1.26.17" + VALUE "FileVersion", "1.26.20" VALUE "LegalTrademarks", "VeraCrypt" @@ -51,3 +51,3 @@ BEGIN VALUE "ProductName", "VeraCrypt" - VALUE "ProductVersion", "1.26.17" + VALUE "ProductVersion", "1.26.20" END diff --git a/src/Common/Apidrvr.h b/src/Common/Apidrvr.h index 955286da..84a3de91 100644 --- a/src/Common/Apidrvr.h +++ b/src/Common/Apidrvr.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -44,3 +44,3 @@ // IN OUT - UNMOUNT_STRUCT -#define TC_IOCTL_DISMOUNT_VOLUME TC_IOCTL (4) +#define TC_IOCTL_UNMOUNT_VOLUME TC_IOCTL (4) @@ -48,3 +48,3 @@ // IN OUT - UNMOUNT_STRUCT -#define TC_IOCTL_DISMOUNT_ALL_VOLUMES TC_IOCTL (5) +#define TC_IOCTL_UNMOUNT_ALL_VOLUMES TC_IOCTL (5) diff --git a/src/Common/BaseCom.cpp b/src/Common/BaseCom.cpp index 25c70963..3b502ef0 100644 --- a/src/Common/BaseCom.cpp +++ b/src/Common/BaseCom.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/BaseCom.h b/src/Common/BaseCom.h index 431b0257..1a7b68d2 100644 --- a/src/Common/BaseCom.h +++ b/src/Common/BaseCom.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/BootEncryption.cpp b/src/Common/BootEncryption.cpp index e6e36f12..833a67fd 100644 --- a/src/Common/BootEncryption.cpp +++ b/src/Common/BootEncryption.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -3204,3 +3204,3 @@ namespace VeraCrypt // starting from Windows 10 1607 (Build 14393), ReflectDrivers in Setupconfig.ini is supported - if (IsOSVersionAtLeast (WIN_10, 0) && CurrentOSBuildNumber >= 14393) + if (IsWin10BuildAtLeast(WIN_10_1607_BUILD)) { diff --git a/src/Common/BootEncryption.h b/src/Common/BootEncryption.h index 2ec92503..432d10a9 100644 --- a/src/Common/BootEncryption.h +++ b/src/Common/BootEncryption.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Cache.c b/src/Common/Cache.c index 60b2f04a..4826673e 100644 --- a/src/Common/Cache.c +++ b/src/Common/Cache.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Cache.h b/src/Common/Cache.h index cfab6f4f..f629d8b8 100644 --- a/src/Common/Cache.h +++ b/src/Common/Cache.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Cmdline.c b/src/Common/Cmdline.c index f34b3bfb..ff19b76a 100644 --- a/src/Common/Cmdline.c +++ b/src/Common/Cmdline.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -68,3 +68,3 @@ BOOL CALLBACK CommandHelpDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM #if defined(TCMOUNT) && !defined(VCEXPANDER) - StringCchCatW (tmp, 8192, L"\nExamples:\n\nMount a volume as X:\tveracrypt.exe /q /v volume.hc /l X\nDismount a volume X:\tveracrypt.exe /q /d X"); + StringCchCatW (tmp, 8192, L"\nExamples:\n\nMount a volume as X:\tveracrypt.exe /q /v volume.hc /l X\nUnmount a volume X:\tveracrypt.exe /q /u X"); #endif diff --git a/src/Common/Cmdline.h b/src/Common/Cmdline.h index 5e0f3509..f1e1fd59 100644 --- a/src/Common/Cmdline.h +++ b/src/Common/Cmdline.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Combo.c b/src/Common/Combo.c index 880f0b7a..fec4c0df 100644 --- a/src/Common/Combo.c +++ b/src/Common/Combo.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Combo.h b/src/Common/Combo.h index 604395b5..73072b96 100644 --- a/src/Common/Combo.h +++ b/src/Common/Combo.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Common.h b/src/Common/Common.h index 62ee3d65..88e034e2 100644 --- a/src/Common/Common.h +++ b/src/Common/Common.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Crc.c b/src/Common/Crc.c index 7e18cb4f..2cda3794 100644 --- a/src/Common/Crc.c +++ b/src/Common/Crc.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Crc.h b/src/Common/Crc.h index 53960a79..c59fc823 100644 --- a/src/Common/Crc.h +++ b/src/Common/Crc.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Crypto.c b/src/Common/Crypto.c index 9ae841eb..2f4e447f 100644 --- a/src/Common/Crypto.c +++ b/src/Common/Crypto.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -1166,4 +1166,2 @@ BOOL IsAesHwCpuSupported () return state && !HwEncryptionDisabled; -#elif defined (_M_ARM64) || defined(__arm__) || defined (__arm64__) || defined (__aarch64__) - return 0; #else @@ -1485,27 +1483 @@ void VcUnprotectKeys (PCRYPTO_INFO pCryptoInfo, uint64 encID) -#if defined(_M_ARM64) || defined(__arm__) || defined (__arm64__) || defined (__aarch64__) -/* dummy implementation that should never be called */ -void aes_hw_cpu_decrypt(const uint8* ks, uint8* data) -{ - ks = ks; - data = data; -} - -void aes_hw_cpu_decrypt_32_blocks(const uint8* ks, uint8* data) -{ - ks = ks; - data = data; -} - -void aes_hw_cpu_encrypt(const uint8* ks, uint8* data) -{ - ks = ks; - data = data; -} - -void aes_hw_cpu_encrypt_32_blocks(const uint8* ks, uint8* data) -{ - ks = ks; - data = data; -} -#endif diff --git a/src/Common/Crypto.h b/src/Common/Crypto.h index 03921da3..81ec791e 100644 --- a/src/Common/Crypto.h +++ b/src/Common/Crypto.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Dictionary.c b/src/Common/Dictionary.c index 47dcb0a4..5915760c 100644 --- a/src/Common/Dictionary.c +++ b/src/Common/Dictionary.c @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Dictionary.h b/src/Common/Dictionary.h index f0be2183..972ec832 100644 --- a/src/Common/Dictionary.h +++ b/src/Common/Dictionary.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Dlgcode.c b/src/Common/Dlgcode.c index ee3630c0..6a068529 100644 --- a/src/Common/Dlgcode.c +++ b/src/Common/Dlgcode.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -313,8 +313,8 @@ static unsigned char gpbSha512CodeSignCertFingerprint[64] = { static unsigned char gpbSha512MSCodeSignCertFingerprint[64] = { - 0xEB, 0x76, 0x2E, 0xD3, 0x5B, 0x4A, 0xB1, 0x0E, 0xF5, 0x3B, 0x99, 0x4E, - 0xC1, 0xF7, 0x48, 0x88, 0xF6, 0xA0, 0xE9, 0xAC, 0x32, 0x69, 0xCF, 0x20, - 0xE1, 0x60, 0xC4, 0x0C, 0xEF, 0x01, 0x1F, 0xCB, 0x41, 0x95, 0x72, 0xB9, - 0xED, 0x63, 0x0C, 0x6B, 0xB9, 0xE9, 0xA2, 0x72, 0xA6, 0x78, 0x96, 0x4C, - 0x69, 0x9F, 0x90, 0x3F, 0xB1, 0x3C, 0x64, 0xF2, 0xAB, 0xCF, 0x14, 0x1D, - 0xEC, 0x7C, 0xB0, 0xC7 + 0x17, 0x8C, 0x1B, 0x37, 0x70, 0xBF, 0x8B, 0xDF, 0x84, 0x55, 0xC5, 0x18, + 0x13, 0x64, 0xE9, 0x65, 0x6D, 0x67, 0xCA, 0x0C, 0xD6, 0x3B, 0x9E, 0x7B, + 0x9B, 0x6A, 0x63, 0xD6, 0x19, 0xAE, 0xD7, 0xBA, 0xBE, 0x5C, 0xCB, 0xD1, + 0x07, 0x89, 0x07, 0xFB, 0x12, 0xC0, 0x2C, 0x94, 0x86, 0xEB, 0x67, 0x0B, + 0x9C, 0x97, 0xEB, 0x20, 0x38, 0x13, 0x9C, 0x0F, 0x56, 0x93, 0x1B, 0x19, + 0x6F, 0x8F, 0x6A, 0x39 }; @@ -1048,2 +1048,16 @@ BOOL IsOSVersionAtLeast (OSVersionEnum reqMinOS, int reqMinServicePack) +BOOL IsWin10BuildAtLeast(int minBuild) +{ + // Must first be recognized as Windows 10 or higher + if (nCurrentOS < WIN_10) + return FALSE; + + // If we’re on Windows 10, check build number + if (nCurrentOS == WIN_10 && CurrentOSBuildNumber < minBuild) + return FALSE; + + // If we are on a higher version of Windows, we are good to go + return TRUE; +} + #ifdef SETUP_DLL @@ -2166,3 +2180,3 @@ BOOL CALLBACK AboutDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam L"Portions of this software:\r\n" - L"Copyright \xA9 2013-2024 IDRIX. All rights reserved.\r\n" + L"Copyright \xA9 2013-2025 IDRIX. All rights reserved.\r\n" L"Copyright \xA9 2003-2012 TrueCrypt Developers Association. All Rights Reserved.\r\n" @@ -2179,3 +2193,3 @@ BOOL CALLBACK AboutDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam L"This software as a whole:\r\n" - L"Copyright \xA9 2013-2024 IDRIX. All rights reserved.\r\n\r\n" + L"Copyright \xA9 2013-2025 IDRIX. All rights reserved.\r\n\r\n" @@ -3613,6 +3627,6 @@ void InitApp (HINSTANCE hInstance, wchar_t *lpszCommandLine) - if (!IsOSAtLeast (WIN_10)) + if (!IsWin10BuildAtLeast(WIN_10_1809_BUILD)) { - // abort using a message that says that VeraCrypt can run only on Windows 10 and later - AbortProcessDirect(L"VeraCrypt requires at least Windows 10 to run."); + // abort using a message that says that VeraCrypt can run only on Windows 10 version 1809 or later + AbortProcessDirect(L"VeraCrypt requires at least Windows 10 version 1809 (October 2018 Update) to run."); } @@ -8208,3 +8222,3 @@ int DriverUnmountVolume (HWND hwndDlg, int nDosDriveNo, BOOL forced) - bResult = DeviceIoControl (hDriver, TC_IOCTL_DISMOUNT_VOLUME, &unmount, + bResult = DeviceIoControl (hDriver, TC_IOCTL_UNMOUNT_VOLUME, &unmount, sizeof (unmount), &unmount, sizeof (unmount), &dwResult, NULL); @@ -14871,2 +14885,3 @@ void GetAppRandomSeed (unsigned char* pbRandSeed, size_t cbRandSeed) +#ifndef _M_ARM64 // use RDSEED or RDRAND from CPU as source of entropy if enabled @@ -14879,2 +14894,3 @@ void GetAppRandomSeed (unsigned char* pbRandSeed, size_t cbRandSeed) } +#endif WHIRLPOOL_finalize (&tctx, digest); @@ -15970,2 +15986,2 @@ cleanup: } -#endif
\ No newline at end of file +#endif diff --git a/src/Common/Dlgcode.h b/src/Common/Dlgcode.h index 4dfae20f..aaaad97e 100644 --- a/src/Common/Dlgcode.h +++ b/src/Common/Dlgcode.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -288,2 +288,5 @@ typedef NTSTATUS (WINAPI *NtQuerySystemInformationFn)( +#define WIN_10_1607_BUILD 14393 // Windows 10 version 1607 corresponds to build 14393 +#define WIN_10_1809_BUILD 17763 // Windows 10 version 1809 corresponds to build 17763 + void InitGlobalLocks (); @@ -502,2 +505,3 @@ BOOL IsOSAtLeast (OSVersionEnum reqMinOS); BOOL IsOSVersionAtLeast (OSVersionEnum reqMinOS, int reqMinServicePack); +BOOL IsWin10BuildAtLeast(int minBuild); BOOL IsSupportedOS (); diff --git a/src/Common/EncryptionThreadPool.c b/src/Common/EncryptionThreadPool.c index 8a0c6e78..5a31bb5b 100644 --- a/src/Common/EncryptionThreadPool.c +++ b/src/Common/EncryptionThreadPool.c @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/EncryptionThreadPool.h b/src/Common/EncryptionThreadPool.h index 2e727a74..95583165 100644 --- a/src/Common/EncryptionThreadPool.h +++ b/src/Common/EncryptionThreadPool.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Endian.c b/src/Common/Endian.c index cea24d09..7cdda679 100644 --- a/src/Common/Endian.c +++ b/src/Common/Endian.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Endian.h b/src/Common/Endian.h index 000395f4..a0cf03b2 100644 --- a/src/Common/Endian.h +++ b/src/Common/Endian.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Exception.h b/src/Common/Exception.h index cb4fefc5..f52484c7 100644 --- a/src/Common/Exception.h +++ b/src/Common/Exception.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Fat.c b/src/Common/Fat.c index dec2ccee..c40084a0 100644 --- a/src/Common/Fat.c +++ b/src/Common/Fat.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Fat.h b/src/Common/Fat.h index 19b5cebb..d6757aaa 100644 --- a/src/Common/Fat.h +++ b/src/Common/Fat.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Format.c b/src/Common/Format.c index f1550e6b..ee766d33 100644 --- a/src/Common/Format.c +++ b/src/Common/Format.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -196,3 +196,3 @@ begin_format: { - Error ("FORMAT_CANT_DISMOUNT_FILESYS", hwndDlg); + Error ("FORMAT_CANT_UNMOUNT_FILESYS", hwndDlg); nStatus = ERR_DONT_REPORT; @@ -334,3 +334,3 @@ begin_format: { - Error ("FORMAT_CANT_DISMOUNT_FILESYS", hwndDlg); + Error ("FORMAT_CANT_UNMOUNT_FILESYS", hwndDlg); nStatus = ERR_DONT_REPORT; @@ -852,3 +852,3 @@ error: if (!UnmountVolumeAfterFormatExCall (volParams->hwndDlg, driveNo) && !Silent) - MessageBoxW (volParams->hwndDlg, GetString ("CANT_DISMOUNT_VOLUME"), lpszTitle, ICON_HAND); + MessageBoxW (volParams->hwndDlg, GetString ("CANT_UNMOUNT_VOLUME"), lpszTitle, ICON_HAND); @@ -874,3 +874,3 @@ error: if (!UnmountVolumeAfterFormatExCall (volParams->hwndDlg, driveNo) && !Silent) - MessageBoxW (volParams->hwndDlg, GetString ("CANT_DISMOUNT_VOLUME"), lpszTitle, ICON_HAND); + MessageBoxW (volParams->hwndDlg, GetString ("CANT_UNMOUNT_VOLUME"), lpszTitle, ICON_HAND); } diff --git a/src/Common/Format.h b/src/Common/Format.h index 0a42e5c8..8f1166ba 100644 --- a/src/Common/Format.h +++ b/src/Common/Format.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Keyfiles.c b/src/Common/Keyfiles.c index b21e371d..b31e335b 100644 --- a/src/Common/Keyfiles.c +++ b/src/Common/Keyfiles.c @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Keyfiles.h b/src/Common/Keyfiles.h index a13666fb..e01f6bc9 100644 --- a/src/Common/Keyfiles.h +++ b/src/Common/Keyfiles.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Language.c b/src/Common/Language.c index 11c791d8..3537d747 100644 --- a/src/Common/Language.c +++ b/src/Common/Language.c @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Language.h b/src/Common/Language.h index 4a87ceda..f4c57dae 100644 --- a/src/Common/Language.h +++ b/src/Common/Language.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Language.xml b/src/Common/Language.xml index 9821bbe9..eac69303 100644 --- a/src/Common/Language.xml +++ b/src/Common/Language.xml @@ -137,4 +137,4 @@ <entry lang="en" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">Global Settings</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="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_MOD_ALT">Alt</entry> @@ -158,8 +158,8 @@ <entry lang="en" key="IDC_PREF_CACHE_PASSWORDS">Cache passwords in driver memory</entry> - <entry lang="en" key="IDC_PREF_DISMOUNT_INACTIVE">Auto-dismount volume after no data has been read/written to it for</entry> - <entry lang="en" key="IDC_PREF_DISMOUNT_LOGOFF">User logs off</entry> - <entry lang="en" key="IDC_PREF_DISMOUNT_SESSION_LOCKED">User session locked</entry> - <entry lang="en" key="IDC_PREF_DISMOUNT_POWERSAVING">Entering power saving mode</entry> - <entry lang="en" key="IDC_PREF_DISMOUNT_SCREENSAVER">Screen saver is launched</entry> - <entry lang="en" key="IDC_PREF_FORCE_AUTO_DISMOUNT">Force auto-dismount even if volume contains open files or directories</entry> + <entry lang="en" key="IDC_PREF_UNMOUNT_INACTIVE">Auto-unmount volume after no data has been read/written to it for</entry> + <entry lang="en" key="IDC_PREF_UNMOUNT_LOGOFF">User logs off</entry> + <entry lang="en" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">User session locked</entry> + <entry lang="en" key="IDC_PREF_UNMOUNT_POWERSAVING">Entering power saving mode</entry> + <entry lang="en" key="IDC_PREF_UNMOUNT_SCREENSAVER">Screen saver is launched</entry> + <entry lang="en" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Force auto-unmount even if volume contains open files or directories</entry> <entry lang="en" key="IDC_PREF_LOGON_MOUNT_DEVICES">Mount all device-hosted VeraCrypt volumes</entry> @@ -171,3 +171,3 @@ <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_AUTODISMOUNT">Wipe cached passwords on auto-dismount</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_EXIT">Wipe cached passwords on exit</entry> @@ -183,3 +183,3 @@ <entry lang="en" key="IDC_TRUECRYPT_MODE">&TrueCrypt Mode</entry> - <entry lang="en" key="IDC_UNMOUNTALL">Di&smount All</entry> + <entry lang="en" key="IDC_UNMOUNTALL">&Unmount All</entry> <entry lang="en" key="IDC_VOLUME_PROPERTIES">&Volume Properties...</entry> @@ -257,4 +257,4 @@ <entry lang="en" key="IDM_TRAVELER">Traveler Disk Setup...</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_UNMOUNTALL">Unmount All Mounted Volumes</entry> + <entry lang="en" key="IDM_UNMOUNT_VOLUME">Unmount Volume</entry> <entry lang="en" key="IDM_VERIFY_RESCUE_DISK">Verify Rescue Disk</entry> @@ -271,4 +271,4 @@ <entry lang="en" key="IDT_AUTORUN">AutoRun Configuration (autorun.inf)</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_AUTO_UNMOUNT">Auto-Unmount</entry> + <entry lang="en" key="IDT_AUTO_UNMOUNT_ON">Unmount all when:</entry> <entry lang="en" key="IDT_BOOT_LOADER_SCREEN_OPTIONS">Boot Loader Screen Options</entry> @@ -278,3 +278,3 @@ <entry lang="en" key="IDT_DEFAULT_MOUNT_OPTIONS">Default Mount Options</entry> - <entry lang="en" key="IDT_DISMOUNT_ACTION">Hot Key Options</entry> + <entry lang="en" key="IDT_UNMOUNT_ACTION">Hot Key Options</entry> <entry lang="en" key="IDT_DRIVER_OPTIONS">Driver Configuration</entry> @@ -425,4 +425,4 @@ <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_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' > '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="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' > '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="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> @@ -527,4 +527,4 @@ <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 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_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_TITLE">Outer Volume Contents</entry> @@ -537,5 +537,5 @@ <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 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="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="CANNOT_SATISFY_OVER_4G_FILE_SIZE_REQ">You have indicated intent to store files larger than 4 GiB on the volume. This requires the volume to be formatted as NTFS/exFAT/ReFS, which, however, will not be possible.</entry> @@ -568,4 +568,4 @@ <entry lang="en" key="MAX_HIDVOL_SIZE_TB">Maximum possible hidden volume size for this volume is %.2f TiB.</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="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="MOUNT_BUTTON">&Mount</entry> @@ -590,5 +590,5 @@ <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 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="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="OPEN_VOL_TITLE">Select a VeraCrypt Volume</entry> @@ -696,6 +696,6 @@ <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 dismount?</entry> - <entry lang="en" key="UNMOUNT_BUTTON">&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="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">&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="NO_VOLUME_MOUNTED_TO_DRIVE">No volume is mounted to the specified drive letter.</entry> @@ -731,3 +731,3 @@ <entry lang="en" key="CANT_MOUNT_VOLUME">Cannot mount volume.</entry> - <entry lang="en" key="CANT_DISMOUNT_VOLUME">Cannot dismount volume.</entry> + <entry lang="en" key="CANT_UNMOUNT_VOLUME">Cannot unmount 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> @@ -773,3 +773,3 @@ <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_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_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_GET_OUTER_VOL_INFO">Error: Cannot obtain information about the outer volume!\nVolume creation cannot continue.</entry> @@ -884,3 +884,3 @@ <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="DISMOUNT_ALL_FIRST">All VeraCrypt volumes must be dismounted before installing or uninstalling VeraCrypt.</entry> + <entry lang="en" key="UNMOUNT_ALL_FIRST">All VeraCrypt volumes must be unmounted 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> @@ -905,3 +905,3 @@ <entry lang="en" key="OPEN">Open</entry> - <entry lang="en" key="DISMOUNT">Dismount</entry> + <entry lang="en" key="UNMOUNT">Unmount</entry> <entry lang="en" key="SHOW_TC">Show VeraCrypt</entry> @@ -977,3 +977,3 @@ <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="DISMOUNT_FIRST">Please dismount the volume before proceeding.</entry> + <entry lang="en" key="UNMOUNT_FIRST">Please unmount the volume before proceeding.</entry> <entry lang="en" key="CANNOT_SET_TIMER">Error: Cannot set timer.</entry> @@ -999,3 +999,3 @@ <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 dismount 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 unmount the volume.</entry> <entry lang="en" key="HOMEPAGE">Homepage</entry> @@ -1008,10 +1008,10 @@ <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 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="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="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_DISMOUNT_ALL">Dismount All</entry> + <entry lang="en" key="HK_UNMOUNT_ALL">Unmount All</entry> <entry lang="en" key="HK_WIPE_CACHE">Wipe Cache</entry> - <entry lang="en" key="HK_DISMOUNT_ALL_AND_WIPE">Dismount All & Wipe Cache</entry> - <entry lang="en" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE">Force Dismount All & Wipe Cache</entry> - <entry lang="en" key="HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT">Force Dismount All, Wipe Cache & Exit</entry> + <entry lang="en" key="HK_UNMOUNT_ALL_AND_WIPE">Unmount All & Wipe Cache</entry> + <entry lang="en" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE">Force Unmount All & Wipe Cache</entry> + <entry lang="en" key="HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT">Force Unmount All, Wipe Cache & Exit</entry> <entry lang="en" key="HK_MOUNT_FAVORITE_VOLUMES">Mount Favorite Volumes</entry> @@ -1027,10 +1027,10 @@ <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_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="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="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> @@ -1042,3 +1042,3 @@ <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' > '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-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">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_UNIVERSAL">Exit?</entry> @@ -1065,3 +1065,3 @@ <entry lang="en" key="MOUNT_TC_VOLUME">Mount VeraCrypt volume</entry> - <entry lang="en" key="DISMOUNT_ALL_TC_VOLUMES">Dismount all VeraCrypt volumes</entry> + <entry lang="en" key="UNMOUNT_ALL_TC_VOLUMES">Unmount all VeraCrypt volumes</entry> <entry lang="en" key="UAC_INIT_ERROR">VeraCrypt failed to obtain Administrator privileges.</entry> @@ -1287,4 +1287,4 @@ <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 '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="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="SETTING_REQUIRES_REBOOT">Note that this setting takes effect only after the operating system is restarted.</entry> @@ -1294,6 +1294,6 @@ <entry lang="en" key="SELECT_DEVICE_AND_MOUNT">Select &Device and Mount...</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="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Allow only administrators to view and unmount 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 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="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="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> @@ -1308,4 +1308,4 @@ <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_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="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="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> @@ -1455,3 +1455,3 @@ <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="TASKICON_PREF_UNMOUNT_VOL">Unmount Mounted Volumes</entry> <entry lang="en" key="DISK_FREE">Free space available: {0}</entry> @@ -1485,10 +1485,10 @@ <entry lang="en" key="LINUX_SELECT">Se&lect...</entry> - <entry lang="en" key="LINUX_DISMOUNT_ALL_WHEN">Dismount All Volumes When</entry> + <entry lang="en" key="LINUX_UNMOUNT_ALL_WHEN">Unmount 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_CLOSE_EXPL_ON_UNMOUNT">Close all Explorer windows of volume being unmounted</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_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_VC_QUITS">VeraCrypt quits</entry> @@ -1512,3 +1512,3 @@ <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_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_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> @@ -1516,3 +1516,3 @@ <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_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry> <entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry> @@ -1524,3 +1524,3 @@ <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_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry> <entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry> @@ -1643,2 +1643,5 @@ <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> </localization> diff --git a/src/Common/Password.c b/src/Common/Password.c index aed7cfb9..ed662a88 100644 --- a/src/Common/Password.c +++ b/src/Common/Password.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Password.h b/src/Common/Password.h index dd3fbed6..9f2f0145 100644 --- a/src/Common/Password.h +++ b/src/Common/Password.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Pkcs5.c b/src/Common/Pkcs5.c index 6d8ce08a..fbe22275 100644 --- a/src/Common/Pkcs5.c +++ b/src/Common/Pkcs5.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Pkcs5.h b/src/Common/Pkcs5.h index 65fad038..41679fe7 100644 --- a/src/Common/Pkcs5.h +++ b/src/Common/Pkcs5.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Progress.c b/src/Common/Progress.c index 24efcad5..2abf782c 100644 --- a/src/Common/Progress.c +++ b/src/Common/Progress.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Progress.h b/src/Common/Progress.h index d86e51ac..6642bb35 100644 --- a/src/Common/Progress.h +++ b/src/Common/Progress.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Random.c b/src/Common/Random.c index 0cd6bfa0..4c6382b4 100644 --- a/src/Common/Random.c +++ b/src/Common/Random.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -804,2 +804,3 @@ BOOL SlowPoll (void) +#ifndef _M_ARM64 // use RDSEED or RDRAND from CPU as source of entropy if present @@ -812,2 +813,3 @@ BOOL SlowPoll (void) } +#endif @@ -935,2 +937,3 @@ BOOL FastPoll (void) +#ifndef _M_ARM64 // use RDSEED or RDRAND from CPU as source of entropy if enabled @@ -943,2 +946,3 @@ BOOL FastPoll (void) } +#endif diff --git a/src/Common/Random.h b/src/Common/Random.h index 68758782..9d7e345a 100644 --- a/src/Common/Random.h +++ b/src/Common/Random.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Registry.c b/src/Common/Registry.c index b04bbf60..f5aa4053 100644 --- a/src/Common/Registry.c +++ b/src/Common/Registry.c @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Registry.h b/src/Common/Registry.h index ea449d3e..0e869281 100644 --- a/src/Common/Registry.h +++ b/src/Common/Registry.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/SecurityToken.cpp b/src/Common/SecurityToken.cpp index cd4926a0..85219395 100644 --- a/src/Common/SecurityToken.cpp +++ b/src/Common/SecurityToken.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/SecurityToken.h b/src/Common/SecurityToken.h index 6c454def..9f024b36 100644 --- a/src/Common/SecurityToken.h +++ b/src/Common/SecurityToken.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Tcdefs.h b/src/Common/Tcdefs.h index 0051dba2..ee5751b7 100644 --- a/src/Common/Tcdefs.h +++ b/src/Common/Tcdefs.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -61,3 +61,3 @@ extern unsigned short _rotl16(unsigned short value, unsigned char shift); // Version displayed to user -#define VERSION_STRING "1.26.17" +#define VERSION_STRING "1.26.20" @@ -75,5 +75,5 @@ extern unsigned short _rotl16(unsigned short value, unsigned char shift); // Release date -#define TC_STR_RELEASE_DATE L"November 24, 2024" -#define TC_RELEASE_DATE_YEAR 2024 -#define TC_RELEASE_DATE_MONTH 11 +#define TC_STR_RELEASE_DATE L"February 3, 2025" +#define TC_RELEASE_DATE_YEAR 2025 +#define TC_RELEASE_DATE_MONTH 2 @@ -263,3 +263,3 @@ extern ULONG AllocTag; -#define TCalloc(size) ((void *) ExAllocatePool2( POOL_FLAG_NON_PAGED, size, AllocTag )) +#define TCalloc(size) ((void *) ExAllocatePoolUninitialized( NonPagedPoolNx , size, AllocTag )) #define TCfree(memblock) ExFreePoolWithTag( memblock, AllocTag ) diff --git a/src/Common/Tests.c b/src/Common/Tests.c index 1f4178c6..89af24f1 100644 --- a/src/Common/Tests.c +++ b/src/Common/Tests.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -1492,3 +1492,5 @@ BOOL AutoTestAlgorithms (void) EnableHwEncryption (hwEncryptionEnabled); +#ifndef _M_ARM64 DisableCPUExtendedFeatures (); +#endif __try diff --git a/src/Common/Tests.h b/src/Common/Tests.h index bfdf7c40..9b9d09e4 100644 --- a/src/Common/Tests.h +++ b/src/Common/Tests.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Volumes.c b/src/Common/Volumes.c index 60d1b417..10f03636 100644 --- a/src/Common/Volumes.c +++ b/src/Common/Volumes.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Volumes.h b/src/Common/Volumes.h index 07ed0fe8..98b2f8d6 100644 --- a/src/Common/Volumes.h +++ b/src/Common/Volumes.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Wipe.c b/src/Common/Wipe.c index af3d15db..66d633b8 100644 --- a/src/Common/Wipe.c +++ b/src/Common/Wipe.c @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Wipe.h b/src/Common/Wipe.h index 09b9d71e..b8bd0fac 100644 --- a/src/Common/Wipe.h +++ b/src/Common/Wipe.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Xml.c b/src/Common/Xml.c index 9f77b3ba..d48940ed 100644 --- a/src/Common/Xml.c +++ b/src/Common/Xml.c @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Xml.h b/src/Common/Xml.h index 09b8543a..d442f187 100644 --- a/src/Common/Xml.h +++ b/src/Common/Xml.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Xts.c b/src/Common/Xts.c index 4a62aaf3..99999f11 100644 --- a/src/Common/Xts.c +++ b/src/Common/Xts.c @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Xts.h b/src/Common/Xts.h index b4b4058e..0cc3a99f 100644 --- a/src/Common/Xts.h +++ b/src/Common/Xts.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Common/Zip.vcxproj b/src/Common/Zip.vcxproj index 6674ef34..a8fbf1eb 100644 --- a/src/Common/Zip.vcxproj +++ b/src/Common/Zip.vcxproj @@ -116,2 +116,3 @@ <ClCompile Include="libzip\zip_source_function.c" /> + <ClCompile Include="libzip\zip_source_get_dostime.c" /> <ClCompile Include="libzip\zip_source_get_file_attributes.c" /> diff --git a/src/Common/Zip.vcxproj.filters b/src/Common/Zip.vcxproj.filters index 92bcf493..eb88a358 100644 --- a/src/Common/Zip.vcxproj.filters +++ b/src/Common/Zip.vcxproj.filters @@ -401,2 +401,5 @@ </ClCompile> + <ClCompile Include="libzip\zip_source_get_dostime.c"> + <Filter>libzip</Filter> + </ClCompile> </ItemGroup> diff --git a/src/Common/libzip/NEWS.md b/src/Common/libzip/NEWS.md index e117422d..d2b1e73d 100644 --- a/src/Common/libzip/NEWS.md +++ b/src/Common/libzip/NEWS.md @@ -1 +1,18 @@ +# 1.11.2 [2024-10-31] + +* Fix performance regression in `zip_stat` introduced in 1.11. + +# 1.11.1 [2024-09-19] + +* Fix zipconf.h for version number with missing third component. + +# 1.11 [2024-09-19] + +* Stop searching after finding acceptable central directory, even if it contains inconsistencies. +* Only write Zip64 EOCD if fields don't fit in normal EOCD. Previously libzip also wrote it when any directory entry required Zip64. +* Allow bytes from 0x00-0x1F as UTF-8. +* Add new error code `ZIP_ER_TRUNCATED_ZIP` for files that start with a valid local header signature. +* `zipcmp`: add `-T` option for comparing timestamps. +* `zip_file_replace` now removes the target's extra field information. + # 1.10.1 [2023-08-23] diff --git a/src/Common/libzip/compat.h b/src/Common/libzip/compat.h index 296ee59e..2cbc19f8 100644 --- a/src/Common/libzip/compat.h +++ b/src/Common/libzip/compat.h @@ -5,3 +5,3 @@ compat.h -- compatibility defines. - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner @@ -128,4 +128,54 @@ typedef char bool; -#ifndef HAVE_FSEEKO -#define fseeko(s, o, w) (fseek((s), (long int)(o), (w))) + +#if defined(HAVE__FSEEKI64) && defined(HAVE__FSTAT64) && defined(HAVE__FTELLI64) +/* Windows API using int64 */ +typedef zip_int64_t zip_off_t; +typedef struct _stat64 zip_os_stat_t; +#define zip_os_stat _stat64 +#define zip_os_fstat _fstat64 +#define zip_os_fseek _fseeki64 +#define zip_os_ftell _ftelli64 +#define ZIP_FSEEK_MAX ZIP_INT64_MAX +#define ZIP_FSEEK_MIN ZIP_INT64_MIN +#else + +/* Normal API */ +#include <sys/stat.h> +typedef struct stat zip_os_stat_t; +#define zip_os_fstat fstat +#define zip_os_stat stat + +#if defined(HAVE_FTELLO) && defined(HAVE_FSEEKO) +/* Using off_t */ +typedef off_t zip_off_t; +#if SIZEOF_OFF_T == 8 +#define ZIP_OFF_MAX ZIP_INT64_MAX +#define ZIP_OFF_MIN ZIP_INT64_MIN +#elif SIZEOF_OFF_T == 4 +#define ZIP_OFF_MAX ZIP_INT32_MAX +#define ZIP_OFF_MIN ZIP_INT32_MIN +#elif SIZEOF_OFF_T == 2 +#define ZIP_OFF_MAX ZIP_INT16_MAX +#define ZIP_OFF_MIN ZIP_INT16_MIN +#else +#error unsupported size of off_t +#endif + +#define ZIP_FSEEK_MAX ZIP_OFF_MAX +#define ZIP_FSEEK_MIN ZIP_OFF_MIN + +#define zip_os_fseek fseeko +#define zip_os_ftell ftello +#else + +/* Using long */ +typedef long zip_off_t; +#include <limits.h> +#define ZIP_FSEEK_MAX LONG_MAX +#define ZIP_FSEEK_MIN LONG_MIN + +#define zip_os_fseek fseek +#define zip_os_ftell ftell +#endif + #endif @@ -136,2 +186,3 @@ typedef char bool; + #ifdef HAVE_LOCALTIME_S @@ -184,23 +235,2 @@ typedef char bool; -#if SIZEOF_OFF_T == 8 -#define ZIP_OFF_MAX ZIP_INT64_MAX -#define ZIP_OFF_MIN ZIP_INT64_MIN -#elif SIZEOF_OFF_T == 4 -#define ZIP_OFF_MAX ZIP_INT32_MAX -#define ZIP_OFF_MIN ZIP_INT32_MIN -#elif SIZEOF_OFF_T == 2 -#define ZIP_OFF_MAX ZIP_INT16_MAX -#define ZIP_OFF_MIN ZIP_INT16_MIN -#else -#error unsupported size of off_t -#endif - -#if defined(HAVE_FTELLO) && defined(HAVE_FSEEKO) -#define ZIP_FSEEK_MAX ZIP_OFF_MAX -#define ZIP_FSEEK_MIN ZIP_OFF_MIN -#else -#include <limits.h> -#define ZIP_FSEEK_MAX LONG_MAX -#define ZIP_FSEEK_MIN LONG_MIN -#endif diff --git a/src/Common/libzip/config.h b/src/Common/libzip/config.h index 2976249c..5edc625f 100644 --- a/src/Common/libzip/config.h +++ b/src/Common/libzip/config.h @@ -12,2 +12,5 @@ #define HAVE__FILENO +#define HAVE__FSEEKI64 +#define HAVE__FSTAT64 +#define HAVE__FTELLI64 #define HAVE__SETMODE @@ -20,2 +23,3 @@ #define HAVE__SNWPRINTF_S +#define HAVE__STAT64 #define HAVE__STRDUP @@ -90,3 +94,3 @@ #define PACKAGE "libzip" -#define VERSION "1.10.1" +#define VERSION "1.11.2" diff --git a/src/Common/libzip/zip.h b/src/Common/libzip/zip.h index dc3751c8..da57ea56 100644 --- a/src/Common/libzip/zip.h +++ b/src/Common/libzip/zip.h @@ -5,3 +5,3 @@ zip.h -- exported declarations. - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2024 Dieter Baron and Thomas Klausner @@ -160,2 +160,3 @@ extern "C" { #define ZIP_ER_NOT_ALLOWED 34 /* N Not allowed in torrentzip */ +#define ZIP_ER_TRUNCATED_ZIP 35 /* N Possibly truncated or corrupted zip archive */ @@ -262,3 +263,4 @@ enum zip_source_cmd { ZIP_SOURCE_GET_FILE_ATTRIBUTES, /* get additional file attributes */ - ZIP_SOURCE_SUPPORTS_REOPEN /* allow reading from changed entry */ + ZIP_SOURCE_SUPPORTS_REOPEN, /* allow reading from changed entry */ + ZIP_SOURCE_GET_DOS_TIME /* get last modification time in DOS format */ }; diff --git a/src/Common/libzip/zip_add.c b/src/Common/libzip/zip_add.c index 9770139d..a426a579 100644 --- a/src/Common/libzip/zip_add.c +++ b/src/Common/libzip/zip_add.c @@ -2,3 +2,3 @@ zip_add.c -- add file via callback function - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_add_dir.c b/src/Common/libzip/zip_add_dir.c index c31fea36..2faaa1a6 100644 --- a/src/Common/libzip/zip_add_dir.c +++ b/src/Common/libzip/zip_add_dir.c @@ -2,3 +2,3 @@ zip_add_dir.c -- add directory - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_add_entry.c b/src/Common/libzip/zip_add_entry.c index bf12dd54..e8beaa81 100644 --- a/src/Common/libzip/zip_add_entry.c +++ b/src/Common/libzip/zip_add_entry.c @@ -2,3 +2,3 @@ zip_add_entry.c -- create and init struct zip_entry - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2024 Dieter Baron and Thomas Klausner @@ -66,3 +66,3 @@ _zip_add_entry(zip_t *za) { rentries = (zip_entry_t *)realloc(za->entry, sizeof(struct zip_entry) * (size_t)nalloc); - if (!rentries) { + if (rentries == NULL) { zip_error_set(&za->error, ZIP_ER_MEMORY, 0); diff --git a/src/Common/libzip/zip_algorithm_bzip2.c b/src/Common/libzip/zip_algorithm_bzip2.c index f25be143..1818039e 100644 --- a/src/Common/libzip/zip_algorithm_bzip2.c +++ b/src/Common/libzip/zip_algorithm_bzip2.c @@ -2,3 +2,3 @@ zip_algorithm_bzip2.c -- bzip2 (de)compression routines - Copyright (C) 2017-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2017-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_algorithm_deflate.c b/src/Common/libzip/zip_algorithm_deflate.c index 3c85e204..5ab879df 100644 --- a/src/Common/libzip/zip_algorithm_deflate.c +++ b/src/Common/libzip/zip_algorithm_deflate.c @@ -2,3 +2,3 @@ zip_algorithm_deflate.c -- deflate (de)compression routines - Copyright (C) 2017-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2017-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_algorithm_xz.c b/src/Common/libzip/zip_algorithm_xz.c index d7a7142d..b0413e01 100644 --- a/src/Common/libzip/zip_algorithm_xz.c +++ b/src/Common/libzip/zip_algorithm_xz.c @@ -3,3 +3,3 @@ Bazed on zip_algorithm_deflate.c -- deflate (de)compression routines - Copyright (C) 2017-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2017-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_algorithm_zstd.c b/src/Common/libzip/zip_algorithm_zstd.c index d005da9d..b2aa2132 100644 --- a/src/Common/libzip/zip_algorithm_zstd.c +++ b/src/Common/libzip/zip_algorithm_zstd.c @@ -2,3 +2,3 @@ zip_algorithm_zstd.c -- zstd (de)compression routines - Copyright (C) 2020-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2020-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_buffer.c b/src/Common/libzip/zip_buffer.c index e2103f04..de22bab1 100644 --- a/src/Common/libzip/zip_buffer.c +++ b/src/Common/libzip/zip_buffer.c @@ -2,3 +2,3 @@ zip_buffer.c -- bounds checked access to memory buffer - Copyright (C) 2014-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2014-2024 Dieter Baron and Thomas Klausner @@ -308,4 +308,3 @@ _zip_buffer_put_8(zip_buffer_t *buffer, zip_uint8_t i) { -int -_zip_buffer_set_offset(zip_buffer_t *buffer, zip_uint64_t offset) { +int _zip_buffer_set_offset(zip_buffer_t *buffer, zip_uint64_t offset) { if (offset > buffer->size) { diff --git a/src/Common/libzip/zip_close.c b/src/Common/libzip/zip_close.c index ddc2c245..4313592c 100644 --- a/src/Common/libzip/zip_close.c +++ b/src/Common/libzip/zip_close.c @@ -2,3 +2,3 @@ zip_close.c -- close zip archive and update changes - Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2024 Dieter Baron and Thomas Klausner @@ -46,3 +46,3 @@ static int add_data(zip_t *, zip_source_t *, zip_dirent_t *, zip_uint32_t); static int copy_data(zip_t *, zip_uint64_t); -static int copy_source(zip_t *, zip_source_t *, zip_int64_t); +static int copy_source(zip_t *, zip_source_t *, zip_source_t *, zip_int64_t); static int torrentzip_compare_names(const void *a, const void *b); @@ -470,7 +470,3 @@ add_data(zip_t *za, zip_source_t *src, zip_dirent_t *de, zip_uint32_t changed) { if (de->changed & ZIP_DIRENT_LAST_MOD) { - zip_stat_t st_mtime; - zip_stat_init(&st_mtime); - st_mtime.valid = ZIP_STAT_MTIME; - st_mtime.mtime = de->last_mod; - if ((src_tmp = _zip_source_window_new(src_final, 0, -1, &st_mtime, 0, NULL, NULL, 0, true, &za->error)) == NULL) { + if ((src_tmp = _zip_source_window_new(src_final, 0, -1, NULL, 0, NULL, &de->last_mod, NULL, 0, true, &za->error)) == NULL) { zip_source_free(src_final); @@ -497,3 +493,3 @@ add_data(zip_t *za, zip_source_t *src, zip_dirent_t *de, zip_uint32_t changed) { - ret = copy_source(za, src_final, data_length); + ret = copy_source(za, src_final, src, data_length); @@ -531,6 +527,19 @@ add_data(zip_t *za, zip_source_t *src, zip_dirent_t *de, zip_uint32_t changed) { if ((de->changed & ZIP_DIRENT_LAST_MOD) == 0) { - if (st.valid & ZIP_STAT_MTIME) - de->last_mod = st.mtime; - else - time(&de->last_mod); + int ret2 = zip_source_get_dos_time(src, &de->last_mod); + if (ret2 < 0) { + zip_error_set_from_source(&za->error, src); + return -1; + } + if (ret2 == 0) { + time_t mtime; + if (st.valid & ZIP_STAT_MTIME) { + mtime = st.mtime; + } + else { + time(&mtime); + } + if (_zip_u2d_time(mtime, &de->last_mod, &za->error) < 0) { + return -1; + } + } } @@ -607,3 +616,3 @@ copy_data(zip_t *za, zip_uint64_t len) { static int -copy_source(zip_t *za, zip_source_t *src, zip_int64_t data_length) { +copy_source(zip_t *za, zip_source_t *src, zip_source_t *src_for_length, zip_int64_t data_length) { DEFINE_BYTE_ARRAY(buf, BUFSIZE); @@ -630,3 +639,9 @@ copy_source(zip_t *za, zip_source_t *src, zip_int64_t data_length) { if (n == BUFSIZE && za->progress && data_length > 0) { - current += n; + zip_int64_t t; + t = zip_source_tell(src_for_length); + if (t >= 0) { + current = t; + } else { + current += n; + } if (_zip_progress_update(za->progress, (double)current / (double)data_length) != 0) { @@ -744,2 +759,2 @@ static int torrentzip_compare_names(const void *a, const void *b) { return strcasecmp(aname, bname); -}
\ No newline at end of file +} diff --git a/src/Common/libzip/zip_crypto.h b/src/Common/libzip/zip_crypto.h index 0d74d1a4..805af52f 100644 --- a/src/Common/libzip/zip_crypto.h +++ b/src/Common/libzip/zip_crypto.h @@ -2,3 +2,3 @@ zip_crypto.h -- crypto definitions - Copyright (C) 2017-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2017-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_crypto_commoncrypto.c b/src/Common/libzip/zip_crypto_commoncrypto.c index b198be56..e6cb72d3 100644 --- a/src/Common/libzip/zip_crypto_commoncrypto.c +++ b/src/Common/libzip/zip_crypto_commoncrypto.c @@ -2,3 +2,3 @@ zip_crypto_commoncrypto.c -- CommonCrypto wrapper. - Copyright (C) 2018-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2018-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_crypto_commoncrypto.h b/src/Common/libzip/zip_crypto_commoncrypto.h index 01828cc6..82dafdb4 100644 --- a/src/Common/libzip/zip_crypto_commoncrypto.h +++ b/src/Common/libzip/zip_crypto_commoncrypto.h @@ -2,3 +2,3 @@ zip_crypto_commoncrypto.h -- definitions for CommonCrypto wrapper. - Copyright (C) 2018 Dieter Baron and Thomas Klausner + Copyright (C) 2018-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_crypto_gnutls.c b/src/Common/libzip/zip_crypto_gnutls.c index 1a25aa12..fcc7fdfd 100644 --- a/src/Common/libzip/zip_crypto_gnutls.c +++ b/src/Common/libzip/zip_crypto_gnutls.c @@ -2,3 +2,3 @@ zip_crypto_gnutls.c -- GnuTLS wrapper. - Copyright (C) 2018-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2018-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_crypto_gnutls.h b/src/Common/libzip/zip_crypto_gnutls.h index dc8b97a4..a6fa508a 100644 --- a/src/Common/libzip/zip_crypto_gnutls.h +++ b/src/Common/libzip/zip_crypto_gnutls.h @@ -2,3 +2,3 @@ zip_crypto_gnutls.h -- definitions for GnuTLS wrapper. - Copyright (C) 2018-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2018-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_crypto_mbedtls.c b/src/Common/libzip/zip_crypto_mbedtls.c index 84544a82..0ed66c0d 100644 --- a/src/Common/libzip/zip_crypto_mbedtls.c +++ b/src/Common/libzip/zip_crypto_mbedtls.c @@ -2,3 +2,3 @@ zip_crypto_mbedtls.c -- mbed TLS wrapper - Copyright (C) 2018-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2018-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_crypto_mbedtls.h b/src/Common/libzip/zip_crypto_mbedtls.h index 1151fff7..30ce21c9 100644 --- a/src/Common/libzip/zip_crypto_mbedtls.h +++ b/src/Common/libzip/zip_crypto_mbedtls.h @@ -2,3 +2,3 @@ zip_crypto_mbedtls.h -- definitions for mbedtls wrapper - Copyright (C) 2018-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2018-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_crypto_openssl.c b/src/Common/libzip/zip_crypto_openssl.c index 7f1da10e..9e9e8e7c 100644 --- a/src/Common/libzip/zip_crypto_openssl.c +++ b/src/Common/libzip/zip_crypto_openssl.c @@ -2,3 +2,3 @@ zip_crypto_openssl.c -- OpenSSL wrapper. - Copyright (C) 2018-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2018-2023 Dieter Baron and Thomas Klausner @@ -128,4 +128,5 @@ bool _zip_crypto_aes_encrypt_block(_zip_crypto_aes_t *aes, const zip_uint8_t *in, zip_uint8_t *out) { - int len; - if (EVP_EncryptUpdate(aes, out, &len, in, ZIP_CRYPTO_AES_BLOCK_LENGTH) != 1) { + int len = 0; + if (EVP_EncryptUpdate(aes, out, &len, in, ZIP_CRYPTO_AES_BLOCK_LENGTH) != 1 + || len != ZIP_CRYPTO_AES_BLOCK_LENGTH) { return false; @@ -216,7 +217,7 @@ _zip_crypto_hmac_output(_zip_crypto_hmac_t *hmac, zip_uint8_t *data) { #ifdef USE_OPENSSL_3_API - size_t length; + size_t length = 0; return EVP_MAC_final(hmac->ctx, data, &length, ZIP_CRYPTO_SHA1_LENGTH) == 1 && length == ZIP_CRYPTO_SHA1_LENGTH; #else - unsigned int length; - return HMAC_Final(hmac, data, &length) == 1; + unsigned int length = 0; + return HMAC_Final(hmac, data, &length) == 1 && length == ZIP_CRYPTO_SHA1_LENGTH; #endif diff --git a/src/Common/libzip/zip_crypto_openssl.h b/src/Common/libzip/zip_crypto_openssl.h index 198a9071..e593ec55 100644 --- a/src/Common/libzip/zip_crypto_openssl.h +++ b/src/Common/libzip/zip_crypto_openssl.h @@ -2,3 +2,3 @@ zip_crypto_openssl.h -- definitions for OpenSSL wrapper. - Copyright (C) 2018-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2018-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_crypto_win.c b/src/Common/libzip/zip_crypto_win.c index ee3ccc30..6d923038 100644 --- a/src/Common/libzip/zip_crypto_win.c +++ b/src/Common/libzip/zip_crypto_win.c @@ -2,3 +2,3 @@ zip_crypto_win.c -- Windows Crypto API wrapper. - Copyright (C) 2018-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2018-2023 Dieter Baron and Thomas Klausner @@ -39,5 +39,2 @@ -#define WIN32_LEAN_AND_MEAN -#define NOCRYPT - #include <windows.h> diff --git a/src/Common/libzip/zip_crypto_win.h b/src/Common/libzip/zip_crypto_win.h index a533fe2d..3f05b621 100644 --- a/src/Common/libzip/zip_crypto_win.h +++ b/src/Common/libzip/zip_crypto_win.h @@ -2,3 +2,3 @@ zip_crypto_win.h -- Windows Crypto API wrapper. - Copyright (C) 2018-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2018-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_delete.c b/src/Common/libzip/zip_delete.c index 676c16bf..4eefdd97 100644 --- a/src/Common/libzip/zip_delete.c +++ b/src/Common/libzip/zip_delete.c @@ -2,3 +2,3 @@ zip_delete.c -- delete file from zip archive - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_dir_add.c b/src/Common/libzip/zip_dir_add.c index c0108191..01d8ec9d 100644 --- a/src/Common/libzip/zip_dir_add.c +++ b/src/Common/libzip/zip_dir_add.c @@ -2,3 +2,3 @@ zip_dir_add.c -- add directory - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_dirent.c b/src/Common/libzip/zip_dirent.c index 45a2a6a2..24bc6abf 100644 --- a/src/Common/libzip/zip_dirent.c +++ b/src/Common/libzip/zip_dirent.c @@ -2,3 +2,3 @@ zip_dirent.c -- read directory entry (local or central), clean dirent - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2024 Dieter Baron and Thomas Klausner @@ -43,3 +43,3 @@ -static zip_string_t *_zip_dirent_process_ef_utf_8(const zip_dirent_t *de, zip_uint16_t id, zip_string_t *str); +static zip_string_t *_zip_dirent_process_ef_utf_8(const zip_dirent_t *de, zip_uint16_t id, zip_string_t *str, bool check_consistency); static zip_extra_field_t *_zip_ef_utf8(zip_uint16_t, zip_string_t *, zip_error_t *); @@ -52,4 +52,5 @@ _zip_cdir_free(zip_cdir_t *cd) { - if (!cd) + if (cd == NULL) { return; + } @@ -64,3 +65,3 @@ _zip_cdir_free(zip_cdir_t *cd) { zip_cdir_t * -_zip_cdir_new(zip_uint64_t nentry, zip_error_t *error) { +_zip_cdir_new(zip_error_t *error) { zip_cdir_t *cd; @@ -78,7 +79,2 @@ _zip_cdir_new(zip_uint64_t nentry, zip_error_t *error) { - if (!_zip_cdir_grow(cd, nentry, error)) { - _zip_cdir_free(cd); - return NULL; - } - return cd; @@ -128,4 +124,2 @@ _zip_cdir_write(zip_t *za, const zip_filelist_t *filelist, zip_uint64_t survivor zip_uint64_t i; - bool is_zip64; - int ret; zip_uint32_t cdir_crc; @@ -138,4 +132,2 @@ _zip_cdir_write(zip_t *za, const zip_filelist_t *filelist, zip_uint64_t survivor - is_zip64 = false; - if (ZIP_WANT_TORRENTZIP(za)) { @@ -148,6 +140,6 @@ _zip_cdir_write(zip_t *za, const zip_filelist_t *filelist, zip_uint64_t survivor - if ((ret = _zip_dirent_write(za, entry->changes ? entry->changes : entry->orig, ZIP_FL_CENTRAL)) < 0) + if (_zip_dirent_write(za, entry->changes ? entry->changes : entry->orig, ZIP_FL_CENTRAL) < 0) { + za->write_crc = NULL; return -1; - if (ret) - is_zip64 = true; + } } @@ -162,6 +154,2 @@ _zip_cdir_write(zip_t *za, const zip_filelist_t *filelist, zip_uint64_t survivor - if (offset > ZIP_UINT32_MAX || survivors > ZIP_UINT16_MAX) { - is_zip64 = true; - } - if ((buffer = _zip_buffer_new(buf, sizeof(buf))) == NULL) { @@ -171,3 +159,3 @@ _zip_cdir_write(zip_t *za, const zip_filelist_t *filelist, zip_uint64_t survivor - if (is_zip64) { + if (survivors > ZIP_UINT16_MAX || offset > ZIP_UINT32_MAX || size > ZIP_UINT32_MAX) { _zip_buffer_put(buffer, EOCD64_MAGIC, 4); @@ -296,2 +284,3 @@ _zip_dirent_init(zip_dirent_t *de) { de->crc_valid = true; + de->last_mod_mtime_valid = false; de->version_madeby = 63 | (ZIP_OPSYS_DEFAULT << 8); @@ -300,3 +289,4 @@ _zip_dirent_init(zip_dirent_t *de) { de->comp_method = ZIP_CM_DEFAULT; - de->last_mod = 0; + de->last_mod.date = 0; + de->last_mod.time = 0; de->crc = 0; @@ -338,3 +328,3 @@ _zip_dirent_new(void) { -/* _zip_dirent_read(zde, fp, bufp, left, localp, error): +/* Fills the zip directory entry zde. @@ -349,7 +339,8 @@ _zip_dirent_new(void) { zip_int64_t -_zip_dirent_read(zip_dirent_t *zde, zip_source_t *src, zip_buffer_t *buffer, bool local, zip_error_t *error) { +_zip_dirent_read(zip_dirent_t *zde, zip_source_t *src, zip_buffer_t *buffer, bool local, zip_uint64_t central_compressed_size, bool check_consistency, zip_error_t *error) { zip_uint8_t buf[CDENTRYSIZE]; - zip_uint16_t dostime, dosdate; zip_uint32_t size, variable_size; zip_uint16_t filename_len, comment_len, ef_len; + zip_string_t *utf8_string; + bool is_zip64 = false; @@ -391,5 +382,4 @@ _zip_dirent_read(zip_dirent_t *zde, zip_source_t *src, zip_buffer_t *buffer, boo /* convert to time_t */ - dostime = _zip_buffer_get_16(buffer); - dosdate = _zip_buffer_get_16(buffer); - zde->last_mod = _zip_d2u_time(dostime, dosdate); + zde->last_mod.time = _zip_buffer_get_16(buffer); + zde->last_mod.date = _zip_buffer_get_16(buffer); @@ -460,3 +450,3 @@ _zip_dirent_read(zip_dirent_t *zde, zip_source_t *src, zip_buffer_t *buffer, boo zde->filename = _zip_read_string(buffer, src, filename_len, 1, error); - if (!zde->filename) { + if (zde->filename == NULL) { if (zip_error_code_zip(error) == ZIP_ER_EOF) { @@ -504,3 +494,3 @@ _zip_dirent_read(zip_dirent_t *zde, zip_source_t *src, zip_buffer_t *buffer, boo zde->comment = _zip_read_string(buffer, src, comment_len, 0, error); - if (!zde->comment) { + if (zde->comment == NULL) { if (!from_buffer) { @@ -521,4 +511,20 @@ _zip_dirent_read(zip_dirent_t *zde, zip_source_t *src, zip_buffer_t *buffer, boo - zde->filename = _zip_dirent_process_ef_utf_8(zde, ZIP_EF_UTF_8_NAME, zde->filename); - zde->comment = _zip_dirent_process_ef_utf_8(zde, ZIP_EF_UTF_8_COMMENT, zde->comment); + if ((utf8_string = _zip_dirent_process_ef_utf_8(zde, ZIP_EF_UTF_8_NAME, zde->filename, check_consistency)) == NULL && zde->filename != NULL) { + zip_error_set(error, ZIP_ER_INCONS, ZIP_ER_DETAIL_UTF8_FILENAME_MISMATCH); + if (!from_buffer) { + _zip_buffer_free(buffer); + } + return -1; + } + zde->filename = utf8_string; + if (!local) { + if ((utf8_string = _zip_dirent_process_ef_utf_8(zde, ZIP_EF_UTF_8_COMMENT, zde->comment, check_consistency)) == NULL && zde->comment != NULL) { + zip_error_set(error, ZIP_ER_INCONS, ZIP_ER_DETAIL_UTF8_COMMENT_MISMATCH); + if (!from_buffer) { + _zip_buffer_free(buffer); + } + return -1; + } + zde->comment = utf8_string; + } @@ -537,2 +543,3 @@ _zip_dirent_read(zip_dirent_t *zde, zip_source_t *src, zip_buffer_t *buffer, boo } + is_zip64 = true; } @@ -547,2 +554,3 @@ _zip_dirent_read(zip_dirent_t *zde, zip_source_t *src, zip_buffer_t *buffer, boo } + if (!from_buffer) { @@ -551,2 +559,31 @@ _zip_dirent_read(zip_dirent_t *zde, zip_source_t *src, zip_buffer_t *buffer, boo + if (local && zde->bitflags & ZIP_GPBF_DATA_DESCRIPTOR) { + zip_uint32_t df_crc; + zip_uint64_t df_comp_size, df_uncomp_size; + if (zip_source_seek(src, central_compressed_size, SEEK_CUR) != 0 || (buffer = _zip_buffer_new_from_source(src, MAX_DATA_DESCRIPTOR_LENGTH, buf, error)) == NULL) { + return -1; + } + if (memcmp(_zip_buffer_peek(buffer, MAGIC_LEN), DATADES_MAGIC, MAGIC_LEN) == 0) { + _zip_buffer_skip(buffer, MAGIC_LEN); + } + df_crc = _zip_buffer_get_32(buffer); + df_comp_size = is_zip64 ? _zip_buffer_get_64(buffer) : _zip_buffer_get_32(buffer); + df_uncomp_size = is_zip64 ? _zip_buffer_get_64(buffer) : _zip_buffer_get_32(buffer); + + if (!_zip_buffer_ok(buffer)) { + zip_error_set(error, ZIP_ER_INTERNAL, 0); + _zip_buffer_free(buffer); + return -1; + } + _zip_buffer_free(buffer); + + if ((zde->crc != 0 && zde->crc != df_crc) || (zde->comp_size != 0 && zde->comp_size != df_comp_size) || (zde->uncomp_size != 0 && zde->uncomp_size != df_uncomp_size)) { + zip_error_set(error, ZIP_ER_INCONS, ZIP_ER_DETAIL_DATA_DESCRIPTOR_MISMATCH); + return -1; + } + zde->crc = df_crc; + zde->comp_size = df_comp_size; + zde->uncomp_size = df_uncomp_size; + } + /* zip_source_seek / zip_source_tell don't support values > ZIP_INT64_MAX */ @@ -566,3 +603,4 @@ _zip_dirent_read(zip_dirent_t *zde, zip_source_t *src, zip_buffer_t *buffer, boo -bool zip_dirent_process_ef_zip64(zip_dirent_t* zde, const zip_uint8_t* ef, zip_uint64_t got_len, bool local, zip_error_t* error) { +bool +zip_dirent_process_ef_zip64(zip_dirent_t *zde, const zip_uint8_t *ef, zip_uint64_t got_len, bool local, zip_error_t *error) { zip_buffer_t *ef_buffer; @@ -627,3 +665,3 @@ bool zip_dirent_process_ef_zip64(zip_dirent_t* zde, const zip_uint8_t* ef, zip_u static zip_string_t * -_zip_dirent_process_ef_utf_8(const zip_dirent_t *de, zip_uint16_t id, zip_string_t *str) { +_zip_dirent_process_ef_utf_8(const zip_dirent_t *de, zip_uint16_t id, zip_string_t *str, bool check_consistency) { zip_uint16_t ef_len; @@ -650,2 +688,10 @@ _zip_dirent_process_ef_utf_8(const zip_dirent_t *de, zip_uint16_t id, zip_string if (ef_str != NULL) { + if (check_consistency) { + if (!_zip_string_equal(str, ef_str) && _zip_string_is_ascii(ef_str)) { + _zip_string_free(ef_str); + _zip_buffer_free(buffer); + return NULL; + } + } + _zip_string_free(str); @@ -690,14 +736,14 @@ _zip_dirent_process_winzip_aes(zip_dirent_t *de, zip_error_t *error) { switch (_zip_buffer_get_16(buffer)) { - case 1: - break; + case 1: + break; - case 2: - crc_valid = false; - /* TODO: When checking consistency, check that crc is 0. */ - break; - - default: - zip_error_set(error, ZIP_ER_ENCRNOTSUPP, 0); - _zip_buffer_free(buffer); - return false; + case 2: + crc_valid = false; + /* TODO: When checking consistency, check that crc is 0. */ + break; + + default: + zip_error_set(error, ZIP_ER_ENCRNOTSUPP, 0); + _zip_buffer_free(buffer); + return false; } @@ -789,3 +835,3 @@ int _zip_dirent_write(zip_t *za, zip_dirent_t *de, zip_flags_t flags) { - zip_uint16_t dostime, dosdate; + zip_dostime_t dostime; zip_encoding_type_t com_enc, name_enc; @@ -928,10 +974,10 @@ _zip_dirent_write(zip_t *za, zip_dirent_t *de, zip_flags_t flags) { if (ZIP_WANT_TORRENTZIP(za)) { - dostime = 0xbc00; - dosdate = 0x2198; + dostime.time = 0xbc00; + dostime.date = 0x2198; } else { - _zip_u2d_time(de->last_mod, &dostime, &dosdate); + dostime = de->last_mod; } - _zip_buffer_put_16(buffer, dostime); - _zip_buffer_put_16(buffer, dosdate); + _zip_buffer_put_16(buffer, dostime.time); + _zip_buffer_put_16(buffer, dostime.date); @@ -1036,3 +1082,3 @@ _zip_dirent_write(zip_t *za, zip_dirent_t *de, zip_flags_t flags) { time_t -_zip_d2u_time(zip_uint16_t dtime, zip_uint16_t ddate) { +_zip_d2u_time(const zip_dostime_t *dtime) { struct tm tm; @@ -1044,9 +1090,9 @@ _zip_d2u_time(zip_uint16_t dtime, zip_uint16_t ddate) { - tm.tm_year = ((ddate >> 9) & 127) + 1980 - 1900; - tm.tm_mon = ((ddate >> 5) & 15) - 1; - tm.tm_mday = ddate & 31; + tm.tm_year = ((dtime->date >> 9) & 127) + 1980 - 1900; + tm.tm_mon = ((dtime->date >> 5) & 15) - 1; + tm.tm_mday = dtime->date & 31; - tm.tm_hour = (dtime >> 11) & 31; - tm.tm_min = (dtime >> 5) & 63; - tm.tm_sec = (dtime << 1) & 62; + tm.tm_hour = (dtime->time >> 11) & 31; + tm.tm_min = (dtime->time >> 5) & 63; + tm.tm_sec = (dtime->time << 1) & 62; @@ -1121,4 +1167,4 @@ _zip_get_dirent(zip_t *za, zip_uint64_t idx, zip_flags_t flags, zip_error_t *err -void -_zip_u2d_time(time_t intime, zip_uint16_t *dtime, zip_uint16_t *ddate) { +int +_zip_u2d_time(time_t intime, zip_dostime_t *dtime, zip_error_t *ze) { struct tm *tpm; @@ -1128,5 +1174,8 @@ _zip_u2d_time(time_t intime, zip_uint16_t *dtime, zip_uint16_t *ddate) { /* if localtime fails, return an arbitrary date (1980-01-01 00:00:00) */ - *ddate = (1 << 5) + 1; - *dtime = 0; - return; + dtime->date = (1 << 5) + 1; + dtime->time = 0; + if (ze) { + zip_error_set(ze, ZIP_ER_INVAL, errno); + } + return -1; } @@ -1136,4 +1185,6 @@ _zip_u2d_time(time_t intime, zip_uint16_t *dtime, zip_uint16_t *ddate) { - *ddate = (zip_uint16_t)(((tpm->tm_year + 1900 - 1980) << 9) + ((tpm->tm_mon + 1) << 5) + tpm->tm_mday); - *dtime = (zip_uint16_t)(((tpm->tm_hour) << 11) + ((tpm->tm_min) << 5) + ((tpm->tm_sec) >> 1)); + dtime->date = (zip_uint16_t)(((tpm->tm_year + 1900 - 1980) << 9) + ((tpm->tm_mon + 1) << 5) + tpm->tm_mday); + dtime->time = (zip_uint16_t)(((tpm->tm_hour) << 11) + ((tpm->tm_min) << 5) + ((tpm->tm_sec) >> 1)); + + return 0; } @@ -1194,6 +1245,7 @@ _zip_dirent_apply_attributes(zip_dirent_t *de, zip_file_attributes_t *attributes -void zip_dirent_torrentzip_normalize(zip_dirent_t *de) { +void +zip_dirent_torrentzip_normalize(zip_dirent_t *de) { de->version_madeby = 0; de->version_needed = 20; /* 2.0 */ - de->bitflags = 2; /* maximum compression */ + de->bitflags = 2; /* maximum compression */ de->comp_method = ZIP_CM_DEFLATE; @@ -1205,3 +1257,19 @@ void zip_dirent_torrentzip_normalize(zip_dirent_t *de) { /* last_mod, extra_fields, and comment are normalized in zip_dirent_write() directly */ +} +int +zip_dirent_check_consistency(zip_dirent_t *dirent) { + if (dirent->comp_method == ZIP_CM_STORE && dirent->comp_size != dirent->uncomp_size) { + return ZIP_ER_DETAIL_STORED_SIZE_MISMATCH; + } + return 0; } + +time_t zip_dirent_get_last_mod_mtime(zip_dirent_t *de) { + if (!de->last_mod_mtime_valid) { + de->last_mod_mtime = _zip_d2u_time(&de->last_mod); + de->last_mod_mtime_valid = true; + } + + return de->last_mod_mtime; +}
\ No newline at end of file diff --git a/src/Common/libzip/zip_discard.c b/src/Common/libzip/zip_discard.c index d1dc4f8b..841a80e2 100644 --- a/src/Common/libzip/zip_discard.c +++ b/src/Common/libzip/zip_discard.c @@ -2,3 +2,3 @@ zip_discard.c -- discard and free struct zip - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_entry.c b/src/Common/libzip/zip_entry.c index 35a36e4a..dd25e61f 100644 --- a/src/Common/libzip/zip_entry.c +++ b/src/Common/libzip/zip_entry.c @@ -2,3 +2,3 @@ zip_entry.c -- struct zip_entry helper functions - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_err_str.c b/src/Common/libzip/zip_err_str.c index 28af773b..fb4b69fa 100644 --- a/src/Common/libzip/zip_err_str.c +++ b/src/Common/libzip/zip_err_str.c @@ -51,2 +51,3 @@ const struct _zip_err_info _zip_err_str[] = { { N, "Not allowed in torrentzip" }, + { N, "Possibly truncated or corrupted zip archive" }, }; @@ -76,2 +77,7 @@ const struct _zip_err_info _zip_err_details[] = { { E, "file length in header doesn't match actual file length" }, + { E, "compressed and uncompressed sizes don't match for stored file" }, + { E, "local header and data descriptor do not match" }, + { G, "EOCD64 and EOCD64 locator do not match" }, + { E, "UTF-8 filename is ASCII and doesn't match filename" }, + { E, "UTF-8 comment is ASCII and doesn't match comment" }, }; diff --git a/src/Common/libzip/zip_error.c b/src/Common/libzip/zip_error.c index c498e086..da910d44 100644 --- a/src/Common/libzip/zip_error.c +++ b/src/Common/libzip/zip_error.c @@ -2,3 +2,3 @@ zip_error.c -- zip_error_t helper functions - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_error_clear.c b/src/Common/libzip/zip_error_clear.c index 94ff5062..04062719 100644 --- a/src/Common/libzip/zip_error_clear.c +++ b/src/Common/libzip/zip_error_clear.c @@ -2,3 +2,3 @@ zip_error_clear.c -- clear zip error - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_error_get.c b/src/Common/libzip/zip_error_get.c index c0418f0d..2a5b3eaf 100644 --- a/src/Common/libzip/zip_error_get.c +++ b/src/Common/libzip/zip_error_get.c @@ -2,3 +2,3 @@ zip_error_get.c -- get zip error - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_error_get_sys_type.c b/src/Common/libzip/zip_error_get_sys_type.c index a22ffb03..973d26c0 100644 --- a/src/Common/libzip/zip_error_get_sys_type.c +++ b/src/Common/libzip/zip_error_get_sys_type.c @@ -2,3 +2,3 @@ zip_error_get_sys_type.c -- return type of system error code - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_error_strerror.c b/src/Common/libzip/zip_error_strerror.c index fe04cbb4..5be54b38 100644 --- a/src/Common/libzip/zip_error_strerror.c +++ b/src/Common/libzip/zip_error_strerror.c @@ -2,3 +2,3 @@ zip_error_sterror.c -- get string representation of struct zip_error - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2023 Dieter Baron and Thomas Klausner @@ -51,2 +51,5 @@ zip_error_strerror(zip_error_t *err) { system_error_buffer = (char *)malloc(128); + if (system_error_buffer == NULL) { + return _zip_err_str[ZIP_ER_MEMORY].description; + } snprintf_s(system_error_buffer, 128, "Unknown error %d", err->zip_err); @@ -63,2 +66,5 @@ zip_error_strerror(zip_error_t *err) { system_error_buffer = malloc(len); + if (system_error_buffer == NULL) { + return _zip_err_str[ZIP_ER_MEMORY].description; + } strerror_s(system_error_buffer, len, err->sys_err); @@ -81,2 +87,5 @@ zip_error_strerror(zip_error_t *err) { system_error_buffer = (char *)malloc(128); + if (system_error_buffer == NULL) { + return _zip_err_str[ZIP_ER_MEMORY].description; + } snprintf_s(system_error_buffer, 128, "invalid detail error %u", error); @@ -87,2 +96,5 @@ zip_error_strerror(zip_error_t *err) { system_error_buffer = (char *)malloc(128); + if (system_error_buffer == NULL) { + return _zip_err_str[ZIP_ER_MEMORY].description; + } snprintf_s(system_error_buffer, 128, "entry %d: %s", index, _zip_err_details[error].description); diff --git a/src/Common/libzip/zip_error_to_str.c b/src/Common/libzip/zip_error_to_str.c index b60b7881..4186e3a4 100644 --- a/src/Common/libzip/zip_error_to_str.c +++ b/src/Common/libzip/zip_error_to_str.c @@ -2,3 +2,3 @@ zip_error_to_str.c -- get string representation of zip error code - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_extra_field.c b/src/Common/libzip/zip_extra_field.c index 7aed12ad..52837046 100644 --- a/src/Common/libzip/zip_extra_field.c +++ b/src/Common/libzip/zip_extra_field.c @@ -2,3 +2,3 @@ zip_extra_field.c -- manipulate extra fields - Copyright (C) 2012-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2012-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_extra_field_api.c b/src/Common/libzip/zip_extra_field_api.c index 560c71bb..6f2b4596 100644 --- a/src/Common/libzip/zip_extra_field_api.c +++ b/src/Common/libzip/zip_extra_field_api.c @@ -2,3 +2,3 @@ zip_extra_field_api.c -- public extra fields API functions - Copyright (C) 2012-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2012-2024 Dieter Baron and Thomas Klausner @@ -58,6 +58,2 @@ zip_file_extra_field_delete(zip_t *za, zip_uint64_t idx, zip_uint16_t ef_idx, zi } - if (ZIP_WANT_TORRENTZIP(za)) { - zip_error_set(&za->error, ZIP_ER_NOT_ALLOWED, 0); - return -1; - } diff --git a/src/Common/libzip/zip_fclose.c b/src/Common/libzip/zip_fclose.c index b820d98b..2ef579a0 100644 --- a/src/Common/libzip/zip_fclose.c +++ b/src/Common/libzip/zip_fclose.c @@ -2,3 +2,3 @@ zip_fclose.c -- close file in zip archive - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_fdopen.c b/src/Common/libzip/zip_fdopen.c index e72c55dc..94fe6c7c 100644 --- a/src/Common/libzip/zip_fdopen.c +++ b/src/Common/libzip/zip_fdopen.c @@ -2,3 +2,3 @@ zip_fdopen.c -- open read-only archive from file descriptor - Copyright (C) 2009-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2009-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_file_add.c b/src/Common/libzip/zip_file_add.c index c2c41e15..5959d504 100644 --- a/src/Common/libzip/zip_file_add.c +++ b/src/Common/libzip/zip_file_add.c @@ -2,3 +2,3 @@ zip_file_add.c -- add file via callback function - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_file_error_clear.c b/src/Common/libzip/zip_file_error_clear.c index a10bff80..eb9a614e 100644 --- a/src/Common/libzip/zip_file_error_clear.c +++ b/src/Common/libzip/zip_file_error_clear.c @@ -2,3 +2,3 @@ zip_file_error_clear.c -- clear zip file error - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_file_error_get.c b/src/Common/libzip/zip_file_error_get.c index b93117bb..679aeefb 100644 --- a/src/Common/libzip/zip_file_error_get.c +++ b/src/Common/libzip/zip_file_error_get.c @@ -2,3 +2,3 @@ zip_file_error_get.c -- get zip file error - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_file_get_comment.c b/src/Common/libzip/zip_file_get_comment.c index fa998f02..ca04042a 100644 --- a/src/Common/libzip/zip_file_get_comment.c +++ b/src/Common/libzip/zip_file_get_comment.c @@ -2,3 +2,3 @@ zip_file_get_comment.c -- get file comment - Copyright (C) 2006-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2006-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_file_get_external_attributes.c b/src/Common/libzip/zip_file_get_external_attributes.c index a79bb3ed..483557f0 100644 --- a/src/Common/libzip/zip_file_get_external_attributes.c +++ b/src/Common/libzip/zip_file_get_external_attributes.c @@ -2,3 +2,3 @@ zip_file_get_external_attributes.c -- get opsys/external attributes - Copyright (C) 2013-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2013-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_file_get_offset.c b/src/Common/libzip/zip_file_get_offset.c index 72f4880e..c50def54 100644 --- a/src/Common/libzip/zip_file_get_offset.c +++ b/src/Common/libzip/zip_file_get_offset.c @@ -2,3 +2,3 @@ zip_file_get_offset.c -- get offset of file data in archive. - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_file_rename.c b/src/Common/libzip/zip_file_rename.c index 9ac25814..03101e43 100644 --- a/src/Common/libzip/zip_file_rename.c +++ b/src/Common/libzip/zip_file_rename.c @@ -2,3 +2,3 @@ zip_file_rename.c -- rename file in zip archive - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_file_replace.c b/src/Common/libzip/zip_file_replace.c index 4262d453..ce457ed1 100644 --- a/src/Common/libzip/zip_file_replace.c +++ b/src/Common/libzip/zip_file_replace.c @@ -2,3 +2,3 @@ zip_file_replace.c -- replace file via callback function - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2024 Dieter Baron and Thomas Klausner @@ -85,2 +85,8 @@ _zip_file_replace(zip_t *za, zip_uint64_t idx, const char *name, zip_source_t *s + /* delete all extra fields - these are usually data that are + * strongly coupled with the original data */ + if (zip_file_extra_field_delete(za, idx, ZIP_EXTRA_FIELD_ALL, ZIP_FL_CENTRAL | ZIP_FL_LOCAL) < 0) { + return -1; + } + /* does not change any name related data, so we can do it here; diff --git a/src/Common/libzip/zip_file_set_comment.c b/src/Common/libzip/zip_file_set_comment.c index 570f8e82..fb7b9edd 100644 --- a/src/Common/libzip/zip_file_set_comment.c +++ b/src/Common/libzip/zip_file_set_comment.c @@ -2,3 +2,3 @@ zip_file_set_comment.c -- set comment for file in archive - Copyright (C) 2006-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2006-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_file_set_encryption.c b/src/Common/libzip/zip_file_set_encryption.c index 1cdcd4ab..7bb6cdc7 100644 --- a/src/Common/libzip/zip_file_set_encryption.c +++ b/src/Common/libzip/zip_file_set_encryption.c @@ -2,3 +2,3 @@ zip_file_set_encryption.c -- set encryption for file in archive - Copyright (C) 2016-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2016-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_file_set_external_attributes.c b/src/Common/libzip/zip_file_set_external_attributes.c index 2e0429b8..2f9d30f9 100644 --- a/src/Common/libzip/zip_file_set_external_attributes.c +++ b/src/Common/libzip/zip_file_set_external_attributes.c @@ -2,3 +2,3 @@ zip_file_set_external_attributes.c -- set external attributes for entry - Copyright (C) 2013-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2013-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_file_set_mtime.c b/src/Common/libzip/zip_file_set_mtime.c index 4126f5a1..e60f7a9a 100644 --- a/src/Common/libzip/zip_file_set_mtime.c +++ b/src/Common/libzip/zip_file_set_mtime.c @@ -2,3 +2,3 @@ zip_file_set_mtime.c -- set modification time of entry. - Copyright (C) 2014-2022 Dieter Baron and Thomas Klausner + Copyright (C) 2014-2024 Dieter Baron and Thomas Klausner @@ -35,15 +35,8 @@ -ZIP_EXTERN int -zip_file_set_dostime(zip_t *za, zip_uint64_t idx, zip_uint16_t dtime, zip_uint16_t ddate, zip_flags_t flags) { - time_t mtime; - mtime = _zip_d2u_time(dtime, ddate); - return zip_file_set_mtime(za, idx, mtime, flags); -} - -ZIP_EXTERN int -zip_file_set_mtime(zip_t *za, zip_uint64_t idx, time_t mtime, zip_flags_t flags) { +static int zip_file_set_time(zip_t *za, zip_uint64_t idx, zip_uint16_t dtime, zip_uint16_t ddate, zip_flags_t flags, time_t *mtime) { zip_entry_t *e; - if (_zip_get_dirent(za, idx, 0, NULL) == NULL) + if (_zip_get_dirent(za, idx, 0, NULL) == NULL) { return -1; + } @@ -72,3 +65,11 @@ zip_file_set_mtime(zip_t *za, zip_uint64_t idx, time_t mtime, zip_flags_t flags) - e->changes->last_mod = mtime; + e->changes->last_mod.time = dtime; + e->changes->last_mod.date = ddate; + if (mtime != NULL) { + e->changes->last_mod_mtime = *mtime; + e->changes->last_mod_mtime_valid = true; + } + else { + e->changes->last_mod_mtime_valid = false; + } e->changes->changed |= ZIP_DIRENT_LAST_MOD; @@ -77 +78,16 @@ zip_file_set_mtime(zip_t *za, zip_uint64_t idx, time_t mtime, zip_flags_t flags) } + +ZIP_EXTERN int zip_file_set_dostime(zip_t *za, zip_uint64_t idx, zip_uint16_t dtime, zip_uint16_t ddate, zip_flags_t flags) { + return zip_file_set_time(za, idx, dtime, ddate, flags, NULL); +} + + +ZIP_EXTERN int zip_file_set_mtime(zip_t *za, zip_uint64_t idx, time_t mtime, zip_flags_t flags) { + zip_dostime_t dostime; + + if (_zip_u2d_time(mtime, &dostime, &za->error) < 0) { + return -1; + } + + return zip_file_set_time(za, idx, dostime.time, dostime.date, flags, &mtime); +} diff --git a/src/Common/libzip/zip_file_strerror.c b/src/Common/libzip/zip_file_strerror.c index 5b5a0092..5e896b4c 100644 --- a/src/Common/libzip/zip_file_strerror.c +++ b/src/Common/libzip/zip_file_strerror.c @@ -2,3 +2,3 @@ zip_file_sterror.c -- get string representation of zip file error - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_fopen.c b/src/Common/libzip/zip_fopen.c index e3cde9be..93217f3d 100644 --- a/src/Common/libzip/zip_fopen.c +++ b/src/Common/libzip/zip_fopen.c @@ -2,3 +2,3 @@ zip_fopen.c -- open file in zip archive for reading - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_fopen_encrypted.c b/src/Common/libzip/zip_fopen_encrypted.c index d5880dcb..78143afe 100644 --- a/src/Common/libzip/zip_fopen_encrypted.c +++ b/src/Common/libzip/zip_fopen_encrypted.c @@ -2,3 +2,3 @@ zip_fopen_encrypted.c -- open file for reading with password - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_fopen_index.c b/src/Common/libzip/zip_fopen_index.c index a449b83a..b6676b7d 100644 --- a/src/Common/libzip/zip_fopen_index.c +++ b/src/Common/libzip/zip_fopen_index.c @@ -2,3 +2,3 @@ zip_fopen_index.c -- open file in zip archive for reading by index - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_fopen_index_encrypted.c b/src/Common/libzip/zip_fopen_index_encrypted.c index 40483709..86d69774 100644 --- a/src/Common/libzip/zip_fopen_index_encrypted.c +++ b/src/Common/libzip/zip_fopen_index_encrypted.c @@ -2,3 +2,3 @@ zip_fopen_index_encrypted.c -- open file for reading by index w/ password - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_fread.c b/src/Common/libzip/zip_fread.c index 5b7da46a..17cec4fb 100644 --- a/src/Common/libzip/zip_fread.c +++ b/src/Common/libzip/zip_fread.c @@ -2,3 +2,3 @@ zip_fread.c -- read from file - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2024 Dieter Baron and Thomas Klausner @@ -41,7 +41,9 @@ zip_fread(zip_file_t *zf, void *outbuf, zip_uint64_t toread) { - if (!zf) + if (zf == NULL) { return -1; + } - if (zf->error.zip_err != 0) + if (zf->error.zip_err != 0) { return -1; + } diff --git a/src/Common/libzip/zip_fseek.c b/src/Common/libzip/zip_fseek.c index e68ffd36..107a6f73 100644 --- a/src/Common/libzip/zip_fseek.c +++ b/src/Common/libzip/zip_fseek.c @@ -2,3 +2,3 @@ zip_fseek.c -- seek in file - Copyright (C) 2016-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2016-2024 Dieter Baron and Thomas Klausner @@ -38,7 +38,9 @@ ZIP_EXTERN zip_int8_t zip_fseek(zip_file_t *zf, zip_int64_t offset, int whence) { - if (!zf) + if (zf == NULL) { return -1; + } - if (zf->error.zip_err != 0) + if (zf->error.zip_err != 0) { return -1; + } @@ -55,3 +57,3 @@ ZIP_EXTERN int zip_file_is_seekable(zip_file_t *zfile) { - if (!zfile) { + if (zfile == NULL) { return -1; diff --git a/src/Common/libzip/zip_ftell.c b/src/Common/libzip/zip_ftell.c index bf3b03d3..6299b2da 100644 --- a/src/Common/libzip/zip_ftell.c +++ b/src/Common/libzip/zip_ftell.c @@ -2,3 +2,3 @@ zip_ftell.c -- tell position in file - Copyright (C) 2016-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2016-2024 Dieter Baron and Thomas Klausner @@ -40,7 +40,9 @@ zip_ftell(zip_file_t *zf) { - if (!zf) + if (zf == NULL) { return -1; + } - if (zf->error.zip_err != 0) + if (zf->error.zip_err != 0) { return -1; + } diff --git a/src/Common/libzip/zip_get_archive_comment.c b/src/Common/libzip/zip_get_archive_comment.c index ea9a00ab..b83e6bcf 100644 --- a/src/Common/libzip/zip_get_archive_comment.c +++ b/src/Common/libzip/zip_get_archive_comment.c @@ -2,3 +2,3 @@ zip_get_archive_comment.c -- get archive comment - Copyright (C) 2006-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2006-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_get_archive_flag.c b/src/Common/libzip/zip_get_archive_flag.c index fc200bdc..80d59914 100644 --- a/src/Common/libzip/zip_get_archive_flag.c +++ b/src/Common/libzip/zip_get_archive_flag.c @@ -2,3 +2,3 @@ zip_get_archive_flag.c -- get archive global flag - Copyright (C) 2008-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2008-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_get_encryption_implementation.c b/src/Common/libzip/zip_get_encryption_implementation.c index 72e48fe8..28ad3297 100644 --- a/src/Common/libzip/zip_get_encryption_implementation.c +++ b/src/Common/libzip/zip_get_encryption_implementation.c @@ -2,3 +2,3 @@ zip_get_encryption_implementation.c -- get encryption implementation - Copyright (C) 2009-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2009-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_get_file_comment.c b/src/Common/libzip/zip_get_file_comment.c index d58e22ba..0284aecd 100644 --- a/src/Common/libzip/zip_get_file_comment.c +++ b/src/Common/libzip/zip_get_file_comment.c @@ -2,3 +2,3 @@ zip_get_file_comment.c -- get file comment - Copyright (C) 2006-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2006-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_get_name.c b/src/Common/libzip/zip_get_name.c index 4828d781..d1c94532 100644 --- a/src/Common/libzip/zip_get_name.c +++ b/src/Common/libzip/zip_get_name.c @@ -2,3 +2,3 @@ zip_get_name.c -- get filename for a file in zip file - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_get_num_entries.c b/src/Common/libzip/zip_get_num_entries.c index 667dc511..b2595dec 100644 --- a/src/Common/libzip/zip_get_num_entries.c +++ b/src/Common/libzip/zip_get_num_entries.c @@ -2,3 +2,3 @@ zip_get_num_entries.c -- get number of entries in archive - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_get_num_files.c b/src/Common/libzip/zip_get_num_files.c index 140e34f9..16d7754b 100644 --- a/src/Common/libzip/zip_get_num_files.c +++ b/src/Common/libzip/zip_get_num_files.c @@ -2,3 +2,3 @@ zip_get_num_files.c -- get number of files in archive - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_hash.c b/src/Common/libzip/zip_hash.c index d3a954ec..8479bec1 100644 --- a/src/Common/libzip/zip_hash.c +++ b/src/Common/libzip/zip_hash.c @@ -2,3 +2,3 @@ zip_hash.c -- hash table string -> uint64 - Copyright (C) 2015-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2015-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_io_util.c b/src/Common/libzip/zip_io_util.c index 9fcd10b4..6ae8aac6 100644 --- a/src/Common/libzip/zip_io_util.c +++ b/src/Common/libzip/zip_io_util.c @@ -2,3 +2,3 @@ zip_io_util.c -- I/O helper functions - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2024 Dieter Baron and Thomas Klausner @@ -71,4 +71,10 @@ _zip_read_data(zip_buffer_t *buffer, zip_source_t *src, size_t length, bool nulp +// VS2022: Workaround an Internal compiler error for Release ARM (32-bit) build. +#if _MSC_VER >= 1940 && _MSC_VER < 1950 && defined(_M_ARM) && defined(NDEBUG) + size_t l = length + (nulp ? 1 : 0); + r = (zip_uint8_t *)malloc(l); +#else r = (zip_uint8_t *)malloc(length + (nulp ? 1 : 0)); - if (!r) { +#endif + if (r == NULL) { zip_error_set(error, ZIP_ER_MEMORY, 0); diff --git a/src/Common/libzip/zip_libzip_version.c b/src/Common/libzip/zip_libzip_version.c index 4200727f..139b250f 100644 --- a/src/Common/libzip/zip_libzip_version.c +++ b/src/Common/libzip/zip_libzip_version.c @@ -2,3 +2,3 @@ zip_libzip_version.c -- return run-time version of library - Copyright (C) 2017-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2017-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_memdup.c b/src/Common/libzip/zip_memdup.c index 75d72c61..6ac9a5a2 100644 --- a/src/Common/libzip/zip_memdup.c +++ b/src/Common/libzip/zip_memdup.c @@ -2,3 +2,3 @@ zip_memdup.c -- internal zip function, "strdup" with len - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2024 Dieter Baron and Thomas Klausner @@ -47,3 +47,3 @@ _zip_memdup(const void *mem, size_t len, zip_error_t *error) { ret = malloc(len); - if (!ret) { + if (ret == NULL) { zip_error_set(error, ZIP_ER_MEMORY, 0); diff --git a/src/Common/libzip/zip_new.c b/src/Common/libzip/zip_new.c index 4f69c8a2..68e1588f 100644 --- a/src/Common/libzip/zip_new.c +++ b/src/Common/libzip/zip_new.c @@ -2,3 +2,3 @@ zip_new.c -- create and init struct zip - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2024 Dieter Baron and Thomas Klausner @@ -48,3 +48,3 @@ _zip_new(zip_error_t *error) { za = (zip_t *)malloc(sizeof(struct zip)); - if (!za) { + if (za == NULL) { zip_error_set(error, ZIP_ER_MEMORY, 0); @@ -70,2 +70,3 @@ _zip_new(zip_error_t *error) { za->progress = NULL; + za->torrent_mtime = 0; diff --git a/src/Common/libzip/zip_open.c b/src/Common/libzip/zip_open.c index ee7e9dec..9dccad61 100644 --- a/src/Common/libzip/zip_open.c +++ b/src/Common/libzip/zip_open.c @@ -2,3 +2,3 @@ zip_open.c -- open zip archive by name - Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2024 Dieter Baron and Thomas Klausner @@ -33,3 +33,2 @@ - #include <limits.h> @@ -41,3 +40,16 @@ -typedef enum { EXISTS_ERROR = -1, EXISTS_NOT = 0, EXISTS_OK } exists_t; +typedef enum { + EXISTS_ERROR = -1, + EXISTS_NOT = 0, + EXISTS_OK +} exists_t; +typedef enum { + CDIR_OK, + CDIR_INVALID, + CDIR_NOT_FOUND + +} cdir_status_t; + +static bool check_eocd(zip_cdir_t *cd, unsigned int flags, zip_error_t *error); +static bool check_magic(zip_uint64_t offset, zip_buffer_t *buffer, zip_uint64_t buffer_offset, zip_source_t *src, const char* magic); static zip_t *_zip_allocate_new(zip_source_t *src, unsigned int flags, zip_error_t *error); @@ -48,6 +60,6 @@ static exists_t _zip_file_exists(zip_source_t *src, zip_error_t *error); static int _zip_headercomp(const zip_dirent_t *, const zip_dirent_t *); -static const unsigned char *_zip_memmem(const unsigned char *, size_t, const unsigned char *, size_t); -static zip_cdir_t *_zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_error_t *error); -static zip_cdir_t *_zip_read_eocd(zip_buffer_t *buffer, zip_uint64_t buf_offset, unsigned int flags, zip_error_t *error); -static zip_cdir_t *_zip_read_eocd64(zip_source_t *src, zip_buffer_t *buffer, zip_uint64_t buf_offset, unsigned int flags, zip_error_t *error); +static bool _zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_cdir_t **cdirp, zip_error_t *error); +static zip_cdir_t *_zip_read_eocd(zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_error_t *error); +static cdir_status_t _zip_read_eocd64(zip_cdir_t *cdir, zip_source_t *src, zip_buffer_t *buffer, zip_uint64_t buf_offset, unsigned int flags, zip_error_t *error); +static const unsigned char *find_eocd(zip_buffer_t *buffer, const unsigned char *last); @@ -146,2 +158,23 @@ zip_open_from_source(zip_source_t *src, int _flags, zip_error_t *error) { +static bool +_is_truncated_zip(zip_source_t *src) { + unsigned char data[4]; + /* check if the source is a truncated zip archive: true if yes, no + if not or can't be determined */ + if (zip_source_seek(src, 0, SEEK_SET) < 0) { + return false; + } + + if (zip_source_read(src, data, 4) != 4) { + return false; + } + + if (memcmp(data, LOCAL_MAGIC, 4) == 0) { + /* file starts with a ZIP local header signature */ + return true; + } + return false; +} + + zip_t * @@ -176,2 +209,8 @@ _zip_open(zip_source_t *src, unsigned int flags, zip_error_t *error) { _zip_error_copy(error, &za->error); + if (zip_error_code_zip(error) == ZIP_ER_NOZIP) { + /* not a zip - find out if it's truncated */ + if (_is_truncated_zip(src)) { + zip_error_set(error, ZIP_ER_TRUNCATED_ZIP, 0); + } + } /* keep src so discard does not get rid of it */ @@ -230,10 +269,10 @@ _zip_set_open_error(int *zep, const zip_error_t *err, int ze) { ze = zip_error_code_zip(err); - switch (zip_error_system_type(err)) { - case ZIP_ET_SYS: - case ZIP_ET_LIBZIP: - errno = zip_error_code_system(err); - break; - - default: - break; + switch (zip_error_system_type(err)) { + case ZIP_ET_SYS: + case ZIP_ET_LIBZIP: + errno = zip_error_code_system(err); + break; + + default: + break; } @@ -252,4 +291,3 @@ _zip_set_open_error(int *zep, const zip_error_t *err, int ze) { -static zip_cdir_t * -_zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_error_t *error) { +static bool _zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_cdir_t **cdirp, zip_error_t *error) { zip_cdir_t *cd; @@ -259,13 +297,8 @@ _zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_err zip_buffer_t *cd_buffer; + bool eocd64_found = false; - if (_zip_buffer_left(buffer) < EOCDLEN) { - /* not enough bytes left for comment */ - zip_error_set(error, ZIP_ER_NOZIP, 0); - return NULL; - } + *cdirp = NULL; - /* check for end-of-central-dir magic */ - if (memcmp(_zip_buffer_get(buffer, 4), EOCD_MAGIC, 4) != 0) { - zip_error_set(error, ZIP_ER_NOZIP, 0); - return NULL; + if ((cd = _zip_read_eocd(buffer, buf_offset, error)) == NULL) { + return false; } @@ -273,12 +306,48 @@ _zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_err if (eocd_offset >= EOCD64LOCLEN && memcmp(_zip_buffer_data(buffer) + eocd_offset - EOCD64LOCLEN, EOCD64LOC_MAGIC, 4) == 0) { + eocd64_found = true; _zip_buffer_set_offset(buffer, eocd_offset - EOCD64LOCLEN); - cd = _zip_read_eocd64(za->src, buffer, buf_offset, za->flags, error); + switch (_zip_read_eocd64(cd, za->src, buffer, buf_offset, za->flags, error)) { + case CDIR_OK: + break; + + case CDIR_INVALID: + _zip_cdir_free(cd); + return true; + + case CDIR_NOT_FOUND: + _zip_cdir_free(cd); + return false; + } } - else { - _zip_buffer_set_offset(buffer, eocd_offset); - cd = _zip_read_eocd(buffer, buf_offset, za->flags, error); + + if ((cd->eocd_disk != 0 || cd->this_disk != 0) && !eocd64_found && cd->eocd_disk != cd->this_disk) { + /* If the central directory doesn't start on this disk, we can't check that offset is valid. Check as much as we can instead. */ + if (cd->this_disk < cd->eocd_disk) { + /* Disks before the start of the central directory don't contain an EOCD. */ + _zip_cdir_free(cd); + return false; + } + if (cd->size <= cd->eocd_offset) { + /* The complete central directory would fit on this disk. */ + _zip_cdir_free(cd); + return false; + } } - if (cd == NULL) - return NULL; + if (!eocd64_found) { + if (cd->this_disk == 0 && cd->eocd_disk == 0 && cd->eocd_offset == 0 && cd->offset == 0 && cd->num_entries == 0) { + /* An empty archive doesn't contain central directory entries. */ + } + else if (!check_magic(cd->offset, buffer, buf_offset, za->src, CENTRAL_MAGIC)) { + _zip_cdir_free(cd); + return false; + } + } + + /* We accept this EOCD as valid and won't search for an earlier one if it is unusable. */ + + if (!check_eocd(cd, za->flags, error)) { + _zip_cdir_free(cd); + return true; + } @@ -291,3 +360,3 @@ _zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_err _zip_cdir_free(cd); - return NULL; + return true; } @@ -300,6 +369,11 @@ _zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_err - if (tail_len < comment_len || ((za->open_flags & ZIP_CHECKCONS) && tail_len != comment_len)) { - zip_error_set(error, ZIP_ER_INCONS, ZIP_ER_DETAIL_COMMENT_LENGTH_INVALID); - _zip_cdir_free(cd); - return NULL; + if (tail_len != comment_len) { + if (za->open_flags & ZIP_CHECKCONS) { + zip_error_set(error, ZIP_ER_INCONS, ZIP_ER_DETAIL_COMMENT_LENGTH_INVALID); + _zip_cdir_free(cd); + return true; + } + if (tail_len < comment_len) { + comment_len = tail_len; + } } @@ -309,3 +383,3 @@ _zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_err _zip_cdir_free(cd); - return NULL; + return true; } @@ -322,3 +396,3 @@ _zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_err _zip_cdir_free(cd); - return NULL; + return true; } @@ -327,3 +401,3 @@ _zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_err _zip_cdir_free(cd); - return NULL; + return true; } @@ -336,3 +410,3 @@ _zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_err _zip_cdir_free(cd); - return NULL; + return true; } @@ -343,3 +417,3 @@ _zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_err _zip_cdir_free(cd); - return NULL; + return true; } @@ -347,2 +421,7 @@ _zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_err + if (!_zip_cdir_grow(cd, cd->num_entries, error)) { + _zip_cdir_free(cd); + _zip_buffer_free(cd_buffer); + return true; + } left = (zip_uint64_t)cd->size; @@ -364,3 +443,3 @@ _zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_err _zip_buffer_free(cd_buffer); - return NULL; + return true; } @@ -369,7 +448,7 @@ _zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_err - if ((cd->entry[i].orig = _zip_dirent_new()) == NULL || (entry_size = _zip_dirent_read(cd->entry[i].orig, za->src, cd_buffer, false, error)) < 0) { - if (zip_error_code_zip(error) == ZIP_ER_INCONS) { - zip_error_set(error, ZIP_ER_INCONS, ADD_INDEX_TO_DETAIL(zip_error_code_system(error), i)); - } - else if (grown && zip_error_code_zip(error) == ZIP_ER_NOZIP) { + if ((cd->entry[i].orig = _zip_dirent_new()) == NULL || (entry_size = _zip_dirent_read(cd->entry[i].orig, za->src, cd_buffer, false, 0, za->open_flags & ZIP_CHECKCONS, error)) < 0) { + if (zip_error_code_zip(error) == ZIP_ER_INCONS) { + zip_error_set(error, ZIP_ER_INCONS, ADD_INDEX_TO_DETAIL(zip_error_code_system(error), i)); + } + else if (grown && zip_error_code_zip(error) == ZIP_ER_NOZIP) { zip_error_set(error, ZIP_ER_INCONS, MAKE_DETAIL_WITH_INDEX(ZIP_ER_DETAIL_CDIR_ENTRY_INVALID, i)); @@ -378,3 +457,3 @@ _zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_err _zip_buffer_free(cd_buffer); - return NULL; + return true; } @@ -384,2 +463,3 @@ _zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_err + /* If we didn't fill all we grew, cd->num_entries was wrong. */ if (i != cd->nentry || left > 0) { @@ -388,3 +468,3 @@ _zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_err _zip_cdir_free(cd); - return NULL; + return true; } @@ -403,3 +483,3 @@ _zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_err _zip_cdir_free(cd); - return NULL; + return true; } @@ -412,3 +492,3 @@ _zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_err _zip_cdir_free(cd); - return NULL; + return true; } @@ -417,3 +497,23 @@ _zip_read_cdir(zip_t *za, zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_err _zip_buffer_free(cd_buffer); - return cd; + *cdirp = cd; + return true; +} + + +static bool check_magic(zip_uint64_t offset, zip_buffer_t *buffer, zip_uint64_t buffer_offset, zip_source_t *src, const char* magic) { + if (buffer_offset <= offset) { + zip_uint8_t* data; + if (_zip_buffer_set_offset(buffer, offset - buffer_offset) < 0 || (data = _zip_buffer_get(buffer, MAGIC_LEN)) == NULL) { + return false; + } + return memcmp(data, magic, MAGIC_LEN) == 0; + } + else { + zip_uint8_t data[MAGIC_LEN]; + + if (zip_source_seek(src, offset, SEEK_SET) < 0 || zip_source_read(src, data, MAGIC_LEN) != MAGIC_LEN) { + return false; + } + return memcmp(data, magic, MAGIC_LEN) == 0; + } } @@ -432,2 +532,3 @@ _zip_checkcons(zip_t *za, zip_cdir_t *cd, zip_error_t *error) { struct zip_dirent temp; + int detail; @@ -462,6 +563,6 @@ _zip_checkcons(zip_t *za, zip_cdir_t *cd, zip_error_t *error) { - if (_zip_dirent_read(&temp, za->src, NULL, true, error) == -1) { - if (zip_error_code_zip(error) == ZIP_ER_INCONS) { - zip_error_set(error, ZIP_ER_INCONS, ADD_INDEX_TO_DETAIL(zip_error_code_system(error), i)); - } + if (_zip_dirent_read(&temp, za->src, NULL, true, cd->entry[i].orig->comp_size, true, error) == -1) { + if (zip_error_code_zip(error) == ZIP_ER_INCONS) { + zip_error_set(error, ZIP_ER_INCONS, ADD_INDEX_TO_DETAIL(zip_error_code_system(error), i)); + } _zip_dirent_finalize(&temp); @@ -481,2 +582,7 @@ _zip_checkcons(zip_t *za, zip_cdir_t *cd, zip_error_t *error) { _zip_dirent_finalize(&temp); + + if ((detail = zip_dirent_check_consistency(cd->entry[i].orig)) != 0) { + zip_error_set(error, ZIP_ER_INCONS, MAKE_DETAIL_WITH_INDEX(detail, i)); + return -1; + } } @@ -499,3 +605,3 @@ _zip_headercomp(const zip_dirent_t *central, const zip_dirent_t *local) { #endif - || (central->comp_method != local->comp_method) || (central->last_mod != local->last_mod) || !_zip_string_equal(central->filename, local->filename)) + || (central->comp_method != local->comp_method) || (central->last_mod.time != local->last_mod.time) || (central->last_mod.date != local->last_mod.date) || !_zip_string_equal(central->filename, local->filename)) return -1; @@ -505,15 +611,13 @@ _zip_headercomp(const zip_dirent_t *central, const zip_dirent_t *local) { This is in violation of the appnote. - macOS Archive sets the compressed size even when data descriptor is used ( but not the others), - also in violation of the appnote. - */ - /* if data descriptor is not used, the values must match */ + macOS Archive sets the compressed size even when data descriptor is used ( but not the others), + also in violation of the appnote. + */ + /* if data descriptor is not used, the values must match */ if ((local->bitflags & ZIP_GPBF_DATA_DESCRIPTOR) == 0) { return -1; - } - /* when using a data descriptor, the local header value must be zero or match */ - if ((local->crc != 0 && central->crc != local->crc) || - (local->comp_size != 0 && central->comp_size != local->comp_size) || - (local->uncomp_size != 0 && central->uncomp_size != local->uncomp_size)) { - return -1; - } + } + /* when using a data descriptor, the local header value must be zero or match */ + if ((local->crc != 0 && central->crc != local->crc) || (local->comp_size != 0 && central->comp_size != local->comp_size) || (local->uncomp_size != 0 && central->uncomp_size != local->uncomp_size)) { + return -1; + } } @@ -570,3 +674,3 @@ static zip_cdir_t * _zip_find_central_dir(zip_t *za, zip_uint64_t len) { - zip_cdir_t *cdir, *cdirnew; + zip_cdir_t *cdir; const zip_uint8_t *match; @@ -574,4 +678,2 @@ _zip_find_central_dir(zip_t *za, zip_uint64_t len) { zip_uint64_t buflen; - zip_int64_t a; - zip_int64_t best; zip_error_t error; @@ -602,3 +704,2 @@ _zip_find_central_dir(zip_t *za, zip_uint64_t len) { - best = -1; cdir = NULL; @@ -610,35 +711,12 @@ _zip_find_central_dir(zip_t *za, zip_uint64_t len) { - match = _zip_buffer_get(buffer, 0); - /* The size of buffer never greater than CDBUFSIZE. */ - while (_zip_buffer_left(buffer) >= EOCDLEN && (match = _zip_memmem(match, (size_t)_zip_buffer_left(buffer) - (EOCDLEN - 4), (const unsigned char *)EOCD_MAGIC, 4)) != NULL) { + match = NULL; + while ((match = find_eocd(buffer, match)) != NULL) { _zip_buffer_set_offset(buffer, (zip_uint64_t)(match - _zip_buffer_data(buffer))); - if ((cdirnew = _zip_read_cdir(za, buffer, (zip_uint64_t)buf_offset, &error)) != NULL) { - if (cdir) { - if (best <= 0) { - best = _zip_checkcons(za, cdir, &error); - } - - a = _zip_checkcons(za, cdirnew, &error); - if (best < a) { - _zip_cdir_free(cdir); - cdir = cdirnew; - best = a; - } - else { - _zip_cdir_free(cdirnew); - } + if (_zip_read_cdir(za, buffer, (zip_uint64_t)buf_offset, &cdir, &error)) { + if (cdir != NULL && (za->open_flags & ZIP_CHECKCONS) && _zip_checkcons(za, cdir, &error) < 0) { + _zip_cdir_free(cdir); + cdir = NULL; } - else { - cdir = cdirnew; - if (za->open_flags & ZIP_CHECKCONS) - best = _zip_checkcons(za, cdir, &error); - else { - best = 0; - } - } - cdirnew = NULL; + break; } - - match++; - _zip_buffer_set_offset(buffer, (zip_uint64_t)(match - _zip_buffer_data(buffer))); } @@ -647,8 +725,5 @@ _zip_find_central_dir(zip_t *za, zip_uint64_t len) { - if (best < 0) { + if (cdir == NULL) { _zip_error_copy(&za->error, &error); - _zip_cdir_free(cdir); - return NULL; } - return cdir; @@ -657,24 +732,26 @@ _zip_find_central_dir(zip_t *za, zip_uint64_t len) { -static const unsigned char *_zip_memmem(const unsigned char *big, size_t biglen, const unsigned char *little, size_t littlelen) { +static const unsigned char * +find_eocd(zip_buffer_t *buffer, const unsigned char *last) { + const unsigned char *data = _zip_buffer_data(buffer); const unsigned char *p; - if (littlelen == 0) { - return big; + if (last == NULL) { + last = data + _zip_buffer_size(buffer) - MAGIC_LEN; } - - if (biglen < littlelen) { + else if (last == _zip_buffer_data(buffer)) { return NULL; } + else { + last -= 1; + } - p = big; - while (true) { - p = (const unsigned char *)memchr(p, little[0], biglen - (littlelen - 1) - (size_t)(p - big)); - if (p == NULL) { - return NULL; - } - if (memcmp(p + 1, little + 1, littlelen - 1) == 0) { - return p; + for (p = last; p >= data; p -= 1) { + if (*p == EOCD_MAGIC[0]) { + if (memcmp(p, EOCD_MAGIC, MAGIC_LEN) == 0) { + return p; + } } - p += 1; } + + return NULL; } @@ -683,5 +760,4 @@ static const unsigned char *_zip_memmem(const unsigned char *big, size_t biglen, static zip_cdir_t * -_zip_read_eocd(zip_buffer_t *buffer, zip_uint64_t buf_offset, unsigned int flags, zip_error_t *error) { +_zip_read_eocd(zip_buffer_t *buffer, zip_uint64_t buf_offset, zip_error_t *error) { zip_cdir_t *cd; - zip_uint64_t i, nentry, size, offset, eocd_offset; @@ -692,8 +768,3 @@ _zip_read_eocd(zip_buffer_t *buffer, zip_uint64_t buf_offset, unsigned int flags - eocd_offset = _zip_buffer_offset(buffer); - - _zip_buffer_get(buffer, 4); /* magic already verified */ - - if (_zip_buffer_get_32(buffer) != 0) { - zip_error_set(error, ZIP_ER_MULTIDISK, 0); + if ((cd = _zip_cdir_new(error)) == NULL) { return NULL; @@ -701,39 +772,36 @@ _zip_read_eocd(zip_buffer_t *buffer, zip_uint64_t buf_offset, unsigned int flags + cd->eocd_offset = buf_offset + _zip_buffer_offset(buffer); + /* This function is only called where EOCD magic was found, so no need to check that here. */ + _zip_buffer_skip(buffer, MAGIC_LEN); + cd->is_zip64 = false; + cd->this_disk = _zip_buffer_get_16(buffer); + cd->eocd_disk = _zip_buffer_get_16(buffer); + /* number of cdir-entries on this disk */ - i = _zip_buffer_get_16(buffer); + cd->disk_entries = _zip_buffer_get_16(buffer); /* number of cdir-entries */ - nentry = _zip_buffer_get_16(buffer); - - if (nentry != i) { - zip_error_set(error, ZIP_ER_NOZIP, 0); - return NULL; - } + cd->num_entries = _zip_buffer_get_16(buffer); + cd->size = _zip_buffer_get_32(buffer); + cd->offset = _zip_buffer_get_32(buffer); - size = _zip_buffer_get_32(buffer); - offset = _zip_buffer_get_32(buffer); + return cd; +} - if (offset + size < offset) { - zip_error_set(error, ZIP_ER_SEEK, EFBIG); - return NULL; +static bool +check_eocd(zip_cdir_t *cd, unsigned int flags, zip_error_t *error) { + if (cd->disk_entries != cd->num_entries || cd->this_disk != 0 || cd->eocd_disk != 0) { + zip_error_set(error, ZIP_ER_MULTIDISK, 0); + return false; } - if (offset + size > buf_offset + eocd_offset) { - /* cdir spans past EOCD record */ - zip_error_set(error, ZIP_ER_INCONS, ZIP_ER_DETAIL_CDIR_OVERLAPS_EOCD); - return NULL; + if (cd->offset + cd->size < cd->offset) { + zip_error_set(error, ZIP_ER_SEEK, EFBIG); + return false; } - - if ((flags & ZIP_CHECKCONS) && offset + size != buf_offset + eocd_offset) { + if ((flags & ZIP_CHECKCONS) && cd->offset + cd->size != cd->eocd_offset) { zip_error_set(error, ZIP_ER_INCONS, ZIP_ER_DETAIL_CDIR_LENGTH_INVALID); - return NULL; + return false; } - if ((cd = _zip_cdir_new(nentry, error)) == NULL) - return NULL; - - cd->is_zip64 = false; - cd->size = size; - cd->offset = offset; - - return cd; + return true; } @@ -741,5 +809,3 @@ _zip_read_eocd(zip_buffer_t *buffer, zip_uint64_t buf_offset, unsigned int flags -static zip_cdir_t * -_zip_read_eocd64(zip_source_t *src, zip_buffer_t *buffer, zip_uint64_t buf_offset, unsigned int flags, zip_error_t *error) { - zip_cdir_t *cd; +cdir_status_t _zip_read_eocd64(zip_cdir_t *cdir, zip_source_t *src, zip_buffer_t *buffer, zip_uint64_t buf_offset, unsigned int flags, zip_error_t *error) { zip_uint64_t offset; @@ -749,3 +815,3 @@ _zip_read_eocd64(zip_source_t *src, zip_buffer_t *buffer, zip_uint64_t buf_offse bool free_buffer; - zip_uint32_t num_disks, num_disks64, eocd_disk, eocd_disk64; + zip_uint32_t num_disks, eocd_disk, this_disk; @@ -755,5 +821,14 @@ _zip_read_eocd64(zip_source_t *src, zip_buffer_t *buffer, zip_uint64_t buf_offse - num_disks = _zip_buffer_get_16(buffer); - eocd_disk = _zip_buffer_get_16(buffer); + eocd_disk = _zip_buffer_get_32(buffer); eocd_offset = _zip_buffer_get_64(buffer); + num_disks = _zip_buffer_get_32(buffer); + + if (!check_magic(eocd_offset, buffer, buf_offset, src, EOCD64_MAGIC)) { + return CDIR_NOT_FOUND; + } + + if (num_disks != 1) { + zip_error_set(error, ZIP_ER_MULTIDISK, 0); + return CDIR_INVALID; + } @@ -762,3 +837,3 @@ _zip_read_eocd64(zip_source_t *src, zip_buffer_t *buffer, zip_uint64_t buf_offse zip_error_set(error, ZIP_ER_SEEK, EFBIG); - return NULL; + return CDIR_INVALID; } @@ -768,3 +843,3 @@ _zip_read_eocd64(zip_source_t *src, zip_buffer_t *buffer, zip_uint64_t buf_offse zip_error_set(error, ZIP_ER_INCONS, ZIP_ER_DETAIL_EOCD64_OVERLAPS_EOCD); - return NULL; + return CDIR_INVALID; } @@ -779,6 +854,6 @@ _zip_read_eocd64(zip_source_t *src, zip_buffer_t *buffer, zip_uint64_t buf_offse zip_error_set_from_source(error, src); - return NULL; + return CDIR_INVALID; } if ((buffer = _zip_buffer_new_from_source(src, EOCD64LEN, eocd, error)) == NULL) { - return NULL; + return CDIR_INVALID; } @@ -792,3 +867,3 @@ _zip_read_eocd64(zip_source_t *src, zip_buffer_t *buffer, zip_uint64_t buf_offse } - return NULL; + return CDIR_INVALID; } @@ -804,3 +879,3 @@ _zip_read_eocd64(zip_source_t *src, zip_buffer_t *buffer, zip_uint64_t buf_offse } - return NULL; + return CDIR_INVALID; } @@ -809,16 +884,5 @@ _zip_read_eocd64(zip_source_t *src, zip_buffer_t *buffer, zip_uint64_t buf_offse - num_disks64 = _zip_buffer_get_32(buffer); - eocd_disk64 = _zip_buffer_get_32(buffer); - - /* if eocd values are 0xffff, we have to use eocd64 values. - otherwise, if the values are not the same, it's inconsistent; - in any case, if the value is not 0, we don't support it */ - if (num_disks == 0xffff) { - num_disks = num_disks64; - } - if (eocd_disk == 0xffff) { - eocd_disk = eocd_disk64; - } - if ((flags & ZIP_CHECKCONS) && (eocd_disk != eocd_disk64 || num_disks != num_disks64)) { - zip_error_set(error, ZIP_ER_INCONS, ZIP_ER_DETAIL_EOCD64_MISMATCH); + this_disk = _zip_buffer_get_32(buffer); + if (_zip_buffer_get_32(buffer) != eocd_disk) { + zip_error_set(error, ZIP_ER_INCONS, ZIP_ER_DETAIL_EOCD64_LOCATOR_MISMATCH); if (free_buffer) { @@ -826,14 +890,7 @@ _zip_read_eocd64(zip_source_t *src, zip_buffer_t *buffer, zip_uint64_t buf_offse } - return NULL; - } - if (num_disks != 0 || eocd_disk != 0) { - zip_error_set(error, ZIP_ER_MULTIDISK, 0); - if (free_buffer) { - _zip_buffer_free(buffer); - } - return NULL; + return CDIR_INVALID; } - nentry = _zip_buffer_get_64(buffer); i = _zip_buffer_get_64(buffer); + nentry = _zip_buffer_get_64(buffer); @@ -844,3 +901,3 @@ _zip_read_eocd64(zip_source_t *src, zip_buffer_t *buffer, zip_uint64_t buf_offse } - return NULL; + return CDIR_INVALID; } @@ -856,3 +913,3 @@ _zip_read_eocd64(zip_source_t *src, zip_buffer_t *buffer, zip_uint64_t buf_offse } - return NULL; + return CDIR_INVALID; } @@ -865,12 +922,3 @@ _zip_read_eocd64(zip_source_t *src, zip_buffer_t *buffer, zip_uint64_t buf_offse zip_error_set(error, ZIP_ER_SEEK, EFBIG); - return NULL; - } - if (offset + size > buf_offset + eocd_offset) { - /* cdir spans past EOCD record */ - zip_error_set(error, ZIP_ER_INCONS, ZIP_ER_DETAIL_CDIR_OVERLAPS_EOCD); - return NULL; - } - if ((flags & ZIP_CHECKCONS) && offset + size != buf_offset + eocd_offset) { - zip_error_set(error, ZIP_ER_INCONS, ZIP_ER_DETAIL_CDIR_OVERLAPS_EOCD); - return NULL; + return CDIR_INVALID; } @@ -879,13 +927,19 @@ _zip_read_eocd64(zip_source_t *src, zip_buffer_t *buffer, zip_uint64_t buf_offse zip_error_set(error, ZIP_ER_INCONS, ZIP_ER_DETAIL_CDIR_INVALID); - return NULL; + return CDIR_INVALID; } - if ((cd = _zip_cdir_new(nentry, error)) == NULL) - return NULL; + if ((cdir->size != 0xffffffff && cdir->size != size) || (cdir->offset != 0xffffffff && cdir->offset != offset) || (cdir->num_entries != 0xffff && cdir->num_entries != nentry) || (cdir->disk_entries != 0xffff && cdir->disk_entries != i) || (cdir->this_disk != 0xffff && cdir->this_disk != this_disk) || (cdir->eocd_disk != 0xffff && cdir->eocd_disk != eocd_disk)) { + zip_error_set(error, ZIP_ER_INCONS, ZIP_ER_DETAIL_EOCD64_MISMATCH); + return CDIR_INVALID; + } - cd->is_zip64 = true; - cd->size = size; - cd->offset = offset; + cdir->is_zip64 = true; + cdir->size = size; + cdir->offset = offset; + cdir->disk_entries = i; + cdir->num_entries = nentry; + cdir->this_disk = this_disk; + cdir->eocd_disk = eocd_disk; - return cd; + return CDIR_OK; } @@ -893,3 +947,4 @@ _zip_read_eocd64(zip_source_t *src, zip_buffer_t *buffer, zip_uint64_t buf_offse -static int decode_hex(char c) { +static int +decode_hex(char c) { if (c >= '0' && c <= '9') { @@ -908,5 +963,6 @@ static int decode_hex(char c) { -static void zip_check_torrentzip(zip_t *za, const zip_cdir_t *cdir) { +static void +zip_check_torrentzip(zip_t *za, const zip_cdir_t *cdir) { zip_uint32_t crc_should; - char buf[8+1]; + char buf[8 + 1]; size_t i; @@ -917,4 +973,3 @@ static void zip_check_torrentzip(zip_t *za, const zip_cdir_t *cdir) { - if (_zip_string_length(cdir->comment) != TORRENTZIP_SIGNATURE_LENGTH + TORRENTZIP_CRC_LENGTH - || strncmp((const char *)cdir->comment->raw, TORRENTZIP_SIGNATURE, TORRENTZIP_SIGNATURE_LENGTH) != 0) + if (_zip_string_length(cdir->comment) != TORRENTZIP_SIGNATURE_LENGTH + TORRENTZIP_CRC_LENGTH || strncmp((const char *)cdir->comment->raw, TORRENTZIP_SIGNATURE, TORRENTZIP_SIGNATURE_LENGTH) != 0) return; @@ -936,4 +991,4 @@ static void zip_check_torrentzip(zip_t *za, const zip_cdir_t *cdir) { zip_stat_t st; - zip_source_t* src_window; - zip_source_t* src_crc; + zip_source_t *src_window; + zip_source_t *src_crc; zip_uint8_t buffer[512]; @@ -945,3 +1000,3 @@ static void zip_check_torrentzip(zip_t *za, const zip_cdir_t *cdir) { st.crc = crc_should; - if ((src_window = _zip_source_window_new(za->src, cdir->offset, cdir->size, &st, 0, NULL, NULL, 0, false, NULL)) == NULL) { + if ((src_window = _zip_source_window_new(za->src, cdir->offset, cdir->size, &st, 0, NULL, NULL, NULL, 0, false, NULL)) == NULL) { return; diff --git a/src/Common/libzip/zip_pkware.c b/src/Common/libzip/zip_pkware.c index 6a8c9fcd..ef3a30bb 100644 --- a/src/Common/libzip/zip_pkware.c +++ b/src/Common/libzip/zip_pkware.c @@ -2,3 +2,3 @@ zip_pkware.c -- Traditional PKWARE de/encryption backend routines - Copyright (C) 2009-2020 Dieter Baron and Thomas Klausner + Copyright (C) 2009-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_progress.c b/src/Common/libzip/zip_progress.c index e080514b..5693d7a5 100644 --- a/src/Common/libzip/zip_progress.c +++ b/src/Common/libzip/zip_progress.c @@ -2,3 +2,3 @@ zip_progress.c -- progress reporting - Copyright (C) 2017-2020 Dieter Baron and Thomas Klausner + Copyright (C) 2017-2024 Dieter Baron and Thomas Klausner @@ -193,3 +193,3 @@ _zip_progress_update(zip_progress_t *progress, double sub_current) { - if (current - progress->last_update > progress->precision) { + if (current - progress->last_update > progress->precision || (progress->last_update < 1 && current == 1)) { progress->callback_progress(progress->za, current, progress->ud_progress); diff --git a/src/Common/libzip/zip_random_unix.c b/src/Common/libzip/zip_random_unix.c index 867df790..9446ca92 100644 --- a/src/Common/libzip/zip_random_unix.c +++ b/src/Common/libzip/zip_random_unix.c @@ -2,3 +2,3 @@ zip_random_unix.c -- fill the user's buffer with random stuff (Unix version) - Copyright (C) 2016-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2016-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_random_uwp.c b/src/Common/libzip/zip_random_uwp.c index 0883ce45..7accdeb2 100644 --- a/src/Common/libzip/zip_random_uwp.c +++ b/src/Common/libzip/zip_random_uwp.c @@ -2,3 +2,3 @@ zip_random_uwp.c -- fill the user's buffer with random stuff (UWP version) - Copyright (C) 2017-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2017-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_random_win32.c b/src/Common/libzip/zip_random_win32.c index 789b9c20..209ca4b8 100644 --- a/src/Common/libzip/zip_random_win32.c +++ b/src/Common/libzip/zip_random_win32.c @@ -2,3 +2,3 @@ zip_random_win32.c -- fill the user's buffer with random stuff (Windows version) - Copyright (C) 2016-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2016-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_rename.c b/src/Common/libzip/zip_rename.c index c89b06c9..b356de45 100644 --- a/src/Common/libzip/zip_rename.c +++ b/src/Common/libzip/zip_rename.c @@ -2,3 +2,3 @@ zip_rename.c -- rename file in zip archive - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_replace.c b/src/Common/libzip/zip_replace.c index 96c083c3..549306a0 100644 --- a/src/Common/libzip/zip_replace.c +++ b/src/Common/libzip/zip_replace.c @@ -2,3 +2,3 @@ zip_replace.c -- replace file via callback function - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_set_archive_comment.c b/src/Common/libzip/zip_set_archive_comment.c index 7d06688e..2c75bda6 100644 --- a/src/Common/libzip/zip_set_archive_comment.c +++ b/src/Common/libzip/zip_set_archive_comment.c @@ -2,3 +2,3 @@ zip_set_archive_comment.c -- set archive comment - Copyright (C) 2006-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2006-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_set_archive_flag.c b/src/Common/libzip/zip_set_archive_flag.c index 834ef5ba..7533ac50 100644 --- a/src/Common/libzip/zip_set_archive_flag.c +++ b/src/Common/libzip/zip_set_archive_flag.c @@ -2,3 +2,3 @@ zip_get_archive_flag.c -- set archive global flag - Copyright (C) 2008-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2008-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_set_default_password.c b/src/Common/libzip/zip_set_default_password.c index 4bab513f..07b3a06e 100644 --- a/src/Common/libzip/zip_set_default_password.c +++ b/src/Common/libzip/zip_set_default_password.c @@ -2,3 +2,3 @@ zip_set_default_password.c -- set default password for decryption - Copyright (C) 2009-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2009-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_set_file_comment.c b/src/Common/libzip/zip_set_file_comment.c index 5d2b0b8a..b587ae95 100644 --- a/src/Common/libzip/zip_set_file_comment.c +++ b/src/Common/libzip/zip_set_file_comment.c @@ -2,3 +2,3 @@ zip_set_file_comment.c -- set comment for file in archive - Copyright (C) 2006-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2006-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_set_file_compression.c b/src/Common/libzip/zip_set_file_compression.c index a193bb77..cee099d5 100644 --- a/src/Common/libzip/zip_set_file_compression.c +++ b/src/Common/libzip/zip_set_file_compression.c @@ -2,3 +2,3 @@ zip_set_file_compression.c -- set compression for file in archive - Copyright (C) 2012-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2012-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_set_name.c b/src/Common/libzip/zip_set_name.c index f1bf703e..0087af1a 100644 --- a/src/Common/libzip/zip_set_name.c +++ b/src/Common/libzip/zip_set_name.c @@ -2,3 +2,3 @@ zip_set_name.c -- rename helper function - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_accept_empty.c b/src/Common/libzip/zip_source_accept_empty.c index e772aeea..be319434 100644 --- a/src/Common/libzip/zip_source_accept_empty.c +++ b/src/Common/libzip/zip_source_accept_empty.c @@ -2,3 +2,3 @@ zip_source_accept_empty.c -- if empty source is a valid archive - Copyright (C) 2019-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2019-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_begin_write.c b/src/Common/libzip/zip_source_begin_write.c index 4a9d5d5d..2724335d 100644 --- a/src/Common/libzip/zip_source_begin_write.c +++ b/src/Common/libzip/zip_source_begin_write.c @@ -2,3 +2,3 @@ zip_source_begin_write.c -- start a new file for writing - Copyright (C) 2014-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2014-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_begin_write_cloning.c b/src/Common/libzip/zip_source_begin_write_cloning.c index df195fcd..67d3475b 100644 --- a/src/Common/libzip/zip_source_begin_write_cloning.c +++ b/src/Common/libzip/zip_source_begin_write_cloning.c @@ -2,3 +2,3 @@ zip_source_begin_write_cloning.c -- clone part of file for writing - Copyright (C) 2017-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2017-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_buffer.c b/src/Common/libzip/zip_source_buffer.c index 44159536..bdd522d6 100644 --- a/src/Common/libzip/zip_source_buffer.c +++ b/src/Common/libzip/zip_source_buffer.c @@ -2,3 +2,3 @@ zip_source_buffer.c -- create zip data source from buffer - Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_call.c b/src/Common/libzip/zip_source_call.c index 8c98fc2e..bc13c3b0 100644 --- a/src/Common/libzip/zip_source_call.c +++ b/src/Common/libzip/zip_source_call.c @@ -2,3 +2,3 @@ zip_source_call.c -- invoke callback command on zip_source - Copyright (C) 2009-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2009-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_close.c b/src/Common/libzip/zip_source_close.c index f4f3ff2b..f1ae6f3e 100644 --- a/src/Common/libzip/zip_source_close.c +++ b/src/Common/libzip/zip_source_close.c @@ -2,3 +2,3 @@ zip_source_close.c -- close zip_source (stop reading) - Copyright (C) 2009-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2009-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_commit_write.c b/src/Common/libzip/zip_source_commit_write.c index d7f567b8..ca7563ce 100644 --- a/src/Common/libzip/zip_source_commit_write.c +++ b/src/Common/libzip/zip_source_commit_write.c @@ -2,3 +2,3 @@ zip_source_commit_write.c -- commit changes to file - Copyright (C) 2014-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2014-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_compress.c b/src/Common/libzip/zip_source_compress.c index 3cf709ff..54387eca 100644 --- a/src/Common/libzip/zip_source_compress.c +++ b/src/Common/libzip/zip_source_compress.c @@ -2,3 +2,3 @@ zip_source_compress.c -- (de)compression routines - Copyright (C) 2017-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2017-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_crc.c b/src/Common/libzip/zip_source_crc.c index 435a084b..931a729c 100644 --- a/src/Common/libzip/zip_source_crc.c +++ b/src/Common/libzip/zip_source_crc.c @@ -2,3 +2,3 @@ zip_source_crc.c -- pass-through source that calculates CRC32 and size - Copyright (C) 2009-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2009-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_error.c b/src/Common/libzip/zip_source_error.c index dc7fa20c..774eec0a 100644 --- a/src/Common/libzip/zip_source_error.c +++ b/src/Common/libzip/zip_source_error.c @@ -2,3 +2,3 @@ zip_source_error.c -- get last error from zip_source - Copyright (C) 2009-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2009-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_file.h b/src/Common/libzip/zip_source_file.h index cca9fd2b..de07aecc 100644 --- a/src/Common/libzip/zip_source_file.h +++ b/src/Common/libzip/zip_source_file.h @@ -1,4 +1,7 @@ +#ifndef _HAD_ZIP_SOURCE_FILE_H +#define _HAD_ZIP_SOURCE_FILE_H + /* zip_source_file.h -- header for common file operations - Copyright (C) 2020-2022 Dieter Baron and Thomas Klausner + Copyright (C) 2020-2024 Dieter Baron and Thomas Klausner @@ -90 +93,3 @@ struct zip_source_file_operations { zip_source_t *zip_source_file_common_new(const char *fname, void *file, zip_uint64_t start, zip_int64_t len, const zip_stat_t *st, zip_source_file_operations_t *ops, void *ops_userdata, zip_error_t *error); + +#endif /* _HAD_ZIP_SOURCE_FILE_H */ diff --git a/src/Common/libzip/zip_source_file_common.c b/src/Common/libzip/zip_source_file_common.c index 6c58320f..99f893eb 100644 --- a/src/Common/libzip/zip_source_file_common.c +++ b/src/Common/libzip/zip_source_file_common.c @@ -2,3 +2,3 @@ zip_source_file_common.c -- create data source from file - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_file_stdio.c b/src/Common/libzip/zip_source_file_stdio.c index 6dcc5639..fd16f392 100644 --- a/src/Common/libzip/zip_source_file_stdio.c +++ b/src/Common/libzip/zip_source_file_stdio.c @@ -2,3 +2,3 @@ zip_source_file_stdio.c -- read-only stdio file source implementation - Copyright (C) 2020 Dieter Baron and Thomas Klausner + Copyright (C) 2020-2023 Dieter Baron and Thomas Klausner @@ -122,3 +122,3 @@ _zip_stdio_op_seek(zip_source_file_context_t *ctx, void *f, zip_int64_t offset, - if (fseeko((FILE *)f, (off_t)offset, whence) < 0) { + if (zip_os_fseek((FILE *)f, (zip_off_t)offset, whence) < 0) { zip_error_set(&ctx->error, ZIP_ER_SEEK, errno); @@ -132,3 +132,3 @@ bool _zip_stdio_op_stat(zip_source_file_context_t *ctx, zip_source_file_stat_t *st) { - struct stat sb; + zip_os_stat_t sb; @@ -137,6 +137,6 @@ _zip_stdio_op_stat(zip_source_file_context_t *ctx, zip_source_file_stat_t *st) { if (ctx->fname) { - ret = stat(ctx->fname, &sb); + ret = zip_os_stat(ctx->fname, &sb); } else { - ret = fstat(fileno((FILE *)ctx->f), &sb); + ret = zip_os_fstat(fileno((FILE *)ctx->f), &sb); } @@ -170,3 +170,3 @@ zip_int64_t _zip_stdio_op_tell(zip_source_file_context_t *ctx, void *f) { - off_t offset = ftello((FILE *)f); + zip_off_t offset = zip_os_ftell((FILE *)f); diff --git a/src/Common/libzip/zip_source_file_stdio.h b/src/Common/libzip/zip_source_file_stdio.h index 802e6071..417a28c0 100644 --- a/src/Common/libzip/zip_source_file_stdio.h +++ b/src/Common/libzip/zip_source_file_stdio.h @@ -5,3 +5,3 @@ zip_source_file_stdio.h -- common header for stdio file implementation - Copyright (C) 2020 Dieter Baron and Thomas Klausner + Copyright (C) 2020-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_file_stdio_named.c b/src/Common/libzip/zip_source_file_stdio_named.c index 1495d7dd..1a5ca226 100644 --- a/src/Common/libzip/zip_source_file_stdio_named.c +++ b/src/Common/libzip/zip_source_file_stdio_named.c @@ -2,3 +2,3 @@ zip_source_file_stdio_named.c -- source for stdio file opened by name - Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2023 Dieter Baron and Thomas Klausner @@ -180,5 +180,5 @@ _zip_stdio_op_create_temp_output_cloning(zip_source_file_context_t *ctx, zip_uin struct file_clone_range range; - struct stat st; + zip_os_stat_t st; - if (fstat(fileno(ctx->f), &st) < 0) { + if (zip_os_fstat(fileno(ctx->f), &st) < 0) { zip_error_set(&ctx->error, ZIP_ER_TMPOPEN, errno); @@ -225,3 +225,3 @@ _zip_stdio_op_create_temp_output_cloning(zip_source_file_context_t *ctx, zip_uin } - if (fseeko(tfp, (off_t)offset, SEEK_SET) < 0) { + if (zip_os_fseek(tfp, (zip_off_t)offset, SEEK_SET) < 0) { zip_error_set(&ctx->error, ZIP_ER_TMPOPEN, errno); @@ -292,3 +292,3 @@ static int create_temp_file(zip_source_file_context_t *ctx, bool create_file) { int mode; - struct stat st; + zip_os_stat_t st; int fd = 0; @@ -296,3 +296,3 @@ static int create_temp_file(zip_source_file_context_t *ctx, bool create_file) { - if (stat(ctx->fname, &st) == 0) { + if (zip_os_stat(ctx->fname, &st) == 0) { mode = st.st_mode; @@ -346,3 +346,3 @@ static int create_temp_file(zip_source_file_context_t *ctx, bool create_file) { else { - if (stat(temp, &st) < 0) { + if (zip_os_stat(temp, &st) < 0) { if (errno == ENOENT) { diff --git a/src/Common/libzip/zip_source_file_win32.c b/src/Common/libzip/zip_source_file_win32.c index 624860b1..aa669766 100644 --- a/src/Common/libzip/zip_source_file_win32.c +++ b/src/Common/libzip/zip_source_file_win32.c @@ -2,3 +2,3 @@ zip_source_file_win32.c -- read-only Windows file source implementation - Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_file_win32.h b/src/Common/libzip/zip_source_file_win32.h index d86069ec..da691f0a 100644 --- a/src/Common/libzip/zip_source_file_win32.h +++ b/src/Common/libzip/zip_source_file_win32.h @@ -5,3 +5,3 @@ zip_source_file_win32.h -- common header for Windows file implementation - Copyright (C) 2020 Dieter Baron and Thomas Klausner + Copyright (C) 2020-2024 Dieter Baron and Thomas Klausner @@ -61,2 +61,3 @@ struct zip_win32_file_operations { char *(*string_duplicate)(const char *string); + HANDLE(__stdcall *find_first_file)(const void *name, void *data); }; @@ -75,10 +76,2 @@ int _zip_win32_error_to_errno(DWORD win32err); -#ifdef __clang__ -#define DONT_WARN_INCOMPATIBLE_FN_PTR_BEGIN _Pragma("GCC diagnostic push") _Pragma("GCC diagnostic ignored \"-Wincompatible-function-pointer-types\"") -#define DONT_WARN_INCOMPATIBLE_FN_PTR_END _Pragma("GCC diagnostic pop") -#else -#define DONT_WARN_INCOMPATIBLE_FN_PTR_BEGIN -#define DONT_WARN_INCOMPATIBLE_FN_PTR_END -#endif - #endif /* _HAD_ZIP_SOURCE_FILE_WIN32_H */ diff --git a/src/Common/libzip/zip_source_file_win32_ansi.c b/src/Common/libzip/zip_source_file_win32_ansi.c index 58034cc2..f10f8ae3 100644 --- a/src/Common/libzip/zip_source_file_win32_ansi.c +++ b/src/Common/libzip/zip_source_file_win32_ansi.c @@ -2,3 +2,3 @@ zip_source_file_win32_ansi.c -- source for Windows file opened by ANSI name - Copyright (C) 1999-2020 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2024 Dieter Baron and Thomas Klausner @@ -36,20 +36,24 @@ static char *ansi_allocate_tempname(const char *name, size_t extra_chars, size_t *lengthp); +static HANDLE __stdcall ansi_create_file(const void *name, DWORD access, DWORD share_mode, PSECURITY_ATTRIBUTES security_attributes, DWORD creation_disposition, DWORD file_attributes, HANDLE template_file); +static BOOL __stdcall ansi_delete_file(const void *name); +static DWORD __stdcall ansi_get_file_attributes(const void *name); +static BOOL __stdcall ansi_get_file_attributes_ex(const void *name, GET_FILEEX_INFO_LEVELS info_level, void *information); static void ansi_make_tempname(char *buf, size_t len, const char *name, zip_uint32_t i); +static BOOL __stdcall ansi_move_file(const void *from, const void *to, DWORD flags); +static BOOL __stdcall ansi_set_file_attributes(const void *name, DWORD attributes); +static HANDLE __stdcall ansi_find_first_file(const void *name, void* data); /* clang-format off */ -DONT_WARN_INCOMPATIBLE_FN_PTR_BEGIN - zip_win32_file_operations_t ops_ansi = { ansi_allocate_tempname, - CreateFileA, - DeleteFileA, - GetFileAttributesA, - GetFileAttributesExA, + ansi_create_file, + ansi_delete_file, + ansi_get_file_attributes, + ansi_get_file_attributes_ex, ansi_make_tempname, - MoveFileExA, - SetFileAttributesA, - strdup + ansi_move_file, + ansi_set_file_attributes, + strdup, + ansi_find_first_file, }; - -DONT_WARN_INCOMPATIBLE_FN_PTR_END /* clang-format on */ @@ -82,2 +86,25 @@ ansi_allocate_tempname(const char *name, size_t extra_chars, size_t *lengthp) { +static HANDLE __stdcall +ansi_create_file(const void *name, DWORD access, DWORD share_mode, PSECURITY_ATTRIBUTES security_attributes, DWORD creation_disposition, DWORD file_attributes, HANDLE template_file) +{ + return CreateFileA((const char *)name, access, share_mode, security_attributes, creation_disposition, file_attributes, template_file); +} + +static BOOL __stdcall +ansi_delete_file(const void *name) +{ + return DeleteFileA((const char *)name); +} + +static DWORD __stdcall +ansi_get_file_attributes(const void *name) +{ + return GetFileAttributesA((const char *)name); +} + +static BOOL __stdcall +ansi_get_file_attributes_ex(const void *name, GET_FILEEX_INFO_LEVELS info_level, void *information) +{ + return GetFileAttributesExA((const char *)name, info_level, information); +} @@ -87 +114,19 @@ ansi_make_tempname(char *buf, size_t len, const char *name, zip_uint32_t i) { } + +static BOOL __stdcall +ansi_move_file(const void *from, const void *to, DWORD flags) +{ + return MoveFileExA((const char *)from, (const char *)to, flags); +} + +static BOOL __stdcall +ansi_set_file_attributes(const void *name, DWORD attributes) +{ + return SetFileAttributesA((const char *)name, attributes); +} + +static HANDLE __stdcall +ansi_find_first_file(const void *name, void *data) +{ + return FindFirstFileA((const char *)name, data); +} diff --git a/src/Common/libzip/zip_source_file_win32_named.c b/src/Common/libzip/zip_source_file_win32_named.c index 855e605a..ae72db19 100644 --- a/src/Common/libzip/zip_source_file_win32_named.c +++ b/src/Common/libzip/zip_source_file_win32_named.c @@ -2,3 +2,3 @@ zip_source_file_win32_named.c -- source for Windows file opened by name - Copyright (C) 1999-2020 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2024 Dieter Baron and Thomas Klausner @@ -35,2 +35,9 @@ +/* ACL is not available when targeting the games API partition */ +#if defined(WINAPI_FAMILY_PARTITION) && defined(WINAPI_PARTITION_GAMES) +#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_GAMES) +#define ACL_UNSUPPORTED +#endif +#endif + static zip_int64_t _zip_win32_named_op_commit_write(zip_source_file_context_t *ctx); @@ -112,3 +119,7 @@ _zip_win32_named_op_create_temp_output(zip_source_file_context_t *ctx) { si = DACL_SECURITY_INFORMATION | UNPROTECTED_DACL_SECURITY_INFORMATION; + #ifdef ACL_UNSUPPORTED + success = ERROR_NOT_SUPPORTED; + #else success = GetSecurityInfo((HANDLE)ctx->f, SE_FILE_OBJECT, si, NULL, NULL, &dacl, NULL, &psd); + #endif if (success == ERROR_SUCCESS) { @@ -212,4 +223,16 @@ _zip_win32_named_op_stat(zip_source_file_context_t *ctx, zip_source_file_stat_t if (file_attributes.dwFileAttributes != INVALID_FILE_ATTRIBUTES) { - if ((file_attributes.dwFileAttributes & (FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_DEVICE | FILE_ATTRIBUTE_REPARSE_POINT)) == 0) { - st->regular_file = true; + if ((file_attributes.dwFileAttributes & (FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_DEVICE)) == 0) { + if (file_attributes.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) { +#ifdef IO_REPARSE_TAG_DEDUP // Not defined in WinSDK 7.1 or before (VS2010). + WIN32_FIND_DATA find_data; + /* Deduplication on Windows replaces files with reparse points; + * accept them as regular files. */ + if (file_ops->find_first_file(ctx->fname, &find_data) != INVALID_HANDLE_VALUE) { + st->regular_file = (find_data.dwReserved0 == IO_REPARSE_TAG_DEDUP); + } +#endif + } + else { + st->regular_file = true; + } } diff --git a/src/Common/libzip/zip_source_file_win32_utf16.c b/src/Common/libzip/zip_source_file_win32_utf16.c index 8f07d021..73e25666 100644 --- a/src/Common/libzip/zip_source_file_win32_utf16.c +++ b/src/Common/libzip/zip_source_file_win32_utf16.c @@ -2,3 +2,3 @@ zip_source_file_win32_utf16.c -- source for Windows file opened by UTF-16 name - Copyright (C) 1999-2020 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2024 Dieter Baron and Thomas Klausner @@ -36,9 +36,14 @@ static char *utf16_allocate_tempname(const char *name, size_t extra_chars, size_t *lengthp); -static HANDLE __stdcall utf16_create_file(const char *name, DWORD access, DWORD share_mode, PSECURITY_ATTRIBUTES security_attributes, DWORD creation_disposition, DWORD file_attributes, HANDLE template_file); +static HANDLE __stdcall utf16_create_file(const void *name, DWORD access, DWORD share_mode, PSECURITY_ATTRIBUTES security_attributes, DWORD creation_disposition, DWORD file_attributes, HANDLE template_file); +static BOOL __stdcall utf16_delete_file(const void *name); +static DWORD __stdcall utf16_get_file_attributes(const void *name); +static BOOL __stdcall utf16_get_file_attributes_ex(const void *name, GET_FILEEX_INFO_LEVELS info_level, void *information); static void utf16_make_tempname(char *buf, size_t len, const char *name, zip_uint32_t i); +static BOOL __stdcall utf16_move_file(const void *from, const void *to, DWORD flags); +static BOOL __stdcall utf16_set_file_attributes(const void *name, DWORD attributes); static char *utf16_strdup(const char *string); +static HANDLE __stdcall utf16_find_first_file(const void *name, void* data); -/* clang-format off */ -DONT_WARN_INCOMPATIBLE_FN_PTR_BEGIN +/* clang-format off */ zip_win32_file_operations_t ops_utf16 = { @@ -46,12 +51,11 @@ zip_win32_file_operations_t ops_utf16 = { utf16_create_file, - DeleteFileW, - GetFileAttributesW, - GetFileAttributesExW, + utf16_delete_file, + utf16_get_file_attributes, + utf16_get_file_attributes_ex, utf16_make_tempname, - MoveFileExW, - SetFileAttributesW, - utf16_strdup + utf16_move_file, + utf16_set_file_attributes, + utf16_strdup, + utf16_find_first_file }; - -DONT_WARN_INCOMPATIBLE_FN_PTR_END /* clang-format on */ @@ -86,3 +90,3 @@ utf16_allocate_tempname(const char *name, size_t extra_chars, size_t *lengthp) { -static HANDLE __stdcall utf16_create_file(const char *name, DWORD access, DWORD share_mode, PSECURITY_ATTRIBUTES security_attributes, DWORD creation_disposition, DWORD file_attributes, HANDLE template_file) { +static HANDLE __stdcall utf16_create_file(const void *name, DWORD access, DWORD share_mode, PSECURITY_ATTRIBUTES security_attributes, DWORD creation_disposition, DWORD file_attributes, HANDLE template_file) { #ifdef MS_UWP @@ -102,2 +106,19 @@ static HANDLE __stdcall utf16_create_file(const char *name, DWORD access, DWORD +static BOOL __stdcall +utf16_delete_file(const void *name) +{ + return DeleteFileW((const wchar_t *)name); +} + +static DWORD __stdcall +utf16_get_file_attributes(const void *name) +{ + return GetFileAttributesW((const wchar_t *)name); +} + +static BOOL __stdcall +utf16_get_file_attributes_ex(const void *name, GET_FILEEX_INFO_LEVELS info_level, void *information) +{ + return GetFileAttributesExW((const wchar_t *)name, info_level, information); +} @@ -108,2 +129,13 @@ utf16_make_tempname(char *buf, size_t len, const char *name, zip_uint32_t i) { +static BOOL __stdcall +utf16_move_file(const void *from, const void *to, DWORD flags) +{ + return MoveFileExW((const wchar_t *)from, (const wchar_t *)to, flags); +} + +static BOOL __stdcall +utf16_set_file_attributes(const void *name, DWORD attributes) +{ + return SetFileAttributesW((const wchar_t *)name, attributes); +} @@ -113 +145,8 @@ utf16_strdup(const char *string) { } + + +static HANDLE __stdcall +utf16_find_first_file(const void *name, void* data) +{ + return FindFirstFileW((const wchar_t *)name, data); +} diff --git a/src/Common/libzip/zip_source_file_win32_utf8.c b/src/Common/libzip/zip_source_file_win32_utf8.c index d154f97a..5c27df92 100644 --- a/src/Common/libzip/zip_source_file_win32_utf8.c +++ b/src/Common/libzip/zip_source_file_win32_utf8.c @@ -2,3 +2,3 @@ zip_source_file_win32_ansi.c -- source for Windows file opened by UTF-8 name - Copyright (C) 1999-2020 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_free.c b/src/Common/libzip/zip_source_free.c index 1a800405..df4b08d8 100644 --- a/src/Common/libzip/zip_source_free.c +++ b/src/Common/libzip/zip_source_free.c @@ -2,3 +2,3 @@ zip_source_free.c -- free zip data source - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_get_dostime.c b/src/Common/libzip/zip_source_get_dostime.c new file mode 100644 index 00000000..17f652bb --- /dev/null +++ b/src/Common/libzip/zip_source_get_dostime.c @@ -0,0 +1,72 @@ +/* + zip_source_get_dostime.c -- get modification time in DOS format from source + Copyright (C) 2024 Dieter Baron and Thomas Klausner + + This file is part of libzip, a library to manipulate ZIP archives. + The authors can be contacted at <info@libzip.org> + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + 3. The names of the authors may not be used to endorse or promote + products derived from this software without specific prior + written permission. + + THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS + OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE + GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 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 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + + +#include "zipint.h" + +/* Returns -1 on error, 0 on no dostime available, 1 for dostime returned */ +int +zip_source_get_dos_time(zip_source_t *src, zip_dostime_t *dos_time) { + if (src->source_closed) { + return -1; + } + if (dos_time == NULL) { + zip_error_set(&src->error, ZIP_ER_INVAL, 0); + return -1; + } + + if (src->write_state == ZIP_SOURCE_WRITE_REMOVED) { + zip_error_set(&src->error, ZIP_ER_READ, ENOENT); + } + + if (zip_source_supports(src) & ZIP_SOURCE_MAKE_COMMAND_BITMASK(ZIP_SOURCE_GET_DOS_TIME)) { + zip_int64_t n = _zip_source_call(src, dos_time, sizeof(*dos_time), ZIP_SOURCE_GET_DOS_TIME); + + if (n < 0) { + return -1; + } + else if (n == 0) { + return 0; + } + else if (n == sizeof(*dos_time)) { + return 1; + } + else { + zip_error_set(&src->error, ZIP_ER_INTERNAL, 0); + return -1; + } + } + else { + return 0; + } +} diff --git a/src/Common/libzip/zip_source_get_file_attributes.c b/src/Common/libzip/zip_source_get_file_attributes.c index 4771dc16..209e39f5 100644 --- a/src/Common/libzip/zip_source_get_file_attributes.c +++ b/src/Common/libzip/zip_source_get_file_attributes.c @@ -2,3 +2,3 @@ zip_source_get_file_attributes.c -- get attributes for file from source - Copyright (C) 2020 Dieter Baron and Thomas Klausner + Copyright (C) 2020-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_is_deleted.c b/src/Common/libzip/zip_source_is_deleted.c index 838aa909..d6016a02 100644 --- a/src/Common/libzip/zip_source_is_deleted.c +++ b/src/Common/libzip/zip_source_is_deleted.c @@ -2,3 +2,3 @@ zip_source_is_deleted.c -- was archive was removed? - Copyright (C) 2014-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2014-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_layered.c b/src/Common/libzip/zip_source_layered.c index 62b78e68..be428190 100644 --- a/src/Common/libzip/zip_source_layered.c +++ b/src/Common/libzip/zip_source_layered.c @@ -2,3 +2,3 @@ zip_source_layered.c -- create layered source - Copyright (C) 2009-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2009-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_open.c b/src/Common/libzip/zip_source_open.c index b34fa2c6..9e42d0a9 100644 --- a/src/Common/libzip/zip_source_open.c +++ b/src/Common/libzip/zip_source_open.c @@ -2,3 +2,3 @@ zip_source_open.c -- open zip_source (prepare for reading) - Copyright (C) 2009-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2009-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_pass_to_lower_layer.c b/src/Common/libzip/zip_source_pass_to_lower_layer.c index 4a98222e..391729e4 100644 --- a/src/Common/libzip/zip_source_pass_to_lower_layer.c +++ b/src/Common/libzip/zip_source_pass_to_lower_layer.c @@ -2,3 +2,3 @@ zip_source_pass_to_lower_layer.c -- pass command to lower layer - Copyright (C) 2022 Dieter Baron and Thomas Klausner + Copyright (C) 2022-2024 Dieter Baron and Thomas Klausner @@ -49,2 +49,3 @@ zip_int64_t zip_source_pass_to_lower_layer(zip_source_t *src, void *data, zip_ui case ZIP_SOURCE_ERROR: + case ZIP_SOURCE_GET_DOS_TIME: case ZIP_SOURCE_READ: @@ -54,3 +55,2 @@ zip_int64_t zip_source_pass_to_lower_layer(zip_source_t *src, void *data, zip_ui - case ZIP_SOURCE_BEGIN_WRITE: diff --git a/src/Common/libzip/zip_source_pkware_decode.c b/src/Common/libzip/zip_source_pkware_decode.c index b4c482b3..9c22a069 100644 --- a/src/Common/libzip/zip_source_pkware_decode.c +++ b/src/Common/libzip/zip_source_pkware_decode.c @@ -2,3 +2,3 @@ zip_source_pkware_decode.c -- Traditional PKWARE decryption routines - Copyright (C) 2009-2020 Dieter Baron and Thomas Klausner + Copyright (C) 2009-2024 Dieter Baron and Thomas Klausner @@ -82,5 +82,5 @@ decrypt_header(zip_source_t *src, struct trad_pkware *ctx) { zip_uint8_t header[ZIP_CRYPTO_PKWARE_HEADERLEN]; - struct zip_stat st; + zip_stat_t st; + zip_dostime_t dostime; zip_int64_t n; - bool ok = false; @@ -98,4 +98,4 @@ decrypt_header(zip_source_t *src, struct trad_pkware *ctx) { - if (zip_source_stat(src, &st)) { - /* stat failed, skip password validation */ + if (zip_source_stat(src, &st) < 0 || (st.valid & ZIP_STAT_CRC) == 0) { + /* skip password validation */ return 0; @@ -103,18 +103,10 @@ decrypt_header(zip_source_t *src, struct trad_pkware *ctx) { - /* password verification - two ways: - * mtime - InfoZIP way, to avoid computing complete CRC before encrypting data - * CRC - old PKWare way - */ - - if (st.valid & ZIP_STAT_MTIME) { - unsigned short dostime, dosdate; - _zip_u2d_time(st.mtime, &dostime, &dosdate); - if (header[ZIP_CRYPTO_PKWARE_HEADERLEN - 1] == dostime >> 8) { - ok = true; + if (zip_source_get_dos_time(src, &dostime) <= 0) { + if ((st.valid & ZIP_STAT_MTIME) == 0) { + /* no date available, skip password validation */ + return 0; } - } - if (st.valid & ZIP_STAT_CRC) { - if (header[ZIP_CRYPTO_PKWARE_HEADERLEN - 1] == st.crc >> 24) { - ok = true; + if (_zip_u2d_time(st.mtime, &dostime, &ctx->error) < 0) { + return -1; } @@ -122,3 +114,12 @@ decrypt_header(zip_source_t *src, struct trad_pkware *ctx) { - if (!ok && ((st.valid & (ZIP_STAT_MTIME | ZIP_STAT_CRC)) != 0)) { + /* + password verification - two ways: + - mtime - InfoZIP way, to avoid computing complete CRC before encrypting data + - CRC - old PKWare way + */ + if (header[ZIP_CRYPTO_PKWARE_HEADERLEN - 1] == dostime.time >> 8 + || header[ZIP_CRYPTO_PKWARE_HEADERLEN - 1] == st.crc >> 24) { + return 0; + } + else { zip_error_set(&ctx->error, ZIP_ER_WRONGPASSWD, 0); @@ -126,4 +127,2 @@ decrypt_header(zip_source_t *src, struct trad_pkware *ctx) { } - - return 0; } diff --git a/src/Common/libzip/zip_source_pkware_encode.c b/src/Common/libzip/zip_source_pkware_encode.c index d89b9f4e..fed76115 100644 --- a/src/Common/libzip/zip_source_pkware_encode.c +++ b/src/Common/libzip/zip_source_pkware_encode.c @@ -2,3 +2,3 @@ zip_source_pkware_encode.c -- Traditional PKWARE encryption routines - Copyright (C) 2009-2020 Dieter Baron and Thomas Klausner + Copyright (C) 2009-2024 Dieter Baron and Thomas Klausner @@ -44,4 +44,3 @@ struct trad_pkware { bool eof; - bool mtime_set; - time_t mtime; + zip_dostime_t dostime; zip_error_t error; @@ -54,3 +53,2 @@ static void trad_pkware_free(struct trad_pkware *); static struct trad_pkware *trad_pkware_new(const char *password, zip_error_t *error); -static void set_mtime(struct trad_pkware* ctx, zip_stat_t* st); @@ -71,2 +69,3 @@ zip_source_pkware_encode(zip_t *za, zip_source_t *src, zip_uint16_t em, int flag if ((ctx = trad_pkware_new(password, &za->error)) == NULL) { + zip_error_set(&za->error, ZIP_ER_MEMORY, 0); return NULL; @@ -74,2 +73,16 @@ zip_source_pkware_encode(zip_t *za, zip_source_t *src, zip_uint16_t em, int flag + if (zip_source_get_dos_time(src, &ctx->dostime) <= 0) { + zip_stat_t st; + + if (zip_source_stat(src, &st) < 0) { + zip_error_set_from_source(&za->error, src); + trad_pkware_free(ctx); + return NULL; + } + if (_zip_u2d_time((st.valid & ZIP_STAT_MTIME) ? st.mtime : time(NULL), &ctx->dostime, &za->error) < 0) { + trad_pkware_free(ctx); + return NULL; + } + } + if ((s2 = zip_source_layered(za, src, pkware_encrypt, ctx)) == NULL) { @@ -85,16 +98,4 @@ static int encrypt_header(zip_source_t *src, struct trad_pkware *ctx) { - unsigned short dostime, dosdate; zip_uint8_t *header; - if (!ctx->mtime_set) { - struct zip_stat st; - if (zip_source_stat(src, &st) != 0) { - zip_error_set_from_source(&ctx->error, src); - return -1; - } - set_mtime(ctx, &st); - } - - _zip_u2d_time(ctx->mtime, &dostime, &dosdate); - if ((ctx->buffer = _zip_buffer_new(NULL, ZIP_CRYPTO_PKWARE_HEADERLEN)) == NULL) { @@ -114,3 +115,3 @@ encrypt_header(zip_source_t *src, struct trad_pkware *ctx) { } - header[ZIP_CRYPTO_PKWARE_HEADERLEN - 1] = (zip_uint8_t)((dostime >> 8) & 0xff); + header[ZIP_CRYPTO_PKWARE_HEADERLEN - 1] = (zip_uint8_t)((ctx->dostime.time >> 8) & 0xff); @@ -189,5 +190,2 @@ pkware_encrypt(zip_source_t *src, void *ud, void *data, zip_uint64_t length, zip } - set_mtime(ctx, st); - st->mtime = ctx->mtime; - st->valid |= ZIP_STAT_MTIME; @@ -208,4 +206,12 @@ pkware_encrypt(zip_source_t *src, void *ud, void *data, zip_uint64_t length, zip + case ZIP_SOURCE_GET_DOS_TIME: + if (length < sizeof(ctx->dostime)) { + zip_error_set(&ctx->error, ZIP_ER_INVAL, 0); + return -1; + } + (void)memcpy_s(data, sizeof(ctx->dostime), &ctx->dostime, sizeof(ctx->dostime)); + return sizeof(ctx->dostime); + case ZIP_SOURCE_SUPPORTS: - return zip_source_make_command_bitmap(ZIP_SOURCE_OPEN, ZIP_SOURCE_READ, ZIP_SOURCE_CLOSE, ZIP_SOURCE_STAT, ZIP_SOURCE_ERROR, ZIP_SOURCE_FREE, ZIP_SOURCE_GET_FILE_ATTRIBUTES, -1); + return zip_source_make_command_bitmap(ZIP_SOURCE_OPEN, ZIP_SOURCE_READ, ZIP_SOURCE_CLOSE, ZIP_SOURCE_STAT, ZIP_SOURCE_ERROR, ZIP_SOURCE_FREE, ZIP_SOURCE_GET_FILE_ATTRIBUTES, ZIP_SOURCE_GET_DOS_TIME, -1); @@ -239,4 +245,2 @@ trad_pkware_new(const char *password, zip_error_t *error) { ctx->buffer = NULL; - ctx->mtime_set = false; - ctx->mtime = 0; zip_error_init(&ctx->error); @@ -258,14 +262 @@ trad_pkware_free(struct trad_pkware *ctx) { } - - -static void set_mtime(struct trad_pkware* ctx, zip_stat_t* st) { - if (!ctx->mtime_set) { - if (st->valid & ZIP_STAT_MTIME) { - ctx->mtime = st->mtime; - } - else { - time(&ctx->mtime); - } - ctx->mtime_set = true; - } -} diff --git a/src/Common/libzip/zip_source_read.c b/src/Common/libzip/zip_source_read.c index 0938fcb0..910d4c3e 100644 --- a/src/Common/libzip/zip_source_read.c +++ b/src/Common/libzip/zip_source_read.c @@ -2,3 +2,3 @@ zip_source_read.c -- read data from zip_source - Copyright (C) 2009-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2009-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_remove.c b/src/Common/libzip/zip_source_remove.c index c1d73ab9..06325b72 100644 --- a/src/Common/libzip/zip_source_remove.c +++ b/src/Common/libzip/zip_source_remove.c @@ -2,3 +2,3 @@ zip_source_remove.c -- remove empty archive - Copyright (C) 2014-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2014-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_rollback_write.c b/src/Common/libzip/zip_source_rollback_write.c index ea1a1510..51613252 100644 --- a/src/Common/libzip/zip_source_rollback_write.c +++ b/src/Common/libzip/zip_source_rollback_write.c @@ -2,3 +2,3 @@ zip_source_rollback_write.c -- discard changes - Copyright (C) 2014-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2014-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_seek.c b/src/Common/libzip/zip_source_seek.c index e3baad5a..42d6b0d2 100644 --- a/src/Common/libzip/zip_source_seek.c +++ b/src/Common/libzip/zip_source_seek.c @@ -2,3 +2,3 @@ zip_source_seek.c -- seek to offset - Copyright (C) 2014-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2014-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_seek_write.c b/src/Common/libzip/zip_source_seek_write.c index 34ae2f5a..9e87fa4d 100644 --- a/src/Common/libzip/zip_source_seek_write.c +++ b/src/Common/libzip/zip_source_seek_write.c @@ -2,3 +2,3 @@ zip_source_seek_write.c -- seek to offset for writing - Copyright (C) 2014-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2014-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_stat.c b/src/Common/libzip/zip_source_stat.c index 05dcb84d..7c8bacac 100644 --- a/src/Common/libzip/zip_source_stat.c +++ b/src/Common/libzip/zip_source_stat.c @@ -2,3 +2,3 @@ zip_source_stat.c -- get meta information from zip_source - Copyright (C) 2009-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2009-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_supports.c b/src/Common/libzip/zip_source_supports.c index 8fea2ae9..e30ee757 100644 --- a/src/Common/libzip/zip_source_supports.c +++ b/src/Common/libzip/zip_source_supports.c @@ -2,3 +2,3 @@ zip_source_supports.c -- check for supported functions - Copyright (C) 2014-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2014-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_tell.c b/src/Common/libzip/zip_source_tell.c index 49057ce5..33ec475e 100644 --- a/src/Common/libzip/zip_source_tell.c +++ b/src/Common/libzip/zip_source_tell.c @@ -2,3 +2,3 @@ zip_source_tell.c -- report current offset - Copyright (C) 2014-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2014-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_tell_write.c b/src/Common/libzip/zip_source_tell_write.c index a5b0e531..6912af9e 100644 --- a/src/Common/libzip/zip_source_tell_write.c +++ b/src/Common/libzip/zip_source_tell_write.c @@ -2,3 +2,3 @@ zip_source_tell_write.c -- report current offset for writing - Copyright (C) 2014-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2014-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_window.c b/src/Common/libzip/zip_source_window.c index 524e27c8..eac27c39 100644 --- a/src/Common/libzip/zip_source_window.c +++ b/src/Common/libzip/zip_source_window.c @@ -2,3 +2,3 @@ zip_source_window.c -- return part of lower source - Copyright (C) 2012-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2012-2024 Dieter Baron and Thomas Klausner @@ -53,2 +53,4 @@ struct window { zip_file_attributes_t attributes; + zip_dostime_t dostime; + bool dostime_valid; zip_error_t error; @@ -63,3 +65,3 @@ ZIP_EXTERN zip_source_t * zip_source_window_create(zip_source_t *src, zip_uint64_t start, zip_int64_t len, zip_error_t *error) { - return _zip_source_window_new(src, start, len, NULL, 0, NULL, NULL, 0, false, error); + return _zip_source_window_new(src, start, len, NULL, 0, NULL, NULL, NULL, 0, false, error); } @@ -68,3 +70,3 @@ zip_source_window_create(zip_source_t *src, zip_uint64_t start, zip_int64_t len, zip_source_t * -_zip_source_window_new(zip_source_t *src, zip_uint64_t start, zip_int64_t length, zip_stat_t *st, zip_uint64_t st_invalid, zip_file_attributes_t *attributes, zip_t *source_archive, zip_uint64_t source_index, bool take_ownership, zip_error_t *error) { +_zip_source_window_new(zip_source_t *src, zip_uint64_t start, zip_int64_t length, zip_stat_t *st, zip_uint64_t st_invalid, zip_file_attributes_t *attributes, zip_dostime_t *dostime, zip_t *source_archive, zip_uint64_t source_index, bool take_ownership, zip_error_t *error) { zip_source_t* window_source; @@ -105,2 +107,9 @@ _zip_source_window_new(zip_source_t *src, zip_uint64_t start, zip_int64_t length } + if (dostime != NULL) { + ctx->dostime = *dostime; + ctx->dostime_valid = true; + } + else { + ctx->dostime_valid = false; + } ctx->source_archive = source_archive; @@ -108,3 +117,3 @@ _zip_source_window_new(zip_source_t *src, zip_uint64_t start, zip_int64_t length zip_error_init(&ctx->error); - ctx->supports = (zip_source_supports(src) & (ZIP_SOURCE_SUPPORTS_SEEKABLE | ZIP_SOURCE_SUPPORTS_REOPEN)) | (zip_source_make_command_bitmap(ZIP_SOURCE_GET_FILE_ATTRIBUTES, ZIP_SOURCE_SUPPORTS, ZIP_SOURCE_TELL, ZIP_SOURCE_FREE, -1)); + ctx->supports = (zip_source_supports(src) & (ZIP_SOURCE_SUPPORTS_SEEKABLE | ZIP_SOURCE_SUPPORTS_REOPEN)) | (zip_source_make_command_bitmap(ZIP_SOURCE_GET_FILE_ATTRIBUTES, ZIP_SOURCE_GET_DOS_TIME, ZIP_SOURCE_SUPPORTS, ZIP_SOURCE_TELL, ZIP_SOURCE_FREE, -1)); ctx->needs_seek = (ctx->supports & ZIP_SOURCE_MAKE_COMMAND_BITMASK(ZIP_SOURCE_SEEK)) ? true : false; @@ -311,2 +320,15 @@ window_read(zip_source_t *src, void *_ctx, void *data, zip_uint64_t len, zip_sou + case ZIP_SOURCE_GET_DOS_TIME: + if (len < sizeof(ctx->dostime)) { + zip_error_set(&ctx->error, ZIP_ER_INVAL, 0); + return -1; + } + if (ctx->dostime_valid) { + (void)memcpy_s(data, sizeof(ctx->dostime), &ctx->dostime, sizeof(ctx->dostime)); + return sizeof(ctx->dostime); + } + else { + return 0; + } + case ZIP_SOURCE_SUPPORTS: diff --git a/src/Common/libzip/zip_source_winzip_aes_decode.c b/src/Common/libzip/zip_source_winzip_aes_decode.c index ee53fb41..8830a005 100644 --- a/src/Common/libzip/zip_source_winzip_aes_decode.c +++ b/src/Common/libzip/zip_source_winzip_aes_decode.c @@ -2,3 +2,3 @@ zip_source_winzip_aes_decode.c -- Winzip AES decryption routines - Copyright (C) 2009-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2009-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_winzip_aes_encode.c b/src/Common/libzip/zip_source_winzip_aes_encode.c index 87e2865a..c704b123 100644 --- a/src/Common/libzip/zip_source_winzip_aes_encode.c +++ b/src/Common/libzip/zip_source_winzip_aes_encode.c @@ -2,3 +2,3 @@ zip_source_winzip_aes_encode.c -- Winzip AES encryption routines - Copyright (C) 2009-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2009-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_write.c b/src/Common/libzip/zip_source_write.c index 24dde9b2..20ca361c 100644 --- a/src/Common/libzip/zip_source_write.c +++ b/src/Common/libzip/zip_source_write.c @@ -2,3 +2,3 @@ zip_source_write.c -- start a new file for writing - Copyright (C) 2014-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2014-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_zip.c b/src/Common/libzip/zip_source_zip.c index faabf0d2..07819865 100644 --- a/src/Common/libzip/zip_source_zip.c +++ b/src/Common/libzip/zip_source_zip.c @@ -2,3 +2,3 @@ zip_source_zip.c -- create data source from zip file - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2023 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_source_zip_new.c b/src/Common/libzip/zip_source_zip_new.c index ecccdd68..3eb8a4c2 100644 --- a/src/Common/libzip/zip_source_zip_new.c +++ b/src/Common/libzip/zip_source_zip_new.c @@ -2,3 +2,3 @@ zip_source_zip_new.c -- prepare data structures for zip_fopen/zip_source_zip - Copyright (C) 2012-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2012-2024 Dieter Baron and Thomas Klausner @@ -202,3 +202,3 @@ ZIP_EXTERN zip_source_t *zip_source_zip_file_create(zip_t *srcza, zip_uint64_t s - if ((src = _zip_source_window_new(src, start, data_len, &st2, ZIP_STAT_NAME, &attributes, source_archive, source_index, take_ownership, error)) == NULL) { + if ((src = _zip_source_window_new(src, start, data_len, &st2, ZIP_STAT_NAME, &attributes, &de->last_mod, source_archive, source_index, take_ownership, error)) == NULL) { return NULL; @@ -221,3 +221,3 @@ ZIP_EXTERN zip_source_t *zip_source_zip_file_create(zip_t *srcza, zip_uint64_t s referring to the same underlying source */ - if ((src = _zip_source_window_new(srcza->src, 0, (zip_int64_t)st.comp_size, &st, ZIP_STAT_NAME, &attributes, srcza, srcidx, take_ownership, error)) == NULL) { + if ((src = _zip_source_window_new(srcza->src, 0, (zip_int64_t)st.comp_size, &st, ZIP_STAT_NAME, &attributes, &de->last_mod, srcza, srcidx, take_ownership, error)) == NULL) { return NULL; @@ -237,3 +237,3 @@ ZIP_EXTERN zip_source_t *zip_source_zip_file_create(zip_t *srcza, zip_uint64_t s referring to the same underlying source */ - if ((src = _zip_source_window_new(src, 0, data_len, &st, ZIP_STAT_NAME, &attributes, NULL, 0, take_ownership, error)) == NULL) { + if ((src = _zip_source_window_new(src, 0, data_len, &st, ZIP_STAT_NAME, &attributes, &de->last_mod, NULL, 0, take_ownership, error)) == NULL) { return NULL; @@ -255,2 +255,3 @@ ZIP_EXTERN zip_source_t *zip_source_zip_file_create(zip_t *srcza, zip_uint64_t s if ((enc_impl = _zip_get_encryption_implementation(st.encryption_method, ZIP_CODEC_DECODE)) == NULL) { + zip_source_free(src); zip_error_set(error, ZIP_ER_ENCRNOTSUPP, 0); @@ -291,3 +292,3 @@ ZIP_EXTERN zip_source_t *zip_source_zip_file_create(zip_t *srcza, zip_uint64_t s } - s2 = _zip_source_window_new(src, start, data_len, &st2, ZIP_STAT_NAME, NULL, NULL, 0, true, error); + s2 = _zip_source_window_new(src, start, data_len, &st2, ZIP_STAT_NAME, NULL, NULL, NULL, 0, true, error); if (s2 == NULL) { diff --git a/src/Common/libzip/zip_stat.c b/src/Common/libzip/zip_stat.c index 51d8026d..74fc5c37 100644 --- a/src/Common/libzip/zip_stat.c +++ b/src/Common/libzip/zip_stat.c @@ -2,3 +2,3 @@ zip_stat.c -- get information about file by name - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_stat_index.c b/src/Common/libzip/zip_stat_index.c index da33c09e..af9f0e5f 100644 --- a/src/Common/libzip/zip_stat_index.c +++ b/src/Common/libzip/zip_stat_index.c @@ -2,3 +2,3 @@ zip_stat_index.c -- get information about file by index - Copyright (C) 1999-2020 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2024 Dieter Baron and Thomas Klausner @@ -79,3 +79,3 @@ zip_stat_index(zip_t *za, zip_uint64_t index, zip_flags_t flags, zip_stat_t *st) if (entry->changes != NULL && entry->changes->changed & ZIP_DIRENT_LAST_MOD) { - st->mtime = de->last_mod; + st->mtime = zip_dirent_get_last_mod_mtime(de); st->valid |= ZIP_STAT_MTIME; @@ -88,3 +88,3 @@ zip_stat_index(zip_t *za, zip_uint64_t index, zip_flags_t flags, zip_stat_t *st) st->size = de->uncomp_size; - st->mtime = de->last_mod; + st->mtime = zip_dirent_get_last_mod_mtime(de); st->comp_size = de->comp_size; @@ -99,4 +99,8 @@ zip_stat_index(zip_t *za, zip_uint64_t index, zip_flags_t flags, zip_stat_t *st) if ((za->ch_flags & ZIP_AFL_WANT_TORRENTZIP) && (flags & ZIP_FL_UNCHANGED) == 0) { + if (za->torrent_mtime == 0) { + zip_dostime_t dostime = {0xbc00, 0x2198}; + za->torrent_mtime = _zip_d2u_time(&dostime); + } st->comp_method = ZIP_CM_DEFLATE; - st->mtime = _zip_d2u_time(0xbc00, 0x2198); + st->mtime = za->torrent_mtime; st->valid |= ZIP_STAT_MTIME | ZIP_STAT_COMP_METHOD; diff --git a/src/Common/libzip/zip_stat_init.c b/src/Common/libzip/zip_stat_init.c index 9c6088a7..bd83565b 100644 --- a/src/Common/libzip/zip_stat_init.c +++ b/src/Common/libzip/zip_stat_init.c @@ -2,3 +2,3 @@ zip_stat_init.c -- initialize struct zip_stat. - Copyright (C) 2006-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2006-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_strerror.c b/src/Common/libzip/zip_strerror.c index 7d827931..681024a3 100644 --- a/src/Common/libzip/zip_strerror.c +++ b/src/Common/libzip/zip_strerror.c @@ -2,3 +2,3 @@ zip_sterror.c -- get string representation of zip error - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_string.c b/src/Common/libzip/zip_string.c index 1c964491..bb06c1d6 100644 --- a/src/Common/libzip/zip_string.c +++ b/src/Common/libzip/zip_string.c @@ -2,3 +2,3 @@ zip_string.c -- string handling (with encoding) - Copyright (C) 2012-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2012-2024 Dieter Baron and Thomas Klausner @@ -90,4 +90,6 @@ _zip_string_get(zip_string_t *string, zip_uint32_t *lenp, zip_flags_t flags, zip /* start guessing */ - if (string->encoding == ZIP_ENCODING_UNKNOWN) - _zip_guess_encoding(string, ZIP_ENCODING_UNKNOWN); + if (string->encoding == ZIP_ENCODING_UNKNOWN) { + /* guess encoding, sets string->encoding */ + (void)_zip_guess_encoding(string, ZIP_ENCODING_UNKNOWN); + } @@ -109,2 +111,16 @@ _zip_string_get(zip_string_t *string, zip_uint32_t *lenp, zip_flags_t flags, zip +bool _zip_string_is_ascii(const zip_string_t *string) { + if (string->encoding != ZIP_ENCODING_ASCII) { + zip_uint16_t i; + + for (i = 0; i < string->length; i++) { + if (string->raw[i] & 0x80) { + return false; + } + } + } + + return true; +} + diff --git a/src/Common/libzip/zip_unchange_all.c b/src/Common/libzip/zip_unchange_all.c index 34f3702e..0b22c803 100644 --- a/src/Common/libzip/zip_unchange_all.c +++ b/src/Common/libzip/zip_unchange_all.c @@ -2,3 +2,3 @@ zip_unchange.c -- undo changes to all files in zip archive - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_unchange_archive.c b/src/Common/libzip/zip_unchange_archive.c index 56a8e31f..ddd617bc 100644 --- a/src/Common/libzip/zip_unchange_archive.c +++ b/src/Common/libzip/zip_unchange_archive.c @@ -2,3 +2,3 @@ zip_unchange_archive.c -- undo global changes to ZIP archive - Copyright (C) 2006-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2006-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_unchange_data.c b/src/Common/libzip/zip_unchange_data.c index 6bdecd18..30a7be7b 100644 --- a/src/Common/libzip/zip_unchange_data.c +++ b/src/Common/libzip/zip_unchange_data.c @@ -2,3 +2,3 @@ zip_unchange_data.c -- undo helper function - Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zip_utf-8.c b/src/Common/libzip/zip_utf-8.c index 678912f6..7d671f60 100644 --- a/src/Common/libzip/zip_utf-8.c +++ b/src/Common/libzip/zip_utf-8.c @@ -2,3 +2,3 @@ zip_utf-8.c -- UTF-8 support functions for libzip - Copyright (C) 2011-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2011-2024 Dieter Baron and Thomas Klausner @@ -103,5 +103,9 @@ _zip_guess_encoding(zip_string_t *str, zip_encoding_type_t expected_encoding) { zip_uint32_t i, j, ulen; + bool can_be_ascii = true; + bool can_be_utf8 = true; + bool has_control_characters = false; - if (str == NULL) + if (str == NULL) { return ZIP_ENCODING_ASCII; + } @@ -109,48 +113,95 @@ _zip_guess_encoding(zip_string_t *str, zip_encoding_type_t expected_encoding) { - if (str->encoding != ZIP_ENCODING_UNKNOWN) - enc = str->encoding; - else { - enc = ZIP_ENCODING_ASCII; - for (i = 0; i < str->length; i++) { - if ((name[i] > 31 && name[i] < 128) || name[i] == '\r' || name[i] == '\n' || name[i] == '\t') - continue; - - enc = ZIP_ENCODING_UTF8_GUESSED; - if ((name[i] & UTF_8_LEN_2_MASK) == UTF_8_LEN_2_MATCH) - ulen = 1; - else if ((name[i] & UTF_8_LEN_3_MASK) == UTF_8_LEN_3_MATCH) - ulen = 2; - else if ((name[i] & UTF_8_LEN_4_MASK) == UTF_8_LEN_4_MATCH) - ulen = 3; - else { - enc = ZIP_ENCODING_CP437; - break; - } + if (str->encoding != ZIP_ENCODING_UNKNOWN) { + return str->encoding; + } - if (i + ulen >= str->length) { - enc = ZIP_ENCODING_CP437; - break; + for (i = 0; i < str->length; i++) { + if (name[i] < 128) { + if (name[i] < 32 && name[i] != '\r' && name[i] != '\n' && name[i] != '\t') { + has_control_characters = true; } + continue; + } + + can_be_ascii = false; + if ((name[i] & UTF_8_LEN_2_MASK) == UTF_8_LEN_2_MATCH) { + ulen = 1; + } + else if ((name[i] & UTF_8_LEN_3_MASK) == UTF_8_LEN_3_MATCH) { + ulen = 2; + } + else if ((name[i] & UTF_8_LEN_4_MASK) == UTF_8_LEN_4_MATCH) { + ulen = 3; + } + else { + can_be_utf8 = false; + break; + } - for (j = 1; j <= ulen; j++) { - if ((name[i + j] & UTF_8_CONTINUE_MASK) != UTF_8_CONTINUE_MATCH) { - enc = ZIP_ENCODING_CP437; - goto done; - } + if (i + ulen >= str->length) { + can_be_utf8 = false; + break; + } + + for (j = 1; j <= ulen; j++) { + if ((name[i + j] & UTF_8_CONTINUE_MASK) != UTF_8_CONTINUE_MATCH) { + can_be_utf8 = false; + goto done; } - i += ulen; } + i += ulen; } -done: - str->encoding = enc; + done: + enc = ZIP_ENCODING_CP437; + + switch (expected_encoding) { + case ZIP_ENCODING_UTF8_KNOWN: + case ZIP_ENCODING_UTF8_GUESSED: + if (can_be_utf8) { + enc = ZIP_ENCODING_UTF8_KNOWN; + } + else { + enc = ZIP_ENCODING_ERROR; + } + break; - if (expected_encoding != ZIP_ENCODING_UNKNOWN) { - if (expected_encoding == ZIP_ENCODING_UTF8_KNOWN && enc == ZIP_ENCODING_UTF8_GUESSED) - str->encoding = enc = ZIP_ENCODING_UTF8_KNOWN; + case ZIP_ENCODING_ASCII: + if (can_be_ascii && !has_control_characters) { + enc = ZIP_ENCODING_ASCII; + } + else { + enc = ZIP_ENCODING_ERROR; + } + break; - if (expected_encoding != enc && enc != ZIP_ENCODING_ASCII) - return ZIP_ENCODING_ERROR; + case ZIP_ENCODING_CP437: + enc = ZIP_ENCODING_CP437; + break; + + case ZIP_ENCODING_UNKNOWN: + if (can_be_ascii && !has_control_characters) { + /* only bytes from 0x20-0x7F */ + enc = ZIP_ENCODING_ASCII; + } + else if (can_be_ascii && has_control_characters) { + /* only bytes from 0x00-0x7F */ + enc = ZIP_ENCODING_CP437; + } + else if (can_be_utf8) { + /* contains bytes from 0x80-0xFF and is valid UTF-8 */ + enc = ZIP_ENCODING_UTF8_GUESSED; + } + else { + /* fallback */ + enc = ZIP_ENCODING_CP437; + } + break; + case ZIP_ENCODING_ERROR: + /* invalid, shouldn't happen */ + enc = ZIP_ENCODING_ERROR; + break; } + str->encoding = enc; return enc; @@ -161,8 +212,11 @@ static zip_uint32_t _zip_unicode_to_utf8_len(zip_uint32_t codepoint) { - if (codepoint < 0x0080) + if (codepoint < 0x0080) { return 1; - if (codepoint < 0x0800) + } + if (codepoint < 0x0800) { return 2; - if (codepoint < 0x10000) + } + if (codepoint < 0x10000) { return 3; + } return 4; @@ -203,4 +257,5 @@ _zip_cp437_to_utf8(const zip_uint8_t *const _cp437buf, zip_uint32_t len, zip_uin if (len == 0) { - if (utf8_lenp) + if (utf8_lenp) { *utf8_lenp = 0; + } return NULL; @@ -209,4 +264,5 @@ _zip_cp437_to_utf8(const zip_uint8_t *const _cp437buf, zip_uint32_t len, zip_uin buflen = 1; - for (i = 0; i < len; i++) + for (i = 0; i < len; i++) { buflen += _zip_unicode_to_utf8_len(_cp437_to_unicode[cp437buf[i]]); + } @@ -218,8 +274,10 @@ _zip_cp437_to_utf8(const zip_uint8_t *const _cp437buf, zip_uint32_t len, zip_uin offset = 0; - for (i = 0; i < len; i++) + for (i = 0; i < len; i++) { offset += _zip_unicode_to_utf8(_cp437_to_unicode[cp437buf[i]], utf8buf + offset); + } utf8buf[buflen - 1] = 0; - if (utf8_lenp) + if (utf8_lenp) { *utf8_lenp = buflen - 1; + } return utf8buf; diff --git a/src/Common/libzip/zip_winzip_aes.c b/src/Common/libzip/zip_winzip_aes.c index ce269036..2c9874b0 100644 --- a/src/Common/libzip/zip_winzip_aes.c +++ b/src/Common/libzip/zip_winzip_aes.c @@ -2,3 +2,3 @@ zip_winzip_aes.c -- Winzip AES de/encryption backend routines - Copyright (C) 2017-2021 Dieter Baron and Thomas Klausner + Copyright (C) 2017-2022 Dieter Baron and Thomas Klausner diff --git a/src/Common/libzip/zipconf.h b/src/Common/libzip/zipconf.h index 472e06c1..28954780 100644 --- a/src/Common/libzip/zipconf.h +++ b/src/Common/libzip/zipconf.h @@ -10,6 +10,6 @@ -#define LIBZIP_VERSION "1.10.1" +#define LIBZIP_VERSION "1.11.2" #define LIBZIP_VERSION_MAJOR 1 -#define LIBZIP_VERSION_MINOR 10 -#define LIBZIP_VERSION_MICRO 1 +#define LIBZIP_VERSION_MINOR 11 +#define LIBZIP_VERSION_MICRO 2 diff --git a/src/Common/libzip/zipint.h b/src/Common/libzip/zipint.h index 4887b6c5..e22d74c2 100644 --- a/src/Common/libzip/zipint.h +++ b/src/Common/libzip/zipint.h @@ -5,3 +5,3 @@ zipint.h -- internal declarations. - Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner + Copyright (C) 1999-2024 Dieter Baron and Thomas Klausner @@ -58,2 +58,3 @@ #define EOCD64_MAGIC "PK\6\6" +#define MAGIC_LEN 4 #define CDENTRYSIZE 46u @@ -231,8 +232,13 @@ extern const int _zip_err_details_count; #define ZIP_ER_DETAIL_INVALID_UTF8_IN_FILENAME 13 /* E invalid UTF-8 in filename */ -#define ZIP_ER_DETAIL_INVALID_UTF8_IN_COMMENT 13 /* E invalid UTF-8 in comment */ -#define ZIP_ER_DETAIL_INVALID_ZIP64_EF 14 /* E invalid Zip64 extra field */ -#define ZIP_ER_DETAIL_INVALID_WINZIPAES_EF 14 /* E invalid WinZip AES extra field */ -#define ZIP_ER_DETAIL_EF_TRAILING_GARBAGE 15 /* E garbage at end of extra fields */ -#define ZIP_ER_DETAIL_INVALID_EF_LENGTH 16 /* E extra field length is invalid */ -#define ZIP_ER_DETAIL_INVALID_FILE_LENGTH 17 /* E file length in header doesn't match actual file length */ +#define ZIP_ER_DETAIL_INVALID_UTF8_IN_COMMENT 14 /* E invalid UTF-8 in comment */ +#define ZIP_ER_DETAIL_INVALID_ZIP64_EF 15 /* E invalid Zip64 extra field */ +#define ZIP_ER_DETAIL_INVALID_WINZIPAES_EF 16 /* E invalid WinZip AES extra field */ +#define ZIP_ER_DETAIL_EF_TRAILING_GARBAGE 17 /* E garbage at end of extra fields */ +#define ZIP_ER_DETAIL_INVALID_EF_LENGTH 18 /* E extra field length is invalid */ +#define ZIP_ER_DETAIL_INVALID_FILE_LENGTH 19 /* E file length in header doesn't match actual file length */ +#define ZIP_ER_DETAIL_STORED_SIZE_MISMATCH 20 /* E compressed and uncompressed sizes don't match for stored file */ +#define ZIP_ER_DETAIL_DATA_DESCRIPTOR_MISMATCH 21 /* E local header and data descriptor do not match */ +#define ZIP_ER_DETAIL_EOCD64_LOCATOR_MISMATCH 22 /* G EOCD64 and EOCD64 locator do not match */ +#define ZIP_ER_DETAIL_UTF8_FILENAME_MISMATCH 23 /* E UTF-8 filename is ASCII and doesn't match filename */ +#define ZIP_ER_DETAIL_UTF8_COMMENT_MISMATCH 24 /* E UTF-8 comment is ASCII and doesn't match comment */ @@ -272,2 +278,3 @@ struct zip_progress; typedef struct zip_cdir zip_cdir_t; +typedef struct zip_dostime zip_dostime_t; typedef struct zip_dirent zip_dirent_t; @@ -309,2 +316,3 @@ struct zip { zip_uint32_t* write_crc; /* have _zip_write() compute CRC */ + time_t torrent_mtime; }; @@ -330,2 +338,7 @@ struct zip_file { +struct zip_dostime { + zip_uint16_t time; + zip_uint16_t date; +}; + struct zip_dirent { @@ -336,2 +349,3 @@ struct zip_dirent { bool crc_valid; /* if CRC is valid (sometimes not for encrypted archives) */ + bool last_mod_mtime_valid; @@ -341,3 +355,3 @@ struct zip_dirent { zip_int32_t comp_method; /* (cl) compression method used (uint16 and ZIP_CM_DEFAULT (-1)) */ - time_t last_mod; /* (cl) time of last modification */ + zip_dostime_t last_mod; /* (cl) time of last modification */ zip_uint32_t crc; /* (cl) CRC-32 of uncompressed data */ @@ -356,2 +370,4 @@ struct zip_dirent { char *password; /* file specific encryption password */ + + time_t last_mod_mtime; /* cached last_mod in Unix time format */ }; @@ -365,4 +381,9 @@ struct zip_cdir { + zip_uint32_t this_disk; + zip_uint32_t eocd_disk; + zip_uint64_t disk_entries; /* number of entries on this disk */ + zip_uint64_t num_entries; /* number of entries on all disks */ zip_uint64_t size; /* size of central directory */ zip_uint64_t offset; /* offset of central directory in file */ + zip_uint64_t eocd_offset; /* offset of EOCD in file */ zip_string_t *comment; /* zip archive comment */ @@ -528,5 +549,5 @@ void _zip_cdir_free(zip_cdir_t *); bool _zip_cdir_grow(zip_cdir_t *cd, zip_uint64_t additional_entries, zip_error_t *error); -zip_cdir_t *_zip_cdir_new(zip_uint64_t, zip_error_t *); +zip_cdir_t *_zip_cdir_new(zip_error_t *); zip_int64_t _zip_cdir_write(zip_t *za, const zip_filelist_t *filelist, zip_uint64_t survivors); -time_t _zip_d2u_time(zip_uint16_t, zip_uint16_t); +time_t _zip_d2u_time(const zip_dostime_t*); void _zip_deregister_source(zip_t *za, zip_source_t *src); @@ -534,2 +555,3 @@ void _zip_deregister_source(zip_t *za, zip_source_t *src); void _zip_dirent_apply_attributes(zip_dirent_t *, zip_file_attributes_t *, bool, zip_uint32_t); +int zip_dirent_check_consistency(zip_dirent_t *dirent); zip_dirent_t *_zip_dirent_clone(const zip_dirent_t *); @@ -537,2 +559,3 @@ void _zip_dirent_free(zip_dirent_t *); void _zip_dirent_finalize(zip_dirent_t *); +time_t zip_dirent_get_last_mod_mtime(zip_dirent_t *de); void _zip_dirent_init(zip_dirent_t *); @@ -541,3 +564,3 @@ zip_dirent_t *_zip_dirent_new(void); bool zip_dirent_process_ef_zip64(zip_dirent_t * zde, const zip_uint8_t * ef, zip_uint64_t got_len, bool local, zip_error_t * error); -zip_int64_t _zip_dirent_read(zip_dirent_t *zde, zip_source_t *src, zip_buffer_t *buffer, bool local, zip_error_t *error); +zip_int64_t _zip_dirent_read(zip_dirent_t *zde, zip_source_t *src, zip_buffer_t *buffer, bool local, zip_uint64_t central_compressed_size, bool check_consistency, zip_error_t *error); void _zip_dirent_set_version_needed(zip_dirent_t *de, bool force_zip64); @@ -613,2 +636,4 @@ zip_int64_t _zip_source_call(zip_source_t *src, void *data, zip_uint64_t length, bool _zip_source_eof(zip_source_t *); +int zip_source_get_dos_time(zip_source_t *src, zip_dostime_t *dos_time); + zip_source_t *_zip_source_file_or_p(const char *, FILE *, zip_uint64_t, zip_int64_t, const zip_stat_t *, zip_error_t *error); @@ -618,3 +643,3 @@ zip_source_t *_zip_source_new(zip_error_t *error); int _zip_source_set_source_archive(zip_source_t *, zip_t *); -zip_source_t *_zip_source_window_new(zip_source_t *src, zip_uint64_t start, zip_int64_t length, zip_stat_t *st, zip_uint64_t st_invalid, zip_file_attributes_t *attributes, zip_t *source_archive, zip_uint64_t source_index, bool take_ownership, zip_error_t *error); +zip_source_t *_zip_source_window_new(zip_source_t *src, zip_uint64_t start, zip_int64_t length, zip_stat_t *st, zip_uint64_t st_invalid, zip_file_attributes_t *attributes, zip_dostime_t *dostime, zip_t *source_archive, zip_uint64_t source_index, bool take_ownership, zip_error_t *error); @@ -625,2 +650,3 @@ zip_uint32_t _zip_string_crc32(const zip_string_t *string); const zip_uint8_t *_zip_string_get(zip_string_t *string, zip_uint32_t *lenp, zip_flags_t flags, zip_error_t *error); +bool _zip_string_is_ascii(const zip_string_t *string); zip_uint16_t _zip_string_length(const zip_string_t *string); @@ -649,3 +675,3 @@ zip_int64_t _zip_file_replace(zip_t *, zip_uint64_t, const char *, zip_source_t int _zip_set_name(zip_t *, zip_uint64_t, const char *, zip_flags_t); -void _zip_u2d_time(time_t, zip_uint16_t *, zip_uint16_t *); +int _zip_u2d_time(time_t, zip_dostime_t *, zip_error_t *); int _zip_unchange(zip_t *, zip_uint64_t, int); @@ -654,2 +680,2 @@ int _zip_write(zip_t *za, const void *data, zip_uint64_t length); -#endif /* zipint.h */ +#endif /* _HAD_ZIPINT_H */ diff --git a/src/Common/lzma/7zTypes.h b/src/Common/lzma/7zTypes.h index 1fcb2473..5b77420a 100644 --- a/src/Common/lzma/7zTypes.h +++ b/src/Common/lzma/7zTypes.h @@ -1,3 +1,3 @@ /* 7zTypes.h -- Basic types -2023-04-02 : Igor Pavlov : Public domain */ +2024-01-24 : Igor Pavlov : Public domain */ @@ -532,10 +532,10 @@ struct ISzAlloc #if defined (__clang__) || defined(__GNUC__) -#define Z7_DIAGNOSCTIC_IGNORE_BEGIN_CAST_QUAL \ +#define Z7_DIAGNOSTIC_IGNORE_BEGIN_CAST_QUAL \ _Pragma("GCC diagnostic push") \ _Pragma("GCC diagnostic ignored \"-Wcast-qual\"") -#define Z7_DIAGNOSCTIC_IGNORE_END_CAST_QUAL \ +#define Z7_DIAGNOSTIC_IGNORE_END_CAST_QUAL \ _Pragma("GCC diagnostic pop") #else -#define Z7_DIAGNOSCTIC_IGNORE_BEGIN_CAST_QUAL -#define Z7_DIAGNOSCTIC_IGNORE_END_CAST_QUAL +#define Z7_DIAGNOSTIC_IGNORE_BEGIN_CAST_QUAL +#define Z7_DIAGNOSTIC_IGNORE_END_CAST_QUAL #endif @@ -543,5 +543,5 @@ struct ISzAlloc #define Z7_CONTAINER_FROM_VTBL_TO_DECL_VAR(ptr, type, m, p) \ - Z7_DIAGNOSCTIC_IGNORE_BEGIN_CAST_QUAL \ + Z7_DIAGNOSTIC_IGNORE_BEGIN_CAST_QUAL \ type *p = Z7_CONTAINER_FROM_VTBL(ptr, type, m); \ - Z7_DIAGNOSCTIC_IGNORE_END_CAST_QUAL + Z7_DIAGNOSTIC_IGNORE_END_CAST_QUAL diff --git a/src/Common/lzma/Alloc.c b/src/Common/lzma/Alloc.c index d841bf20..63e1a121 100644 --- a/src/Common/lzma/Alloc.c +++ b/src/Common/lzma/Alloc.c @@ -1,3 +1,3 @@ /* Alloc.c -- Memory allocation functions -2023-04-02 : Igor Pavlov : Public domain */ +2024-02-18 : Igor Pavlov : Public domain */ @@ -12,15 +12,14 @@ -#ifdef _WIN32 -#ifdef Z7_LARGE_PAGES -#if defined(__clang__) || defined(__GNUC__) -typedef void (*Z7_voidFunction)(void); -#define MY_CAST_FUNC (Z7_voidFunction) -#elif defined(_MSC_VER) && _MSC_VER > 1920 -#define MY_CAST_FUNC (void *) -// #pragma warning(disable : 4191) // 'type cast': unsafe conversion from 'FARPROC' to 'void (__cdecl *)()' -#else -#define MY_CAST_FUNC +#if defined(Z7_LARGE_PAGES) && defined(_WIN32) && \ + (!defined(Z7_WIN32_WINNT_MIN) || Z7_WIN32_WINNT_MIN < 0x0502) // < Win2003 (xp-64) + #define Z7_USE_DYN_GetLargePageMinimum +#endif + +// for debug: +#if 0 +#if defined(__CHERI__) && defined(__SIZEOF_POINTER__) && (__SIZEOF_POINTER__ == 16) +// #pragma message("=== Z7_ALLOC_NO_OFFSET_ALLOCATOR === ") +#define Z7_ALLOC_NO_OFFSET_ALLOCATOR +#endif #endif -#endif // Z7_LARGE_PAGES -#endif // _WIN32 @@ -148,3 +147,5 @@ static void PrintAddr(void *p) #define PrintLn() +#ifndef Z7_ALLOC_NO_OFFSET_ALLOCATOR #define PrintHex(v, align) +#endif #define PrintAddr(p) @@ -248,5 +249,5 @@ void MidFree(void *address) #ifdef MEM_LARGE_PAGES - #define MY__MEM_LARGE_PAGES MEM_LARGE_PAGES + #define MY_MEM_LARGE_PAGES MEM_LARGE_PAGES #else - #define MY__MEM_LARGE_PAGES 0x20000000 + #define MY_MEM_LARGE_PAGES 0x20000000 #endif @@ -260,7 +261,9 @@ void SetLargePageSize(void) { - #ifdef Z7_LARGE_PAGES SIZE_T size; +#ifdef Z7_USE_DYN_GetLargePageMinimum +Z7_DIAGNOSTIC_IGNORE_CAST_FUNCTION + const Func_GetLargePageMinimum fn = - (Func_GetLargePageMinimum) MY_CAST_FUNC GetProcAddress(GetModuleHandle(TEXT("kernel32.dll")), + (Func_GetLargePageMinimum) Z7_CAST_FUNC_C GetProcAddress(GetModuleHandle(TEXT("kernel32.dll")), "GetLargePageMinimum"); @@ -269,2 +272,5 @@ void SetLargePageSize(void) size = fn(); +#else + size = GetLargePageMinimum(); +#endif if (size == 0 || (size & (size - 1)) != 0) @@ -272,3 +278,2 @@ void SetLargePageSize(void) g_LargePageSize = size; - #endif } @@ -294,3 +299,3 @@ void *BigAlloc(size_t size) { - void *p = VirtualAlloc(NULL, size2, MEM_COMMIT | MY__MEM_LARGE_PAGES, PAGE_READWRITE); + void *p = VirtualAlloc(NULL, size2, MEM_COMMIT | MY_MEM_LARGE_PAGES, PAGE_READWRITE); if (p) @@ -330,16 +335,3 @@ const ISzAlloc g_BigAlloc = { SzBigAlloc, SzBigFree }; -/* - uintptr_t : <stdint.h> C99 (optional) - : unsupported in VS6 -*/ - -#ifdef _WIN32 - typedef UINT_PTR UIntPtr; -#else - /* - typedef uintptr_t UIntPtr; - */ - typedef ptrdiff_t UIntPtr; -#endif - +#ifndef Z7_ALLOC_NO_OFFSET_ALLOCATOR @@ -354,10 +346,32 @@ const ISzAlloc g_BigAlloc = { SzBigAlloc, SzBigFree }; - /* -#define MY_ALIGN_PTR_DOWN(p, align) ((void *)((char *)(p) - ((size_t)(UIntPtr)(p) & ((align) - 1)))) + uintptr_t : <stdint.h> C99 (optional) + : unsupported in VS6 */ -#define MY_ALIGN_PTR_DOWN(p, align) ((void *)((((UIntPtr)(p)) & ~((UIntPtr)(align) - 1)))) +typedef + #ifdef _WIN32 + UINT_PTR + #elif 1 + uintptr_t + #else + ptrdiff_t + #endif + MY_uintptr_t; + +#if 0 \ + || (defined(__CHERI__) \ + || defined(__SIZEOF_POINTER__) && (__SIZEOF_POINTER__ > 8)) +// for 128-bit pointers (cheri): +#define MY_ALIGN_PTR_DOWN(p, align) \ + ((void *)((char *)(p) - ((size_t)(MY_uintptr_t)(p) & ((align) - 1)))) +#else +#define MY_ALIGN_PTR_DOWN(p, align) \ + ((void *)((((MY_uintptr_t)(p)) & ~((MY_uintptr_t)(align) - 1)))) +#endif +#endif -#if !defined(_WIN32) && defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE >= 200112L) +#if !defined(_WIN32) \ + && (defined(Z7_ALLOC_NO_OFFSET_ALLOCATOR) \ + || defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE >= 200112L)) #define USE_posix_memalign @@ -401,5 +415,5 @@ static int posix_memalign(void **ptr, size_t align, size_t size) -static void *SzAlignedAlloc(ISzAllocPtr pp, size_t size) +void *z7_AlignedAlloc(size_t size) { - #ifndef USE_posix_memalign +#ifndef USE_posix_memalign @@ -408,3 +422,2 @@ static void *SzAlignedAlloc(ISzAllocPtr pp, size_t size) size_t newSize; - UNUSED_VAR(pp) @@ -433,6 +446,5 @@ static void *SzAlignedAlloc(ISzAllocPtr pp, size_t size) - #else +#else void *p; - UNUSED_VAR(pp) if (posix_memalign(&p, ALLOC_ALIGN_SIZE, size)) @@ -445,3 +457,21 @@ static void *SzAlignedAlloc(ISzAllocPtr pp, size_t size) - #endif +#endif +} + + +void z7_AlignedFree(void *address) +{ +#ifndef USE_posix_memalign + if (address) + MyFree(((void **)address)[-1]); +#else + free(address); +#endif +} + + +static void *SzAlignedAlloc(ISzAllocPtr pp, size_t size) +{ + UNUSED_VAR(pp) + return z7_AlignedAlloc(size); } @@ -452,8 +482,8 @@ static void SzAlignedFree(ISzAllocPtr pp, void *address) UNUSED_VAR(pp) - #ifndef USE_posix_memalign +#ifndef USE_posix_memalign if (address) MyFree(((void **)address)[-1]); - #else +#else free(address); - #endif +#endif } @@ -465,9 +495,33 @@ const ISzAlloc g_AlignedAlloc = { SzAlignedAlloc, SzAlignedFree }; -#define MY_ALIGN_PTR_DOWN_1(p) MY_ALIGN_PTR_DOWN(p, sizeof(void *)) - /* we align ptr to support cases where CAlignOffsetAlloc::offset is not multiply of sizeof(void *) */ -#define REAL_BLOCK_PTR_VAR(p) ((void **)MY_ALIGN_PTR_DOWN_1(p))[-1] -/* -#define REAL_BLOCK_PTR_VAR(p) ((void **)(p))[-1] -*/ +#ifndef Z7_ALLOC_NO_OFFSET_ALLOCATOR +#if 1 + #define MY_ALIGN_PTR_DOWN_1(p) MY_ALIGN_PTR_DOWN(p, sizeof(void *)) + #define REAL_BLOCK_PTR_VAR(p) ((void **)MY_ALIGN_PTR_DOWN_1(p))[-1] +#else + // we can use this simplified code, + // if (CAlignOffsetAlloc::offset == (k * sizeof(void *)) + #define REAL_BLOCK_PTR_VAR(p) (((void **)(p))[-1]) +#endif +#endif + + +#if 0 +#ifndef Z7_ALLOC_NO_OFFSET_ALLOCATOR +#include <stdio.h> +static void PrintPtr(const char *s, const void *p) +{ + const Byte *p2 = (const Byte *)&p; + unsigned i; + printf("%s %p ", s, p); + for (i = sizeof(p); i != 0;) + { + i--; + printf("%02x", p2[i]); + } + printf("\n"); +} +#endif +#endif + @@ -475,2 +529,6 @@ static void *AlignOffsetAlloc_Alloc(ISzAllocPtr pp, size_t size) { +#if defined(Z7_ALLOC_NO_OFFSET_ALLOCATOR) + UNUSED_VAR(pp) + return z7_AlignedAlloc(size); +#else const CAlignOffsetAlloc *p = Z7_CONTAINER_FROM_VTBL_CONST(pp, CAlignOffsetAlloc, vt); @@ -503,2 +561,8 @@ static void *AlignOffsetAlloc_Alloc(ISzAllocPtr pp, size_t size) +#if 0 + printf("\nalignSize = %6x, offset=%6x, size=%8x \n", (unsigned)alignSize, (unsigned)p->offset, (unsigned)size); + PrintPtr("base", adr); + PrintPtr("alig", pAligned); +#endif + PrintLn(); @@ -514,2 +578,3 @@ static void *AlignOffsetAlloc_Alloc(ISzAllocPtr pp, size_t size) return pAligned; +#endif } @@ -519,2 +584,6 @@ static void AlignOffsetAlloc_Free(ISzAllocPtr pp, void *address) { +#if defined(Z7_ALLOC_NO_OFFSET_ALLOCATOR) + UNUSED_VAR(pp) + z7_AlignedFree(address); +#else if (address) @@ -527,2 +596,3 @@ static void AlignOffsetAlloc_Free(ISzAllocPtr pp, void *address) } +#endif } diff --git a/src/Common/lzma/Alloc.h b/src/Common/lzma/Alloc.h index fac5b62f..01bf6b7d 100644 --- a/src/Common/lzma/Alloc.h +++ b/src/Common/lzma/Alloc.h @@ -1,3 +1,3 @@ /* Alloc.h -- Memory allocation functions -2023-03-04 : Igor Pavlov : Public domain */ +2024-01-22 : Igor Pavlov : Public domain */ @@ -24,2 +24,5 @@ void *MyRealloc(void *address, size_t size); +void *z7_AlignedAlloc(size_t size); +void z7_AlignedFree(void *p); + #ifdef _WIN32 @@ -35,8 +38,10 @@ void BigFree(void *address); +/* #define Z7_BIG_ALLOC_IS_ZERO_FILLED */ + #else -#define MidAlloc(size) MyAlloc(size) -#define MidFree(address) MyFree(address) -#define BigAlloc(size) MyAlloc(size) -#define BigFree(address) MyFree(address) +#define MidAlloc(size) z7_AlignedAlloc(size) +#define MidFree(address) z7_AlignedFree(address) +#define BigAlloc(size) z7_AlignedAlloc(size) +#define BigFree(address) z7_AlignedFree(address) diff --git a/src/Common/lzma/Compiler.h b/src/Common/lzma/Compiler.h index 185a52de..2a9c2b7a 100644 --- a/src/Common/lzma/Compiler.h +++ b/src/Common/lzma/Compiler.h @@ -1,3 +1,3 @@ /* Compiler.h : Compiler specific defines and pragmas -2023-04-02 : Igor Pavlov : Public domain */ +2024-01-22 : Igor Pavlov : Public domain */ @@ -27,2 +27,19 @@ +#if defined(__LCC__) && (defined(__MCST__) || defined(__e2k__)) +#define Z7_MCST_LCC +#define Z7_MCST_LCC_VERSION (__LCC__ * 100 + __LCC_MINOR__) +#endif + +/* +#if defined(__AVX2__) \ + || defined(Z7_GCC_VERSION) && (Z7_GCC_VERSION >= 40900) \ + || defined(Z7_APPLE_CLANG_VERSION) && (Z7_APPLE_CLANG_VERSION >= 40600) \ + || defined(Z7_LLVM_CLANG_VERSION) && (Z7_LLVM_CLANG_VERSION >= 30100) \ + || defined(Z7_MSC_VER_ORIGINAL) && (Z7_MSC_VER_ORIGINAL >= 1800) \ + || defined(__INTEL_COMPILER) && (__INTEL_COMPILER >= 1400) + #define Z7_COMPILER_AVX2_SUPPORTED + #endif +#endif +*/ + // #pragma GCC diagnostic ignored "-Wunknown-pragmas" @@ -32,2 +49,53 @@ #pragma GCC diagnostic ignored "-Wpadded" + +#if defined(Z7_LLVM_CLANG_VERSION) && (__clang_major__ == 13) \ + && defined(__FreeBSD__) +// freebsd: +#pragma GCC diagnostic ignored "-Wexcess-padding" +#endif + +#if __clang_major__ >= 16 +#pragma GCC diagnostic ignored "-Wunsafe-buffer-usage" +#endif + +#if __clang_major__ == 13 +#if defined(__SIZEOF_POINTER__) && (__SIZEOF_POINTER__ == 16) +// cheri +#pragma GCC diagnostic ignored "-Wcapability-to-integer-cast" +#endif +#endif + +#if __clang_major__ == 13 + // for <arm_neon.h> + #pragma GCC diagnostic ignored "-Wreserved-identifier" +#endif + +#endif // __clang__ + +#if defined(_WIN32) && defined(__clang__) && __clang_major__ >= 16 +// #pragma GCC diagnostic ignored "-Wcast-function-type-strict" +#define Z7_DIAGNOSTIC_IGNORE_CAST_FUNCTION \ + _Pragma("GCC diagnostic ignored \"-Wcast-function-type-strict\"") +#else +#define Z7_DIAGNOSTIC_IGNORE_CAST_FUNCTION +#endif + +typedef void (*Z7_void_Function)(void); +#if defined(__clang__) || defined(__GNUC__) +#define Z7_CAST_FUNC_C (Z7_void_Function) +#elif defined(_MSC_VER) && _MSC_VER > 1920 +#define Z7_CAST_FUNC_C (void *) +// #pragma warning(disable : 4191) // 'type cast': unsafe conversion from 'FARPROC' to 'void (__cdecl *)()' +#else +#define Z7_CAST_FUNC_C +#endif +/* +#if (defined(__GNUC__) && (__GNUC__ >= 8)) || defined(__clang__) + // #pragma GCC diagnostic ignored "-Wcast-function-type" +#endif +*/ +#ifdef __GNUC__ +#if defined(Z7_GCC_VERSION) && (Z7_GCC_VERSION >= 40000) && (Z7_GCC_VERSION < 70000) +#pragma GCC diagnostic ignored "-Wstrict-aliasing" +#endif #endif @@ -103,3 +171,4 @@ #define Z7_ATTRIB_NO_VECTORIZE -#elif defined(__GNUC__) && (__GNUC__ >= 5) +#elif defined(__GNUC__) && (__GNUC__ >= 5) \ + && (!defined(Z7_MCST_LCC_VERSION) || (Z7_MCST_LCC_VERSION >= 12610)) #define Z7_ATTRIB_NO_VECTORIZE __attribute__((optimize("no-tree-vectorize"))) @@ -144,11 +213,19 @@ -#if (defined(Z7_CLANG_VERSION) && (Z7_CLANG_VERSION >= 36000)) -#define Z7_DIAGNOSCTIC_IGNORE_BEGIN_RESERVED_MACRO_IDENTIFIER \ +#if (defined(Z7_CLANG_VERSION) && (Z7_CLANG_VERSION >= 30600)) + +#if (Z7_CLANG_VERSION < 130000) +#define Z7_DIAGNOSTIC_IGNORE_BEGIN_RESERVED_MACRO_IDENTIFIER \ + _Pragma("GCC diagnostic push") \ + _Pragma("GCC diagnostic ignored \"-Wreserved-id-macro\"") +#else +#define Z7_DIAGNOSTIC_IGNORE_BEGIN_RESERVED_MACRO_IDENTIFIER \ _Pragma("GCC diagnostic push") \ _Pragma("GCC diagnostic ignored \"-Wreserved-macro-identifier\"") -#define Z7_DIAGNOSCTIC_IGNORE_END_RESERVED_MACRO_IDENTIFIER \ +#endif + +#define Z7_DIAGNOSTIC_IGNORE_END_RESERVED_MACRO_IDENTIFIER \ _Pragma("GCC diagnostic pop") #else -#define Z7_DIAGNOSCTIC_IGNORE_BEGIN_RESERVED_MACRO_IDENTIFIER -#define Z7_DIAGNOSCTIC_IGNORE_END_RESERVED_MACRO_IDENTIFIER +#define Z7_DIAGNOSTIC_IGNORE_BEGIN_RESERVED_MACRO_IDENTIFIER +#define Z7_DIAGNOSTIC_IGNORE_END_RESERVED_MACRO_IDENTIFIER #endif diff --git a/src/Common/lzma/CpuArch.c b/src/Common/lzma/CpuArch.c index 33f8a3ab..6e02551e 100644 --- a/src/Common/lzma/CpuArch.c +++ b/src/Common/lzma/CpuArch.c @@ -1,3 +1,3 @@ /* CpuArch.c -- CPU specific code -2023-05-18 : Igor Pavlov : Public domain */ +Igor Pavlov : Public domain */ @@ -19,3 +19,3 @@ that is used only with some specific (function) parameter values. - But we always use only (subFunction==0). + most functions use only (subFunction==0). */ @@ -51,3 +51,7 @@ -#define x86_cpuid_MACRO(p, func) { \ + /* "=&r" selects free register. It can select even rbx, if that register is free. + "=&D" for (RDI) also works, but the code can be larger with "=&D" + "2"(subFun) : 2 is (zero-based) index in the output constraint list "=c" (ECX). */ + +#define x86_cpuid_MACRO_2(p, func, subFunc) { \ __asm__ __volatile__ ( \ @@ -56,8 +60,3 @@ ASM_LN "xchg %%rbx, %q1" \ - : "=a" ((p)[0]), "=&r" ((p)[1]), "=c" ((p)[2]), "=d" ((p)[3]) : "0" (func), "2"(0)); } - - /* "=&r" selects free register. It can select even rbx, if that register is free. - "=&D" for (RDI) also works, but the code can be larger with "=&D" - "2"(0) means (subFunction = 0), - 2 is (zero-based) index in the output constraint list "=c" (ECX). */ + : "=a" ((p)[0]), "=&r" ((p)[1]), "=c" ((p)[2]), "=d" ((p)[3]) : "0" (func), "2"(subFunc)); } @@ -66,3 +65,3 @@ -#define x86_cpuid_MACRO(p, func) { \ +#define x86_cpuid_MACRO_2(p, func, subFunc) { \ __asm__ __volatile__ ( \ @@ -71,3 +70,3 @@ ASM_LN "xchg %%ebx, %k1" \ - : "=a" ((p)[0]), "=&r" ((p)[1]), "=c" ((p)[2]), "=d" ((p)[3]) : "0" (func), "2"(0)); } + : "=a" ((p)[0]), "=&r" ((p)[1]), "=c" ((p)[2]), "=d" ((p)[3]) : "0" (func), "2"(subFunc)); } @@ -75,6 +74,6 @@ -#define x86_cpuid_MACRO(p, func) { \ +#define x86_cpuid_MACRO_2(p, func, subFunc) { \ __asm__ __volatile__ ( \ ASM_LN "cpuid" \ - : "=a" ((p)[0]), "=b" ((p)[1]), "=c" ((p)[2]), "=d" ((p)[3]) : "0" (func), "2"(0)); } + : "=a" ((p)[0]), "=b" ((p)[1]), "=c" ((p)[2]), "=d" ((p)[3]) : "0" (func), "2"(subFunc)); } @@ -82,2 +81,3 @@ +#define x86_cpuid_MACRO(p, func) x86_cpuid_MACRO_2(p, func, 0) @@ -88,2 +88,8 @@ void Z7_FASTCALL z7_x86_cpuid(UInt32 p[4], UInt32 func) +static +void Z7_FASTCALL z7_x86_cpuid_subFunc(UInt32 p[4], UInt32 func, UInt32 subFunc) +{ + x86_cpuid_MACRO_2(p, func, subFunc) +} + @@ -207,2 +213,23 @@ void __declspec(naked) Z7_FASTCALL z7_x86_cpuid(UInt32 p[4], UInt32 func) +static +void __declspec(naked) Z7_FASTCALL z7_x86_cpuid_subFunc(UInt32 p[4], UInt32 func, UInt32 subFunc) +{ + UNUSED_VAR(p) + UNUSED_VAR(func) + UNUSED_VAR(subFunc) + __asm push ebx + __asm push edi + __asm mov edi, ecx // p + __asm mov eax, edx // func + __asm mov ecx, [esp + 12] // subFunc + __asm cpuid + __asm mov [edi ], eax + __asm mov [edi + 4], ebx + __asm mov [edi + 8], ecx + __asm mov [edi + 12], edx + __asm pop edi + __asm pop ebx + __asm ret 4 +} + #else // MY_CPU_AMD64 @@ -212,2 +239,9 @@ void __declspec(naked) Z7_FASTCALL z7_x86_cpuid(UInt32 p[4], UInt32 func) #define MY_cpuidex __cpuidex + +static +void Z7_FASTCALL z7_x86_cpuid_subFunc(UInt32 p[4], UInt32 func, UInt32 subFunc) +{ + __cpuidex((int *)p, func, subFunc); +} + #else @@ -221,3 +255,3 @@ void __declspec(naked) Z7_FASTCALL z7_x86_cpuid(UInt32 p[4], UInt32 func) So here we use the hack for old MSVC to send (subFunction) in ECX register to cpuid instruction, - where ECX value is first parameter for FASTCALL / NO_INLINE func, + where ECX value is first parameter for FASTCALL / NO_INLINE func. So the caller of MY_cpuidex_HACK() sets ECX as subFunction, and @@ -228,3 +262,3 @@ DON'T remove Z7_NO_INLINE and Z7_FASTCALL for MY_cpuidex_HACK(): !!! static -Z7_NO_INLINE void Z7_FASTCALL MY_cpuidex_HACK(UInt32 subFunction, UInt32 func, int *CPUInfo) +Z7_NO_INLINE void Z7_FASTCALL MY_cpuidex_HACK(Int32 subFunction, Int32 func, Int32 *CPUInfo) { @@ -235,2 +269,7 @@ Z7_NO_INLINE void Z7_FASTCALL MY_cpuidex_HACK(UInt32 subFunction, UInt32 func, i #pragma message("======== MY_cpuidex_HACK WAS USED ========") +static +void Z7_FASTCALL z7_x86_cpuid_subFunc(UInt32 p[4], UInt32 func, UInt32 subFunc) +{ + MY_cpuidex_HACK(subFunc, func, (Int32 *)p); +} #endif // _MSC_VER >= 1600 @@ -244,3 +283,3 @@ void Z7_FASTCALL z7_x86_cpuid(UInt32 p[4], UInt32 func) { - MY_cpuidex((int *)p, (int)func, 0); + MY_cpuidex((Int32 *)p, (Int32)func, 0); } @@ -250,3 +289,3 @@ UInt32 Z7_FASTCALL z7_x86_cpuid_GetMaxFunc(void) { - int a[4]; + Int32 a[4]; MY_cpuidex(a, 0, 0); @@ -386,3 +425,3 @@ BoolInt CPU_IsSupported_CMOV(void) return 0; - return (a[3] >> 15) & 1; + return (BoolInt)(a[3] >> 15) & 1; } @@ -395,3 +434,3 @@ BoolInt CPU_IsSupported_SSE(void) return 0; - return (a[3] >> 25) & 1; + return (BoolInt)(a[3] >> 25) & 1; } @@ -404,3 +443,3 @@ BoolInt CPU_IsSupported_SSE2(void) return 0; - return (a[3] >> 26) & 1; + return (BoolInt)(a[3] >> 26) & 1; } @@ -421,3 +460,3 @@ BoolInt CPU_IsSupported_AES(void) { - return (x86cpuid_Func_1_ECX() >> 25) & 1; + return (BoolInt)(x86cpuid_Func_1_ECX() >> 25) & 1; } @@ -426,3 +465,3 @@ BoolInt CPU_IsSupported_SSSE3(void) { - return (x86cpuid_Func_1_ECX() >> 9) & 1; + return (BoolInt)(x86cpuid_Func_1_ECX() >> 9) & 1; } @@ -431,3 +470,3 @@ BoolInt CPU_IsSupported_SSE41(void) { - return (x86cpuid_Func_1_ECX() >> 19) & 1; + return (BoolInt)(x86cpuid_Func_1_ECX() >> 19) & 1; } @@ -443,3 +482,20 @@ BoolInt CPU_IsSupported_SHA(void) z7_x86_cpuid(d, 7); - return (d[1] >> 29) & 1; + return (BoolInt)(d[1] >> 29) & 1; + } +} + + +BoolInt CPU_IsSupported_SHA512(void) +{ + if (!CPU_IsSupported_AVX2()) return False; // maybe CPU_IsSupported_AVX() is enough here + + if (z7_x86_cpuid_GetMaxFunc() < 7) + return False; + { + UInt32 d[4]; + z7_x86_cpuid_subFunc(d, 7, 0); + if (d[0] < 1) // d[0] - is max supported subleaf value + return False; + z7_x86_cpuid_subFunc(d, 7, 1); + return (BoolInt)(d[0]) & 1; } @@ -640,6 +696,6 @@ BoolInt CPU_IsSupported_AVX(void) const UInt32 bm = (UInt32)x86_xgetbv_0(MY_XCR_XFEATURE_ENABLED_MASK); - // printf("\n=== XGetBV=%d\n", bm); + // printf("\n=== XGetBV=0x%x\n", bm); return 1 - & (bm >> 1) // SSE state is supported (set by OS) for storing/restoring - & (bm >> 2); // AVX state is supported (set by OS) for storing/restoring + & (BoolInt)(bm >> 1) // SSE state is supported (set by OS) for storing/restoring + & (BoolInt)(bm >> 2); // AVX state is supported (set by OS) for storing/restoring } @@ -660,5 +716,34 @@ BoolInt CPU_IsSupported_AVX2(void) return 1 - & (d[1] >> 5); // avx2 + & (BoolInt)(d[1] >> 5); // avx2 + } +} + +#if 0 +BoolInt CPU_IsSupported_AVX512F_AVX512VL(void) +{ + if (!CPU_IsSupported_AVX()) + return False; + if (z7_x86_cpuid_GetMaxFunc() < 7) + return False; + { + UInt32 d[4]; + BoolInt v; + z7_x86_cpuid(d, 7); + // printf("\ncpuid(7): ebx=%8x ecx=%8x\n", d[1], d[2]); + v = 1 + & (BoolInt)(d[1] >> 16) // avx512f + & (BoolInt)(d[1] >> 31); // avx512vl + if (!v) + return False; + } + { + const UInt32 bm = (UInt32)x86_xgetbv_0(MY_XCR_XFEATURE_ENABLED_MASK); + // printf("\n=== XGetBV=0x%x\n", bm); + return 1 + & (BoolInt)(bm >> 5) // OPMASK + & (BoolInt)(bm >> 6) // ZMM upper 256-bit + & (BoolInt)(bm >> 7); // ZMM16 ... ZMM31 } } +#endif @@ -675,5 +760,5 @@ BoolInt CPU_IsSupported_VAES_AVX2(void) return 1 - & (d[1] >> 5) // avx2 + & (BoolInt)(d[1] >> 5) // avx2 // & (d[1] >> 31) // avx512vl - & (d[2] >> 9); // vaes // VEX-256/EVEX + & (BoolInt)(d[2] >> 9); // vaes // VEX-256/EVEX } @@ -690,3 +775,3 @@ BoolInt CPU_IsSupported_PageGB(void) z7_x86_cpuid(d, 0x80000001); - return (d[3] >> 26) & 1; + return (BoolInt)(d[3] >> 26) & 1; } @@ -749,2 +834,14 @@ BoolInt CPU_IsSupported_NEON(void) +BoolInt CPU_IsSupported_SHA512(void) +{ + return z7_sysctlbyname_Get_BoolInt("hw.optional.armv8_2_sha512"); +} + +/* +BoolInt CPU_IsSupported_SHA3(void) +{ + return z7_sysctlbyname_Get_BoolInt("hw.optional.armv8_2_sha3"); +} +*/ + #ifdef MY_CPU_ARM64 @@ -762,5 +859,19 @@ BoolInt CPU_IsSupported_AES (void) { return APPLE_CRYPTO_SUPPORT_VAL; } -#include <sys/auxv.h> +#if defined(__GLIBC__) && (__GLIBC__ * 100 + __GLIBC_MINOR__ >= 216) + #define Z7_GETAUXV_AVAILABLE +#else +// #pragma message("=== is not NEW GLIBC === ") + #if defined __has_include + #if __has_include (<sys/auxv.h>) +// #pragma message("=== sys/auxv.h is avail=== ") + #define Z7_GETAUXV_AVAILABLE + #endif + #endif +#endif +#ifdef Z7_GETAUXV_AVAILABLE +// #pragma message("=== Z7_GETAUXV_AVAILABLE === ") +#include <sys/auxv.h> #define USE_HWCAP +#endif @@ -768,6 +879,21 @@ BoolInt CPU_IsSupported_AES (void) { return APPLE_CRYPTO_SUPPORT_VAL; } +#if defined(__FreeBSD__) +static unsigned long MY_getauxval(int aux) +{ + unsigned long val; + if (elf_aux_info(aux, &val, sizeof(val))) + return 0; + return val; +} +#else +#define MY_getauxval getauxval + #if defined __has_include + #if __has_include (<asm/hwcap.h>) #include <asm/hwcap.h> + #endif + #endif +#endif #define MY_HWCAP_CHECK_FUNC_2(name1, name2) \ - BoolInt CPU_IsSupported_ ## name1() { return (getauxval(AT_HWCAP) & (HWCAP_ ## name2)) ? 1 : 0; } + BoolInt CPU_IsSupported_ ## name1(void) { return (MY_getauxval(AT_HWCAP) & (HWCAP_ ## name2)); } @@ -776,3 +902,7 @@ BoolInt CPU_IsSupported_AES (void) { return APPLE_CRYPTO_SUPPORT_VAL; } MY_HWCAP_CHECK_FUNC_2(name, name) +#if 1 || defined(__ARM_NEON) + BoolInt CPU_IsSupported_NEON(void) { return True; } +#else MY_HWCAP_CHECK_FUNC_2(NEON, ASIMD) +#endif // MY_HWCAP_CHECK_FUNC (ASIMD) @@ -780,3 +910,3 @@ BoolInt CPU_IsSupported_AES (void) { return APPLE_CRYPTO_SUPPORT_VAL; } #define MY_HWCAP_CHECK_FUNC(name) \ - BoolInt CPU_IsSupported_ ## name() { return (getauxval(AT_HWCAP2) & (HWCAP2_ ## name)) ? 1 : 0; } + BoolInt CPU_IsSupported_ ## name(void) { return (MY_getauxval(AT_HWCAP2) & (HWCAP2_ ## name)); } MY_HWCAP_CHECK_FUNC_2(NEON, NEON) @@ -787,4 +917,8 @@ BoolInt CPU_IsSupported_AES (void) { return APPLE_CRYPTO_SUPPORT_VAL; } #define MY_HWCAP_CHECK_FUNC(name) \ - BoolInt CPU_IsSupported_ ## name() { return 0; } + BoolInt CPU_IsSupported_ ## name(void) { return 0; } +#if defined(__ARM_NEON) + BoolInt CPU_IsSupported_NEON(void) { return True; } +#else MY_HWCAP_CHECK_FUNC(NEON) +#endif @@ -796,2 +930,15 @@ MY_HWCAP_CHECK_FUNC (SHA2) MY_HWCAP_CHECK_FUNC (AES) +#ifdef MY_CPU_ARM64 +// <hwcap.h> supports HWCAP_SHA512 and HWCAP_SHA3 since 2017. +// we define them here, if they are not defined +#ifndef HWCAP_SHA3 +// #define HWCAP_SHA3 (1 << 17) +#endif +#ifndef HWCAP_SHA512 +// #pragma message("=== HWCAP_SHA512 define === ") +#define HWCAP_SHA512 (1 << 21) +#endif +MY_HWCAP_CHECK_FUNC (SHA512) +// MY_HWCAP_CHECK_FUNC (SHA3) +#endif diff --git a/src/Common/lzma/CpuArch.h b/src/Common/lzma/CpuArch.h index 8e5d8a54..a6297ea4 100644 --- a/src/Common/lzma/CpuArch.h +++ b/src/Common/lzma/CpuArch.h @@ -1,3 +1,3 @@ /* CpuArch.h -- CPU specific code -2023-04-02 : Igor Pavlov : Public domain */ +Igor Pavlov : Public domain */ @@ -22,2 +22,3 @@ MY_CPU_64BIT means that processor can work with 64-bit registers. +#if !defined(_M_ARM64EC) #if defined(_M_X64) \ @@ -37,2 +38,3 @@ MY_CPU_64BIT means that processor can work with 64-bit registers. #endif +#endif @@ -49,2 +51,3 @@ MY_CPU_64BIT means that processor can work with 64-bit registers. #if defined(_M_ARM64) \ + || defined(_M_ARM64EC) \ || defined(__AARCH64EL__) \ @@ -53,9 +56,17 @@ MY_CPU_64BIT means that processor can work with 64-bit registers. #define MY_CPU_ARM64 - #ifdef __ILP32__ +#if defined(__ILP32__) \ + || defined(__SIZEOF_POINTER__) && (__SIZEOF_POINTER__ == 4) #define MY_CPU_NAME "arm64-32" #define MY_CPU_SIZEOF_POINTER 4 - #else +#elif defined(__SIZEOF_POINTER__) && (__SIZEOF_POINTER__ == 16) + #define MY_CPU_NAME "arm64-128" + #define MY_CPU_SIZEOF_POINTER 16 +#else +#if defined(_M_ARM64EC) + #define MY_CPU_NAME "arm64ec" +#else #define MY_CPU_NAME "arm64" +#endif #define MY_CPU_SIZEOF_POINTER 8 - #endif +#endif #define MY_CPU_64BIT @@ -135,4 +146,32 @@ MY_CPU_64BIT means that processor can work with 64-bit registers. +#if defined(__sparc__) \ + || defined(__sparc) + #define MY_CPU_SPARC + #if defined(__LP64__) \ + || defined(_LP64) \ + || defined(__SIZEOF_POINTER__) && (__SIZEOF_POINTER__ == 8) + #define MY_CPU_NAME "sparcv9" + #define MY_CPU_SIZEOF_POINTER 8 + #define MY_CPU_64BIT + #elif defined(__sparc_v9__) \ + || defined(__sparcv9) + #define MY_CPU_64BIT + #if defined(__SIZEOF_POINTER__) && (__SIZEOF_POINTER__ == 4) + #define MY_CPU_NAME "sparcv9-32" + #else + #define MY_CPU_NAME "sparcv9m" + #endif + #elif defined(__sparc_v8__) \ + || defined(__sparcv8) + #define MY_CPU_NAME "sparcv8" + #define MY_CPU_SIZEOF_POINTER 4 + #else + #define MY_CPU_NAME "sparc" + #endif +#endif + + #if defined(__riscv) \ || defined(__riscv__) + #define MY_CPU_RISCV #if __riscv_xlen == 32 @@ -147,2 +186,35 @@ MY_CPU_64BIT means that processor can work with 64-bit registers. +#if defined(__loongarch__) + #define MY_CPU_LOONGARCH + #if defined(__loongarch64) || defined(__loongarch_grlen) && (__loongarch_grlen == 64) + #define MY_CPU_64BIT + #endif + #if defined(__loongarch64) + #define MY_CPU_NAME "loongarch64" + #define MY_CPU_LOONGARCH64 + #else + #define MY_CPU_NAME "loongarch" + #endif +#endif + + +// #undef MY_CPU_NAME +// #undef MY_CPU_SIZEOF_POINTER +// #define __e2k__ +// #define __SIZEOF_POINTER__ 4 +#if defined(__e2k__) + #define MY_CPU_E2K + #if defined(__ILP32__) || defined(__SIZEOF_POINTER__) && (__SIZEOF_POINTER__ == 4) + #define MY_CPU_NAME "e2k-32" + #define MY_CPU_SIZEOF_POINTER 4 + #else + #define MY_CPU_NAME "e2k" + #if defined(__LP64__) || defined(__SIZEOF_POINTER__) && (__SIZEOF_POINTER__ == 8) + #define MY_CPU_SIZEOF_POINTER 8 + #endif + #endif + #define MY_CPU_64BIT +#endif + + #if defined(MY_CPU_X86) || defined(MY_CPU_AMD64) @@ -177,2 +249,3 @@ MY_CPU_64BIT means that processor can work with 64-bit registers. || defined(MY_CPU_IA64_LE) \ + || defined(_LITTLE_ENDIAN) \ || defined(__LITTLE_ENDIAN__) \ @@ -253,2 +326,3 @@ MY_CPU_64BIT means that processor can work with 64-bit registers. #ifndef MY_CPU_NAME + // #define MY_CPU_IS_UNKNOWN #ifdef MY_CPU_LE @@ -297,5 +371,15 @@ MY_CPU_64BIT means that processor can work with 64-bit registers. -#elif (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))) \ - || (defined(__clang__) && Z7_has_builtin(__builtin_bswap16)) - +/* GCC can generate slow code that calls function for __builtin_bswap32() for: + - GCC for RISCV, if Zbb/XTHeadBb extension is not used. + - GCC for SPARC. + The code from CLANG for SPARC also is not fastest. + So we don't define Z7_CPU_FAST_BSWAP_SUPPORTED in some cases. +*/ +#elif (!defined(MY_CPU_RISCV) || defined (__riscv_zbb) || defined(__riscv_xtheadbb)) \ + && !defined(MY_CPU_SPARC) \ + && ( \ + (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))) \ + || (defined(__clang__) && Z7_has_builtin(__builtin_bswap16)) \ + ) + #define Z7_BSWAP16(v) __builtin_bswap16(v) @@ -331,3 +415,5 @@ MY_CPU_64BIT means that processor can work with 64-bit registers. #if defined(MY_CPU_X86_OR_AMD64) \ - || defined(MY_CPU_ARM64) + || defined(MY_CPU_ARM64) \ + || defined(MY_CPU_RISCV) && defined(__riscv_misaligned_fast) \ + || defined(MY_CPU_E2K) && defined(__iset__) && (__iset__ >= 6) #define MY_CPU_LE_UNALIGN @@ -335,5 +421,38 @@ MY_CPU_64BIT means that processor can work with 64-bit registers. #elif defined(__ARM_FEATURE_UNALIGNED) - /* gcc9 for 32-bit arm can use LDRD instruction that requires 32-bit alignment. - So we can't use unaligned 64-bit operations. */ - #define MY_CPU_LE_UNALIGN +/* === ALIGNMENT on 32-bit arm and LDRD/STRD/LDM/STM instructions. + Description of problems: +problem-1 : 32-bit ARM architecture: + multi-access (pair of 32-bit accesses) instructions (LDRD/STRD/LDM/STM) + require 32-bit (WORD) alignment (by 32-bit ARM architecture). + So there is "Alignment fault exception", if data is not aligned for 32-bit. + +problem-2 : 32-bit kernels and arm64 kernels: + 32-bit linux kernels provide fixup for these "paired" instruction "Alignment fault exception". + So unaligned paired-access instructions work via exception handler in kernel in 32-bit linux. + + But some arm64 kernels do not handle these faults in 32-bit programs. + So we have unhandled exception for such instructions. + Probably some new arm64 kernels have fixed it, and unaligned + paired-access instructions work in new kernels? + +problem-3 : compiler for 32-bit arm: + Compilers use LDRD/STRD/LDM/STM for UInt64 accesses + and for another cases where two 32-bit accesses are fused + to one multi-access instruction. + So UInt64 variables must be aligned for 32-bit, and each + 32-bit access must be aligned for 32-bit, if we want to + avoid "Alignment fault" exception (handled or unhandled). + +problem-4 : performace: + Even if unaligned access is handled by kernel, it will be slow. + So if we allow unaligned access, we can get fast unaligned + single-access, and slow unaligned paired-access. + + We don't allow unaligned access on 32-bit arm, because compiler + genarates paired-access instructions that require 32-bit alignment, + and some arm64 kernels have no handler for these instructions. + Also unaligned paired-access instructions will be slow, if kernel handles them. +*/ + // it must be disabled: + // #define MY_CPU_LE_UNALIGN #endif @@ -392,2 +511,9 @@ MY_CPU_64BIT means that processor can work with 64-bit registers. +#if 0 +// Z7_BSWAP16 can be slow for x86-msvc +#define GetBe16_to32(p) (Z7_BSWAP16 (*(const UInt16 *)(const void *)(p))) +#else +#define GetBe16_to32(p) (Z7_BSWAP32 (*(const UInt16 *)(const void *)(p)) >> 16) +#endif + #define GetBe32(p) Z7_BSWAP32 (*(const UInt32 *)(const void *)(p)) @@ -397,2 +523,3 @@ MY_CPU_64BIT means that processor can work with 64-bit registers. #define GetBe64(p) Z7_BSWAP64 (*(const UInt64 *)(const void *)(p)) +#define SetBe64(p, v) { (*(UInt64 *)(void *)(p)) = Z7_BSWAP64(v); } #endif @@ -419,3 +546,18 @@ MY_CPU_64BIT means that processor can work with 64-bit registers. +#ifndef SetBe64 +#define SetBe64(p, v) { Byte *_ppp_ = (Byte *)(p); UInt64 _vvv_ = (v); \ + _ppp_[0] = (Byte)(_vvv_ >> 56); \ + _ppp_[1] = (Byte)(_vvv_ >> 48); \ + _ppp_[2] = (Byte)(_vvv_ >> 40); \ + _ppp_[3] = (Byte)(_vvv_ >> 32); \ + _ppp_[4] = (Byte)(_vvv_ >> 24); \ + _ppp_[5] = (Byte)(_vvv_ >> 16); \ + _ppp_[6] = (Byte)(_vvv_ >> 8); \ + _ppp_[7] = (Byte)_vvv_; } +#endif + #ifndef GetBe16 +#ifdef GetBe16_to32 +#define GetBe16(p) ( (UInt16) GetBe16_to32(p)) +#else #define GetBe16(p) ( (UInt16) ( \ @@ -424,2 +566,3 @@ MY_CPU_64BIT means that processor can work with 64-bit registers. #endif +#endif @@ -441,2 +584,3 @@ MY_CPU_64BIT means that processor can work with 64-bit registers. +#define GetBe64a(p) (*(const UInt64 *)(const void *)(p)) #define GetBe32a(p) (*(const UInt32 *)(const void *)(p)) @@ -446,2 +590,3 @@ MY_CPU_64BIT means that processor can work with 64-bit registers. +#define GetUi64a(p) GetUi64(p) #define GetUi32a(p) GetUi32(p) @@ -453,2 +598,3 @@ MY_CPU_64BIT means that processor can work with 64-bit registers. +#define GetUi64a(p) (*(const UInt64 *)(const void *)(p)) #define GetUi32a(p) (*(const UInt32 *)(const void *)(p)) @@ -458,2 +604,3 @@ MY_CPU_64BIT means that processor can work with 64-bit registers. +#define GetBe64a(p) GetBe64(p) #define GetBe32a(p) GetBe32(p) @@ -468,2 +615,7 @@ MY_CPU_64BIT means that processor can work with 64-bit registers. +#ifndef GetBe16_to32 +#define GetBe16_to32(p) GetBe16(p) +#endif + + #if defined(MY_CPU_X86_OR_AMD64) \ @@ -488,2 +640,3 @@ BoolInt CPU_IsSupported_AVX(void); BoolInt CPU_IsSupported_AVX2(void); +BoolInt CPU_IsSupported_AVX512F_AVX512VL(void); BoolInt CPU_IsSupported_VAES_AVX2(void); @@ -495,2 +648,3 @@ BoolInt CPU_IsSupported_SSE41(void); BoolInt CPU_IsSupported_SHA(void); +BoolInt CPU_IsSupported_SHA512(void); BoolInt CPU_IsSupported_PageGB(void); @@ -512,2 +666,3 @@ BoolInt CPU_IsSupported_AES(void); #endif +BoolInt CPU_IsSupported_SHA512(void); diff --git a/src/Common/lzma/LzFind.c b/src/Common/lzma/LzFind.c index 0fbd5aae..1ce40464 100644 --- a/src/Common/lzma/LzFind.c +++ b/src/Common/lzma/LzFind.c @@ -1,3 +1,3 @@ /* LzFind.c -- Match finder for LZ algorithms -2023-03-14 : Igor Pavlov : Public domain */ +2024-03-01 : Igor Pavlov : Public domain */ @@ -110,5 +110,11 @@ static int LzInWindow_Create2(CMatchFinder *p, UInt32 blockSize, ISzAllocPtr all -static const Byte *MatchFinder_GetPointerToCurrentPos(CMatchFinder *p) { return p->buffer; } +static const Byte *MatchFinder_GetPointerToCurrentPos(void *p) +{ + return ((CMatchFinder *)p)->buffer; +} -static UInt32 MatchFinder_GetNumAvailableBytes(CMatchFinder *p) { return GET_AVAIL_BYTES(p); } +static UInt32 MatchFinder_GetNumAvailableBytes(void *p) +{ + return GET_AVAIL_BYTES((CMatchFinder *)p); +} @@ -573,4 +579,5 @@ void MatchFinder_Init_4(CMatchFinder *p) -void MatchFinder_Init(CMatchFinder *p) +void MatchFinder_Init(void *_p) { + CMatchFinder *p = (CMatchFinder *)_p; MatchFinder_Init_HighHash(p); @@ -609,7 +616,7 @@ void MatchFinder_Init(CMatchFinder *p) -// #elif defined(MY_CPU_ARM_OR_ARM64) -#elif defined(MY_CPU_ARM64) +#elif defined(MY_CPU_ARM64) \ + /* || (defined(__ARM_ARCH) && (__ARM_ARCH >= 7)) */ - #if defined(__clang__) && (__clang_major__ >= 8) \ - || defined(__GNUC__) && (__GNUC__ >= 8) + #if defined(Z7_CLANG_VERSION) && (Z7_CLANG_VERSION >= 30800) \ + || defined(__GNUC__) && (__GNUC__ >= 6) #define USE_LZFIND_SATUR_SUB_128 @@ -618,3 +625,3 @@ void MatchFinder_Init(CMatchFinder *p) #else - // #define LZFIND_ATTRIB_SSE41 __attribute__((__target__("fpu=crypto-neon-fp-armv8"))) + #define LZFIND_ATTRIB_SSE41 __attribute__((__target__("fpu=neon"))) #endif @@ -627,3 +634,3 @@ void MatchFinder_Init(CMatchFinder *p) - #if defined(_MSC_VER) && defined(MY_CPU_ARM64) + #if defined(Z7_MSC_VER_ORIGINAL) && defined(MY_CPU_ARM64) #include <arm64_neon.h> @@ -1084,5 +1091,7 @@ static void SkipMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const #define MOVE_POS \ - ++p->cyclicBufferPos; \ + p->cyclicBufferPos++; \ p->buffer++; \ - { const UInt32 pos1 = p->pos + 1; p->pos = pos1; if (pos1 == p->posLimit) MatchFinder_CheckLimits(p); } + { const UInt32 pos1 = p->pos + 1; \ + p->pos = pos1; \ + if (pos1 == p->posLimit) MatchFinder_CheckLimits(p); } @@ -1105,4 +1114,5 @@ static void MatchFinder_MovePos(CMatchFinder *p) #define GET_MATCHES_HEADER2(minLen, ret_op) \ - unsigned lenLimit; UInt32 hv; const Byte *cur; UInt32 curMatch; \ - lenLimit = (unsigned)p->lenLimit; { if (lenLimit < minLen) { MatchFinder_MovePos(p); ret_op; }} \ + UInt32 hv; const Byte *cur; UInt32 curMatch; \ + UInt32 lenLimit = p->lenLimit; \ + if (lenLimit < minLen) { MatchFinder_MovePos(p); ret_op; } \ cur = p->buffer; @@ -1110,11 +1120,16 @@ static void MatchFinder_MovePos(CMatchFinder *p) #define GET_MATCHES_HEADER(minLen) GET_MATCHES_HEADER2(minLen, return distances) -#define SKIP_HEADER(minLen) do { GET_MATCHES_HEADER2(minLen, continue) +#define SKIP_HEADER(minLen) \ + do { GET_MATCHES_HEADER2(minLen, continue) -#define MF_PARAMS(p) lenLimit, curMatch, p->pos, p->buffer, p->son, p->cyclicBufferPos, p->cyclicBufferSize, p->cutValue +#define MF_PARAMS(p) lenLimit, curMatch, p->pos, p->buffer, p->son, \ + p->cyclicBufferPos, p->cyclicBufferSize, p->cutValue -#define SKIP_FOOTER SkipMatchesSpec(MF_PARAMS(p)); MOVE_POS } while (--num); +#define SKIP_FOOTER \ + SkipMatchesSpec(MF_PARAMS(p)); \ + MOVE_POS \ + } while (--num); #define GET_MATCHES_FOOTER_BASE(_maxLen_, func) \ - distances = func(MF_PARAMS(p), \ - distances, (UInt32)_maxLen_); MOVE_POS_RET + distances = func(MF_PARAMS(p), distances, (UInt32)_maxLen_); \ + MOVE_POS_RET @@ -1135,4 +1150,5 @@ static void MatchFinder_MovePos(CMatchFinder *p) -static UInt32* Bt2_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances) +static UInt32* Bt2_MatchFinder_GetMatches(void *_p, UInt32 *distances) { + CMatchFinder *p = (CMatchFinder *)_p; GET_MATCHES_HEADER(2) @@ -1160,4 +1176,5 @@ UInt32* Bt3Zip_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances) -static UInt32* Bt3_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances) +static UInt32* Bt3_MatchFinder_GetMatches(void *_p, UInt32 *distances) { + CMatchFinder *p = (CMatchFinder *)_p; UInt32 mmm; @@ -1201,4 +1218,5 @@ static UInt32* Bt3_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances) -static UInt32* Bt4_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances) +static UInt32* Bt4_MatchFinder_GetMatches(void *_p, UInt32 *distances) { + CMatchFinder *p = (CMatchFinder *)_p; UInt32 mmm; @@ -1269,6 +1287,8 @@ static UInt32* Bt4_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances) -static UInt32* Bt5_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances) +static UInt32* Bt5_MatchFinder_GetMatches(void *_p, UInt32 *distances) { + CMatchFinder *p = (CMatchFinder *)_p; UInt32 mmm; - UInt32 h2, h3, d2, d3, maxLen, pos; + UInt32 h2, h3, d2, d3, pos; + unsigned maxLen; UInt32 *hash; @@ -1341,4 +1361,5 @@ static UInt32* Bt5_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances) -static UInt32* Hc4_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances) +static UInt32* Hc4_MatchFinder_GetMatches(void *_p, UInt32 *distances) { + CMatchFinder *p = (CMatchFinder *)_p; UInt32 mmm; @@ -1409,6 +1430,8 @@ static UInt32* Hc4_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances) -static UInt32 * Hc5_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances) +static UInt32 * Hc5_MatchFinder_GetMatches(void *_p, UInt32 *distances) { + CMatchFinder *p = (CMatchFinder *)_p; UInt32 mmm; - UInt32 h2, h3, d2, d3, maxLen, pos; + UInt32 h2, h3, d2, d3, pos; + unsigned maxLen; UInt32 *hash; @@ -1468,3 +1491,3 @@ static UInt32 * Hc5_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances) UPDATE_maxLen - distances[-2] = maxLen; + distances[-2] = (UInt32)maxLen; if (maxLen == lenLimit) @@ -1491,4 +1514,5 @@ UInt32* Hc3Zip_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances) -static void Bt2_MatchFinder_Skip(CMatchFinder *p, UInt32 num) +static void Bt2_MatchFinder_Skip(void *_p, UInt32 num) { + CMatchFinder *p = (CMatchFinder *)_p; SKIP_HEADER(2) @@ -1513,4 +1537,5 @@ void Bt3Zip_MatchFinder_Skip(CMatchFinder *p, UInt32 num) -static void Bt3_MatchFinder_Skip(CMatchFinder *p, UInt32 num) +static void Bt3_MatchFinder_Skip(void *_p, UInt32 num) { + CMatchFinder *p = (CMatchFinder *)_p; SKIP_HEADER(3) @@ -1528,4 +1553,5 @@ static void Bt3_MatchFinder_Skip(CMatchFinder *p, UInt32 num) -static void Bt4_MatchFinder_Skip(CMatchFinder *p, UInt32 num) +static void Bt4_MatchFinder_Skip(void *_p, UInt32 num) { + CMatchFinder *p = (CMatchFinder *)_p; SKIP_HEADER(4) @@ -1544,4 +1570,5 @@ static void Bt4_MatchFinder_Skip(CMatchFinder *p, UInt32 num) -static void Bt5_MatchFinder_Skip(CMatchFinder *p, UInt32 num) +static void Bt5_MatchFinder_Skip(void *_p, UInt32 num) { + CMatchFinder *p = (CMatchFinder *)_p; SKIP_HEADER(5) @@ -1591,4 +1618,5 @@ static void Bt5_MatchFinder_Skip(CMatchFinder *p, UInt32 num) -static void Hc4_MatchFinder_Skip(CMatchFinder *p, UInt32 num) +static void Hc4_MatchFinder_Skip(void *_p, UInt32 num) { + CMatchFinder *p = (CMatchFinder *)_p; HC_SKIP_HEADER(4) @@ -1606,4 +1634,5 @@ static void Hc4_MatchFinder_Skip(CMatchFinder *p, UInt32 num) -static void Hc5_MatchFinder_Skip(CMatchFinder *p, UInt32 num) +static void Hc5_MatchFinder_Skip(void *_p, UInt32 num) { + CMatchFinder *p = (CMatchFinder *)_p; HC_SKIP_HEADER(5) @@ -1636,5 +1665,5 @@ void MatchFinder_CreateVTable(CMatchFinder *p, IMatchFinder2 *vTable) { - vTable->Init = (Mf_Init_Func)MatchFinder_Init; - vTable->GetNumAvailableBytes = (Mf_GetNumAvailableBytes_Func)MatchFinder_GetNumAvailableBytes; - vTable->GetPointerToCurrentPos = (Mf_GetPointerToCurrentPos_Func)MatchFinder_GetPointerToCurrentPos; + vTable->Init = MatchFinder_Init; + vTable->GetNumAvailableBytes = MatchFinder_GetNumAvailableBytes; + vTable->GetPointerToCurrentPos = MatchFinder_GetPointerToCurrentPos; if (!p->btMode) @@ -1643,4 +1672,4 @@ void MatchFinder_CreateVTable(CMatchFinder *p, IMatchFinder2 *vTable) { - vTable->GetMatches = (Mf_GetMatches_Func)Hc4_MatchFinder_GetMatches; - vTable->Skip = (Mf_Skip_Func)Hc4_MatchFinder_Skip; + vTable->GetMatches = Hc4_MatchFinder_GetMatches; + vTable->Skip = Hc4_MatchFinder_Skip; } @@ -1648,4 +1677,4 @@ void MatchFinder_CreateVTable(CMatchFinder *p, IMatchFinder2 *vTable) { - vTable->GetMatches = (Mf_GetMatches_Func)Hc5_MatchFinder_GetMatches; - vTable->Skip = (Mf_Skip_Func)Hc5_MatchFinder_Skip; + vTable->GetMatches = Hc5_MatchFinder_GetMatches; + vTable->Skip = Hc5_MatchFinder_Skip; } @@ -1654,4 +1683,4 @@ void MatchFinder_CreateVTable(CMatchFinder *p, IMatchFinder2 *vTable) { - vTable->GetMatches = (Mf_GetMatches_Func)Bt2_MatchFinder_GetMatches; - vTable->Skip = (Mf_Skip_Func)Bt2_MatchFinder_Skip; + vTable->GetMatches = Bt2_MatchFinder_GetMatches; + vTable->Skip = Bt2_MatchFinder_Skip; } @@ -1659,4 +1688,4 @@ void MatchFinder_CreateVTable(CMatchFinder *p, IMatchFinder2 *vTable) { - vTable->GetMatches = (Mf_GetMatches_Func)Bt3_MatchFinder_GetMatches; - vTable->Skip = (Mf_Skip_Func)Bt3_MatchFinder_Skip; + vTable->GetMatches = Bt3_MatchFinder_GetMatches; + vTable->Skip = Bt3_MatchFinder_Skip; } @@ -1664,4 +1693,4 @@ void MatchFinder_CreateVTable(CMatchFinder *p, IMatchFinder2 *vTable) { - vTable->GetMatches = (Mf_GetMatches_Func)Bt4_MatchFinder_GetMatches; - vTable->Skip = (Mf_Skip_Func)Bt4_MatchFinder_Skip; + vTable->GetMatches = Bt4_MatchFinder_GetMatches; + vTable->Skip = Bt4_MatchFinder_Skip; } @@ -1669,4 +1698,4 @@ void MatchFinder_CreateVTable(CMatchFinder *p, IMatchFinder2 *vTable) { - vTable->GetMatches = (Mf_GetMatches_Func)Bt5_MatchFinder_GetMatches; - vTable->Skip = (Mf_Skip_Func)Bt5_MatchFinder_Skip; + vTable->GetMatches = Bt5_MatchFinder_GetMatches; + vTable->Skip = Bt5_MatchFinder_Skip; } diff --git a/src/Common/lzma/LzFind.h b/src/Common/lzma/LzFind.h index a3f72c98..67e8a6e0 100644 --- a/src/Common/lzma/LzFind.h +++ b/src/Common/lzma/LzFind.h @@ -1,3 +1,3 @@ /* LzFind.h -- Match finder for LZ algorithms -2023-03-04 : Igor Pavlov : Public domain */ +2024-01-22 : Igor Pavlov : Public domain */ @@ -146,3 +146,4 @@ void MatchFinder_Init_HighHash(CMatchFinder *p); void MatchFinder_Init_4(CMatchFinder *p); -void MatchFinder_Init(CMatchFinder *p); +// void MatchFinder_Init(CMatchFinder *p); +void MatchFinder_Init(void *p); diff --git a/src/Common/lzma/LzFindMt.c b/src/Common/lzma/LzFindMt.c index 5253e6eb..ac9d59d0 100644 --- a/src/Common/lzma/LzFindMt.c +++ b/src/Common/lzma/LzFindMt.c @@ -1,3 +1,3 @@ /* LzFindMt.c -- multithreaded Match finder for LZ algorithms -2023-04-02 : Igor Pavlov : Public domain */ +2024-01-22 : Igor Pavlov : Public domain */ @@ -96,3 +96,3 @@ static void MtSync_Construct(CMtSync *p) -#define DEBUG_BUFFER_LOCK // define it to debug lock state +// #define DEBUG_BUFFER_LOCK // define it to debug lock state @@ -879,4 +879,5 @@ SRes MatchFinderMt_InitMt(CMatchFinderMt *p) -static void MatchFinderMt_Init(CMatchFinderMt *p) +static void MatchFinderMt_Init(void *_p) { + CMatchFinderMt *p = (CMatchFinderMt *)_p; CMatchFinder *mf = MF(p); @@ -983,4 +984,5 @@ static UInt32 MatchFinderMt_GetNextBlock_Bt(CMatchFinderMt *p) -static const Byte * MatchFinderMt_GetPointerToCurrentPos(CMatchFinderMt *p) +static const Byte * MatchFinderMt_GetPointerToCurrentPos(void *_p) { + CMatchFinderMt *p = (CMatchFinderMt *)_p; return p->pointerToCurPos; @@ -992,4 +994,5 @@ static const Byte * MatchFinderMt_GetPointerToCurrentPos(CMatchFinderMt *p) -static UInt32 MatchFinderMt_GetNumAvailableBytes(CMatchFinderMt *p) +static UInt32 MatchFinderMt_GetNumAvailableBytes(void *_p) { + CMatchFinderMt *p = (CMatchFinderMt *)_p; if (p->btBufPos != p->btBufPosLimit) @@ -1245,4 +1248,5 @@ static UInt32 * MixMatches4(CMatchFinderMt *p, UInt32 matchMinPos, UInt32 *d) -static UInt32 * MatchFinderMt2_GetMatches(CMatchFinderMt *p, UInt32 *d) +static UInt32 * MatchFinderMt2_GetMatches(void *_p, UInt32 *d) { + CMatchFinderMt *p = (CMatchFinderMt *)_p; const UInt32 *bt = p->btBufPos; @@ -1269,4 +1273,5 @@ static UInt32 * MatchFinderMt2_GetMatches(CMatchFinderMt *p, UInt32 *d) -static UInt32 * MatchFinderMt_GetMatches(CMatchFinderMt *p, UInt32 *d) +static UInt32 * MatchFinderMt_GetMatches(void *_p, UInt32 *d) { + CMatchFinderMt *p = (CMatchFinderMt *)_p; const UInt32 *bt = p->btBufPos; @@ -1317,4 +1322,5 @@ static UInt32 * MatchFinderMt_GetMatches(CMatchFinderMt *p, UInt32 *d) -static void MatchFinderMt0_Skip(CMatchFinderMt *p, UInt32 num) +static void MatchFinderMt0_Skip(void *_p, UInt32 num) { + CMatchFinderMt *p = (CMatchFinderMt *)_p; SKIP_HEADER2_MT { p->btNumAvailBytes--; @@ -1323,4 +1329,5 @@ static void MatchFinderMt0_Skip(CMatchFinderMt *p, UInt32 num) -static void MatchFinderMt2_Skip(CMatchFinderMt *p, UInt32 num) +static void MatchFinderMt2_Skip(void *_p, UInt32 num) { + CMatchFinderMt *p = (CMatchFinderMt *)_p; SKIP_HEADER_MT(2) @@ -1332,4 +1339,5 @@ static void MatchFinderMt2_Skip(CMatchFinderMt *p, UInt32 num) -static void MatchFinderMt3_Skip(CMatchFinderMt *p, UInt32 num) +static void MatchFinderMt3_Skip(void *_p, UInt32 num) { + CMatchFinderMt *p = (CMatchFinderMt *)_p; SKIP_HEADER_MT(3) @@ -1363,6 +1371,6 @@ void MatchFinderMt_CreateVTable(CMatchFinderMt *p, IMatchFinder2 *vTable) { - vTable->Init = (Mf_Init_Func)MatchFinderMt_Init; - vTable->GetNumAvailableBytes = (Mf_GetNumAvailableBytes_Func)MatchFinderMt_GetNumAvailableBytes; - vTable->GetPointerToCurrentPos = (Mf_GetPointerToCurrentPos_Func)MatchFinderMt_GetPointerToCurrentPos; - vTable->GetMatches = (Mf_GetMatches_Func)MatchFinderMt_GetMatches; + vTable->Init = MatchFinderMt_Init; + vTable->GetNumAvailableBytes = MatchFinderMt_GetNumAvailableBytes; + vTable->GetPointerToCurrentPos = MatchFinderMt_GetPointerToCurrentPos; + vTable->GetMatches = MatchFinderMt_GetMatches; @@ -1372,5 +1380,5 @@ void MatchFinderMt_CreateVTable(CMatchFinderMt *p, IMatchFinder2 *vTable) p->GetHeadsFunc = GetHeads2; - p->MixMatchesFunc = (Mf_Mix_Matches)NULL; - vTable->Skip = (Mf_Skip_Func)MatchFinderMt0_Skip; - vTable->GetMatches = (Mf_GetMatches_Func)MatchFinderMt2_GetMatches; + p->MixMatchesFunc = NULL; + vTable->Skip = MatchFinderMt0_Skip; + vTable->GetMatches = MatchFinderMt2_GetMatches; break; @@ -1378,4 +1386,4 @@ void MatchFinderMt_CreateVTable(CMatchFinderMt *p, IMatchFinder2 *vTable) p->GetHeadsFunc = MF(p)->bigHash ? GetHeads3b : GetHeads3; - p->MixMatchesFunc = (Mf_Mix_Matches)MixMatches2; - vTable->Skip = (Mf_Skip_Func)MatchFinderMt2_Skip; + p->MixMatchesFunc = MixMatches2; + vTable->Skip = MatchFinderMt2_Skip; break; @@ -1385,6 +1393,6 @@ void MatchFinderMt_CreateVTable(CMatchFinderMt *p, IMatchFinder2 *vTable) // it's fast inline version of GetMatches() - // vTable->GetMatches = (Mf_GetMatches_Func)MatchFinderMt_GetMatches_Bt4; + // vTable->GetMatches = MatchFinderMt_GetMatches_Bt4; - p->MixMatchesFunc = (Mf_Mix_Matches)MixMatches3; - vTable->Skip = (Mf_Skip_Func)MatchFinderMt3_Skip; + p->MixMatchesFunc = MixMatches3; + vTable->Skip = MatchFinderMt3_Skip; break; @@ -1392,6 +1400,6 @@ void MatchFinderMt_CreateVTable(CMatchFinderMt *p, IMatchFinder2 *vTable) p->GetHeadsFunc = MF(p)->bigHash ? GetHeads5b : GetHeads5; - p->MixMatchesFunc = (Mf_Mix_Matches)MixMatches4; + p->MixMatchesFunc = MixMatches4; vTable->Skip = - (Mf_Skip_Func)MatchFinderMt3_Skip; - // (Mf_Skip_Func)MatchFinderMt4_Skip; + MatchFinderMt3_Skip; + // MatchFinderMt4_Skip; break; diff --git a/src/Common/lzma/LzFindMt.h b/src/Common/lzma/LzFindMt.h index db5923ea..fcb479da 100644 --- a/src/Common/lzma/LzFindMt.h +++ b/src/Common/lzma/LzFindMt.h @@ -1,3 +1,3 @@ /* LzFindMt.h -- multithreaded Match finder for LZ algorithms -2023-03-05 : Igor Pavlov : Public domain */ +2024-01-22 : Igor Pavlov : Public domain */ @@ -33,3 +33,6 @@ typedef struct -typedef UInt32 * (*Mf_Mix_Matches)(void *p, UInt32 matchMinPos, UInt32 *distances); + +struct CMatchFinderMt_; + +typedef UInt32 * (*Mf_Mix_Matches)(struct CMatchFinderMt_ *p, UInt32 matchMinPos, UInt32 *distances); @@ -41,3 +44,3 @@ typedef void (*Mf_GetHeads)(const Byte *buffer, UInt32 pos, -typedef struct +typedef struct CMatchFinderMt_ { diff --git a/src/Common/lzma/LzmaEnc.c b/src/Common/lzma/LzmaEnc.c index 6d13cac8..088b78f8 100644 --- a/src/Common/lzma/LzmaEnc.c +++ b/src/Common/lzma/LzmaEnc.c @@ -1,3 +1,3 @@ /* LzmaEnc.c -- LZMA Encoder -2023-04-13: Igor Pavlov : Public domain */ +Igor Pavlov : Public domain */ @@ -74,7 +74,7 @@ void LzmaEncProps_Normalize(CLzmaEncProps *p) if (p->dictSize == 0) - p->dictSize = - ( level <= 3 ? ((UInt32)1 << (level * 2 + 16)) : - ( level <= 6 ? ((UInt32)1 << (level + 19)) : - ( level <= 7 ? ((UInt32)1 << 25) : ((UInt32)1 << 26) - ))); + p->dictSize = (unsigned)level <= 4 ? + (UInt32)1 << (level * 2 + 16) : + (unsigned)level <= sizeof(size_t) / 2 + 4 ? + (UInt32)1 << (level + 20) : + (UInt32)1 << (sizeof(size_t) / 2 + 24); @@ -94,4 +94,4 @@ void LzmaEncProps_Normalize(CLzmaEncProps *p) - if (p->algo < 0) p->algo = (level < 5 ? 0 : 1); - if (p->fb < 0) p->fb = (level < 7 ? 32 : 64); + if (p->algo < 0) p->algo = (unsigned)level < 5 ? 0 : 1; + if (p->fb < 0) p->fb = (unsigned)level < 7 ? 32 : 64; if (p->btMode < 0) p->btMode = (p->algo == 0 ? 0 : 1); @@ -197,7 +197,7 @@ unsigned GetPosSlot1(UInt32 pos) unsigned res; - BSR2_RET(pos, res); + BSR2_RET(pos, res) return res; } -#define GetPosSlot2(pos, res) { BSR2_RET(pos, res); } -#define GetPosSlot(pos, res) { if (pos < 2) res = pos; else BSR2_RET(pos, res); } +#define GetPosSlot2(pos, res) { BSR2_RET(pos, res) } +#define GetPosSlot(pos, res) { if (pos < 2) res = pos; else BSR2_RET(pos, res) } @@ -514,3 +514,3 @@ struct CLzmaEnc (d)->repLenProbs = (s)->repLenProbs; \ - memcpy((d)->litProbs, (s)->litProbs, ((UInt32)0x300 << (p)->lclp) * sizeof(CLzmaProb)); + memcpy((d)->litProbs, (s)->litProbs, ((size_t)0x300 * sizeof(CLzmaProb)) << (p)->lclp); @@ -1042,3 +1042,3 @@ Z7_NO_INLINE static void Z7_FASTCALL LenPriceEnc_UpdateTables( { - unsigned bit = sym & 1; + const unsigned bit = sym & 1; sym >>= 1; @@ -1049,3 +1049,3 @@ Z7_NO_INLINE static void Z7_FASTCALL LenPriceEnc_UpdateTables( { - unsigned prob = probs[(size_t)i + (1 << (kLenNumHighBits - 1))]; + const unsigned prob = probs[(size_t)i + (1 << (kLenNumHighBits - 1))]; prices[(size_t)i * 2 ] = price + GET_PRICEa_0(prob); @@ -1058,3 +1058,3 @@ Z7_NO_INLINE static void Z7_FASTCALL LenPriceEnc_UpdateTables( unsigned posState; - size_t num = (p->tableSize - kLenNumLowSymbols * 2) * sizeof(p->prices[0][0]); + const size_t num = (p->tableSize - kLenNumLowSymbols * 2) * sizeof(p->prices[0][0]); for (posState = 1; posState < numPosStates; posState++) @@ -2698,3 +2698,3 @@ static SRes LzmaEnc_Alloc(CLzmaEnc *p, UInt32 keepWindowSize, ISzAllocPtr alloc, { - unsigned lclp = p->lc + p->lp; + const unsigned lclp = p->lc + p->lp; if (!p->litProbs || !p->saveState.litProbs || p->lclp != lclp) @@ -2702,4 +2702,4 @@ static SRes LzmaEnc_Alloc(CLzmaEnc *p, UInt32 keepWindowSize, ISzAllocPtr alloc, LzmaEnc_FreeLits(p, alloc); - p->litProbs = (CLzmaProb *)ISzAlloc_Alloc(alloc, ((UInt32)0x300 << lclp) * sizeof(CLzmaProb)); - p->saveState.litProbs = (CLzmaProb *)ISzAlloc_Alloc(alloc, ((UInt32)0x300 << lclp) * sizeof(CLzmaProb)); + p->litProbs = (CLzmaProb *)ISzAlloc_Alloc(alloc, ((size_t)0x300 * sizeof(CLzmaProb)) << lclp); + p->saveState.litProbs = (CLzmaProb *)ISzAlloc_Alloc(alloc, ((size_t)0x300 * sizeof(CLzmaProb)) << lclp); if (!p->litProbs || !p->saveState.litProbs) @@ -2804,4 +2804,4 @@ static void LzmaEnc_Init(CLzmaEnc *p) { - UInt32 num = (UInt32)0x300 << (p->lp + p->lc); - UInt32 k; + const size_t num = (size_t)0x300 << (p->lp + p->lc); + size_t k; CLzmaProb *probs = p->litProbs; diff --git a/src/Common/lzma/Precomp.h b/src/Common/lzma/Precomp.h index 69afb2ff..7747fdd7 100644 --- a/src/Common/lzma/Precomp.h +++ b/src/Common/lzma/Precomp.h @@ -1,3 +1,3 @@ -/* Precomp.h -- StdAfx -2023-04-02 : Igor Pavlov : Public domain */ +/* Precomp.h -- precompilation file +2024-01-25 : Igor Pavlov : Public domain */ @@ -6,4 +6,121 @@ +/* + this file must be included before another *.h files and before <windows.h>. + this file is included from the following files: + C\*.c + C\Util\*\Precomp.h <- C\Util\*\*.c + CPP\Common\Common.h <- *\StdAfx.h <- *\*.cpp + + this file can set the following macros: + Z7_LARGE_PAGES 1 + Z7_LONG_PATH 1 + Z7_WIN32_WINNT_MIN 0x0500 (or higher) : we require at least win2000+ for 7-Zip + _WIN32_WINNT 0x0500 (or higher) + WINVER _WIN32_WINNT + UNICODE 1 + _UNICODE 1 +*/ + #include "Compiler.h" -/* #include "7zTypes.h" */ + +#ifdef _MSC_VER +// #pragma warning(disable : 4206) // nonstandard extension used : translation unit is empty +#if _MSC_VER >= 1912 +// #pragma warning(disable : 5039) // pointer or reference to potentially throwing function passed to 'extern "C"' function under - EHc.Undefined behavior may occur if this function throws an exception. +#endif +#endif + +/* +// for debug: +#define UNICODE 1 +#define _UNICODE 1 +#define _WIN32_WINNT 0x0500 // win2000 +#ifndef WINVER + #define WINVER _WIN32_WINNT +#endif +*/ + +#ifdef _WIN32 +/* + this "Precomp.h" file must be included before <windows.h>, + if we want to define _WIN32_WINNT before <windows.h>. +*/ + +#ifndef Z7_LARGE_PAGES +#ifndef Z7_NO_LARGE_PAGES +#define Z7_LARGE_PAGES 1 +#endif +#endif + +#ifndef Z7_LONG_PATH +#ifndef Z7_NO_LONG_PATH +#define Z7_LONG_PATH 1 +#endif +#endif + +#ifndef Z7_DEVICE_FILE +#ifndef Z7_NO_DEVICE_FILE +// #define Z7_DEVICE_FILE 1 +#endif +#endif + +// we don't change macros if included after <windows.h> +#ifndef _WINDOWS_ + +#ifndef Z7_WIN32_WINNT_MIN + #if defined(_M_ARM64) || defined(__aarch64__) + // #define Z7_WIN32_WINNT_MIN 0x0a00 // win10 + #define Z7_WIN32_WINNT_MIN 0x0600 // vista + #elif defined(_M_ARM) && defined(_M_ARMT) && defined(_M_ARM_NT) + // #define Z7_WIN32_WINNT_MIN 0x0602 // win8 + #define Z7_WIN32_WINNT_MIN 0x0600 // vista + #elif defined(_M_X64) || defined(_M_AMD64) || defined(__x86_64__) || defined(_M_IA64) + #define Z7_WIN32_WINNT_MIN 0x0503 // win2003 + // #elif defined(_M_IX86) || defined(__i386__) + // #define Z7_WIN32_WINNT_MIN 0x0500 // win2000 + #else // x86 and another(old) systems + #define Z7_WIN32_WINNT_MIN 0x0500 // win2000 + // #define Z7_WIN32_WINNT_MIN 0x0502 // win2003 // for debug + #endif +#endif // Z7_WIN32_WINNT_MIN + + +#ifndef Z7_DO_NOT_DEFINE_WIN32_WINNT +#ifdef _WIN32_WINNT + // #error Stop_Compiling_Bad_WIN32_WINNT +#else + #ifndef Z7_NO_DEFINE_WIN32_WINNT +Z7_DIAGNOSTIC_IGNORE_BEGIN_RESERVED_MACRO_IDENTIFIER + #define _WIN32_WINNT Z7_WIN32_WINNT_MIN +Z7_DIAGNOSTIC_IGNORE_END_RESERVED_MACRO_IDENTIFIER + #endif +#endif // _WIN32_WINNT + +#ifndef WINVER + #define WINVER _WIN32_WINNT +#endif +#endif // Z7_DO_NOT_DEFINE_WIN32_WINNT + + +#ifndef _MBCS +#ifndef Z7_NO_UNICODE +// UNICODE and _UNICODE are used by <windows.h> and by 7-zip code. + +#ifndef UNICODE +#define UNICODE 1 +#endif + +#ifndef _UNICODE +Z7_DIAGNOSTIC_IGNORE_BEGIN_RESERVED_MACRO_IDENTIFIER +#define _UNICODE 1 +Z7_DIAGNOSTIC_IGNORE_END_RESERVED_MACRO_IDENTIFIER +#endif + +#endif // Z7_NO_UNICODE +#endif // _MBCS +#endif // _WINDOWS_ + +// #include "7zWindows.h" + +#endif // _WIN32 diff --git a/src/Common/lzma/Threads.c b/src/Common/lzma/Threads.c index cf52bd30..464efeca 100644 --- a/src/Common/lzma/Threads.c +++ b/src/Common/lzma/Threads.c @@ -1,3 +1,3 @@ /* Threads.c -- multithreading library -2023-03-04 : Igor Pavlov : Public domain */ +2024-03-28 : Igor Pavlov : Public domain */ @@ -197,3 +197,3 @@ WRes CriticalSection_Init(CCriticalSection *p) -#ifndef __APPLE__ +#if defined(__linux__) && !defined(__APPLE__) && !defined(_AIX) && !defined(__ANDROID__) #ifndef Z7_AFFINITY_DISABLE @@ -204,9 +204,8 @@ WRes CriticalSection_Init(CCriticalSection *p) #if !defined(_GNU_SOURCE) - #if defined(__clang__) && (__clang_major__ >= 4) && (__clang_major__ <= 12) - #pragma GCC diagnostic ignored "-Wreserved-id-macro" - #endif -#define _GNU_SOURCE +Z7_DIAGNOSTIC_IGNORE_BEGIN_RESERVED_MACRO_IDENTIFIER +// #define _GNU_SOURCE +Z7_DIAGNOSTIC_IGNORE_END_RESERVED_MACRO_IDENTIFIER #endif // !defined(_GNU_SOURCE) #endif // Z7_AFFINITY_DISABLE -#endif // __APPLE__ +#endif // __linux__ @@ -246,4 +245,5 @@ WRes Thread_Create_With_CpuSet(CThread *p, THREAD_FUNC_TYPE func, LPVOID param, { - #ifdef Z7_AFFINITY_SUPPORTED - + // pthread_attr_setaffinity_np() is not supported for MUSL compile. + // so we check for __GLIBC__ here +#if defined(Z7_AFFINITY_SUPPORTED) && defined( __GLIBC__) /* @@ -269,3 +269,3 @@ WRes Thread_Create_With_CpuSet(CThread *p, THREAD_FUNC_TYPE func, LPVOID param, // if (ret2) ret = ret2; - #endif +#endif } @@ -371,2 +371,7 @@ WRes AutoResetEvent_CreateNotSignaled(CAutoResetEvent *p) +#if defined(Z7_LLVM_CLANG_VERSION) && (__clang_major__ == 13) +// freebsd: +#pragma GCC diagnostic ignored "-Wthread-safety-analysis" +#endif + WRes Event_Set(CEvent *p) @@ -375,5 +380,7 @@ WRes Event_Set(CEvent *p) p->_state = True; - int res1 = pthread_cond_broadcast(&p->_cond); - int res2 = pthread_mutex_unlock(&p->_mutex); - return (res2 ? res2 : res1); + { + const int res1 = pthread_cond_broadcast(&p->_cond); + const int res2 = pthread_mutex_unlock(&p->_mutex); + return (res2 ? res2 : res1); + } } @@ -410,4 +417,4 @@ WRes Event_Close(CEvent *p) { - int res1 = pthread_mutex_destroy(&p->_mutex); - int res2 = pthread_cond_destroy(&p->_cond); + const int res1 = pthread_mutex_destroy(&p->_mutex); + const int res2 = pthread_cond_destroy(&p->_cond); return (res1 ? res1 : res2); @@ -489,4 +496,4 @@ WRes Semaphore_Close(CSemaphore *p) { - int res1 = pthread_mutex_destroy(&p->_mutex); - int res2 = pthread_cond_destroy(&p->_cond); + const int res1 = pthread_mutex_destroy(&p->_mutex); + const int res2 = pthread_cond_destroy(&p->_cond); return (res1 ? res1 : res2); @@ -551,2 +558,14 @@ LONG InterlockedIncrement(LONG volatile *addend) +LONG InterlockedDecrement(LONG volatile *addend) +{ + // Print("InterlockedDecrement") + #ifdef USE_HACK_UNSAFE_ATOMIC + LONG val = *addend - 1; + *addend = val; + return val; + #else + return __sync_sub_and_fetch(addend, 1); + #endif +} + #endif // _WIN32 diff --git a/src/Common/lzma/Threads.h b/src/Common/lzma/Threads.h index 4028464a..c1484a27 100644 --- a/src/Common/lzma/Threads.h +++ b/src/Common/lzma/Threads.h @@ -1,3 +1,3 @@ /* Threads.h -- multithreading library -2023-04-02 : Igor Pavlov : Public domain */ +2024-03-28 : Igor Pavlov : Public domain */ @@ -11,2 +11,5 @@ +#include "Compiler.h" + +// #define Z7_AFFINITY_DISABLE #if defined(__linux__) @@ -16,3 +19,9 @@ // #pragma message(" ==== Z7_AFFINITY_SUPPORTED") -// #define _GNU_SOURCE +#if !defined(_GNU_SOURCE) +// #pragma message(" ==== _GNU_SOURCE set") +// we need _GNU_SOURCE for cpu_set_t, if we compile for MUSL +Z7_DIAGNOSTIC_IGNORE_BEGIN_RESERVED_MACRO_IDENTIFIER +#define _GNU_SOURCE +Z7_DIAGNOSTIC_IGNORE_END_RESERVED_MACRO_IDENTIFIER +#endif #endif @@ -175,3 +184,3 @@ WRes CriticalSection_Init(CCriticalSection *p); -typedef struct _CEvent +typedef struct { @@ -201,3 +210,3 @@ WRes Event_Close(CEvent *p); -typedef struct _CSemaphore +typedef struct { @@ -221,3 +230,3 @@ WRes Semaphore_Close(CSemaphore *p); -typedef struct _CCriticalSection +typedef struct { @@ -232,2 +241,3 @@ void CriticalSection_Leave(CCriticalSection *cs); LONG InterlockedIncrement(LONG volatile *addend); +LONG InterlockedDecrement(LONG volatile *addend); diff --git a/src/Common/lzma/lzma-history.txt b/src/Common/lzma/lzma-history.txt index a151c4b9..20e0a441 100644 --- a/src/Common/lzma/lzma-history.txt +++ b/src/Common/lzma/lzma-history.txt @@ -3,2 +3,76 @@ HISTORY of the LZMA SDK +24.09 2024-11-29 +------------------------- +- The default dictionary size values for LZMA/LZMA2 compression methods were increased: + dictionary size compression level + v24.08 v24.09 v24.09 + 32-bit 64-bit + 8 MB 16 MB 16 MB -mx4 + 16 MB 32 MB 32 MB -mx5 : Normal + 32 MB 64 MB 64 MB -mx6 + 32 MB 64 MB 128 MB -mx7 : Maximum + 64 MB 64 MB 256 MB -mx8 + 64 MB 64 MB 256 MB -mx9 : Ultra + The default dictionary size values for 32-bit versions of LZMA/LZMA2 don't exceed 64 MB. +- If an archive update operation uses a temporary archive folder and + the archive is moved to the destination folder, 7-Zip shows the progress of moving + the archive file, as this operation can take a long time if the archive is large. +- Some bugs were fixed. + + +24.07 2024-06-19 +------------------------- +- Changes in files: + Asm/x86/Sha256Opt.asm + Now it uses "READONLY" flag for constant array segment. + It fixes an issue where ".rodata" section in 7-Zip for x86/x64 Linux had a "WRITE" attribute. + + +24.05 2024-05-14 +------------------------- +- New switch -myv={MMNN} to set decoder compatibility version for 7z archive creating. + {MMNN} is 4-digit number that represents the version of 7-Zip without a dot. + If -myv={MMNN} switch is specified, 7-Zip will only use compression methods that can + be decoded by the specified version {MMNN} of 7-Zip and newer versions. + If -myv={MMNN} switch is not specified, -myv=2300 is used, and 7-Zip will only + use compression methods that can be decoded by 7-Zip 23.00 and newer versions. +- New switch -myfa={FilterID} to allow 7-Zip to use the specified filter method for 7z archive creating. +- New switch -myfd={FilterID} to disallow 7-Zip to use the specified filter method for 7z archive creating. + + +24.03 2024-03-23 +------------------------- +- 7-Zip now can use new RISCV filter for compression to 7z and xz archives. + RISCV filter can increase compression ratio for data containing executable + files compiled for RISC-V architecture. +- The speed for LZMA and LZMA2 decompression in ARM64 version for Windows + was increased by 20%-60%. + It uses arm64 assembler code, and clang-cl is required for arm64 assembler code compiling. +- -slmu switch : to show timestamps as UTC instead of LOCAL TIME. +- -slsl switch : in console 7-Zip for Windows : to show file paths with + linux path separator slash '/' instead of backslash separator '\'. +- 7-Zip supports .sha256 files that use backslash path separator '\'. +- Some bugs were fixed. + + +24.01 2024-01-31 +------------------------- +- 7-Zip uses file C/Precomp.h that is included to all c and c++ files. + CPP/Common/Common.h also includes C/Precomp.h. + C/Precomp.h defines the following macros (if _WIN32 is defined): + Z7_LARGE_PAGES 1 + Z7_LONG_PATH 1 + Z7_WIN32_WINNT_MIN 0x0500 (or higher) + _WIN32_WINNT 0x0500 (or higher) + WINVER _WIN32_WINNT + UNICODE 1 + _UNICODE 1 + if _WIN32_WINNT is defined already, C/Precomp.h doesn't redefine it. + +- Speed optimizations for hash caclulation: CRC-32, CRC-64. +- The bug was fixed: 7-Zip for Linux could fail for multivolume creation in some cases. +- 7zr.exe for arm64 is included to LZMA SDK package. +- Some bugs were fixed. + + 23.01 2023-06-20 diff --git a/src/Common/lzma/lzma-sdk.txt b/src/Common/lzma/lzma-sdk.txt index 141b0fd4..f7016709 100644 --- a/src/Common/lzma/lzma-sdk.txt +++ b/src/Common/lzma/lzma-sdk.txt @@ -1,2 +1,2 @@ -LZMA SDK 23.01 +LZMA SDK 24.09 -------------- @@ -139,5 +139,8 @@ bin/installer/ - example script to create installer that uses SFX module, -bin/7zdec.exe - simplified 7z archive decoder -bin/7zr.exe - 7-Zip console program (reduced version) +bin/7zdec.exe - simplified 7z archive decoder (x86 32-bit version) +bin/7zr.exe - 7-Zip console program (reduced version) (x86 32-bit version) bin/x64/7zr.exe - 7-Zip console program (reduced version) (x64 version) +bin/x64/7zdec.exe - simplified 7z archive decoder (x64 version) +bin/arm64/7zr.exe - 7-Zip console program (reduced version) (arm64 version) +bin/arm64/7zdec.exe - simplified 7z archive decoder (arm64 version) bin/lzma.exe - file->file LZMA encoder/decoder for Windows @@ -237,3 +240,3 @@ LZMA features ------------- - - Variable dictionary size (up to 1 GB) + - Variable dictionary size (up to 4 GB) - Estimated compressing speed: about 2 MB/s on 2 GHz CPU @@ -287,4 +290,4 @@ Usage: LZMA <e|d> inputFile outputFile [<switches>...] - d{N}: Sets Dictionary size - [0, 30], default: 23 (8MB) - The maximum value for dictionary size is 1 GB = 2^30 bytes. + d{N}: Sets Dictionary size - [0, 31], default: N=24 (32 MB) + The maximum value for dictionary size is N=31 (2 GB). Dictionary size is calculated as DictionarySize = 2^N bytes. @@ -323,3 +326,5 @@ Usage: LZMA <e|d> inputFile outputFile [<switches>...] bt4 d * 11.5 + 4MB Binary Tree with 4 bytes hashing. + bt5 d * 11.5 + 4MB Binary Tree with 5 bytes hashing. hc4 d * 7.5 + 4MB Hash Chain with 4 bytes hashing. + hc5 d * 7.5 + 4MB Hash Chain with 5 bytes hashing. diff --git a/src/Core/Core.h b/src/Core/Core.h index b9e53021..b2573cd4 100644 --- a/src/Core/Core.h +++ b/src/Core/Core.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/CoreBase.cpp b/src/Core/CoreBase.cpp index 0c6d5c9e..d2dbd6d7 100644 --- a/src/Core/CoreBase.cpp +++ b/src/Core/CoreBase.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -25,2 +25,5 @@ namespace VeraCrypt #endif +#if defined(TC_UNIX) + ,AllowInsecureMount (false) +#endif { diff --git a/src/Core/CoreBase.h b/src/Core/CoreBase.h index e646fce3..e4ff0a94 100644 --- a/src/Core/CoreBase.h +++ b/src/Core/CoreBase.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -79,7 +79,15 @@ namespace VeraCrypt virtual void WipePasswordCache () const = 0; -#if defined(TC_LINUX ) || defined (TC_FREEBSD) virtual void ForceUseDummySudoPassword (bool useDummySudoPassword) { UseDummySudoPassword = useDummySudoPassword;} virtual bool GetUseDummySudoPassword () const { return UseDummySudoPassword;} + +#if defined(TC_UNIX) + virtual bool IsProtectedSystemDirectory (const DirectoryPath &directory) const = 0; + virtual bool IsDirectoryOnUserPath(const DirectoryPath &directory) const = 0; + virtual void SetAllowInsecureMount (bool allowInsecureMount) { AllowInsecureMount = allowInsecureMount; } + virtual bool GetAllowInsecureMount () const { return AllowInsecureMount; } #endif + virtual void SetUserEnvPATH (const string &path) { UserEnvPATH = path; } + virtual string GetUserEnvPATH () const { return UserEnvPATH; } + Event VolumeDismountedEvent; @@ -93,4 +101,7 @@ namespace VeraCrypt FilePath ApplicationExecutablePath; -#if defined(TC_LINUX ) || defined (TC_FREEBSD) + string UserEnvPATH; bool UseDummySudoPassword; + +#if defined(TC_UNIX) + bool AllowInsecureMount; #endif diff --git a/src/Core/CoreException.cpp b/src/Core/CoreException.cpp index 9284d714..a8123917 100644 --- a/src/Core/CoreException.cpp +++ b/src/Core/CoreException.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/CoreException.h b/src/Core/CoreException.h index 8eab1b8e..b2e6b0a1 100644 --- a/src/Core/CoreException.h +++ b/src/Core/CoreException.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/FatFormatter.cpp b/src/Core/FatFormatter.cpp index c8115f9b..0d29c33d 100644 --- a/src/Core/FatFormatter.cpp +++ b/src/Core/FatFormatter.cpp @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/FatFormatter.h b/src/Core/FatFormatter.h index 17f4dd39..1a7de26d 100644 --- a/src/Core/FatFormatter.h +++ b/src/Core/FatFormatter.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/HostDevice.cpp b/src/Core/HostDevice.cpp index f48d84d7..4b9f8f2f 100644 --- a/src/Core/HostDevice.cpp +++ b/src/Core/HostDevice.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/HostDevice.h b/src/Core/HostDevice.h index 48adf32a..93779281 100644 --- a/src/Core/HostDevice.h +++ b/src/Core/HostDevice.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/MountOptions.cpp b/src/Core/MountOptions.cpp index 2f28c089..6228d3cf 100644 --- a/src/Core/MountOptions.cpp +++ b/src/Core/MountOptions.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/MountOptions.h b/src/Core/MountOptions.h index 3dcfa599..449ccbae 100644 --- a/src/Core/MountOptions.h +++ b/src/Core/MountOptions.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/RandomNumberGenerator.cpp b/src/Core/RandomNumberGenerator.cpp index b60b4eed..781d951e 100644 --- a/src/Core/RandomNumberGenerator.cpp +++ b/src/Core/RandomNumberGenerator.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/RandomNumberGenerator.h b/src/Core/RandomNumberGenerator.h index 333a8e36..5fd769a7 100644 --- a/src/Core/RandomNumberGenerator.h +++ b/src/Core/RandomNumberGenerator.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/Unix/CoreService.cpp b/src/Core/Unix/CoreService.cpp index 6d0f05e5..dc2f4e6b 100644 --- a/src/Core/Unix/CoreService.cpp +++ b/src/Core/Unix/CoreService.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -101,2 +101,7 @@ namespace VeraCrypt + // Update Core properties based on the received request + Core->SetUserEnvPATH (request->UserEnvPATH); + Core->ForceUseDummySudoPassword(request->UseDummySudoPassword); + Core->SetAllowInsecureMount(request->AllowInsecureMount); + try @@ -285,2 +290,8 @@ namespace VeraCrypt + // Copy Core properties to the request so that they can be transferred to the elevated process + request.ApplicationExecutablePath = Core->GetApplicationExecutablePath(); + request.UserEnvPATH = Core->GetUserEnvPATH(); + request.UseDummySudoPassword = Core->GetUseDummySudoPassword(); + request.AllowInsecureMount = Core->GetAllowInsecureMount(); + if (request.RequiresElevation()) @@ -289,4 +300,3 @@ namespace VeraCrypt request.FastElevation = !ElevatedServiceAvailable; - request.ApplicationExecutablePath = Core->GetApplicationExecutablePath(); - + while (!ElevatedServiceAvailable) @@ -294,37 +304,34 @@ namespace VeraCrypt // Test if the user has an active "sudo" session. - // This is only done under Linux / FreeBSD by executing the command 'sudo -n uptime'. - // In case a "sudo" session is active, the result of the command contains the string 'load average'. - // Otherwise, the result contains "sudo: a password is required". - // This may not work on all OSX versions because of a bug in sudo in its version 1.7.10, - // therefore we keep the old behaviour of sending a 'dummy' password under OSX. - // See : https://superuser.com/questions/902826/why-does-sudo-n-on-mac-os-x-always-return-0 - // - // If for some reason we are getting empty output from pipe, we revert to old behavior - // We also use the old way if the user is forcing the use of dummy password for sudo - -#if defined(TC_LINUX ) || defined (TC_FREEBSD) bool authCheckDone = false; if (!Core->GetUseDummySudoPassword ()) - { - std::vector<char> buffer(128, 0); - std::string result; - - FILE* pipe = popen("sudo -n uptime 2>&1 | grep 'load average' | wc -l | tr -d '[:blank:]'", "r"); // We redirect stderr to stdout (2>&1) to be able to catch the result of the command + { + // We are using -n to avoid prompting the user for a password. + // We are redirecting stderr to stdout and discarding both to avoid any output. + // This approach also works on newer macOS versions (12.0 and later). + std::string errorMsg; + + string sudoAbsolutePath = Process::FindSystemBinary("sudo", errorMsg); + if (sudoAbsolutePath.empty()) + throw SystemException(SRC_POS, errorMsg); + + std::string popenCommand = sudoAbsolutePath + " -n true > /dev/null 2>&1"; // We redirect stderr to stdout (2>&1) to be able to catch the result of the command + FILE* pipe = popen(popenCommand.c_str(), "r"); if (pipe) { - while (!feof(pipe)) - { - if (fgets(buffer.data(), 128, pipe) != nullptr) - result += buffer.data(); - } - - fflush(pipe); - pclose(pipe); + // We only care about the exit code + char buf[128]; + while (!feof(pipe)) + { + if (fgets(buf, sizeof(buf), pipe) == NULL) + break; + } + int status = pclose(pipe); pipe = NULL; - if (!result.empty() && strlen(result.c_str()) != 0) - { - authCheckDone = true; - if (result[0] == '0') // no line found with "load average" text, rerquest admin password - (*AdminPasswordCallback) (request.AdminPassword); + authCheckDone = true; + + // If exit code != 0, user does NOT have an active session => request password + if (status != 0) + { + (*AdminPasswordCallback)(request.AdminPassword); } @@ -338,3 +345,3 @@ namespace VeraCrypt } -#endif + try @@ -355,5 +362,4 @@ namespace VeraCrypt request.FastElevation = false; -#if defined(TC_LINUX ) || defined (TC_FREEBSD) + if(!authCheckDone) -#endif (*AdminPasswordCallback) (request.AdminPassword); @@ -407,2 +413,17 @@ namespace VeraCrypt { + // Throw exception if sudo is not found in secure locations + std::string errorMsg; + string sudoPath = Process::FindSystemBinary("sudo", errorMsg); + if (sudoPath.empty()) + throw SystemException(SRC_POS, errorMsg); + + string appPath = request.ApplicationExecutablePath; + // if appPath is empty or not absolute, use FindSystemBinary to get the full path of veracrpyt executable + if (appPath.empty() || appPath[0] != '/') + { + appPath = Process::FindSystemBinary("veracrypt", errorMsg); + if (appPath.empty()) + throw SystemException(SRC_POS, errorMsg); + } + throw_sys_if (dup2 (inPipe->GetReadFD(), STDIN_FILENO) == -1); @@ -411,7 +432,3 @@ namespace VeraCrypt - string appPath = request.ApplicationExecutablePath; - if (appPath.empty()) - appPath = "veracrypt"; - - const char *args[] = { "sudo", "-S", "-p", "", appPath.c_str(), TC_CORE_SERVICE_CMDLINE_OPTION, nullptr }; + const char *args[] = { sudoPath.c_str(), "-S", "-p", "", appPath.c_str(), TC_CORE_SERVICE_CMDLINE_OPTION, nullptr }; execvp (args[0], ((char* const*) args)); diff --git a/src/Core/Unix/CoreService.h b/src/Core/Unix/CoreService.h index dfb8b350..5c43f0ed 100644 --- a/src/Core/Unix/CoreService.h +++ b/src/Core/Unix/CoreService.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/Unix/CoreServiceProxy.h b/src/Core/Unix/CoreServiceProxy.h index d57d8163..896df3e6 100644 --- a/src/Core/Unix/CoreServiceProxy.h +++ b/src/Core/Unix/CoreServiceProxy.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/Unix/CoreServiceRequest.cpp b/src/Core/Unix/CoreServiceRequest.cpp index 98101ba4..14e2ec28 100644 --- a/src/Core/Unix/CoreServiceRequest.cpp +++ b/src/Core/Unix/CoreServiceRequest.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -25,2 +25,5 @@ namespace VeraCrypt sr.Deserialize ("FastElevation", FastElevation); + sr.Deserialize ("UserEnvPATH", UserEnvPATH); + sr.Deserialize ("UseDummySudoPassword", UseDummySudoPassword); + sr.Deserialize ("AllowInsecureMount", AllowInsecureMount); } @@ -35,2 +38,5 @@ namespace VeraCrypt sr.Serialize ("FastElevation", FastElevation); + sr.Serialize ("UserEnvPATH", UserEnvPATH); + sr.Serialize ("UseDummySudoPassword", UseDummySudoPassword); + sr.Serialize ("AllowInsecureMount", AllowInsecureMount); } diff --git a/src/Core/Unix/CoreServiceRequest.h b/src/Core/Unix/CoreServiceRequest.h index 5b12cc11..77778ca2 100644 --- a/src/Core/Unix/CoreServiceRequest.h +++ b/src/Core/Unix/CoreServiceRequest.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -22,3 +22,3 @@ namespace VeraCrypt { - CoreServiceRequest () : ElevateUserPrivileges (false), FastElevation (false) { } + CoreServiceRequest () : ElevateUserPrivileges (false), FastElevation (false), UseDummySudoPassword (false), AllowInsecureMount (false) { } TC_SERIALIZABLE (CoreServiceRequest); @@ -31,2 +31,5 @@ namespace VeraCrypt bool FastElevation; + string UserEnvPATH; + bool UseDummySudoPassword; + bool AllowInsecureMount; }; diff --git a/src/Core/Unix/CoreServiceResponse.cpp b/src/Core/Unix/CoreServiceResponse.cpp index b53b8a30..1eb0af3f 100644 --- a/src/Core/Unix/CoreServiceResponse.cpp +++ b/src/Core/Unix/CoreServiceResponse.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/Unix/CoreServiceResponse.h b/src/Core/Unix/CoreServiceResponse.h index 1f4c675e..91a2483b 100644 --- a/src/Core/Unix/CoreServiceResponse.h +++ b/src/Core/Unix/CoreServiceResponse.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/Unix/CoreUnix.cpp b/src/Core/Unix/CoreUnix.cpp index 1868eb6d..1f2d3125 100644 --- a/src/Core/Unix/CoreUnix.cpp +++ b/src/Core/Unix/CoreUnix.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -31,2 +31,37 @@ namespace VeraCrypt + // Struct to hold terminal emulator information + struct TerminalInfo { + const char* name; + const char** args; + const char** dependency_path; + }; + + // Popular terminal emulators data and arguments + static const char* xterm_args[] = {"-T", "fsck", "-e", NULL}; + + static const char* gnome_args[] = {"--title", "fsck", "--", "sh", "-c", NULL}; + static const char* gnome_deps[] = {"dbus-launch", NULL}; + + static const char* konsole_args[] = {"--hold", "-p", "tabtitle=fsck", "-e", "sh", "-c", NULL}; + static const char* xfce4_args[] = {"--title=fsck", "-x", "sh", "-c", NULL}; + static const char* mate_args[] = {"--title", "fsck", "--", "sh", "-c", NULL}; + static const char* lxterminal_args[] = {"--title=fsck", "-e", "sh", "-c", NULL}; + static const char* terminator_args[] = {"-T", "fsck", "-x", "sh", "-c", NULL}; + static const char* urxvt_args[] = {"-title", "fsck", "-e", "sh", "-c", NULL}; + static const char* st_args[] = {"-t", "fsck", "-e", "sh", "-c", NULL}; + + // List of popular terminal emulators + static const TerminalInfo TERMINALS[] = { + {"xterm", xterm_args, NULL}, + {"gnome-terminal", gnome_args, gnome_deps}, + {"konsole", konsole_args, NULL}, + {"xfce4-terminal", xfce4_args, NULL}, + {"mate-terminal", mate_args, NULL}, + {"lxterminal", lxterminal_args, NULL}, + {"terminator", terminator_args, NULL}, + {"urxvt", urxvt_args, NULL}, + {"st", st_args, NULL}, + {NULL, NULL, NULL} + }; + CoreUnix::CoreUnix () @@ -49,10 +84,12 @@ namespace VeraCrypt - list <string> args; - - args.push_back ("-T"); - args.push_back ("fsck"); + // Find system fsck first + std::string errorMsg; + std::string fsckPath = Process::FindSystemBinary("fsck", errorMsg); + if (fsckPath.empty()) { + throw SystemException(SRC_POS, errorMsg); + } - args.push_back ("-e"); + list <string> args; - string xargs = "fsck "; + string xargs = fsckPath + " "; // Use absolute fsck path @@ -66,45 +103,44 @@ namespace VeraCrypt xargs += string (mountedVolume->VirtualDevice) + "; echo '[Done]'; read W"; - args.push_back (xargs); + // Try each terminal + for (const TerminalInfo* term = TERMINALS; term->name != NULL; ++term) { + errno = 0; + std::string termPath = Process::FindSystemBinary(term->name, errorMsg); + if (termPath.length() > 0) { + // check dependencies + if (term->dependency_path) { + bool depFound = true; + for (const char** dep = term->dependency_path; *dep != NULL; ++dep) { + string depPath = Process::FindSystemBinary(*dep, errorMsg); + if (depPath.empty()) { + depFound = false; + break; + } + } - try - { - Process::Execute ("xterm", args, 1000); - } catch (TimeOut&) { } -#ifdef TC_LINUX - catch (SystemException&) - { - // xterm not available. Try with KDE konsole if it exists - struct stat sb; - if (stat("/usr/bin/konsole", &sb) == 0) - { - args.clear (); - args.push_back ("-p"); - args.push_back ("tabtitle=fsck"); - args.push_back ("-e"); - args.push_back ("sh"); - args.push_back ("-c"); - args.push_back (xargs); - try - { - Process::Execute ("konsole", args, 1000); - } catch (TimeOut&) { } - } - else if (stat("/usr/bin/gnome-terminal", &sb) == 0 && stat("/usr/bin/dbus-launch", &sb) == 0) - { - args.clear (); - args.push_back ("--title"); - args.push_back ("fsck"); - args.push_back ("--"); - args.push_back ("sh"); - args.push_back ("-c"); - args.push_back (xargs); - try - { - Process::Execute ("gnome-terminal", args, 1000); - } catch (TimeOut&) { } + if (!depFound) { + continue; // dependency not found, skip + } + } + + // Build args + std::list<std::string> args; + for (const char** arg = term->args; *arg != NULL; ++arg) { + args.push_back(*arg); + } + args.push_back(xargs); + + try { + Process::Execute (termPath, args, 1000); + return; + } + catch (TimeOut&) { + return; + } + catch (SystemException&) { + // Continue to next terminal + } } - else - throw TerminalNotFound(); } -#endif + + throw TerminalNotFound(); } @@ -562,2 +598,13 @@ namespace VeraCrypt + if (options.MountPoint && !options.MountPoint->IsEmpty()) + { + // Reject if the mount point is a system directory + if (IsProtectedSystemDirectory(*options.MountPoint)) + throw MountPointBlocked (SRC_POS); + + // Reject if the mount point is in the user's PATH and the user has not explicitly allowed insecure mount points + if (!GetAllowInsecureMount() && IsDirectoryOnUserPath(*options.MountPoint)) + throw MountPointNotAllowed (SRC_POS); + } + Cipher::EnableHwSupport (!options.NoHardwareCrypto); @@ -794,2 +841,98 @@ namespace VeraCrypt } + + bool CoreUnix::IsProtectedSystemDirectory (const DirectoryPath &directory) const + { + static const char* systemDirs[] = { + "/usr", + "/bin", + "/sbin", + "/lib", +#ifdef TC_LINUX + "/lib32", + "/lib64", + "/libx32", +#endif + "/etc", + "/boot", + "/root", + "/proc", + "/sys", + "/dev", + NULL + }; + + // Resolve any symlinks in the path + string path(directory); + char* resolvedPathCStr = realpath(path.c_str(), NULL); + if (resolvedPathCStr) + { + path = resolvedPathCStr; + free(resolvedPathCStr); // Free the allocated memory + } + + // reject of the path is the root directory "/" + if (path == "/") + return true; + + // Check if resolved path matches any system directory + for (int i = 0; systemDirs[i] != NULL; ++i) + { + if (path == systemDirs[i] || path.find(string(systemDirs[i]) + "/") == 0) + return true; + } + + return false; + } + + bool CoreUnix::IsDirectoryOnUserPath(const DirectoryPath &directory) const + { + // Obtain the PATH environment variable + const char* pathEnv = UserEnvPATH.c_str(); + if (!pathEnv[0]) + return false; + + // Resolve the given directory + string dirPath(directory); + char* resolvedDir = realpath(dirPath.c_str(), NULL); + if (resolvedDir) + { + dirPath = resolvedDir; + free(resolvedDir); + } + + // Split PATH and compare each entry + stringstream ss(pathEnv); + string token; + while (getline(ss, token, ':')) + { + // remove any trailing slashes from the token + while (!token.empty() && token.back() == '/') + token.pop_back(); + + if (token.empty()) + continue; + + // check if the directory is the same as the entry or a subdirectory + if (dirPath == token || dirPath.find(token + "/") == 0) + return true; + + // handle the case where the PATH entry is a symlink + char* resolvedEntry = realpath(token.c_str(), NULL); + if (!resolvedEntry) + continue; // skip to the next entry since the path does not exist + + string entryPath(resolvedEntry); + free(resolvedEntry); + + // remove any trailing slashes from the token + while (!entryPath.empty() && entryPath.back() == '/') + entryPath.pop_back(); + + // perform check again if the resolved path is different from the original (symlink) + if (dirPath == entryPath || dirPath.find(entryPath + "/") == 0) + return true; + } + + return false; + } } diff --git a/src/Core/Unix/CoreUnix.h b/src/Core/Unix/CoreUnix.h index 586d4df3..ae26bf0a 100644 --- a/src/Core/Unix/CoreUnix.h +++ b/src/Core/Unix/CoreUnix.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -50,2 +50,4 @@ namespace VeraCrypt virtual void WipePasswordCache () const { throw NotApplicable (SRC_POS); } + virtual bool IsProtectedSystemDirectory (const DirectoryPath &directory) const; + virtual bool IsDirectoryOnUserPath(const DirectoryPath &directory) const; diff --git a/src/Core/Unix/FreeBSD/CoreFreeBSD.cpp b/src/Core/Unix/FreeBSD/CoreFreeBSD.cpp index 05520274..8f5b8048 100644 --- a/src/Core/Unix/FreeBSD/CoreFreeBSD.cpp +++ b/src/Core/Unix/FreeBSD/CoreFreeBSD.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -48,3 +48,3 @@ namespace VeraCrypt - string dev = StringConverter::Trim (Process::Execute ("mdconfig", args)); + string dev = StringConverter::Trim (Process::Execute ("/sbin/mdconfig", args)); @@ -67,3 +67,3 @@ namespace VeraCrypt { - Process::Execute ("mdconfig", args); + Process::Execute ("/sbin/mdconfig", args); break; diff --git a/src/Core/Unix/FreeBSD/CoreFreeBSD.h b/src/Core/Unix/FreeBSD/CoreFreeBSD.h index 453f6440..5510aa2c 100644 --- a/src/Core/Unix/FreeBSD/CoreFreeBSD.h +++ b/src/Core/Unix/FreeBSD/CoreFreeBSD.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/Unix/FreeBSD/System.h b/src/Core/Unix/FreeBSD/System.h index b5e28f31..63f68aae 100644 --- a/src/Core/Unix/FreeBSD/System.h +++ b/src/Core/Unix/FreeBSD/System.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/Unix/Linux/CoreLinux.cpp b/src/Core/Unix/Linux/CoreLinux.cpp index cd4be80f..77ec874a 100644 --- a/src/Core/Unix/Linux/CoreLinux.cpp +++ b/src/Core/Unix/Linux/CoreLinux.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/Unix/Linux/CoreLinux.h b/src/Core/Unix/Linux/CoreLinux.h index 9af801ec..b851fc27 100644 --- a/src/Core/Unix/Linux/CoreLinux.h +++ b/src/Core/Unix/Linux/CoreLinux.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/Unix/Linux/System.h b/src/Core/Unix/Linux/System.h index 0ec1daf0..c98bfd0a 100644 --- a/src/Core/Unix/Linux/System.h +++ b/src/Core/Unix/Linux/System.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/Unix/MacOSX/CoreMacOSX.cpp b/src/Core/Unix/MacOSX/CoreMacOSX.cpp index cfd34072..df8a40e2 100644 --- a/src/Core/Unix/MacOSX/CoreMacOSX.cpp +++ b/src/Core/Unix/MacOSX/CoreMacOSX.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -49,3 +49,3 @@ namespace VeraCrypt { - Process::Execute ("hdiutil", args); + Process::Execute ("/usr/bin/hdiutil", args); } @@ -86,3 +86,3 @@ namespace VeraCrypt { - Process::Execute ("umount", args); + Process::Execute ("/sbin/umount", args); break; @@ -116,3 +116,3 @@ namespace VeraCrypt - Process::Execute ("open", args); + Process::Execute ("/usr/bin/open", args); } @@ -192,3 +192,3 @@ namespace VeraCrypt { - xml = Process::Execute ("hdiutil", args); + xml = Process::Execute ("/usr/bin/hdiutil", args); break; @@ -235,3 +235,3 @@ namespace VeraCrypt - Process::Execute ("hdiutil", args); + Process::Execute ("/usr/bin/hdiutil", args); } diff --git a/src/Core/Unix/MacOSX/CoreMacOSX.h b/src/Core/Unix/MacOSX/CoreMacOSX.h index d2c70a87..da905708 100644 --- a/src/Core/Unix/MacOSX/CoreMacOSX.h +++ b/src/Core/Unix/MacOSX/CoreMacOSX.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/Unix/MacOSX/System.h b/src/Core/Unix/MacOSX/System.h index d187877f..af286829 100644 --- a/src/Core/Unix/MacOSX/System.h +++ b/src/Core/Unix/MacOSX/System.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/Unix/MountedFilesystem.h b/src/Core/Unix/MountedFilesystem.h index 3f6bd3e2..de9bc138 100644 --- a/src/Core/Unix/MountedFilesystem.h +++ b/src/Core/Unix/MountedFilesystem.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/Unix/OpenBSD/CoreOpenBSD.cpp b/src/Core/Unix/OpenBSD/CoreOpenBSD.cpp index 3064103b..161d4a79 100644 --- a/src/Core/Unix/OpenBSD/CoreOpenBSD.cpp +++ b/src/Core/Unix/OpenBSD/CoreOpenBSD.cpp @@ -9,3 +9,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -77,3 +77,3 @@ namespace VeraCrypt - Process::Execute ("vnconfig", args); + Process::Execute ("/sbin/vnconfig", args); @@ -92,3 +92,3 @@ namespace VeraCrypt { - Process::Execute ("vnconfig", args); + Process::Execute ("/sbin/vnconfig", args); break; diff --git a/src/Core/Unix/OpenBSD/CoreOpenBSD.h b/src/Core/Unix/OpenBSD/CoreOpenBSD.h index 3f6c48b5..32129534 100644 --- a/src/Core/Unix/OpenBSD/CoreOpenBSD.h +++ b/src/Core/Unix/OpenBSD/CoreOpenBSD.h @@ -9,3 +9,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/Unix/OpenBSD/System.h b/src/Core/Unix/OpenBSD/System.h index 90b24b2a..9c155a40 100644 --- a/src/Core/Unix/OpenBSD/System.h +++ b/src/Core/Unix/OpenBSD/System.h @@ -9,3 +9,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/Unix/Solaris/CoreSolaris.cpp b/src/Core/Unix/Solaris/CoreSolaris.cpp index 15a79c49..c436be8f 100644 --- a/src/Core/Unix/Solaris/CoreSolaris.cpp +++ b/src/Core/Unix/Solaris/CoreSolaris.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -37,3 +37,3 @@ namespace VeraCrypt - return StringConverter::Trim (Process::Execute ("lofiadm", args)); + return StringConverter::Trim (Process::Execute ("/usr/sbin/lofiadm", args)); } @@ -50,3 +50,3 @@ namespace VeraCrypt { - Process::Execute ("lofiadm", args); + Process::Execute ("/usr/sbin/lofiadm", args); break; diff --git a/src/Core/Unix/Solaris/CoreSolaris.h b/src/Core/Unix/Solaris/CoreSolaris.h index d36f03f9..6a55583a 100644 --- a/src/Core/Unix/Solaris/CoreSolaris.h +++ b/src/Core/Unix/Solaris/CoreSolaris.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/Unix/Solaris/System.h b/src/Core/Unix/Solaris/System.h index 73513467..7ee71da4 100644 --- a/src/Core/Unix/Solaris/System.h +++ b/src/Core/Unix/Solaris/System.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/Unix/System.h b/src/Core/Unix/System.h index 7225dae2..b6a6f092 100644 --- a/src/Core/Unix/System.h +++ b/src/Core/Unix/System.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/VolumeCreator.cpp b/src/Core/VolumeCreator.cpp index fefbddde..a60b12ba 100644 --- a/src/Core/VolumeCreator.cpp +++ b/src/Core/VolumeCreator.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Core/VolumeCreator.h b/src/Core/VolumeCreator.h index 781354b9..a25a9667 100644 --- a/src/Core/VolumeCreator.h +++ b/src/Core/VolumeCreator.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Crypto/Aes_hw_armv8.c b/src/Crypto/Aes_hw_armv8.c new file mode 100644 index 00000000..b67ed1a5 --- /dev/null +++ b/src/Crypto/Aes_hw_armv8.c @@ -0,0 +1,316 @@ +/* +* AES using ARMv8 +* Contributed by Jeffrey Walton +* +* Further changes +* (C) 2017,2018 Jack Lloyd +* +* Botan is released under the Simplified BSD License (see license.txt) +*/ + +/* Modified and adapted for VeraCrypt */ + +#include "Common/Tcdefs.h" +#include "Aes_hw_cpu.h" +#if !defined(_UEFI) +#include <memory.h> +#include <stdlib.h> +#endif +#include "cpu.h" +#include "misc.h" + +#if CRYPTOPP_ARM_AES_AVAILABLE + +#include <arm_neon.h> + +// Single block encryption operations +VC_INLINE void aes_enc_block(uint8x16_t* B, uint8x16_t K) +{ + *B = vaesmcq_u8(vaeseq_u8(*B, K)); +} + +VC_INLINE void aes_enc_block_last(uint8x16_t* B, uint8x16_t K, uint8x16_t K2) +{ + *B = veorq_u8(vaeseq_u8(*B, K), K2); +} + +// 4-block parallel encryption operations +VC_INLINE void aes_enc_4_blocks(uint8x16_t* B0, uint8x16_t* B1, + uint8x16_t* B2, uint8x16_t* B3, uint8x16_t K) +{ + *B0 = vaesmcq_u8(vaeseq_u8(*B0, K)); + *B1 = vaesmcq_u8(vaeseq_u8(*B1, K)); + *B2 = vaesmcq_u8(vaeseq_u8(*B2, K)); + *B3 = vaesmcq_u8(vaeseq_u8(*B3, K)); +} + +VC_INLINE void aes_enc_4_blocks_last(uint8x16_t* B0, uint8x16_t* B1, + uint8x16_t* B2, uint8x16_t* B3, + uint8x16_t K, uint8x16_t K2) +{ + *B0 = veorq_u8(vaeseq_u8(*B0, K), K2); + *B1 = veorq_u8(vaeseq_u8(*B1, K), K2); + *B2 = veorq_u8(vaeseq_u8(*B2, K), K2); + *B3 = veorq_u8(vaeseq_u8(*B3, K), K2); +} + +// Single block decryption operations +VC_INLINE void aes_dec_block(uint8x16_t* B, uint8x16_t K) +{ + *B = vaesimcq_u8(vaesdq_u8(*B, K)); +} + +VC_INLINE void aes_dec_block_last(uint8x16_t* B, uint8x16_t K, uint8x16_t K2) +{ + *B = veorq_u8(vaesdq_u8(*B, K), K2); +} + +// 4-block parallel decryption operations +VC_INLINE void aes_dec_4_blocks(uint8x16_t* B0, uint8x16_t* B1, + uint8x16_t* B2, uint8x16_t* B3, uint8x16_t K) +{ + *B0 = vaesimcq_u8(vaesdq_u8(*B0, K)); + *B1 = vaesimcq_u8(vaesdq_u8(*B1, K)); + *B2 = vaesimcq_u8(vaesdq_u8(*B2, K)); + *B3 = vaesimcq_u8(vaesdq_u8(*B3, K)); +} + +VC_INLINE void aes_dec_4_blocks_last(uint8x16_t* B0, uint8x16_t* B1, + uint8x16_t* B2, uint8x16_t* B3, + uint8x16_t K, uint8x16_t K2) +{ + *B0 = veorq_u8(vaesdq_u8(*B0, K), K2); + *B1 = veorq_u8(vaesdq_u8(*B1, K), K2); + *B2 = veorq_u8(vaesdq_u8(*B2, K), K2); + *B3 = veorq_u8(vaesdq_u8(*B3, K), K2); +} + +VC_INLINE void aes256_hw_encrypt_blocks(uint8 buffer[], size_t blocks, const uint8* ks) +{ + const uint8x16_t K0 = vld1q_u8(ks + 0 * 16); + const uint8x16_t K1 = vld1q_u8(ks + 1 * 16); + const uint8x16_t K2 = vld1q_u8(ks + 2 * 16); + const uint8x16_t K3 = vld1q_u8(ks + 3 * 16); + const uint8x16_t K4 = vld1q_u8(ks + 4 * 16); + const uint8x16_t K5 = vld1q_u8(ks + 5 * 16); + const uint8x16_t K6 = vld1q_u8(ks + 6 * 16); + const uint8x16_t K7 = vld1q_u8(ks + 7 * 16); + const uint8x16_t K8 = vld1q_u8(ks + 8 * 16); + const uint8x16_t K9 = vld1q_u8(ks + 9 * 16); + const uint8x16_t K10 = vld1q_u8(ks + 10 * 16); + const uint8x16_t K11 = vld1q_u8(ks + 11 * 16); + const uint8x16_t K12 = vld1q_u8(ks + 12 * 16); + const uint8x16_t K13 = vld1q_u8(ks + 13 * 16); + const uint8x16_t K14 = vld1q_u8(ks + 14 * 16); + + while(blocks >= 4) { + uint8x16_t B0 = vld1q_u8(buffer); + uint8x16_t B1 = vld1q_u8(buffer + 16); + uint8x16_t B2 = vld1q_u8(buffer + 32); + uint8x16_t B3 = vld1q_u8(buffer + 48); + + aes_enc_4_blocks(&B0, &B1, &B2, &B3, K0); + aes_enc_4_blocks(&B0, &B1, &B2, &B3, K1); + aes_enc_4_blocks(&B0, &B1, &B2, &B3, K2); + aes_enc_4_blocks(&B0, &B1, &B2, &B3, K3); + aes_enc_4_blocks(&B0, &B1, &B2, &B3, K4); + aes_enc_4_blocks(&B0, &B1, &B2, &B3, K5); + aes_enc_4_blocks(&B0, &B1, &B2, &B3, K6); + aes_enc_4_blocks(&B0, &B1, &B2, &B3, K7); + aes_enc_4_blocks(&B0, &B1, &B2, &B3, K8); + aes_enc_4_blocks(&B0, &B1, &B2, &B3, K9); + aes_enc_4_blocks(&B0, &B1, &B2, &B3, K10); + aes_enc_4_blocks(&B0, &B1, &B2, &B3, K11); + aes_enc_4_blocks(&B0, &B1, &B2, &B3, K12); + aes_enc_4_blocks_last(&B0, &B1, &B2, &B3, K13, K14); + + vst1q_u8(buffer, B0); + vst1q_u8(buffer + 16, B1); + vst1q_u8(buffer + 32, B2); + vst1q_u8(buffer + 48, B3); + + buffer += 16 * 4; + blocks -= 4; + } + + for(size_t i = 0; i != blocks; ++i) { + uint8x16_t B = vld1q_u8(buffer + 16 * i); + aes_enc_block(&B, K0); + aes_enc_block(&B, K1); + aes_enc_block(&B, K2); + aes_enc_block(&B, K3); + aes_enc_block(&B, K4); + aes_enc_block(&B, K5); + aes_enc_block(&B, K6); + aes_enc_block(&B, K7); + aes_enc_block(&B, K8); + aes_enc_block(&B, K9); + aes_enc_block(&B, K10); + aes_enc_block(&B, K11); + aes_enc_block(&B, K12); + aes_enc_block_last(&B, K13, K14); + vst1q_u8(buffer + 16 * i, B); + } +} + +VC_INLINE void aes256_hw_encrypt_block(uint8 buffer[], const uint8* ks) +{ + const uint8x16_t K0 = vld1q_u8(ks + 0 * 16); + const uint8x16_t K1 = vld1q_u8(ks + 1 * 16); + const uint8x16_t K2 = vld1q_u8(ks + 2 * 16); + const uint8x16_t K3 = vld1q_u8(ks + 3 * 16); + const uint8x16_t K4 = vld1q_u8(ks + 4 * 16); + const uint8x16_t K5 = vld1q_u8(ks + 5 * 16); + const uint8x16_t K6 = vld1q_u8(ks + 6 * 16); + const uint8x16_t K7 = vld1q_u8(ks + 7 * 16); + const uint8x16_t K8 = vld1q_u8(ks + 8 * 16); + const uint8x16_t K9 = vld1q_u8(ks + 9 * 16); + const uint8x16_t K10 = vld1q_u8(ks + 10 * 16); + const uint8x16_t K11 = vld1q_u8(ks + 11 * 16); + const uint8x16_t K12 = vld1q_u8(ks + 12 * 16); + const uint8x16_t K13 = vld1q_u8(ks + 13 * 16); + const uint8x16_t K14 = vld1q_u8(ks + 14 * 16); + + uint8x16_t B = vld1q_u8(buffer); + aes_enc_block(&B, K0); + aes_enc_block(&B, K1); + aes_enc_block(&B, K2); + aes_enc_block(&B, K3); + aes_enc_block(&B, K4); + aes_enc_block(&B, K5); + aes_enc_block(&B, K6); + aes_enc_block(&B, K7); + aes_enc_block(&B, K8); + aes_enc_block(&B, K9); + aes_enc_block(&B, K10); + aes_enc_block(&B, K11); + aes_enc_block(&B, K12); + aes_enc_block_last(&B, K13, K14); + vst1q_u8(buffer, B); +} + +VC_INLINE void aes256_hw_decrypt_blocks(uint8 buffer[], size_t blocks, const uint8* ks) +{ + const uint8x16_t K0 = vld1q_u8(ks + 0 * 16); + const uint8x16_t K1 = vld1q_u8(ks + 1 * 16); + const uint8x16_t K2 = vld1q_u8(ks + 2 * 16); + const uint8x16_t K3 = vld1q_u8(ks + 3 * 16); + const uint8x16_t K4 = vld1q_u8(ks + 4 * 16); + const uint8x16_t K5 = vld1q_u8(ks + 5 * 16); + const uint8x16_t K6 = vld1q_u8(ks + 6 * 16); + const uint8x16_t K7 = vld1q_u8(ks + 7 * 16); + const uint8x16_t K8 = vld1q_u8(ks + 8 * 16); + const uint8x16_t K9 = vld1q_u8(ks + 9 * 16); + const uint8x16_t K10 = vld1q_u8(ks + 10 * 16); + const uint8x16_t K11 = vld1q_u8(ks + 11 * 16); + const uint8x16_t K12 = vld1q_u8(ks + 12 * 16); + const uint8x16_t K13 = vld1q_u8(ks + 13 * 16); + const uint8x16_t K14 = vld1q_u8(ks + 14 * 16); + + while(blocks >= 4) { + uint8x16_t B0 = vld1q_u8(buffer); + uint8x16_t B1 = vld1q_u8(buffer + 16); + uint8x16_t B2 = vld1q_u8(buffer + 32); + uint8x16_t B3 = vld1q_u8(buffer + 48); + + aes_dec_4_blocks(&B0, &B1, &B2, &B3, K0); + aes_dec_4_blocks(&B0, &B1, &B2, &B3, K1); + aes_dec_4_blocks(&B0, &B1, &B2, &B3, K2); + aes_dec_4_blocks(&B0, &B1, &B2, &B3, K3); + aes_dec_4_blocks(&B0, &B1, &B2, &B3, K4); + aes_dec_4_blocks(&B0, &B1, &B2, &B3, K5); + aes_dec_4_blocks(&B0, &B1, &B2, &B3, K6); + aes_dec_4_blocks(&B0, &B1, &B2, &B3, K7); + aes_dec_4_blocks(&B0, &B1, &B2, &B3, K8); + aes_dec_4_blocks(&B0, &B1, &B2, &B3, K9); + aes_dec_4_blocks(&B0, &B1, &B2, &B3, K10); + aes_dec_4_blocks(&B0, &B1, &B2, &B3, K11); + aes_dec_4_blocks(&B0, &B1, &B2, &B3, K12); + aes_dec_4_blocks_last(&B0, &B1, &B2, &B3, K13, K14); + + vst1q_u8(buffer, B0); + vst1q_u8(buffer + 16, B1); + vst1q_u8(buffer + 32, B2); + vst1q_u8(buffer + 48, B3); + + buffer += 16 * 4; + blocks -= 4; + } + + for(size_t i = 0; i != blocks; ++i) { + uint8x16_t B = vld1q_u8(buffer + 16 * i); + aes_dec_block(&B, K0); + aes_dec_block(&B, K1); + aes_dec_block(&B, K2); + aes_dec_block(&B, K3); + aes_dec_block(&B, K4); + aes_dec_block(&B, K5); + aes_dec_block(&B, K6); + aes_dec_block(&B, K7); + aes_dec_block(&B, K8); + aes_dec_block(&B, K9); + aes_dec_block(&B, K10); + aes_dec_block(&B, K11); + aes_dec_block(&B, K12); + aes_dec_block_last(&B, K13, K14); + vst1q_u8(buffer + 16 * i, B); + } +} + +VC_INLINE void aes256_hw_decrypt_block(uint8 buffer[], const uint8* ks) +{ + const uint8x16_t K0 = vld1q_u8(ks + 0 * 16); + const uint8x16_t K1 = vld1q_u8(ks + 1 * 16); + const uint8x16_t K2 = vld1q_u8(ks + 2 * 16); + const uint8x16_t K3 = vld1q_u8(ks + 3 * 16); + const uint8x16_t K4 = vld1q_u8(ks + 4 * 16); + const uint8x16_t K5 = vld1q_u8(ks + 5 * 16); + const uint8x16_t K6 = vld1q_u8(ks + 6 * 16); + const uint8x16_t K7 = vld1q_u8(ks + 7 * 16); + const uint8x16_t K8 = vld1q_u8(ks + 8 * 16); + const uint8x16_t K9 = vld1q_u8(ks + 9 * 16); + const uint8x16_t K10 = vld1q_u8(ks + 10 * 16); + const uint8x16_t K11 = vld1q_u8(ks + 11 * 16); + const uint8x16_t K12 = vld1q_u8(ks + 12 * 16); + const uint8x16_t K13 = vld1q_u8(ks + 13 * 16); + const uint8x16_t K14 = vld1q_u8(ks + 14 * 16); + + uint8x16_t B = vld1q_u8(buffer); + aes_dec_block(&B, K0); + aes_dec_block(&B, K1); + aes_dec_block(&B, K2); + aes_dec_block(&B, K3); + aes_dec_block(&B, K4); + aes_dec_block(&B, K5); + aes_dec_block(&B, K6); + aes_dec_block(&B, K7); + aes_dec_block(&B, K8); + aes_dec_block(&B, K9); + aes_dec_block(&B, K10); + aes_dec_block(&B, K11); + aes_dec_block(&B, K12); + aes_dec_block_last(&B, K13, K14); + vst1q_u8(buffer, B); +} + +void aes_hw_cpu_decrypt (const uint8 *ks, uint8 *data) +{ + aes256_hw_decrypt_block(data, ks); +} + +void aes_hw_cpu_decrypt_32_blocks (const uint8 *ks, uint8 *data) +{ + aes256_hw_decrypt_blocks(data, 32, ks); +} + +void aes_hw_cpu_encrypt (const uint8 *ks, uint8 *data) +{ + aes256_hw_encrypt_block(data, ks); +} + +void aes_hw_cpu_encrypt_32_blocks (const uint8 *ks, uint8 *data) +{ + aes256_hw_encrypt_blocks(data, 32, ks); +} + +#endif diff --git a/src/Crypto/Aes_hw_cpu.h b/src/Crypto/Aes_hw_cpu.h index face0a0c..d9dda1af 100644 --- a/src/Crypto/Aes_hw_cpu.h +++ b/src/Crypto/Aes_hw_cpu.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -24,4 +24,4 @@ extern "C" uint8 is_aes_hw_cpu_supported (); -#endif void aes_hw_cpu_enable_sse (); +#endif void aes_hw_cpu_decrypt (const uint8 *ks, uint8 *data); diff --git a/src/Crypto/Crypto.vcxproj b/src/Crypto/Crypto.vcxproj index 4aebc084..cad50c06 100644 --- a/src/Crypto/Crypto.vcxproj +++ b/src/Crypto/Crypto.vcxproj @@ -228,2 +228,6 @@ <ClCompile Include="Aestab.c" /> + <ClCompile Include="Aes_hw_armv8.c"> + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild> + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild> + </ClCompile> <ClCompile Include="blake2s.c" /> @@ -253,2 +257,6 @@ <ClCompile Include="Sha2.c" /> + <ClCompile Include="sha256_armv8.c"> + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild> + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild> + </ClCompile> <ClCompile Include="Sha2Intel.c" /> diff --git a/src/Crypto/Crypto.vcxproj.filters b/src/Crypto/Crypto.vcxproj.filters index 3d384f97..099c3ce4 100644 --- a/src/Crypto/Crypto.vcxproj.filters +++ b/src/Crypto/Crypto.vcxproj.filters @@ -92,2 +92,11 @@ </ClCompile> + <ClCompile Include="Aescrypt.c"> + <Filter>Source Files</Filter> + </ClCompile> + <ClCompile Include="Aes_hw_armv8.c"> + <Filter>Source Files</Filter> + </ClCompile> + <ClCompile Include="sha256_armv8.c"> + <Filter>Source Files</Filter> + </ClCompile> </ItemGroup> @@ -169,11 +178,2 @@ </ClInclude> - <ClInclude Include="blake2s-load-sse2.h"> - <Filter>Header Files</Filter> - </ClInclude> - <ClInclude Include="blake2s-load-sse41.h"> - <Filter>Header Files</Filter> - </ClInclude> - <ClInclude Include="blake2s-round.h"> - <Filter>Header Files</Filter> - </ClInclude> </ItemGroup> diff --git a/src/Crypto/Sha2.c b/src/Crypto/Sha2.c index 5ae9cae2..27e61c3d 100644 --- a/src/Crypto/Sha2.c +++ b/src/Crypto/Sha2.c @@ -317,2 +317,6 @@ extern "C" +#if CRYPTOPP_ARM_SHA2_AVAILABLE + void sha256_compress_digest_armv8(const void* input_data, uint_32t digest[8], uint_64t num_blks); +#endif + #if defined(__cplusplus) @@ -759,2 +763,9 @@ void SSE2Sha256Transform(sha256_ctx* ctx, void* mp, uint_64t num_blks) +#if CRYPTOPP_ARM_SHA2_AVAILABLE +void ArmSha256Transform(sha256_ctx* ctx, void* mp, uint_64t num_blks) +{ + sha256_compress_digest_armv8(mp, ctx->hash, num_blks); +} +#endif + #if CRYPTOPP_BOOL_X86 || CRYPTOPP_BOOL_X32 @@ -807,2 +818,8 @@ void sha256_begin(sha256_ctx* ctx) +#if CRYPTOPP_ARM_SHA2_AVAILABLE + if (HasSHA256()) + sha256transfunc = ArmSha256Transform; + else +#endif + #if CRYPTOPP_BOOL_X86 || CRYPTOPP_BOOL_X32 diff --git a/src/Crypto/Sha2.h b/src/Crypto/Sha2.h index 1fbcb8d1..42d067fa 100644 --- a/src/Crypto/Sha2.h +++ b/src/Crypto/Sha2.h @@ -1,3 +1,3 @@ /* - * Copyright (c) 2013-2017 IDRIX + * Copyright (c) 2013-2025 IDRIX * Governed by the Apache License 2.0 the full text of which is contained diff --git a/src/Crypto/config.h b/src/Crypto/config.h index 1c2aff72..841d6ead 100644 --- a/src/Crypto/config.h +++ b/src/Crypto/config.h @@ -31,2 +31,7 @@ +#if defined(_MSC_VER) && !defined(__clang__) +# undef CRYPTOPP_LLVM_CLANG_VERSION +# define CRYPTOPP_MSC_VERSION (_MSC_VER) +#endif + // Clang due to "Inline assembly operands don't work with .intel_syntax", http://llvm.org/bugs/show_bug.cgi?id=24232 @@ -154,11 +159,2 @@ -#if !defined(CRYPTOPP_DISABLE_SHANI) && !defined(_M_ARM) && !defined(_M_ARM64) && !defined(__arm__) && !defined(__aarch64__) && !defined(__arm64__) && defined(CRYPTOPP_BOOL_SSE41_INTRINSICS_AVAILABLE) && \ - (defined(__SHA__) || (_MSC_VER >= 1900) || (__SUNPRO_CC >= 0x5160) || \ - (CRYPTOPP_GCC_VERSION >= 40900) || (__INTEL_COMPILER >= 1600) || \ - (CRYPTOPP_LLVM_CLANG_VERSION >= 30400) || (CRYPTOPP_APPLE_CLANG_VERSION >= 50100)) - #define CRYPTOPP_SHANI_AVAILABLE 1 -#else - #define CRYPTOPP_SHANI_AVAILABLE 0 -#endif - // how to allocate 16-byte aligned memory (for SSE2) @@ -203,2 +199,60 @@ +#if !defined(CRYPTOPP_DISABLE_SHANI) && \ + (CRYPTOPP_BOOL_X32 || CRYPTOPP_BOOL_X86 || CRYPTOPP_BOOL_X64) && \ + defined(CRYPTOPP_BOOL_SSE41_INTRINSICS_AVAILABLE) && \ + (defined(__SHA__) || (_MSC_VER >= 1900) || (__SUNPRO_CC >= 0x5160) || \ + (CRYPTOPP_GCC_VERSION >= 40900) || (__INTEL_COMPILER >= 1600) || \ + (CRYPTOPP_LLVM_CLANG_VERSION >= 30400) || (CRYPTOPP_APPLE_CLANG_VERSION >= 50100)) + #define CRYPTOPP_SHANI_AVAILABLE 1 +#else + #define CRYPTOPP_SHANI_AVAILABLE 0 +#endif + +#if defined(__arm64__) || defined(__aarch64__) || defined(_M_ARM64) + #define CRYPTOPP_BOOL_ARMV8 1 + #define CRYPTOPP_BOOL_ARM64 1 +#else + #define CRYPTOPP_BOOL_ARMV8 0 + #define CRYPTOPP_BOOL_ARM64 0 +#endif + +// ARMv8 and ASIMD. -march=armv8-a or above must be present +// Requires GCC 4.8, Clang 3.3 or Visual Studio 2017 +// Do not use APPLE_CLANG_VERSION; use __ARM_FEATURE_XXX instead. +#if !defined(CRYPTOPP_ARM_ASIMD_AVAILABLE) && !defined(CRYPTOPP_DISABLE_ARM_ASIMD) +# if defined(__aarch32__) || defined(__aarch64__) || defined(__arm64__) || defined(_M_ARM64) +# if defined(__ARM_NEON) || defined(__ARM_ASIMD) || defined(__ARM_FEATURE_NEON) || defined(__ARM_FEATURE_ASIMD) || \ + (CRYPTOPP_GCC_VERSION >= 40800) || (CRYPTOPP_LLVM_CLANG_VERSION >= 30300) || \ + (CRYPTOPP_APPLE_CLANG_VERSION >= 40000) || (CRYPTOPP_MSC_VERSION >= 1916) +# define CRYPTOPP_ARM_NEON_AVAILABLE 1 +# define CRYPTOPP_ARM_ASIMD_AVAILABLE 1 +# endif // Compilers +# endif // Platforms +#endif + +// ARMv8 and AES. -march=armv8-a+crypto or above must be present +// Requires GCC 4.8, Clang 3.3 or Visual Studio 2017 +#if !defined(CRYPTOPP_ARM_AES_AVAILABLE) && !defined(CRYPTOPP_DISABLE_ARM_AES) +# if defined(__aarch32__) || defined(__aarch64__) || defined(_M_ARM64) +# if defined(__ARM_FEATURE_CRYPTO) || (CRYPTOPP_GCC_VERSION >= 40800) || \ + (CRYPTOPP_LLVM_CLANG_VERSION >= 30300) || (CRYPTOPP_APPLE_CLANG_VERSION >= 40300) || \ + (CRYPTOPP_MSC_VERSION >= 1916) +# define CRYPTOPP_ARM_AES_AVAILABLE 1 +# endif // Compilers +# endif // Platforms +#endif + +// ARMv8 and SHA-1, SHA-256. -march=armv8-a+crypto or above must be present +// Requires GCC 4.8, Clang 3.3 or Visual Studio 2017 +#if !defined(CRYPTOPP_ARM_SHA_AVAILABLE) && !defined(CRYPTOPP_DISABLE_ARM_SHA) +# if defined(__aarch32__) || defined(__aarch64__) || defined(_M_ARM64) +# if defined(__ARM_FEATURE_CRYPTO) || (CRYPTOPP_GCC_VERSION >= 40800) || \ + (CRYPTOPP_LLVM_CLANG_VERSION >= 30300) || (CRYPTOPP_APPLE_CLANG_VERSION >= 40300) || \ + (CRYPTOPP_MSC_VERSION >= 1916) +# define CRYPTOPP_ARM_SHA1_AVAILABLE 1 +# define CRYPTOPP_ARM_SHA2_AVAILABLE 1 +# endif // Compilers +# endif // Platforms +#endif + // Undo the ASM and Intrinsic related defines due to X32. diff --git a/src/Crypto/cpu.c b/src/Crypto/cpu.c index e611e9bb..a5b5bb19 100644 --- a/src/Crypto/cpu.c +++ b/src/Crypto/cpu.c @@ -471 +471,70 @@ void DisableCPUExtendedFeatures () +#if CRYPTOPP_BOOL_ARMV8 +#if defined(__linux__) && defined(__aarch64__) +#include <sys/auxv.h> +#ifndef HWCAP_AES +# define HWCAP_AES (1 << 3) +#endif +#ifndef HWCAP_SHA2 +# define HWCAP_SHA2 (1 << 6) +#endif +#endif + +volatile int g_hasAESARM = 0; +volatile int g_hasSHA256ARM = 0; + +inline int CPU_QueryAES() +{ +#if defined(CRYPTOPP_ARM_AES_AVAILABLE) +#if defined(__linux__) && defined(__aarch64__) + if ((getauxval(AT_HWCAP) & HWCAP_AES) != 0) + return 1; +#elif defined(__APPLE__) && defined(__aarch64__) + // Apple Sillcon (M1) and later + return 1; +#elif defined(_WIN32) && defined(_M_ARM64) +#ifdef TC_WINDOWS_DRIVER + if (ExIsProcessorFeaturePresent(PF_ARM_V8_CRYPTO_INSTRUCTIONS_AVAILABLE) != 0) + return 1; +#else + if (IsProcessorFeaturePresent(PF_ARM_V8_CRYPTO_INSTRUCTIONS_AVAILABLE) != 0) + return 1; +#endif +#endif + return 0; +#else + return 0; +#endif +} + +inline int CPU_QuerySHA2() +{ +#if defined(CRYPTOPP_ARM_SHA2_AVAILABLE) +#if defined(__linux__) && defined(__aarch64__) + if ((getauxval(AT_HWCAP) & HWCAP_SHA2) != 0) + return 1; +#elif defined(__APPLE__) && defined(__aarch64__) + // Apple Sillcon (M1) and later + return 1; +#elif defined(_WIN32) && defined(_M_ARM64) +#ifdef TC_WINDOWS_DRIVER + if (ExIsProcessorFeaturePresent(PF_ARM_V8_CRYPTO_INSTRUCTIONS_AVAILABLE) != 0) + return 1; +#else + if (IsProcessorFeaturePresent(PF_ARM_V8_CRYPTO_INSTRUCTIONS_AVAILABLE) != 0) + return 1; +#endif +#endif + return 0; +#else + return 0; +#endif +} + +void DetectArmFeatures() +{ + g_hasAESARM = CPU_QueryAES(); + g_hasSHA256ARM = CPU_QuerySHA2(); +} + +#endif
\ No newline at end of file diff --git a/src/Crypto/cpu.h b/src/Crypto/cpu.h index b0df6462..cb34ad1f 100644 --- a/src/Crypto/cpu.h +++ b/src/Crypto/cpu.h @@ -290,2 +290,22 @@ void DisableCPUExtendedFeatures (); +#elif CRYPTOPP_BOOL_ARMV8 +#if defined(__cplusplus) +extern "C" { +#endif + +#if !defined(CRYPTOPP_DISABLE_AESNI) && !defined(WOLFCRYPT_BACKEND) +#define TC_AES_HW_CPU +#endif + +extern volatile int g_hasAESARM; +extern volatile int g_hasSHA256ARM; +void DetectArmFeatures(); + +#define HasAESNI() g_hasAESARM +#define HasSHA256() g_hasSHA256ARM + +#if defined(__cplusplus) +} +#endif + #else diff --git a/src/Crypto/sha256_armv8.c b/src/Crypto/sha256_armv8.c new file mode 100644 index 00000000..1599350a --- /dev/null +++ b/src/Crypto/sha256_armv8.c @@ -0,0 +1,184 @@ +/* +* SHA-256 using CPU instructions in ARMv8 +* +* Contributed by Jeffrey Walton. Based on public domain code by +* Johannes Schneiders, Skip Hovsmith and Barry O'Rourke. +* +* Further changes (C) 2020 Jack Lloyd +* +* Botan is released under the Simplified BSD License (see license.txt) +*/ + +/* Modified and adapted for VeraCrypt */ + +#include "Common/Tcdefs.h" +#if !defined(_UEFI) +#include <memory.h> +#include <stdlib.h> +#endif +#include "cpu.h" +#include "misc.h" + +#if CRYPTOPP_ARM_SHA2_AVAILABLE + +#include <arm_neon.h> + +CRYPTOPP_ALIGN_DATA(64) static const uint32 K[] = { + 0x428A2F98, 0x71374491, 0xB5C0FBCF, 0xE9B5DBA5, 0x3956C25B, 0x59F111F1, 0x923F82A4, 0xAB1C5ED5, + 0xD807AA98, 0x12835B01, 0x243185BE, 0x550C7DC3, 0x72BE5D74, 0x80DEB1FE, 0x9BDC06A7, 0xC19BF174, + 0xE49B69C1, 0xEFBE4786, 0x0FC19DC6, 0x240CA1CC, 0x2DE92C6F, 0x4A7484AA, 0x5CB0A9DC, 0x76F988DA, + 0x983E5152, 0xA831C66D, 0xB00327C8, 0xBF597FC7, 0xC6E00BF3, 0xD5A79147, 0x06CA6351, 0x14292967, + 0x27B70A85, 0x2E1B2138, 0x4D2C6DFC, 0x53380D13, 0x650A7354, 0x766A0ABB, 0x81C2C92E, 0x92722C85, + 0xA2BFE8A1, 0xA81A664B, 0xC24B8B70, 0xC76C51A3, 0xD192E819, 0xD6990624, 0xF40E3585, 0x106AA070, + 0x19A4C116, 0x1E376C08, 0x2748774C, 0x34B0BCB5, 0x391C0CB3, 0x4ED8AA4A, 0x5B9CCA4F, 0x682E6FF3, + 0x748F82EE, 0x78A5636F, 0x84C87814, 0x8CC70208, 0x90BEFFFA, 0xA4506CEB, 0xBEF9A3F7, 0xC67178F2, +}; + +void sha256_compress_digest_armv8(void* input_data, uint32 digest[8], uint64 num_blks) { + + + // Load initial values + uint32x4_t STATE0 = vld1q_u32(&digest[0]); + uint32x4_t STATE1 = vld1q_u32(&digest[4]); + + // Intermediate void* cast due to https://llvm.org/bugs/show_bug.cgi?id=20670 + const uint32* input32 = (const uint32*)(const void*)input_data; + + while (num_blks > 0) { + // Save current state + const uint32x4_t ABCD_SAVE = STATE0; + const uint32x4_t EFGH_SAVE = STATE1; + + uint32x4_t MSG0 = vld1q_u32(input32 + 0); + uint32x4_t MSG1 = vld1q_u32(input32 + 4); + uint32x4_t MSG2 = vld1q_u32(input32 + 8); + uint32x4_t MSG3 = vld1q_u32(input32 + 12); + + MSG0 = vreinterpretq_u32_u8(vrev32q_u8(vreinterpretq_u8_u32(MSG0))); + MSG1 = vreinterpretq_u32_u8(vrev32q_u8(vreinterpretq_u8_u32(MSG1))); + MSG2 = vreinterpretq_u32_u8(vrev32q_u8(vreinterpretq_u8_u32(MSG2))); + MSG3 = vreinterpretq_u32_u8(vrev32q_u8(vreinterpretq_u8_u32(MSG3))); + + uint32x4_t MSG_K, TSTATE; + + // Rounds 0-3 + MSG_K = vaddq_u32(MSG0, vld1q_u32(&K[4 * 0])); + TSTATE = vsha256hq_u32(STATE0, STATE1, MSG_K); + STATE1 = vsha256h2q_u32(STATE1, STATE0, MSG_K); + STATE0 = TSTATE; + MSG0 = vsha256su1q_u32(vsha256su0q_u32(MSG0, MSG1), MSG2, MSG3); + + // Rounds 4-7 + MSG_K = vaddq_u32(MSG1, vld1q_u32(&K[4 * 1])); + TSTATE = vsha256hq_u32(STATE0, STATE1, MSG_K); + STATE1 = vsha256h2q_u32(STATE1, STATE0, MSG_K); + STATE0 = TSTATE; + MSG1 = vsha256su1q_u32(vsha256su0q_u32(MSG1, MSG2), MSG3, MSG0); + + // Rounds 8-11 + MSG_K = vaddq_u32(MSG2, vld1q_u32(&K[4 * 2])); + TSTATE = vsha256hq_u32(STATE0, STATE1, MSG_K); + STATE1 = vsha256h2q_u32(STATE1, STATE0, MSG_K); + STATE0 = TSTATE; + MSG2 = vsha256su1q_u32(vsha256su0q_u32(MSG2, MSG3), MSG0, MSG1); + + // Rounds 12-15 + MSG_K = vaddq_u32(MSG3, vld1q_u32(&K[4 * 3])); + TSTATE = vsha256hq_u32(STATE0, STATE1, MSG_K); + STATE1 = vsha256h2q_u32(STATE1, STATE0, MSG_K); + STATE0 = TSTATE; + MSG3 = vsha256su1q_u32(vsha256su0q_u32(MSG3, MSG0), MSG1, MSG2); + + // Rounds 16-19 + MSG_K = vaddq_u32(MSG0, vld1q_u32(&K[4 * 4])); + TSTATE = vsha256hq_u32(STATE0, STATE1, MSG_K); + STATE1 = vsha256h2q_u32(STATE1, STATE0, MSG_K); + STATE0 = TSTATE; + MSG0 = vsha256su1q_u32(vsha256su0q_u32(MSG0, MSG1), MSG2, MSG3); + + // Rounds 20-23 + MSG_K = vaddq_u32(MSG1, vld1q_u32(&K[4 * 5])); + TSTATE = vsha256hq_u32(STATE0, STATE1, MSG_K); + STATE1 = vsha256h2q_u32(STATE1, STATE0, MSG_K); + STATE0 = TSTATE; + MSG1 = vsha256su1q_u32(vsha256su0q_u32(MSG1, MSG2), MSG3, MSG0); + + // Rounds 24-27 + MSG_K = vaddq_u32(MSG2, vld1q_u32(&K[4 * 6])); + TSTATE = vsha256hq_u32(STATE0, STATE1, MSG_K); + STATE1 = vsha256h2q_u32(STATE1, STATE0, MSG_K); + STATE0 = TSTATE; + MSG2 = vsha256su1q_u32(vsha256su0q_u32(MSG2, MSG3), MSG0, MSG1); + + // Rounds 28-31 + MSG_K = vaddq_u32(MSG3, vld1q_u32(&K[4 * 7])); + TSTATE = vsha256hq_u32(STATE0, STATE1, MSG_K); + STATE1 = vsha256h2q_u32(STATE1, STATE0, MSG_K); + STATE0 = TSTATE; + MSG3 = vsha256su1q_u32(vsha256su0q_u32(MSG3, MSG0), MSG1, MSG2); + + // Rounds 32-35 + MSG_K = vaddq_u32(MSG0, vld1q_u32(&K[4 * 8])); + TSTATE = vsha256hq_u32(STATE0, STATE1, MSG_K); + STATE1 = vsha256h2q_u32(STATE1, STATE0, MSG_K); + STATE0 = TSTATE; + MSG0 = vsha256su1q_u32(vsha256su0q_u32(MSG0, MSG1), MSG2, MSG3); + + // Rounds 36-39 + MSG_K = vaddq_u32(MSG1, vld1q_u32(&K[4 * 9])); + TSTATE = vsha256hq_u32(STATE0, STATE1, MSG_K); + STATE1 = vsha256h2q_u32(STATE1, STATE0, MSG_K); + STATE0 = TSTATE; + MSG1 = vsha256su1q_u32(vsha256su0q_u32(MSG1, MSG2), MSG3, MSG0); + + // Rounds 40-43 + MSG_K = vaddq_u32(MSG2, vld1q_u32(&K[4 * 10])); + TSTATE = vsha256hq_u32(STATE0, STATE1, MSG_K); + STATE1 = vsha256h2q_u32(STATE1, STATE0, MSG_K); + STATE0 = TSTATE; + MSG2 = vsha256su1q_u32(vsha256su0q_u32(MSG2, MSG3), MSG0, MSG1); + + // Rounds 44-47 + MSG_K = vaddq_u32(MSG3, vld1q_u32(&K[4 * 11])); + TSTATE = vsha256hq_u32(STATE0, STATE1, MSG_K); + STATE1 = vsha256h2q_u32(STATE1, STATE0, MSG_K); + STATE0 = TSTATE; + MSG3 = vsha256su1q_u32(vsha256su0q_u32(MSG3, MSG0), MSG1, MSG2); + + // Rounds 48-51 + MSG_K = vaddq_u32(MSG0, vld1q_u32(&K[4 * 12])); + TSTATE = vsha256hq_u32(STATE0, STATE1, MSG_K); + STATE1 = vsha256h2q_u32(STATE1, STATE0, MSG_K); + STATE0 = TSTATE; + + // Rounds 52-55 + MSG_K = vaddq_u32(MSG1, vld1q_u32(&K[4 * 13])); + TSTATE = vsha256hq_u32(STATE0, STATE1, MSG_K); + STATE1 = vsha256h2q_u32(STATE1, STATE0, MSG_K); + STATE0 = TSTATE; + + // Rounds 56-59 + MSG_K = vaddq_u32(MSG2, vld1q_u32(&K[4 * 14])); + TSTATE = vsha256hq_u32(STATE0, STATE1, MSG_K); + STATE1 = vsha256h2q_u32(STATE1, STATE0, MSG_K); + STATE0 = TSTATE; + + // Rounds 60-63 + MSG_K = vaddq_u32(MSG3, vld1q_u32(&K[4 * 15])); + TSTATE = vsha256hq_u32(STATE0, STATE1, MSG_K); + STATE1 = vsha256h2q_u32(STATE1, STATE0, MSG_K); + STATE0 = TSTATE; + + // Add back to state + STATE0 = vaddq_u32(STATE0, ABCD_SAVE); + STATE1 = vaddq_u32(STATE1, EFGH_SAVE); + + input32 += 64 / 4; + num_blks--; + } + + // Save state + vst1q_u32(&digest[0], STATE0); + vst1q_u32(&digest[4], STATE1); +} +#endif diff --git a/src/Driver/DriveFilter.c b/src/Driver/DriveFilter.c index a280d20e..f8f06b37 100644 --- a/src/Driver/DriveFilter.c +++ b/src/Driver/DriveFilter.c @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -289,3 +289,3 @@ static void DismountDrive (DriveFilterExtension *Extension, BOOL stopIoQueue) { - Dump ("Dismounting drive\n"); + Dump ("Unmounting drive\n"); ASSERT (Extension->DriveMounted); @@ -303,3 +303,3 @@ static void DismountDrive (DriveFilterExtension *Extension, BOOL stopIoQueue) - Dump ("Drive dismount done!\n"); + Dump ("Drive unmount done!\n"); } diff --git a/src/Driver/DriveFilter.h b/src/Driver/DriveFilter.h index 307880fb..60ec9a05 100644 --- a/src/Driver/DriveFilter.h +++ b/src/Driver/DriveFilter.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Driver/Driver.rc b/src/Driver/Driver.rc index 6d9bad20..928ce1c3 100644 --- a/src/Driver/Driver.rc +++ b/src/Driver/Driver.rc @@ -29,4 +29,4 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,26,17,2 - PRODUCTVERSION 1,26,17,2 + FILEVERSION 1,26,20,0 + PRODUCTVERSION 1,26,20,0 FILEFLAGSMASK 0x17L @@ -47,3 +47,3 @@ BEGIN VALUE "FileDescription", "VeraCrypt Driver" - VALUE "FileVersion", "1.26.17" + VALUE "FileVersion", "1.26.20" VALUE "LegalTrademarks", "VeraCrypt" @@ -51,3 +51,3 @@ BEGIN VALUE "ProductName", "VeraCrypt" - VALUE "ProductVersion", "1.26.17" + VALUE "ProductVersion", "1.26.20" END diff --git a/src/Driver/Driver.vcxproj b/src/Driver/Driver.vcxproj index 7f135b35..17fbfa43 100644 --- a/src/Driver/Driver.vcxproj +++ b/src/Driver/Driver.vcxproj @@ -39,3 +39,3 @@ <DriverTargetPlatform>Universal</DriverTargetPlatform> - <_NT_TARGET_VERSION>0xA000008</_NT_TARGET_VERSION> + <_NT_TARGET_VERSION>0xA000006</_NT_TARGET_VERSION> </PropertyGroup> @@ -48,3 +48,3 @@ <DriverTargetPlatform>Universal</DriverTargetPlatform> - <_NT_TARGET_VERSION>0xA000008</_NT_TARGET_VERSION> + <_NT_TARGET_VERSION>0xA000006</_NT_TARGET_VERSION> </PropertyGroup> @@ -57,3 +57,3 @@ <DriverTargetPlatform>Universal</DriverTargetPlatform> - <_NT_TARGET_VERSION>0xA000008</_NT_TARGET_VERSION> + <_NT_TARGET_VERSION>0xA000006</_NT_TARGET_VERSION> </PropertyGroup> @@ -66,3 +66,3 @@ <DriverTargetPlatform>Universal</DriverTargetPlatform> - <_NT_TARGET_VERSION>0xA000008</_NT_TARGET_VERSION> + <_NT_TARGET_VERSION>0xA000006</_NT_TARGET_VERSION> </PropertyGroup> @@ -112,3 +112,4 @@ </ProviderName> - <TimeStamp>1.26.17.2</TimeStamp> + <TimeStamp>1.26.20.0</TimeStamp> + <DateStamp>02/03/2025</DateStamp> </Inf> @@ -138,3 +139,4 @@ copy $(OutDir)veracrypt.inf "$(SolutionDir)Debug\Setup Files\veracrypt.inf"</Com </ProviderName> - <TimeStamp>1.26.17.2</TimeStamp> + <TimeStamp>1.26.20.0</TimeStamp> + <DateStamp>02/03/2025</DateStamp> </Inf> @@ -164,3 +166,4 @@ copy $(OutDir)veracrypt.inf "$(SolutionDir)Release\Setup Files\veracrypt.inf"</C </ProviderName> - <TimeStamp>1.26.17.2</TimeStamp> + <TimeStamp>1.26.20.0</TimeStamp> + <DateStamp>02/03/2025</DateStamp> </Inf> @@ -190,3 +193,4 @@ copy $(OutDir)veracrypt.inf "$(SolutionDir)Release\Setup Files\veracrypt.inf"</C </ProviderName> - <TimeStamp>1.26.17.2</TimeStamp> + <TimeStamp>1.26.20.0</TimeStamp> + <DateStamp>02/03/2025</DateStamp> </Inf> @@ -226,2 +230,6 @@ copy $(OutDir)veracrypt.inf "$(SolutionDir)Debug\Setup Files\veracrypt.inf"</Com <ClCompile Include="..\Crypto\Aestab.c" /> + <ClCompile Include="..\Crypto\Aes_hw_armv8.c"> + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild> + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild> + </ClCompile> <ClCompile Include="..\Crypto\blake2s.c" /> @@ -266,2 +274,6 @@ copy $(OutDir)veracrypt.inf "$(SolutionDir)Debug\Setup Files\veracrypt.inf"</Com <ClCompile Include="..\Crypto\Sha2.c" /> + <ClCompile Include="..\Crypto\sha256_armv8.c"> + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild> + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild> + </ClCompile> <ClCompile Include="..\Crypto\Sha2Intel.c" /> diff --git a/src/Driver/Driver.vcxproj.filters b/src/Driver/Driver.vcxproj.filters index 478432fa..3c427dad 100644 --- a/src/Driver/Driver.vcxproj.filters +++ b/src/Driver/Driver.vcxproj.filters @@ -167,2 +167,8 @@ </ClCompile> + <ClCompile Include="..\Crypto\Aes_hw_armv8.c"> + <Filter>Crypto\Source Files</Filter> + </ClCompile> + <ClCompile Include="..\Crypto\sha256_armv8.c"> + <Filter>Crypto\Source Files</Filter> + </ClCompile> </ItemGroup> diff --git a/src/Driver/Driver.vcxproj.user b/src/Driver/Driver.vcxproj.user index 9724a753..f5bd9cdc 100644 --- a/src/Driver/Driver.vcxproj.user +++ b/src/Driver/Driver.vcxproj.user @@ -18,2 +18,5 @@ </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> + <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor> + </PropertyGroup> </Project>
\ No newline at end of file diff --git a/src/Driver/DumpFilter.c b/src/Driver/DumpFilter.c index f858bb7c..4105b116 100644 --- a/src/Driver/DumpFilter.c +++ b/src/Driver/DumpFilter.c @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Driver/DumpFilter.h b/src/Driver/DumpFilter.h index c72115a2..88091bd4 100644 --- a/src/Driver/DumpFilter.h +++ b/src/Driver/DumpFilter.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Driver/EncryptedIoQueue.c b/src/Driver/EncryptedIoQueue.c index 91399c47..c39941e6 100644 --- a/src/Driver/EncryptedIoQueue.c +++ b/src/Driver/EncryptedIoQueue.c @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -227,10 +227,11 @@ static void ReleaseFragmentBuffer (EncryptedIoQueue *queue, uint8 *buffer) -BOOL +BOOL UpdateBuffer( - uint8* buffer, - uint8* secRegion, - uint64 bufferDiskOffset, - uint32 bufferLength, - BOOL doUpadte - ) + uint8* buffer, + uint8* secRegion, + SIZE_T secRegionSize, + uint64 bufferDiskOffset, + uint32 bufferLength, + BOOL doUpadte +) { @@ -239,23 +240,62 @@ UpdateBuffer( uint32 i; - DCS_DISK_ENTRY_LIST *DeList = (DCS_DISK_ENTRY_LIST*)(secRegion + 512); + DCS_DISK_ENTRY_LIST *DeList = NULL; BOOL updated = FALSE; - if (secRegion == NULL) return FALSE; + if (secRegion == NULL) + return FALSE; + + // Check if secRegion is large enough to hold the DCS_DISK_ENTRY_LIST structure + // starting at offset 512 + if (secRegionSize < (512 + sizeof(DCS_DISK_ENTRY_LIST))) + return FALSE; + + DeList = (DCS_DISK_ENTRY_LIST*)(secRegion + 512); + + // Ensure Count doesn't exceed the fixed array size + if (DeList->Count > 15) + return FALSE; + for (i = 0; i < DeList->Count; ++i) { if (DeList->DE[i].Type == DE_Sectors) { + uint64 sectorStart = DeList->DE[i].Sectors.Start; + uint64 sectorLength = DeList->DE[i].Sectors.Length; + uint64 sectorOffset = DeList->DE[i].Sectors.Offset; + + // Check that sectorOffset and sectorLength are valid within secRegion + if (sectorOffset > secRegionSize || + sectorLength == 0 || + (sectorOffset + sectorLength) > secRegionSize) + { + // Invalid entry - skip + continue; + } + GetIntersection( bufferDiskOffset, bufferLength, - DeList->DE[i].Sectors.Start, DeList->DE[i].Sectors.Start + DeList->DE[i].Sectors.Length - 1, + sectorStart, sectorStart + sectorLength - 1, &intersectStart, &intersectLength - ); + ); + if (intersectLength != 0) { + uint64 bufferPos = intersectStart - bufferDiskOffset; + uint64 regionPos = sectorOffset + (intersectStart - sectorStart); + + // Check buffer boundaries + if (bufferPos + intersectLength > bufferLength) + continue; // Intersection out of buffer range + + // Check secRegion boundaries + if (regionPos + intersectLength > secRegionSize) + continue; // Intersection out of secRegion range + updated = TRUE; - if(doUpadte && buffer != NULL) { -// Dump("Subst data\n"); + if (doUpadte && buffer != NULL) { memcpy( - buffer + (intersectStart - bufferDiskOffset), - secRegion + DeList->DE[i].Sectors.Offset + (intersectStart - DeList->DE[i].Sectors.Start), + buffer + bufferPos, + secRegion + regionPos, intersectLength - ); - } else { + ); + } + else { + // If no update is needed but intersection found return TRUE; @@ -289,3 +329,3 @@ static VOID CompleteIrpWorkItemRoutine(PDEVICE_OBJECT DeviceObject, PVOID Contex { - KeSetEvent(&queue->NoActiveWorkItemsEvent, IO_NO_INCREMENT, FALSE); + KeSetEvent(&queue->NoActiveWorkItemsEvent, IO_DISK_INCREMENT, FALSE); } @@ -298,3 +338,3 @@ static VOID CompleteIrpWorkItemRoutine(PDEVICE_OBJECT DeviceObject, PVOID Contex // Release the semaphore to signal that a work item is available - KeReleaseSemaphore(&queue->WorkItemSemaphore, IO_NO_INCREMENT, 1, FALSE); + KeReleaseSemaphore(&queue->WorkItemSemaphore, IO_DISK_INCREMENT, 1, FALSE); @@ -380,3 +420,3 @@ static VOID CompletionThreadProc(PVOID threadArg) if((queue->SecRegionData != NULL) && (queue->SecRegionSize > 512)) { - UpdateBuffer(request->Data, queue->SecRegionData, request->Offset.QuadPart, request->Length, TRUE); + UpdateBuffer(request->Data, queue->SecRegionData, queue->SecRegionSize, request->Offset.QuadPart, request->Length, TRUE); } @@ -733,3 +773,3 @@ static VOID MainThreadProc (PVOID threadArg) if((queue->SecRegionData != NULL) && (queue->SecRegionSize > 512)) { - UpdateBuffer(buffer, queue->SecRegionData, alignedOffset.QuadPart, alignedLength, TRUE); + UpdateBuffer(buffer, queue->SecRegionData, queue->SecRegionSize, alignedOffset.QuadPart, alignedLength, TRUE); } @@ -826,3 +866,3 @@ static VOID MainThreadProc (PVOID threadArg) && (queue->SecRegionData != NULL) && (queue->SecRegionSize > 512) - && UpdateBuffer (NULL, queue->SecRegionData, item->OriginalOffset.QuadPart, (uint32)(item->OriginalOffset.QuadPart + item->OriginalLength - 1), FALSE)) + && UpdateBuffer (NULL, queue->SecRegionData, queue->SecRegionSize, item->OriginalOffset.QuadPart, (uint32)(item->OriginalOffset.QuadPart + item->OriginalLength - 1), FALSE)) { diff --git a/src/Driver/EncryptedIoQueue.h b/src/Driver/EncryptedIoQueue.h index 3738065a..82cc76cd 100644 --- a/src/Driver/EncryptedIoQueue.h +++ b/src/Driver/EncryptedIoQueue.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Driver/Fuse/FuseService.cpp b/src/Driver/Fuse/FuseService.cpp index 5b12ba4d..5fe9f6fe 100644 --- a/src/Driver/Fuse/FuseService.cpp +++ b/src/Driver/Fuse/FuseService.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Driver/Fuse/FuseService.h b/src/Driver/Fuse/FuseService.h index d09a40db..1e4ffc6c 100644 --- a/src/Driver/Fuse/FuseService.h +++ b/src/Driver/Fuse/FuseService.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Driver/Ntdriver.c b/src/Driver/Ntdriver.c index 12943dc8..148f88b8 100644 --- a/src/Driver/Ntdriver.c +++ b/src/Driver/Ntdriver.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -234,3 +234,3 @@ void GetDriverRandomSeed (unsigned char* pbRandSeed, size_t cbRandSeed) } - +#ifndef _M_ARM64 // use RDSEED or RDRAND from CPU as source of entropy if enabled @@ -243,2 +243,3 @@ void GetDriverRandomSeed (unsigned char* pbRandSeed, size_t cbRandSeed) } +#endif WHIRLPOOL_finalize (&tctx, digest); @@ -268,3 +269,7 @@ NTSTATUS DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath) +#ifndef _M_ARM64 DetectX86Features(); +#else + DetectArmFeatures(); +#endif @@ -295,3 +300,7 @@ NTSTATUS DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath) // features and try again in order to workaround faulty configurations +#ifndef _M_ARM64 DisableCPUExtendedFeatures(); +#else + EnableHwEncryption(FALSE); +#endif SelfTestsPassed = AutoTestAlgorithms(); @@ -1221,3 +1230,3 @@ NTSTATUS ProcessVolumeDeviceControlIrp (PDEVICE_OBJECT DeviceObject, PEXTENSION outputBuffer->PartitionNumber = 1; - outputBuffer->HiddenSectors = 0; + outputBuffer->HiddenSectors = BYTES_PER_MB / Extension->BytesPerSector; Irp->IoStatus.Status = STATUS_SUCCESS; @@ -1241,3 +1250,3 @@ NTSTATUS ProcessVolumeDeviceControlIrp (PDEVICE_OBJECT DeviceObject, PEXTENSION outputBuffer->Mbr.RecognizedPartition = TRUE; - outputBuffer->Mbr.HiddenSectors = 0; + outputBuffer->Mbr.HiddenSectors = BYTES_PER_MB / Extension->BytesPerSector; Irp->IoStatus.Status = STATUS_SUCCESS; @@ -1265,3 +1274,3 @@ NTSTATUS ProcessVolumeDeviceControlIrp (PDEVICE_OBJECT DeviceObject, PEXTENSION outputBuffer->PartitionEntry->PartitionNumber = 1; - outputBuffer->PartitionEntry->HiddenSectors = 0; + outputBuffer->PartitionEntry->HiddenSectors = BYTES_PER_MB / Extension->BytesPerSector; @@ -1300,3 +1309,3 @@ NTSTATUS ProcessVolumeDeviceControlIrp (PDEVICE_OBJECT DeviceObject, PEXTENSION outputBuffer->PartitionEntry->PartitionNumber = 1; - outputBuffer->PartitionEntry->Mbr.HiddenSectors = 0; + outputBuffer->PartitionEntry->Mbr.HiddenSectors = BYTES_PER_MB / Extension->BytesPerSector; outputBuffer->PartitionEntry->Mbr.PartitionType = Extension->PartitionType; @@ -1439,3 +1448,8 @@ NTSTATUS ProcessVolumeDeviceControlIrp (PDEVICE_OBJECT DeviceObject, PEXTENSION // Vista's, Windows 8.1 and later filesystem defragmenter fails if IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS does not succeed. - if (ValidateIOBufferSize(Irp, sizeof(VOLUME_DISK_EXTENTS), ValidateOutput)) + if (!AllowWindowsDefrag || !Extension->bRawDevice) // We don't support defragmentation for file-hosted volumes + { + Irp->IoStatus.Status = STATUS_INVALID_DEVICE_REQUEST; + Irp->IoStatus.Information = 0; + } + else if (ValidateIOBufferSize(Irp, sizeof(VOLUME_DISK_EXTENTS), ValidateOutput)) { @@ -2588,3 +2602,3 @@ NTSTATUS ProcessMainDeviceControlIrp (PDEVICE_OBJECT DeviceObject, PEXTENSION Ex - case TC_IOCTL_DISMOUNT_VOLUME: + case TC_IOCTL_UNMOUNT_VOLUME: if (ValidateIOBufferSize (Irp, sizeof (UNMOUNT_STRUCT), ValidateInputOutput)) @@ -2616,3 +2630,3 @@ NTSTATUS ProcessMainDeviceControlIrp (PDEVICE_OBJECT DeviceObject, PEXTENSION Ex - case TC_IOCTL_DISMOUNT_ALL_VOLUMES: + case TC_IOCTL_UNMOUNT_ALL_VOLUMES: if (ValidateIOBufferSize (Irp, sizeof (UNMOUNT_STRUCT), ValidateInputOutput)) @@ -3175,4 +3189,4 @@ LPWSTR TCTranslateCode (ULONG ulCode) TC_CASE_RET_NAME (TC_IOCTL_BOOT_ENCRYPTION_SETUP); - TC_CASE_RET_NAME (TC_IOCTL_DISMOUNT_ALL_VOLUMES); - TC_CASE_RET_NAME (TC_IOCTL_DISMOUNT_VOLUME); + TC_CASE_RET_NAME (TC_IOCTL_UNMOUNT_ALL_VOLUMES); + TC_CASE_RET_NAME (TC_IOCTL_UNMOUNT_VOLUME); TC_CASE_RET_NAME (TC_IOCTL_GET_BOOT_DRIVE_VOLUME_PROPERTIES); @@ -3373,3 +3387,3 @@ void OnShutdownPending () - while (SendDeviceIoControlRequest (RootDeviceObject, TC_IOCTL_DISMOUNT_ALL_VOLUMES, &unmount, sizeof (unmount), &unmount, sizeof (unmount)) == STATUS_INSUFFICIENT_RESOURCES || unmount.HiddenVolumeProtectionTriggered) + while (SendDeviceIoControlRequest (RootDeviceObject, TC_IOCTL_UNMOUNT_ALL_VOLUMES, &unmount, sizeof (unmount), &unmount, sizeof (unmount)) == STATUS_INSUFFICIENT_RESOURCES || unmount.HiddenVolumeProtectionTriggered) unmount.HiddenVolumeProtectionTriggered = FALSE; diff --git a/src/Driver/Ntdriver.h b/src/Driver/Ntdriver.h index b03b5e93..c23bbfe3 100644 --- a/src/Driver/Ntdriver.h +++ b/src/Driver/Ntdriver.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Driver/Ntvol.c b/src/Driver/Ntvol.c index 0376033f..9856fc2b 100644 --- a/src/Driver/Ntvol.c +++ b/src/Driver/Ntvol.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Driver/Ntvol.h b/src/Driver/Ntvol.h index 1d80b7de..a1051e94 100644 --- a/src/Driver/Ntvol.h +++ b/src/Driver/Ntvol.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Driver/VolumeFilter.c b/src/Driver/VolumeFilter.c index b4bc8d2e..f4fc9610 100644 --- a/src/Driver/VolumeFilter.c +++ b/src/Driver/VolumeFilter.c @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Driver/VolumeFilter.h b/src/Driver/VolumeFilter.h index f3e53237..e318e99d 100644 --- a/src/Driver/VolumeFilter.h +++ b/src/Driver/VolumeFilter.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Driver/veracrypt.Inf b/src/Driver/veracrypt.Inf index d2cef1b4..c5751ac2 100644 --- a/src/Driver/veracrypt.Inf +++ b/src/Driver/veracrypt.Inf @@ -4,3 +4,3 @@ ;;; -;;; Copyright (c) 2024, IDRIX +;;; Copyright (c) 2025, IDRIX ;;; diff --git a/src/ExpandVolume/DlgExpandVolume.cpp b/src/ExpandVolume/DlgExpandVolume.cpp index 0d803511..8124e19a 100644 --- a/src/ExpandVolume/DlgExpandVolume.cpp +++ b/src/ExpandVolume/DlgExpandVolume.cpp @@ -11,3 +11,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -550,3 +550,3 @@ void ExpandVolumeWizard (HWND hwndDlg, wchar_t *lpszVolume) { - Warning ("DISMOUNT_FIRST", hwndDlg); + Warning ("UNMOUNT_FIRST", hwndDlg); goto ret; diff --git a/src/ExpandVolume/ExpandVolume.c b/src/ExpandVolume/ExpandVolume.c index 084de5f3..9a53bbde 100644 --- a/src/ExpandVolume/ExpandVolume.c +++ b/src/ExpandVolume/ExpandVolume.c @@ -11,3 +11,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/ExpandVolume/ExpandVolume.h b/src/ExpandVolume/ExpandVolume.h index 668eb79d..1aea9ea1 100644 --- a/src/ExpandVolume/ExpandVolume.h +++ b/src/ExpandVolume/ExpandVolume.h @@ -11,3 +11,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/ExpandVolume/ExpandVolume.rc b/src/ExpandVolume/ExpandVolume.rc index ee5efc41..a84a838d 100644 --- a/src/ExpandVolume/ExpandVolume.rc +++ b/src/ExpandVolume/ExpandVolume.rc @@ -194,4 +194,4 @@ IDR_MOUNT_RSRC_HEADER HEADER "resource.h" VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,26,17,2 - PRODUCTVERSION 1,26,17,2 + FILEVERSION 1,26,20,0 + PRODUCTVERSION 1,26,20,0 FILEFLAGSMASK 0x17L @@ -212,3 +212,3 @@ BEGIN VALUE "FileDescription", "VeraCrypt Expander" - VALUE "FileVersion", "1.26.17" + VALUE "FileVersion", "1.26.20" VALUE "LegalTrademarks", "VeraCrypt" @@ -216,3 +216,3 @@ BEGIN VALUE "ProductName", "VeraCrypt" - VALUE "ProductVersion", "1.26.17" + VALUE "ProductVersion", "1.26.20" END diff --git a/src/ExpandVolume/InitDataArea.c b/src/ExpandVolume/InitDataArea.c index d937e3fb..b85afad7 100644 --- a/src/ExpandVolume/InitDataArea.c +++ b/src/ExpandVolume/InitDataArea.c @@ -11,3 +11,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/ExpandVolume/InitDataArea.h b/src/ExpandVolume/InitDataArea.h index f8104150..e273cfaa 100644 --- a/src/ExpandVolume/InitDataArea.h +++ b/src/ExpandVolume/InitDataArea.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/ExpandVolume/WinMain.cpp b/src/ExpandVolume/WinMain.cpp index 37cd11c8..64fccd55 100644 --- a/src/ExpandVolume/WinMain.cpp +++ b/src/ExpandVolume/WinMain.cpp @@ -11,3 +11,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -1095,3 +1095,7 @@ int WINAPI wWinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, wchar_t *lpsz - DetectX86Features (); +#ifndef _M_ARM64 + DetectX86Features(); +#else + DetectArmFeatures(); +#endif diff --git a/src/Format/Format.rc b/src/Format/Format.rc index 0f908e2c..057fd837 100644 --- a/src/Format/Format.rc +++ b/src/Format/Format.rc @@ -30,4 +30,4 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,26,17,2 - PRODUCTVERSION 1,26,17,2 + FILEVERSION 1,26,20,0 + PRODUCTVERSION 1,26,20,0 FILEFLAGSMASK 0x17L @@ -48,3 +48,3 @@ BEGIN VALUE "FileDescription", "VeraCrypt Format" - VALUE "FileVersion", "1.26.17" + VALUE "FileVersion", "1.26.20" VALUE "LegalTrademarks", "VeraCrypt" @@ -52,3 +52,3 @@ BEGIN VALUE "ProductName", "VeraCrypt" - VALUE "ProductVersion", "1.26.17" + VALUE "ProductVersion", "1.26.20" END diff --git a/src/Format/FormatCom.cpp b/src/Format/FormatCom.cpp index 90333f23..904128c3 100644 --- a/src/Format/FormatCom.cpp +++ b/src/Format/FormatCom.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Format/FormatCom.h b/src/Format/FormatCom.h index e474608d..17eff52e 100644 --- a/src/Format/FormatCom.h +++ b/src/Format/FormatCom.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Format/InPlace.c b/src/Format/InPlace.c index 873ae067..0c35ccce 100644 --- a/src/Format/InPlace.c +++ b/src/Format/InPlace.c @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -1363,3 +1363,3 @@ int DecryptPartitionInPlace (volatile FORMAT_VOL_PARAMETERS *volParams, volatile handleWin32Error (hwndDlg, SRC_POS); - AbortProcess ("CANT_DISMOUNT_VOLUME"); + AbortProcess ("CANT_UNMOUNT_VOLUME"); } @@ -2023,3 +2023,3 @@ static int DismountFileSystem (HWND hwndDlg, HANDLE dev, if (!bSilent) - ShowInPlaceEncErrMsgWAltSteps (hwndDlg, "INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS", TRUE); + ShowInPlaceEncErrMsgWAltSteps (hwndDlg, "INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS", TRUE); @@ -2030,3 +2030,3 @@ static int DismountFileSystem (HWND hwndDlg, HANDLE dev, && !bSilent - && AskWarnYesNo ("VOL_LOCK_FAILED_OFFER_FORCED_DISMOUNT", hwndDlg) == IDNO) + && AskWarnYesNo ("VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT", hwndDlg) == IDNO) { @@ -2050,3 +2050,3 @@ static int DismountFileSystem (HWND hwndDlg, HANDLE dev, if (!bSilent) - ShowInPlaceEncErrMsgWAltSteps (hwndDlg, "INPLACE_ENC_CANT_LOCK_OR_DISMOUNT_FILESYS", TRUE); + ShowInPlaceEncErrMsgWAltSteps (hwndDlg, "INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS", TRUE); diff --git a/src/Format/InPlace.h b/src/Format/InPlace.h index 717a8ed3..30c59b7e 100644 --- a/src/Format/InPlace.h +++ b/src/Format/InPlace.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Format/Tcformat.c b/src/Format/Tcformat.c index dd7ff18b..d26564fc 100644 --- a/src/Format/Tcformat.c +++ b/src/Format/Tcformat.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -7856,3 +7856,3 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa { - if (MessageBoxW (hwndDlg, GetString ("CANT_DISMOUNT_OUTER_VOL"), lpszTitle, MB_RETRYCANCEL) != IDRETRY) + if (MessageBoxW (hwndDlg, GetString ("CANT_UNMOUNT_OUTER_VOL"), lpszTitle, MB_RETRYCANCEL) != IDRETRY) { @@ -7934,3 +7934,3 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa { - if (MessageBoxW (hwndDlg, GetString ("CANT_DISMOUNT_OUTER_VOL"), lpszTitle, MB_RETRYCANCEL) != IDRETRY) + if (MessageBoxW (hwndDlg, GetString ("CANT_UNMOUNT_OUTER_VOL"), lpszTitle, MB_RETRYCANCEL) != IDRETRY) { @@ -8025,3 +8025,3 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa handleWin32Error (MainDlg, SRC_POS); - AbortProcess ("CANT_DISMOUNT_VOLUME"); + AbortProcess ("CANT_UNMOUNT_VOLUME"); } @@ -8080,3 +8080,3 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa handleWin32Error (MainDlg, SRC_POS); - AbortProcess ("CANT_DISMOUNT_VOLUME"); + AbortProcess ("CANT_UNMOUNT_VOLUME"); } @@ -8094,3 +8094,3 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa handleWin32Error (MainDlg, SRC_POS); - AbortProcess ("CANT_DISMOUNT_VOLUME"); + AbortProcess ("CANT_UNMOUNT_VOLUME"); } @@ -8717,3 +8717,3 @@ retryCDDriveCheck: { - if (MessageBoxW (hwndDlg, GetString ("CANT_DISMOUNT_OUTER_VOL"), lpszTitle, MB_RETRYCANCEL | MB_ICONERROR | MB_SETFOREGROUND) != IDRETRY) + if (MessageBoxW (hwndDlg, GetString ("CANT_UNMOUNT_OUTER_VOL"), lpszTitle, MB_RETRYCANCEL | MB_ICONERROR | MB_SETFOREGROUND) != IDRETRY) { @@ -8786,3 +8786,3 @@ retryCDDriveCheck: { - if (MessageBoxW (hwndDlg, GetString ("CANT_DISMOUNT_OUTER_VOL"), lpszTitle, MB_RETRYCANCEL) != IDRETRY) + if (MessageBoxW (hwndDlg, GetString ("CANT_UNMOUNT_OUTER_VOL"), lpszTitle, MB_RETRYCANCEL) != IDRETRY) { @@ -10590,3 +10590,7 @@ int WINAPI wWinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, wchar_t *lpsz - DetectX86Features (); +#ifndef _M_ARM64 + DetectX86Features(); +#else + DetectArmFeatures(); +#endif diff --git a/src/Format/Tcformat.h b/src/Format/Tcformat.h index f9328afd..dd8bf793 100644 --- a/src/Format/Tcformat.h +++ b/src/Format/Tcformat.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/LICENSE b/src/LICENSE index 2e1779a0..0872b542 100644 --- a/src/LICENSE +++ b/src/LICENSE @@ -177,3 +177,3 @@ END OF TERMS AND CONDITIONS -Copyright 2013-2024 IDRIX +Copyright 2013-2025 IDRIX diff --git a/src/Main/Application.cpp b/src/Main/Application.cpp index 27b8f55a..7948235e 100644 --- a/src/Main/Application.cpp +++ b/src/Main/Application.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Application.h b/src/Main/Application.h index 82c6b00e..4bc9c199 100644 --- a/src/Main/Application.h +++ b/src/Main/Application.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/CommandLineInterface.cpp b/src/Main/CommandLineInterface.cpp index 735cbeef..2d38a5bd 100644 --- a/src/Main/CommandLineInterface.cpp +++ b/src/Main/CommandLineInterface.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -34,5 +34,6 @@ namespace VeraCrypt ArgUseLegacyPassword (false), -#if defined(TC_LINUX ) || defined (TC_FREEBSD) ArgUseDummySudoPassword (false), -#endif +#if defined(TC_UNIX) + ArgAllowInsecureMount (false), + #endif StartBackgroundTask (false) @@ -57,3 +58,4 @@ namespace VeraCrypt parser.AddSwitch (L"", L"delete-token-keyfiles", _("Delete security token keyfiles")); - parser.AddSwitch (L"d", L"dismount", _("Dismount volume")); + parser.AddSwitch (L"d", L"dismount", _("Unmount volume (deprecated: use 'unmount')")); + parser.AddSwitch (L"u", L"unmount", _("Unmount volume")); parser.AddSwitch (L"", L"display-password", _("Display password while typing")); @@ -63,3 +65,3 @@ namespace VeraCrypt parser.AddOption (L"", L"filesystem", _("Filesystem type")); - parser.AddSwitch (L"f", L"force", _("Force mount/dismount/overwrite")); + parser.AddSwitch (L"f", L"force", _("Force mount/unmount/overwrite")); #if !defined(TC_WINDOWS) && !defined(TC_MACOSX) @@ -112,2 +114,5 @@ namespace VeraCrypt #endif +#if defined(TC_UNIX) + parser.AddSwitch (L"", L"allow-insecure-mount", _("Allow mounting volumes on mount points that are in the user's PATH")); +#endif wxString str; @@ -220,3 +225,3 @@ namespace VeraCrypt - if (parser.Found (L"dismount")) + if (parser.Found (L"unmount") || parser.Found (L"dismount")) { @@ -377,3 +382,3 @@ namespace VeraCrypt ArgDisableFileSizeCheck = parser.Found (L"no-size-check"); - ArgUseLegacyPassword = parser.Found (L"legacy-password-maxlength"); + ArgUseLegacyPassword = parser.Found (L"legacy-password-maxlength"); #if defined(TC_LINUX ) || defined (TC_FREEBSD) @@ -382,2 +387,6 @@ namespace VeraCrypt +#if defined(TC_UNIX) + ArgAllowInsecureMount = parser.Found (L"allow-insecure-mount"); +#endif + #if !defined(TC_WINDOWS) && !defined(TC_MACOSX) diff --git a/src/Main/CommandLineInterface.h b/src/Main/CommandLineInterface.h index f773ca6f..c255feb0 100644 --- a/src/Main/CommandLineInterface.h +++ b/src/Main/CommandLineInterface.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -89,4 +89,6 @@ namespace VeraCrypt bool ArgUseLegacyPassword; -#if defined(TC_LINUX ) || defined (TC_FREEBSD) bool ArgUseDummySudoPassword; + +#if defined(TC_UNIX) + bool ArgAllowInsecureMount; #endif diff --git a/src/Main/FatalErrorHandler.cpp b/src/Main/FatalErrorHandler.cpp index 5e391698..092a65dc 100644 --- a/src/Main/FatalErrorHandler.cpp +++ b/src/Main/FatalErrorHandler.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/FatalErrorHandler.h b/src/Main/FatalErrorHandler.h index d787cdd7..c037d80f 100644 --- a/src/Main/FatalErrorHandler.h +++ b/src/Main/FatalErrorHandler.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/FavoriteVolume.cpp b/src/Main/FavoriteVolume.cpp index 0b6ff146..e804e15b 100644 --- a/src/Main/FavoriteVolume.cpp +++ b/src/Main/FavoriteVolume.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/FavoriteVolume.h b/src/Main/FavoriteVolume.h index 7bc6a430..f59a10f1 100644 --- a/src/Main/FavoriteVolume.h +++ b/src/Main/FavoriteVolume.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/AboutDialog.cpp b/src/Main/Forms/AboutDialog.cpp index 01c579d5..9b92ed0b 100644 --- a/src/Main/Forms/AboutDialog.cpp +++ b/src/Main/Forms/AboutDialog.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -63,3 +63,3 @@ namespace VeraCrypt L"Portions of this software:\n" - L"Copyright \xA9 2013-2024 IDRIX. All rights reserved.\n" + L"Copyright \xA9 2013-2025 IDRIX. All rights reserved.\n" L"Copyright \xA9 2003-2012 TrueCrypt Developers Association. All Rights Reserved.\n" @@ -76,3 +76,3 @@ namespace VeraCrypt L"\nThis software as a whole:\n" - L"Copyright \xA9 2013-2024 IDRIX. All rights reserved.\n\n" + L"Copyright \xA9 2013-2025 IDRIX. All rights reserved.\n\n" diff --git a/src/Main/Forms/AboutDialog.h b/src/Main/Forms/AboutDialog.h index 7ce64b98..01cf5e90 100644 --- a/src/Main/Forms/AboutDialog.h +++ b/src/Main/Forms/AboutDialog.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/BenchmarkDialog.cpp b/src/Main/Forms/BenchmarkDialog.cpp index 6e2cff64..168630fa 100644 --- a/src/Main/Forms/BenchmarkDialog.cpp +++ b/src/Main/Forms/BenchmarkDialog.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/BenchmarkDialog.h b/src/Main/Forms/BenchmarkDialog.h index 16a5446b..3b17e20b 100644 --- a/src/Main/Forms/BenchmarkDialog.h +++ b/src/Main/Forms/BenchmarkDialog.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/ChangePasswordDialog.cpp b/src/Main/Forms/ChangePasswordDialog.cpp index 39da8e60..6b613b05 100644 --- a/src/Main/Forms/ChangePasswordDialog.cpp +++ b/src/Main/Forms/ChangePasswordDialog.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/ChangePasswordDialog.h b/src/Main/Forms/ChangePasswordDialog.h index 66fbfecf..88ced0ae 100644 --- a/src/Main/Forms/ChangePasswordDialog.h +++ b/src/Main/Forms/ChangePasswordDialog.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/DeviceSelectionDialog.cpp b/src/Main/Forms/DeviceSelectionDialog.cpp index df4292c9..9573414c 100644 --- a/src/Main/Forms/DeviceSelectionDialog.cpp +++ b/src/Main/Forms/DeviceSelectionDialog.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/DeviceSelectionDialog.h b/src/Main/Forms/DeviceSelectionDialog.h index 2ab7a9ce..960d90af 100644 --- a/src/Main/Forms/DeviceSelectionDialog.h +++ b/src/Main/Forms/DeviceSelectionDialog.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/EncryptionOptionsWizardPage.cpp b/src/Main/Forms/EncryptionOptionsWizardPage.cpp index 663a6129..594c0c0a 100644 --- a/src/Main/Forms/EncryptionOptionsWizardPage.cpp +++ b/src/Main/Forms/EncryptionOptionsWizardPage.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/EncryptionOptionsWizardPage.h b/src/Main/Forms/EncryptionOptionsWizardPage.h index fbc63f9e..07b357c1 100644 --- a/src/Main/Forms/EncryptionOptionsWizardPage.h +++ b/src/Main/Forms/EncryptionOptionsWizardPage.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/EncryptionTestDialog.cpp b/src/Main/Forms/EncryptionTestDialog.cpp index af3f9833..47918532 100644 --- a/src/Main/Forms/EncryptionTestDialog.cpp +++ b/src/Main/Forms/EncryptionTestDialog.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/EncryptionTestDialog.h b/src/Main/Forms/EncryptionTestDialog.h index 3ba7d5e3..67e033b9 100644 --- a/src/Main/Forms/EncryptionTestDialog.h +++ b/src/Main/Forms/EncryptionTestDialog.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/FavoriteVolumesDialog.cpp b/src/Main/Forms/FavoriteVolumesDialog.cpp index a0c48f92..ee92a47a 100644 --- a/src/Main/Forms/FavoriteVolumesDialog.cpp +++ b/src/Main/Forms/FavoriteVolumesDialog.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/FavoriteVolumesDialog.h b/src/Main/Forms/FavoriteVolumesDialog.h index adbf400d..3b5cd828 100644 --- a/src/Main/Forms/FavoriteVolumesDialog.h +++ b/src/Main/Forms/FavoriteVolumesDialog.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/Forms.cpp b/src/Main/Forms/Forms.cpp index 9ffad555..6e1432a3 100644 --- a/src/Main/Forms/Forms.cpp +++ b/src/Main/Forms/Forms.cpp @@ -1823,11 +1823,11 @@ PreferencesDialogBase::PreferencesDialogBase( wxWindow* parent, wxWindowID id, c - AutoDismountSizer = new wxStaticBoxSizer( new wxStaticBox( SecurityPage, wxID_ANY, _("IDT_AUTO_DISMOUNT") ), wxVERTICAL ); + AutoDismountSizer = new wxStaticBoxSizer( new wxStaticBox( SecurityPage, wxID_ANY, _("IDT_AUTO_UNMOUNT") ), wxVERTICAL ); wxStaticBoxSizer* sbSizer13; - sbSizer13 = new wxStaticBoxSizer( new wxStaticBox( AutoDismountSizer->GetStaticBox(), wxID_ANY, _("LINUX_DISMOUNT_ALL_WHEN") ), wxVERTICAL ); + sbSizer13 = new wxStaticBoxSizer( new wxStaticBox( AutoDismountSizer->GetStaticBox(), wxID_ANY, _("LINUX_UNMOUNT_ALL_WHEN") ), wxVERTICAL ); - DismountOnLogOffCheckBox = new wxCheckBox( sbSizer13->GetStaticBox(), wxID_ANY, _("IDC_PREF_DISMOUNT_LOGOFF"), wxDefaultPosition, wxDefaultSize, 0 ); + DismountOnLogOffCheckBox = new wxCheckBox( sbSizer13->GetStaticBox(), wxID_ANY, _("IDC_PREF_UNMOUNT_LOGOFF"), wxDefaultPosition, wxDefaultSize, 0 ); sbSizer13->Add( DismountOnLogOffCheckBox, 0, wxALL, 5 ); - DismountOnScreenSaverCheckBox = new wxCheckBox( sbSizer13->GetStaticBox(), wxID_ANY, _("IDC_PREF_DISMOUNT_SCREENSAVER"), wxDefaultPosition, wxDefaultSize, 0 ); + DismountOnScreenSaverCheckBox = new wxCheckBox( sbSizer13->GetStaticBox(), wxID_ANY, _("IDC_PREF_UNMOUNT_SCREENSAVER"), wxDefaultPosition, wxDefaultSize, 0 ); sbSizer13->Add( DismountOnScreenSaverCheckBox, 0, wxALL, 5 ); @@ -1843,3 +1843,3 @@ PreferencesDialogBase::PreferencesDialogBase( wxWindow* parent, wxWindowID id, c - DismountOnInactivityCheckBox = new wxCheckBox( AutoDismountSizer->GetStaticBox(), wxID_ANY, _("IDC_PREF_DISMOUNT_INACTIVE"), wxDefaultPosition, wxDefaultSize, 0 ); + DismountOnInactivityCheckBox = new wxCheckBox( AutoDismountSizer->GetStaticBox(), wxID_ANY, _("IDC_PREF_UNMOUNT_INACTIVE"), wxDefaultPosition, wxDefaultSize, 0 ); bSizer34->Add( DismountOnInactivityCheckBox, 0, wxTOP|wxBOTTOM|wxLEFT|wxALIGN_CENTER_VERTICAL, 5 ); @@ -1859,3 +1859,3 @@ PreferencesDialogBase::PreferencesDialogBase( wxWindow* parent, wxWindowID id, c - ForceAutoDismountCheckBox = new wxCheckBox( AutoDismountSizer->GetStaticBox(), wxID_ANY, _("IDC_PREF_FORCE_AUTO_DISMOUNT"), wxDefaultPosition, wxDefaultSize, 0 ); + ForceAutoDismountCheckBox = new wxCheckBox( AutoDismountSizer->GetStaticBox(), wxID_ANY, _("IDC_PREF_FORCE_AUTO_UNMOUNT"), wxDefaultPosition, wxDefaultSize, 0 ); AutoDismountSizer->Add( ForceAutoDismountCheckBox, 0, wxALL, 5 ); @@ -1879,3 +1879,3 @@ PreferencesDialogBase::PreferencesDialogBase( wxWindow* parent, wxWindowID id, c - WipeCacheOnAutoDismountCheckBox = new wxCheckBox( sbSizer14->GetStaticBox(), wxID_ANY, _("IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT"), wxDefaultPosition, wxDefaultSize, 0 ); + WipeCacheOnAutoDismountCheckBox = new wxCheckBox( sbSizer14->GetStaticBox(), wxID_ANY, _("IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT"), wxDefaultPosition, wxDefaultSize, 0 ); sbSizer14->Add( WipeCacheOnAutoDismountCheckBox, 0, wxALL, 5 ); @@ -1985,3 +1985,3 @@ PreferencesDialogBase::PreferencesDialogBase( wxWindow* parent, wxWindowID id, c - BackgroundTaskMenuDismountItemsEnabledCheckBox = new wxCheckBox( sbSizer26->GetStaticBox(), wxID_ANY, _("TASKICON_PREF_DISMOUNT_VOL"), wxDefaultPosition, wxDefaultSize, 0 ); + BackgroundTaskMenuDismountItemsEnabledCheckBox = new wxCheckBox( sbSizer26->GetStaticBox(), wxID_ANY, _("TASKICON_PREF_UNMOUNT_VOL"), wxDefaultPosition, wxDefaultSize, 0 ); sbSizer26->Add( BackgroundTaskMenuDismountItemsEnabledCheckBox, 0, wxALL, 5 ); @@ -2028,3 +2028,3 @@ PreferencesDialogBase::PreferencesDialogBase( wxWindow* parent, wxWindowID id, c - CloseExplorerWindowsOnDismountCheckBox = new wxCheckBox( ExplorerSizer->GetStaticBox(), wxID_ANY, _("LINUX_CLOSE_EXPL_ON_DISMOUNT"), wxDefaultPosition, wxDefaultSize, 0 ); + CloseExplorerWindowsOnDismountCheckBox = new wxCheckBox( ExplorerSizer->GetStaticBox(), wxID_ANY, _("LINUX_CLOSE_EXPL_ON_UNMOUNT"), wxDefaultPosition, wxDefaultSize, 0 ); ExplorerSizer->Add( CloseExplorerWindowsOnDismountCheckBox, 0, wxALL, 5 ); @@ -2240,3 +2240,3 @@ PreferencesDialogBase::PreferencesDialogBase( wxWindow* parent, wxWindowID id, c - DisplayMessageAfterHotkeyDismountCheckBox = new wxCheckBox( sbSizer24->GetStaticBox(), wxID_ANY, _("LINUX_CONFIRM_AFTER_DISMOUNT"), wxDefaultPosition, wxDefaultSize, 0 ); + DisplayMessageAfterHotkeyDismountCheckBox = new wxCheckBox( sbSizer24->GetStaticBox(), wxID_ANY, _("LINUX_CONFIRM_AFTER_UNMOUNT"), wxDefaultPosition, wxDefaultSize, 0 ); sbSizer24->Add( DisplayMessageAfterHotkeyDismountCheckBox, 0, wxALL, 5 ); diff --git a/src/Main/Forms/InfoWizardPage.cpp b/src/Main/Forms/InfoWizardPage.cpp index 6d8cf926..465f1693 100644 --- a/src/Main/Forms/InfoWizardPage.cpp +++ b/src/Main/Forms/InfoWizardPage.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/InfoWizardPage.h b/src/Main/Forms/InfoWizardPage.h index aa7da264..0a4c3324 100644 --- a/src/Main/Forms/InfoWizardPage.h +++ b/src/Main/Forms/InfoWizardPage.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/KeyfileGeneratorDialog.cpp b/src/Main/Forms/KeyfileGeneratorDialog.cpp index 85443f45..58224e18 100644 --- a/src/Main/Forms/KeyfileGeneratorDialog.cpp +++ b/src/Main/Forms/KeyfileGeneratorDialog.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/KeyfileGeneratorDialog.h b/src/Main/Forms/KeyfileGeneratorDialog.h index 7b8b2b29..de3a1287 100644 --- a/src/Main/Forms/KeyfileGeneratorDialog.h +++ b/src/Main/Forms/KeyfileGeneratorDialog.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/KeyfilesDialog.cpp b/src/Main/Forms/KeyfilesDialog.cpp index c734b4d9..d81b101f 100644 --- a/src/Main/Forms/KeyfilesDialog.cpp +++ b/src/Main/Forms/KeyfilesDialog.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/KeyfilesDialog.h b/src/Main/Forms/KeyfilesDialog.h index 2ee601e3..2abaf713 100644 --- a/src/Main/Forms/KeyfilesDialog.h +++ b/src/Main/Forms/KeyfilesDialog.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/KeyfilesPanel.cpp b/src/Main/Forms/KeyfilesPanel.cpp index e3d086fc..4439ff36 100644 --- a/src/Main/Forms/KeyfilesPanel.cpp +++ b/src/Main/Forms/KeyfilesPanel.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/KeyfilesPanel.h b/src/Main/Forms/KeyfilesPanel.h index ef680d49..d22abb8b 100644 --- a/src/Main/Forms/KeyfilesPanel.h +++ b/src/Main/Forms/KeyfilesPanel.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/LegalNoticesDialog.cpp b/src/Main/Forms/LegalNoticesDialog.cpp index ce7e442c..0de62897 100644 --- a/src/Main/Forms/LegalNoticesDialog.cpp +++ b/src/Main/Forms/LegalNoticesDialog.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/LegalNoticesDialog.h b/src/Main/Forms/LegalNoticesDialog.h index 31df666b..0769fdb7 100644 --- a/src/Main/Forms/LegalNoticesDialog.h +++ b/src/Main/Forms/LegalNoticesDialog.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/MainFrame.cpp b/src/Main/Forms/MainFrame.cpp index 77f371d8..59329e09 100644 --- a/src/Main/Forms/MainFrame.cpp +++ b/src/Main/Forms/MainFrame.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -527,3 +527,3 @@ namespace VeraCrypt Gui->AppendToMenu (*popup, LangString["IDM_MOUNT_FAVORITE_VOLUMES"], this, wxCommandEventHandler (TaskBarIcon::OnMountAllFavoritesMenuItemSelected))->Enable (!Busy); - Gui->AppendToMenu (*popup, LangString["HK_DISMOUNT_ALL"], this, wxCommandEventHandler (TaskBarIcon::OnDismountAllMenuItemSelected))->Enable (!Busy); + Gui->AppendToMenu (*popup, LangString["HK_UNMOUNT_ALL"], this, wxCommandEventHandler (TaskBarIcon::OnDismountAllMenuItemSelected))->Enable (!Busy); @@ -567,3 +567,3 @@ namespace VeraCrypt { - wxString label = LangString["DISMOUNT"] + L" "; + wxString label = LangString["UNMOUNT"] + L" "; @@ -1010,3 +1010,3 @@ namespace VeraCrypt if (newMountedCount == 0 && GetPreferences().DisplayMessageAfterHotkeyDismount) - Gui->ShowInfo ("MOUNTED_VOLUMES_DISMOUNTED"); + Gui->ShowInfo ("MOUNTED_VOLUMES_UNMOUNTED"); else if (GetPreferences().BeepAfterHotkeyMountDismount) @@ -1026,3 +1026,3 @@ namespace VeraCrypt if (mounted && GetPreferences().DisplayMessageAfterHotkeyDismount) - Gui->ShowInfo ("VOLUMES_DISMOUNTED_CACHE_WIPED"); + Gui->ShowInfo ("VOLUMES_UNMOUNTED_CACHE_WIPED"); else if (mounted && GetPreferences().BeepAfterHotkeyMountDismount) @@ -1151,3 +1151,3 @@ namespace VeraCrypt { - Gui->AppendToMenu (popup, LangString["DISMOUNT"], this, wxCommandEventHandler (MainFrame::OnDismountVolumeMenuItemSelected)); + Gui->AppendToMenu (popup, LangString["UNMOUNT"], this, wxCommandEventHandler (MainFrame::OnDismountVolumeMenuItemSelected)); Gui->AppendToMenu (popup, LangString["OPEN"], this, wxCommandEventHandler (MainFrame::OnOpenVolumeMenuItemSelected)); @@ -1623,3 +1623,3 @@ namespace VeraCrypt - indicator_item_dismountall = gtk_menu_item_new_with_label (LangString["HK_DISMOUNT_ALL"]); + indicator_item_dismountall = gtk_menu_item_new_with_label (LangString["HK_UNMOUNT_ALL"]); gtk_menu_shell_append (GTK_MENU_SHELL (menu), indicator_item_dismountall); diff --git a/src/Main/Forms/MainFrame.h b/src/Main/Forms/MainFrame.h index ed1c44f7..9b2b4eb0 100644 --- a/src/Main/Forms/MainFrame.h +++ b/src/Main/Forms/MainFrame.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/MountOptionsDialog.cpp b/src/Main/Forms/MountOptionsDialog.cpp index 85a06d1e..32b7ae57 100644 --- a/src/Main/Forms/MountOptionsDialog.cpp +++ b/src/Main/Forms/MountOptionsDialog.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -36,2 +36,5 @@ namespace VeraCrypt ), Options (options) +#ifdef TC_UNIX + , m_showRedBorder(false) +#endif { @@ -44,2 +47,12 @@ namespace VeraCrypt +#ifdef TC_UNIX + if (Gui->InsecureMountAllowed()) + { + this->SetTitle (LangString["INSECURE_MODE"] + L" - " + this->GetTitle()); + m_showRedBorder = true; + Bind(wxEVT_PAINT, &MountOptionsDialog::OnPaint, this); + Bind(wxEVT_SIZE, &MountOptionsDialog::OnSize, this); + } +#endif + if (disableMountOptions) @@ -232,2 +245,25 @@ namespace VeraCrypt } + +#ifdef TC_UNIX + void MountOptionsDialog::OnPaint(wxPaintEvent& event) + { + wxPaintDC dc(this); + if (m_showRedBorder) + { + wxSize size = GetClientSize(); + wxPen pen(*wxRED, 3); // 3 pixels width + dc.SetPen(pen); + dc.SetBrush(*wxTRANSPARENT_BRUSH); + dc.DrawRectangle(0, 0, size.GetWidth(), size.GetHeight()); + } + event.Skip(); + } + + void MountOptionsDialog::OnSize(wxSizeEvent& event) + { + event.Skip(); + if (m_showRedBorder) + Refresh(); + } +#endif } diff --git a/src/Main/Forms/MountOptionsDialog.h b/src/Main/Forms/MountOptionsDialog.h index 6366ce85..b9bf38ea 100644 --- a/src/Main/Forms/MountOptionsDialog.h +++ b/src/Main/Forms/MountOptionsDialog.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -42,3 +42,12 @@ namespace VeraCrypt +#ifdef TC_UNIX + // Used for displaying a red border around the dialog window when insecure mode is enabled + void OnPaint(wxPaintEvent& event); + void OnSize(wxSizeEvent& event); +#endif + MountOptions &Options; +#ifdef TC_UNIX + bool m_showRedBorder; +#endif wxString OptionsButtonLabel; diff --git a/src/Main/Forms/NewSecurityTokenKeyfileDialog.cpp b/src/Main/Forms/NewSecurityTokenKeyfileDialog.cpp index e52d2f60..09dfe5d5 100644 --- a/src/Main/Forms/NewSecurityTokenKeyfileDialog.cpp +++ b/src/Main/Forms/NewSecurityTokenKeyfileDialog.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/NewSecurityTokenKeyfileDialog.h b/src/Main/Forms/NewSecurityTokenKeyfileDialog.h index faa76283..f956462f 100644 --- a/src/Main/Forms/NewSecurityTokenKeyfileDialog.h +++ b/src/Main/Forms/NewSecurityTokenKeyfileDialog.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/PreferencesDialog.cpp b/src/Main/Forms/PreferencesDialog.cpp index 4e7644b6..4a6eaec0 100644 --- a/src/Main/Forms/PreferencesDialog.cpp +++ b/src/Main/Forms/PreferencesDialog.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -423,3 +423,3 @@ namespace VeraCrypt if (event.IsChecked() && !ForceAutoDismountCheckBox->IsChecked()) - Gui->ShowWarning ("WARN_PREF_AUTO_DISMOUNT"); + Gui->ShowWarning ("WARN_PREF_AUTO_UNMOUNT"); } @@ -429,3 +429,3 @@ namespace VeraCrypt if (event.IsChecked() && !ForceAutoDismountCheckBox->IsChecked()) - Gui->ShowWarning ("WARN_PREF_AUTO_DISMOUNT"); + Gui->ShowWarning ("WARN_PREF_AUTO_UNMOUNT"); } @@ -435,3 +435,3 @@ namespace VeraCrypt if (!event.IsChecked()) - ForceAutoDismountCheckBox->SetValue (!Gui->AskYesNo (LangString["CONFIRM_NO_FORCED_AUTODISMOUNT"], false, true)); + ForceAutoDismountCheckBox->SetValue (!Gui->AskYesNo (LangString["CONFIRM_NO_FORCED_AUTOUNMOUNT"], false, true)); } diff --git a/src/Main/Forms/PreferencesDialog.h b/src/Main/Forms/PreferencesDialog.h index 5e7f7e71..8e1e7363 100644 --- a/src/Main/Forms/PreferencesDialog.h +++ b/src/Main/Forms/PreferencesDialog.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/ProgressWizardPage.cpp b/src/Main/Forms/ProgressWizardPage.cpp index a827b718..83c32ba9 100644 --- a/src/Main/Forms/ProgressWizardPage.cpp +++ b/src/Main/Forms/ProgressWizardPage.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/ProgressWizardPage.h b/src/Main/Forms/ProgressWizardPage.h index 34f5cf4d..6a7a732c 100644 --- a/src/Main/Forms/ProgressWizardPage.h +++ b/src/Main/Forms/ProgressWizardPage.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/RandomPoolEnrichmentDialog.cpp b/src/Main/Forms/RandomPoolEnrichmentDialog.cpp index b48d5af6..3fc2e113 100644 --- a/src/Main/Forms/RandomPoolEnrichmentDialog.cpp +++ b/src/Main/Forms/RandomPoolEnrichmentDialog.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/RandomPoolEnrichmentDialog.h b/src/Main/Forms/RandomPoolEnrichmentDialog.h index a29109f1..2b2745e3 100644 --- a/src/Main/Forms/RandomPoolEnrichmentDialog.h +++ b/src/Main/Forms/RandomPoolEnrichmentDialog.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/SecurityTokenKeyfilesDialog.cpp b/src/Main/Forms/SecurityTokenKeyfilesDialog.cpp index bbbeff74..19eb196d 100644 --- a/src/Main/Forms/SecurityTokenKeyfilesDialog.cpp +++ b/src/Main/Forms/SecurityTokenKeyfilesDialog.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/SecurityTokenKeyfilesDialog.h b/src/Main/Forms/SecurityTokenKeyfilesDialog.h index 92119e1e..ec6bafdb 100644 --- a/src/Main/Forms/SecurityTokenKeyfilesDialog.h +++ b/src/Main/Forms/SecurityTokenKeyfilesDialog.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/SelectDirectoryWizardPage.cpp b/src/Main/Forms/SelectDirectoryWizardPage.cpp index a81b9fea..1831996a 100644 --- a/src/Main/Forms/SelectDirectoryWizardPage.cpp +++ b/src/Main/Forms/SelectDirectoryWizardPage.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/SelectDirectoryWizardPage.h b/src/Main/Forms/SelectDirectoryWizardPage.h index 39517c56..069fab5f 100644 --- a/src/Main/Forms/SelectDirectoryWizardPage.h +++ b/src/Main/Forms/SelectDirectoryWizardPage.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/SingleChoiceWizardPage.h b/src/Main/Forms/SingleChoiceWizardPage.h index 2398672d..2f137583 100644 --- a/src/Main/Forms/SingleChoiceWizardPage.h +++ b/src/Main/Forms/SingleChoiceWizardPage.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/TrueCrypt.fbp b/src/Main/Forms/TrueCrypt.fbp index 0b40a99e..3c911652 100644 --- a/src/Main/Forms/TrueCrypt.fbp +++ b/src/Main/Forms/TrueCrypt.fbp @@ -10956,3 +10956,3 @@ <property name="id">wxID_ANY</property> - <property name="label">IDT_AUTO_DISMOUNT</property> + <property name="label">IDT_AUTO_UNMOUNT</property> <property name="minimum_size"></property> @@ -10968,3 +10968,3 @@ <property name="id">wxID_ANY</property> - <property name="label">LINUX_DISMOUNT_ALL_WHEN</property> + <property name="label">LINUX_UNMOUNT_ALL_WHEN</property> <property name="minimum_size"></property> @@ -11007,3 +11007,3 @@ <property name="id">wxID_ANY</property> - <property name="label">IDC_PREF_DISMOUNT_LOGOFF</property> + <property name="label">IDC_PREF_UNMOUNT_LOGOFF</property> <property name="max_size"></property> @@ -11071,3 +11071,3 @@ <property name="id">wxID_ANY</property> - <property name="label">IDC_PREF_DISMOUNT_SCREENSAVER</property> + <property name="label">IDC_PREF_UNMOUNT_SCREENSAVER</property> <property name="max_size"></property> @@ -11212,3 +11212,3 @@ <property name="id">wxID_ANY</property> - <property name="label">IDC_PREF_DISMOUNT_INACTIVE</property> + <property name="label">IDC_PREF_UNMOUNT_INACTIVE</property> <property name="max_size"></property> @@ -11401,3 +11401,3 @@ <property name="id">wxID_ANY</property> - <property name="label">IDC_PREF_FORCE_AUTO_DISMOUNT</property> + <property name="label">IDC_PREF_FORCE_AUTO_UNMOUNT</property> <property name="max_size"></property> @@ -11623,3 +11623,3 @@ <property name="id">wxID_ANY</property> - <property name="label">IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT</property> + <property name="label">IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT</property> <property name="max_size"></property> @@ -12617,3 +12617,3 @@ <property name="id">wxID_ANY</property> - <property name="label">TASKICON_PREF_DISMOUNT_VOL</property> + <property name="label">TASKICON_PREF_UNMOUNT_VOL</property> <property name="max_size"></property> @@ -13041,3 +13041,3 @@ <property name="id">wxID_ANY</property> - <property name="label">LINUX_CLOSE_EXPL_ON_DISMOUNT</property> + <property name="label">LINUX_CLOSE_EXPL_ON_UNMOUNT</property> <property name="max_size"></property> @@ -14849,3 +14849,3 @@ <property name="id">wxID_ANY</property> - <property name="label">LINUX_CONFIRM_AFTER_DISMOUNT</property> + <property name="label">LINUX_CONFIRM_AFTER_UNMOUNT</property> <property name="max_size"></property> diff --git a/src/Main/Forms/VolumeCreationProgressWizardPage.cpp b/src/Main/Forms/VolumeCreationProgressWizardPage.cpp index 5739949c..9afb19c7 100644 --- a/src/Main/Forms/VolumeCreationProgressWizardPage.cpp +++ b/src/Main/Forms/VolumeCreationProgressWizardPage.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/VolumeCreationProgressWizardPage.h b/src/Main/Forms/VolumeCreationProgressWizardPage.h index fad4ac93..d3484aef 100644 --- a/src/Main/Forms/VolumeCreationProgressWizardPage.h +++ b/src/Main/Forms/VolumeCreationProgressWizardPage.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/VolumeCreationWizard.cpp b/src/Main/Forms/VolumeCreationWizard.cpp index 311738ca..bbf9fe0d 100644 --- a/src/Main/Forms/VolumeCreationWizard.cpp +++ b/src/Main/Forms/VolumeCreationWizard.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -624,3 +624,3 @@ namespace VeraCrypt { - Gui->ShowInfo ("DISMOUNT_FIRST"); + Gui->ShowInfo ("UNMOUNT_FIRST"); return GetCurrentStep(); diff --git a/src/Main/Forms/VolumeCreationWizard.h b/src/Main/Forms/VolumeCreationWizard.h index fd4b3e06..9cae5899 100644 --- a/src/Main/Forms/VolumeCreationWizard.h +++ b/src/Main/Forms/VolumeCreationWizard.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/VolumeFormatOptionsWizardPage.cpp b/src/Main/Forms/VolumeFormatOptionsWizardPage.cpp index 8d632059..5c2a087f 100644 --- a/src/Main/Forms/VolumeFormatOptionsWizardPage.cpp +++ b/src/Main/Forms/VolumeFormatOptionsWizardPage.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/VolumeFormatOptionsWizardPage.h b/src/Main/Forms/VolumeFormatOptionsWizardPage.h index b38f6e99..b9c21882 100644 --- a/src/Main/Forms/VolumeFormatOptionsWizardPage.h +++ b/src/Main/Forms/VolumeFormatOptionsWizardPage.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/VolumeLocationWizardPage.cpp b/src/Main/Forms/VolumeLocationWizardPage.cpp index 313d7fee..f1a6eb43 100644 --- a/src/Main/Forms/VolumeLocationWizardPage.cpp +++ b/src/Main/Forms/VolumeLocationWizardPage.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/VolumeLocationWizardPage.h b/src/Main/Forms/VolumeLocationWizardPage.h index 17ed39c2..709ab0b4 100644 --- a/src/Main/Forms/VolumeLocationWizardPage.h +++ b/src/Main/Forms/VolumeLocationWizardPage.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/VolumePasswordPanel.cpp b/src/Main/Forms/VolumePasswordPanel.cpp index 0555f339..7247c3ed 100644 --- a/src/Main/Forms/VolumePasswordPanel.cpp +++ b/src/Main/Forms/VolumePasswordPanel.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/VolumePasswordPanel.h b/src/Main/Forms/VolumePasswordPanel.h index 7019e8fd..23180399 100644 --- a/src/Main/Forms/VolumePasswordPanel.h +++ b/src/Main/Forms/VolumePasswordPanel.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/VolumePasswordWizardPage.cpp b/src/Main/Forms/VolumePasswordWizardPage.cpp index 859a613a..4f848896 100644 --- a/src/Main/Forms/VolumePasswordWizardPage.cpp +++ b/src/Main/Forms/VolumePasswordWizardPage.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/VolumePasswordWizardPage.h b/src/Main/Forms/VolumePasswordWizardPage.h index 525db216..128b76a3 100644 --- a/src/Main/Forms/VolumePasswordWizardPage.h +++ b/src/Main/Forms/VolumePasswordWizardPage.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/VolumePropertiesDialog.cpp b/src/Main/Forms/VolumePropertiesDialog.cpp index 3bba33bc..c0c944ae 100644 --- a/src/Main/Forms/VolumePropertiesDialog.cpp +++ b/src/Main/Forms/VolumePropertiesDialog.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/VolumePropertiesDialog.h b/src/Main/Forms/VolumePropertiesDialog.h index 277c8290..05dc490a 100644 --- a/src/Main/Forms/VolumePropertiesDialog.h +++ b/src/Main/Forms/VolumePropertiesDialog.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/VolumeSizeWizardPage.cpp b/src/Main/Forms/VolumeSizeWizardPage.cpp index 08aa7052..5d4f5e82 100644 --- a/src/Main/Forms/VolumeSizeWizardPage.cpp +++ b/src/Main/Forms/VolumeSizeWizardPage.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/VolumeSizeWizardPage.h b/src/Main/Forms/VolumeSizeWizardPage.h index 754bd691..e2d928e6 100644 --- a/src/Main/Forms/VolumeSizeWizardPage.h +++ b/src/Main/Forms/VolumeSizeWizardPage.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/WaitDialog.cpp b/src/Main/Forms/WaitDialog.cpp index 102d479a..2489a17b 100644 --- a/src/Main/Forms/WaitDialog.cpp +++ b/src/Main/Forms/WaitDialog.cpp @@ -1,3 +1,3 @@ /* - Copyright (c) 2013-2017 IDRIX. All rights reserved. + Copyright (c) 2013-2025 IDRIX. All rights reserved. @@ -119,2 +119,5 @@ namespace VeraCrypt + VC_CONVERT_EXCEPTION (MountPointBlocked); + VC_CONVERT_EXCEPTION (MountPointNotAllowed); + throw *ex; diff --git a/src/Main/Forms/WaitDialog.h b/src/Main/Forms/WaitDialog.h index 53f5048b..fd3a80be 100644 --- a/src/Main/Forms/WaitDialog.h +++ b/src/Main/Forms/WaitDialog.h @@ -1,3 +1,3 @@ /* - Copyright (c) 2013-2018 IDRIX. All rights reserved. + Copyright (c) 2013-2025 IDRIX. All rights reserved. diff --git a/src/Main/Forms/WizardFrame.cpp b/src/Main/Forms/WizardFrame.cpp index 1a6d1eea..298de6ae 100644 --- a/src/Main/Forms/WizardFrame.cpp +++ b/src/Main/Forms/WizardFrame.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/WizardFrame.h b/src/Main/Forms/WizardFrame.h index 86a53957..c5ea5950 100644 --- a/src/Main/Forms/WizardFrame.h +++ b/src/Main/Forms/WizardFrame.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Forms/WizardPage.h b/src/Main/Forms/WizardPage.h index 1bc5b82e..b6b1ca81 100644 --- a/src/Main/Forms/WizardPage.h +++ b/src/Main/Forms/WizardPage.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/GraphicUserInterface.cpp b/src/Main/GraphicUserInterface.cpp index b8098e95..75b326e5 100644 --- a/src/Main/GraphicUserInterface.cpp +++ b/src/Main/GraphicUserInterface.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -159,3 +159,3 @@ namespace VeraCrypt { - ShowInfo ("DISMOUNT_FIRST"); + ShowInfo ("UNMOUNT_FIRST"); return; @@ -1084,3 +1084,8 @@ namespace VeraCrypt mMainFrame = new MainFrame (nullptr); - +#if defined(TC_UNIX) + if (CmdLine->ArgAllowInsecureMount) + { + mMainFrame->SetTitle (mMainFrame->GetTitle() + wxT(" ") + LangString["INSECURE_MODE"]); + } +#endif if (CmdLine->StartBackgroundTask) @@ -1153,3 +1158,3 @@ namespace VeraCrypt if (Core->GetMountedVolumes().size() < volumeCount) - ShowInfoTopMost (LangString["MOUNTED_VOLUMES_AUTO_DISMOUNTED"]); + ShowInfoTopMost (LangString["MOUNTED_VOLUMES_AUTO_UNMOUNTED"]); } @@ -1415,3 +1420,3 @@ namespace VeraCrypt { - ShowInfo ("DISMOUNT_FIRST"); + ShowInfo ("UNMOUNT_FIRST"); return; diff --git a/src/Main/GraphicUserInterface.h b/src/Main/GraphicUserInterface.h index d333551c..9b6d3cb8 100644 --- a/src/Main/GraphicUserInterface.h +++ b/src/Main/GraphicUserInterface.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Hotkey.cpp b/src/Main/Hotkey.cpp index 8715dc01..ed6a2aff 100644 --- a/src/Main/Hotkey.cpp +++ b/src/Main/Hotkey.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -29,6 +29,6 @@ namespace VeraCrypt TC_HOTKEY (CloseAllSecurityTokenSessions, "IDM_CLOSE_ALL_TOKEN_SESSIONS"); - TC_HOTKEY (DismountAll, "HK_DISMOUNT_ALL"); - TC_HOTKEY (DismountAllWipeCache, "HK_DISMOUNT_ALL_AND_WIPE"); - TC_HOTKEY (ForceDismountAllWipeCache, "HK_FORCE_DISMOUNT_ALL_AND_WIPE"); - TC_HOTKEY (ForceDismountAllWipeCacheExit, "HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT"); + TC_HOTKEY (DismountAll, "HK_UNMOUNT_ALL"); + TC_HOTKEY (DismountAllWipeCache, "HK_UNMOUNT_ALL_AND_WIPE"); + TC_HOTKEY (ForceDismountAllWipeCache, "HK_FORCE_UNMOUNT_ALL_AND_WIPE"); + TC_HOTKEY (ForceDismountAllWipeCacheExit, "HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT"); TC_HOTKEY (MountAllDevices, "HK_AUTOMOUNT_DEVICES"); diff --git a/src/Main/Hotkey.h b/src/Main/Hotkey.h index 1ebd6bc7..b526da46 100644 --- a/src/Main/Hotkey.h +++ b/src/Main/Hotkey.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/LanguageStrings.cpp b/src/Main/LanguageStrings.cpp index 9a983712..24649ab7 100644 --- a/src/Main/LanguageStrings.cpp +++ b/src/Main/LanguageStrings.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/LanguageStrings.h b/src/Main/LanguageStrings.h index f69928c1..c2341158 100644 --- a/src/Main/LanguageStrings.h +++ b/src/Main/LanguageStrings.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Main.h b/src/Main/Main.h index f0dade49..87f88976 100644 --- a/src/Main/Main.h +++ b/src/Main/Main.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Resources.cpp b/src/Main/Resources.cpp index f00c14f7..5e5b68c8 100644 --- a/src/Main/Resources.cpp +++ b/src/Main/Resources.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Resources.h b/src/Main/Resources.h index 734c2ede..c2948618 100644 --- a/src/Main/Resources.h +++ b/src/Main/Resources.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/StringFormatter.cpp b/src/Main/StringFormatter.cpp index e64f85c3..2cae84bf 100644 --- a/src/Main/StringFormatter.cpp +++ b/src/Main/StringFormatter.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/StringFormatter.h b/src/Main/StringFormatter.h index d7f64dd0..7ffcf5da 100644 --- a/src/Main/StringFormatter.h +++ b/src/Main/StringFormatter.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/System.cpp b/src/Main/System.cpp index 3f2200dd..709101ad 100644 --- a/src/Main/System.cpp +++ b/src/Main/System.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/System.h b/src/Main/System.h index 9d7ebc91..1af8e1ae 100644 --- a/src/Main/System.h +++ b/src/Main/System.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/SystemPrecompiled.h b/src/Main/SystemPrecompiled.h index 07021786..1331d399 100644 --- a/src/Main/SystemPrecompiled.h +++ b/src/Main/SystemPrecompiled.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/TextUserInterface.cpp b/src/Main/TextUserInterface.cpp index 5dd778a0..5217199d 100644 --- a/src/Main/TextUserInterface.cpp +++ b/src/Main/TextUserInterface.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -292,3 +292,3 @@ namespace VeraCrypt if (Core->IsVolumeMounted (*volumePath)) - throw_err (LangString["DISMOUNT_FIRST"]); + throw_err (LangString["UNMOUNT_FIRST"]); #endif @@ -1539,3 +1539,3 @@ namespace VeraCrypt if (Core->IsVolumeMounted (*volumePath)) - throw_err (LangString["DISMOUNT_FIRST"]); + throw_err (LangString["UNMOUNT_FIRST"]); #endif diff --git a/src/Main/TextUserInterface.h b/src/Main/TextUserInterface.h index 34a7cb40..091e4cbd 100644 --- a/src/Main/TextUserInterface.h +++ b/src/Main/TextUserInterface.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Unix/Main.cpp b/src/Main/Unix/Main.cpp index ffc71a8d..4197dcaf 100644 --- a/src/Main/Unix/Main.cpp +++ b/src/Main/Unix/Main.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/UserInterface.cpp b/src/Main/UserInterface.cpp index b216101a..b507d9a3 100644 --- a/src/Main/UserInterface.cpp +++ b/src/Main/UserInterface.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -224,3 +224,3 @@ namespace VeraCrypt message += L'\n'; - message += StringFormatter (LangString["LINUX_VOL_DISMOUNTED"], wstring (volume->Path)); + message += StringFormatter (LangString["LINUX_VOL_UNMOUNTED"], wstring (volume->Path)); } @@ -498,4 +498,4 @@ namespace VeraCrypt EX2MSG (PasswordTooLong, StringFormatter (LangString["LINUX_EX2MSG_PASSWORDTOOLONG"], (int) VolumePassword::MaxSize)); - EX2MSG (PasswordUTF8TooLong, LangString["PASSWORD_UTF8_TOO_LONG"]); - EX2MSG (PasswordLegacyUTF8TooLong, LangString["LEGACY_PASSWORD_UTF8_TOO_LONG"]); + EX2MSG (PasswordUTF8TooLong, StringFormatter (LangString["PASSWORD_UTF8_TOO_LONG"], (int) VolumePassword::MaxSize)); + EX2MSG (PasswordLegacyUTF8TooLong, StringFormatter (LangString["LEGACY_PASSWORD_UTF8_TOO_LONG"], (int) VolumePassword::MaxLegacySize)); EX2MSG (PasswordUTF8Invalid, LangString["PASSWORD_UTF8_INVALID"]); @@ -543,2 +543,5 @@ namespace VeraCrypt + EX2MSG (MountPointBlocked, LangString["MOUNTPOINT_BLOCKED"]); + EX2MSG (MountPointNotAllowed, LangString["MOUNTPOINT_NOTALLOWED"]); + #undef EX2MSG @@ -555,2 +558,5 @@ namespace VeraCrypt #endif +#if CRYPTOPP_BOOL_ARMV8 + DetectArmFeatures(); +#endif LangString.Init(); @@ -562,2 +568,3 @@ namespace VeraCrypt Core->SetApplicationExecutablePath (Application::GetExecutablePath()); + Core->SetUserEnvPATH (getenv ("PATH")); @@ -572,4 +579,6 @@ namespace VeraCrypt -#if defined(TC_LINUX ) || defined (TC_FREEBSD) Core->ForceUseDummySudoPassword (CmdLine->ArgUseDummySudoPassword); + +#if defined(TC_UNIX) + Core->SetAllowInsecureMount (CmdLine->ArgAllowInsecureMount); #endif @@ -876,7 +885,26 @@ namespace VeraCrypt #if !defined(TC_WINDOWS) && !defined(TC_MACOSX) -// Function to check if a given executable exists and is executable -static bool IsExecutable(const string& exe) { - return wxFileName::IsFileExecutable("/usr/bin/" + exe) || - wxFileName::IsFileExecutable("/usr/local/bin/" + exe); -} +// Define file manager structures with their required parameters +struct FileManager { + const char* name; + const char* const* baseArgs; + size_t baseArgsCount; +}; + +// Array of supported file managers with their parameters +static const char* const gioArgs[] = {"open"}; +static const char* const kioclient5Args[] = {"exec"}; +static const char* const kfmclientArgs[] = {"openURL"}; +static const char* const exoOpenArgs[] = {"--launch", "FileManager"}; + +const FileManager fileManagers[] = { + {"gio", gioArgs, 1}, + {"kioclient5", kioclient5Args, 1}, + {"kfmclient", kfmclientArgs, 1}, + {"exo-open", exoOpenArgs, 2}, + {"nautilus", NULL, 0}, + {"dolphin", NULL, 0}, + {"caja", NULL, 0}, + {"thunar", NULL, 0}, + {"pcmanfm", NULL, 0} +}; #endif @@ -902,3 +930,3 @@ static bool IsExecutable(const string& exe) { { - Process::Execute ("open", args); + Process::Execute ("/usr/bin/open", args); } @@ -909,6 +937,10 @@ static bool IsExecutable(const string& exe) { // Primary attempt: Use xdg-open - if (IsExecutable("xdg-open")) { - try { + string errorMsg; + string binPath = Process::FindSystemBinary("xdg-open", errorMsg); + if (!binPath.empty()) + { + try + { args.push_back(directoryPath); - Process::Execute("xdg-open", args, 2000); + Process::Execute(binPath, args, 2000); return; @@ -920,32 +952,19 @@ static bool IsExecutable(const string& exe) { // Fallback attempts: Try known file managers - const char* fallbackFileManagers[] = { "gio", "kioclient5", "kfmclient", "exo-open", "nautilus", "dolphin", "caja", "thunar", "pcmanfm" }; - const size_t numFileManagers = sizeof(fallbackFileManagers) / sizeof(fallbackFileManagers[0]); - + const size_t numFileManagers = sizeof(fileManagers) / sizeof(fileManagers[0]); for (size_t i = 0; i < numFileManagers; ++i) { - const char* fm = fallbackFileManagers[i]; - if (IsExecutable(fm)) { + const FileManager& fm = fileManagers[i]; + string fmPath = Process::FindSystemBinary(fm.name, errorMsg); + if (!fmPath.empty()) { args.clear(); - if (strcmp(fm, "gio") == 0) { - args.push_back("open"); - args.push_back(directoryPath); - } - else if (strcmp(fm, "kioclient5") == 0) { - args.push_back("exec"); - args.push_back(directoryPath); - } - else if (strcmp(fm, "kfmclient") == 0) { - args.push_back("openURL"); - args.push_back(directoryPath); - } - else if (strcmp(fm, "exo-open") == 0) { - args.push_back("--launch"); - args.push_back("FileManager"); - args.push_back(directoryPath); - } - else { - args.push_back(directoryPath); + + // Add base arguments first + for (size_t j = 0; j < fm.baseArgsCount; ++j) { + args.push_back(fm.baseArgs[j]); } + + // Add path argument + args.push_back(directoryPath); try { - Process::Execute(fm, args, 2000); + Process::Execute(fmPath, args, 2000); return; // Success @@ -1159,3 +1178,3 @@ static bool IsExecutable(const string& exe) { " 5) Mount the new filesystem and fill it with data.\n" - " 6) Dismount the outer volume.\n" + " 6) Unmount the outer volume.\n" " If at any step the hidden volume protection is triggered, start again from 1).\n" @@ -1171,5 +1190,5 @@ static bool IsExecutable(const string& exe) { "\n" - "-d, --dismount[=MOUNTED_VOLUME]\n" - " Dismount a mounted volume. If MOUNTED_VOLUME is not specified, all\n" - " volumes are dismounted. See below for description of MOUNTED_VOLUME.\n" + "-u, --unmount[=MOUNTED_VOLUME]\n" + " Unmount a mounted volume. If MOUNTED_VOLUME is not specified, all\n" + " volumes are unmounted. See below for description of MOUNTED_VOLUME.\n" "\n" @@ -1244,3 +1263,3 @@ static bool IsExecutable(const string& exe) { "--force\n" - " Force mounting of a volume in use, dismounting of a volume in use, or\n" + " Force mounting of a volume in use, unmounting of a volume in use, or\n" " overwriting a file. Note that this option has no effect on some platforms.\n" @@ -1280,3 +1299,3 @@ static bool IsExecutable(const string& exe) { " timestamp|ts: Do not restore host-file modification timestamp when a volume\n" - " is dismounted (note that the operating system under certain circumstances\n" + " is unmounted (note that the operating system under certain circumstances\n" " does not alter host-file timestamps, which may be mistakenly interpreted\n" @@ -1315,3 +1334,3 @@ static bool IsExecutable(const string& exe) { " Warning message is displayed when a volume switched to read-only is being\n" - " dismounted.\n" + " unmounted.\n" "\n" @@ -1336,3 +1355,3 @@ static bool IsExecutable(const string& exe) { "--slot=SLOT\n" - " Use specified slot number when mounting, dismounting, or listing a volume.\n" + " Use specified slot number when mounting, unmounting, or listing a volume.\n" "\n" @@ -1381,7 +1400,7 @@ static bool IsExecutable(const string& exe) { "\n" - "Dismount a volume:\n" - "veracrypt -d volume.hc\n" + "Unmount a volume:\n" + "veracrypt -u volume.hc\n" "\n" - "Dismount all mounted volumes:\n" - "veracrypt -d\n" + "Unmount all mounted volumes:\n" + "veracrypt -u\n" ); @@ -1640,2 +1659,9 @@ static bool IsExecutable(const string& exe) { +#ifdef TC_UNIX + bool UserInterface::InsecureMountAllowed () const + { + return CmdLine->ArgAllowInsecureMount; + } +#endif + #define VC_CONVERT_EXCEPTION(NAME) if (dynamic_cast<NAME*> (ex)) throw (NAME&) *ex; @@ -1728,2 +1754,5 @@ static bool IsExecutable(const string& exe) { + VC_CONVERT_EXCEPTION (MountPointBlocked); + VC_CONVERT_EXCEPTION (MountPointNotAllowed); + throw *ex; diff --git a/src/Main/UserInterface.h b/src/Main/UserInterface.h index 41415e9d..d04f0214 100644 --- a/src/Main/UserInterface.h +++ b/src/Main/UserInterface.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -88,3 +88,5 @@ namespace VeraCrypt virtual wxString VolumeTypeToString (VolumeType::Enum type, VolumeProtection::Enum protection) const; - +#ifdef TC_UNIX + virtual bool InsecureMountAllowed () const; +#endif Event PreferencesUpdatedEvent; diff --git a/src/Main/UserInterfaceException.h b/src/Main/UserInterfaceException.h index 8a8c7a60..8886a655 100644 --- a/src/Main/UserInterfaceException.h +++ b/src/Main/UserInterfaceException.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/UserInterfaceType.h b/src/Main/UserInterfaceType.h index 41208ccb..0afa36a8 100644 --- a/src/Main/UserInterfaceType.h +++ b/src/Main/UserInterfaceType.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/UserPreferences.cpp b/src/Main/UserPreferences.cpp index 194cb6df..d9d07b6d 100644 --- a/src/Main/UserPreferences.cpp +++ b/src/Main/UserPreferences.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/UserPreferences.h b/src/Main/UserPreferences.h index 25621656..2c5cff9f 100644 --- a/src/Main/UserPreferences.h +++ b/src/Main/UserPreferences.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/VolumeHistory.cpp b/src/Main/VolumeHistory.cpp index ba33a04a..8b8c5f62 100644 --- a/src/Main/VolumeHistory.cpp +++ b/src/Main/VolumeHistory.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/VolumeHistory.h b/src/Main/VolumeHistory.h index fdbb099b..02d6bfe1 100644 --- a/src/Main/VolumeHistory.h +++ b/src/Main/VolumeHistory.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Xml.cpp b/src/Main/Xml.cpp index bf286a55..e7efc39e 100644 --- a/src/Main/Xml.cpp +++ b/src/Main/Xml.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Main/Xml.h b/src/Main/Xml.h index 27f0b828..3d6dea67 100644 --- a/src/Main/Xml.h +++ b/src/Main/Xml.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Makefile b/src/Makefile index b176975e..4f282e5a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -164,2 +164,5 @@ else ifneq (,$(filter armv7l,$(ARCH))) CPU_ARCH = armv7 +else ifneq (,$(filter aarch64 arm64 armv8l,$(ARCH))) + PLATFORM_ARCH := arm64 + CPU_ARCH = arm64 endif @@ -340,2 +343,5 @@ $(error Specified SDK version was not found, ensure your active developer direct + export CFLAGS_ARM64 := $(CFLAGS) $(C_CXX_FLAGS) -arch arm64 -march=armv8-a+crypto + export CFLAGS_X64 := $(CFLAGS) $(C_CXX_FLAGS) -arch x86_64 + # Set x86 assembly flags (-msse2, -mssse3, -msse4.1) diff --git a/src/Mount/Favorites.cpp b/src/Mount/Favorites.cpp index c829128f..5794f6cb 100644 --- a/src/Mount/Favorites.cpp +++ b/src/Mount/Favorites.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Mount/Favorites.h b/src/Mount/Favorites.h index 9384cbc8..534706b3 100644 --- a/src/Mount/Favorites.h +++ b/src/Mount/Favorites.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Mount/Hotkeys.c b/src/Mount/Hotkeys.c index 9af4c628..3ab0bd92 100644 --- a/src/Mount/Hotkeys.c +++ b/src/Mount/Hotkeys.c @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -256,4 +256,4 @@ static void DisplayHotkeyList (HWND hwndDlg) - case HK_DISMOUNT_ALL: - item.pszText = GetString ("HK_DISMOUNT_ALL"); + case HK_UNMOUNT_ALL: + item.pszText = GetString ("HK_UNMOUNT_ALL"); break; @@ -264,12 +264,12 @@ static void DisplayHotkeyList (HWND hwndDlg) - case HK_DISMOUNT_ALL_AND_WIPE: - item.pszText = GetString ("HK_DISMOUNT_ALL_AND_WIPE"); + case HK_UNMOUNT_ALL_AND_WIPE: + item.pszText = GetString ("HK_UNMOUNT_ALL_AND_WIPE"); break; - case HK_FORCE_DISMOUNT_ALL_AND_WIPE: - item.pszText = GetString ("HK_FORCE_DISMOUNT_ALL_AND_WIPE"); + case HK_FORCE_UNMOUNT_ALL_AND_WIPE: + item.pszText = GetString ("HK_FORCE_UNMOUNT_ALL_AND_WIPE"); break; - case HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT: - item.pszText = GetString ("HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT"); + case HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT: + item.pszText = GetString ("HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT"); break; @@ -380,4 +380,4 @@ BOOL CALLBACK HotkeysDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPar - SetCheckBox (hwndDlg, IDC_HK_DISMOUNT_PLAY_SOUND, bPlaySoundOnSuccessfulHkDismount); - SetCheckBox (hwndDlg, IDC_HK_DISMOUNT_BALLOON_TOOLTIP, bDisplayBalloonOnSuccessfulHkDismount); + SetCheckBox (hwndDlg, IDC_HK_UNMOUNT_PLAY_SOUND, bPlaySoundOnSuccessfulHkDismount); + SetCheckBox (hwndDlg, IDC_HK_UNMOUNT_BALLOON_TOOLTIP, bDisplayBalloonOnSuccessfulHkDismount); @@ -563,10 +563,10 @@ BOOL CALLBACK HotkeysDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPar - if (lw == IDC_HK_DISMOUNT_PLAY_SOUND) + if (lw == IDC_HK_UNMOUNT_PLAY_SOUND) { - bTPlaySoundOnSuccessfulHkDismount = GetCheckBox (hwndDlg, IDC_HK_DISMOUNT_PLAY_SOUND); + bTPlaySoundOnSuccessfulHkDismount = GetCheckBox (hwndDlg, IDC_HK_UNMOUNT_PLAY_SOUND); } - if (lw == IDC_HK_DISMOUNT_BALLOON_TOOLTIP) + if (lw == IDC_HK_UNMOUNT_BALLOON_TOOLTIP) { - bTDisplayBalloonOnSuccessfulHkDismount = GetCheckBox (hwndDlg, IDC_HK_DISMOUNT_BALLOON_TOOLTIP); + bTDisplayBalloonOnSuccessfulHkDismount = GetCheckBox (hwndDlg, IDC_HK_UNMOUNT_BALLOON_TOOLTIP); } diff --git a/src/Mount/Hotkeys.h b/src/Mount/Hotkeys.h index 731f9549..ab90d6be 100644 --- a/src/Mount/Hotkeys.h +++ b/src/Mount/Hotkeys.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -26,6 +26,6 @@ enum HK_CLOSE_SECURITY_TOKEN_SESSIONS, - HK_DISMOUNT_ALL, - HK_DISMOUNT_ALL_AND_WIPE, - HK_FORCE_DISMOUNT_ALL_AND_WIPE, - HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT, + HK_UNMOUNT_ALL, + HK_UNMOUNT_ALL_AND_WIPE, + HK_FORCE_UNMOUNT_ALL_AND_WIPE, + HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT, HK_MOUNT_FAVORITE_VOLUMES, diff --git a/src/Mount/MainCom.cpp b/src/Mount/MainCom.cpp index ce6803ac..5ccbf3e1 100644 --- a/src/Mount/MainCom.cpp +++ b/src/Mount/MainCom.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Mount/MainCom.h b/src/Mount/MainCom.h index aeafa549..419d6beb 100644 --- a/src/Mount/MainCom.h +++ b/src/Mount/MainCom.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Mount/Mount.c b/src/Mount/Mount.c index 09f43b88..f6d1bc86 100644 --- a/src/Mount/Mount.c +++ b/src/Mount/Mount.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -1060,12 +1060,12 @@ void LoadSettingsAndCheckModified (HWND hwndDlg, BOOL bOnlyCheckModified, BOOL* ConfigReadCompareInt ("HotkeyCodeAutoMountDevices", 0, (int*) &Hotkeys [HK_AUTOMOUNT_DEVICES].vKeyCode, bOnlyCheckModified, pbSettingsModified); - ConfigReadCompareInt ("HotkeyModDismountAll", 0, (int*) &Hotkeys [HK_DISMOUNT_ALL].vKeyModifiers, bOnlyCheckModified, pbSettingsModified); - ConfigReadCompareInt ("HotkeyCodeDismountAll", 0, (int*) &Hotkeys [HK_DISMOUNT_ALL].vKeyCode, bOnlyCheckModified, pbSettingsModified); + ConfigReadCompareInt ("HotkeyModDismountAll", 0, (int*) &Hotkeys [HK_UNMOUNT_ALL].vKeyModifiers, bOnlyCheckModified, pbSettingsModified); + ConfigReadCompareInt ("HotkeyCodeDismountAll", 0, (int*) &Hotkeys [HK_UNMOUNT_ALL].vKeyCode, bOnlyCheckModified, pbSettingsModified); ConfigReadCompareInt ("HotkeyModWipeCache", 0, (int*) &Hotkeys [HK_WIPE_CACHE].vKeyModifiers, bOnlyCheckModified, pbSettingsModified); ConfigReadCompareInt ("HotkeyCodeWipeCache", 0, (int*) &Hotkeys [HK_WIPE_CACHE].vKeyCode, bOnlyCheckModified, pbSettingsModified); - ConfigReadCompareInt ("HotkeyModDismountAllWipe", 0, (int*) &Hotkeys [HK_DISMOUNT_ALL_AND_WIPE].vKeyModifiers, bOnlyCheckModified, pbSettingsModified); - ConfigReadCompareInt ("HotkeyCodeDismountAllWipe", 0, (int*) &Hotkeys [HK_DISMOUNT_ALL_AND_WIPE].vKeyCode, bOnlyCheckModified, pbSettingsModified); - ConfigReadCompareInt ("HotkeyModForceDismountAllWipe", 0, (int*) &Hotkeys [HK_FORCE_DISMOUNT_ALL_AND_WIPE].vKeyModifiers, bOnlyCheckModified, pbSettingsModified); - ConfigReadCompareInt ("HotkeyCodeForceDismountAllWipe", 0, (int*) &Hotkeys [HK_FORCE_DISMOUNT_ALL_AND_WIPE].vKeyCode, bOnlyCheckModified, pbSettingsModified); - ConfigReadCompareInt ("HotkeyModForceDismountAllWipeExit", 0, (int*) &Hotkeys [HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT].vKeyModifiers, bOnlyCheckModified, pbSettingsModified); - ConfigReadCompareInt ("HotkeyCodeForceDismountAllWipeExit", 0, (int*) &Hotkeys [HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT].vKeyCode, bOnlyCheckModified, pbSettingsModified); + ConfigReadCompareInt ("HotkeyModDismountAllWipe", 0, (int*) &Hotkeys [HK_UNMOUNT_ALL_AND_WIPE].vKeyModifiers, bOnlyCheckModified, pbSettingsModified); + ConfigReadCompareInt ("HotkeyCodeDismountAllWipe", 0, (int*) &Hotkeys [HK_UNMOUNT_ALL_AND_WIPE].vKeyCode, bOnlyCheckModified, pbSettingsModified); + ConfigReadCompareInt ("HotkeyModForceDismountAllWipe", 0, (int*) &Hotkeys [HK_FORCE_UNMOUNT_ALL_AND_WIPE].vKeyModifiers, bOnlyCheckModified, pbSettingsModified); + ConfigReadCompareInt ("HotkeyCodeForceDismountAllWipe", 0, (int*) &Hotkeys [HK_FORCE_UNMOUNT_ALL_AND_WIPE].vKeyCode, bOnlyCheckModified, pbSettingsModified); + ConfigReadCompareInt ("HotkeyModForceDismountAllWipeExit", 0, (int*) &Hotkeys [HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT].vKeyModifiers, bOnlyCheckModified, pbSettingsModified); + ConfigReadCompareInt ("HotkeyCodeForceDismountAllWipeExit", 0, (int*) &Hotkeys [HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT].vKeyCode, bOnlyCheckModified, pbSettingsModified); ConfigReadCompareInt ("HotkeyModMountFavoriteVolumes", 0, (int*) &Hotkeys [HK_MOUNT_FAVORITE_VOLUMES].vKeyModifiers, bOnlyCheckModified, pbSettingsModified); @@ -1195,12 +1195,12 @@ void SaveSettings (HWND hwndDlg) ConfigWriteInt ("HotkeyCodeAutoMountDevices", Hotkeys[HK_AUTOMOUNT_DEVICES].vKeyCode); - ConfigWriteInt ("HotkeyModDismountAll", Hotkeys[HK_DISMOUNT_ALL].vKeyModifiers); - ConfigWriteInt ("HotkeyCodeDismountAll", Hotkeys[HK_DISMOUNT_ALL].vKeyCode); + ConfigWriteInt ("HotkeyModDismountAll", Hotkeys[HK_UNMOUNT_ALL].vKeyModifiers); + ConfigWriteInt ("HotkeyCodeDismountAll", Hotkeys[HK_UNMOUNT_ALL].vKeyCode); ConfigWriteInt ("HotkeyModWipeCache", Hotkeys[HK_WIPE_CACHE].vKeyModifiers); ConfigWriteInt ("HotkeyCodeWipeCache", Hotkeys[HK_WIPE_CACHE].vKeyCode); - ConfigWriteInt ("HotkeyModDismountAllWipe", Hotkeys[HK_DISMOUNT_ALL_AND_WIPE].vKeyModifiers); - ConfigWriteInt ("HotkeyCodeDismountAllWipe", Hotkeys[HK_DISMOUNT_ALL_AND_WIPE].vKeyCode); - ConfigWriteInt ("HotkeyModForceDismountAllWipe", Hotkeys[HK_FORCE_DISMOUNT_ALL_AND_WIPE].vKeyModifiers); - ConfigWriteInt ("HotkeyCodeForceDismountAllWipe", Hotkeys[HK_FORCE_DISMOUNT_ALL_AND_WIPE].vKeyCode); - ConfigWriteInt ("HotkeyModForceDismountAllWipeExit", Hotkeys[HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT].vKeyModifiers); - ConfigWriteInt ("HotkeyCodeForceDismountAllWipeExit", Hotkeys[HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT].vKeyCode); + ConfigWriteInt ("HotkeyModDismountAllWipe", Hotkeys[HK_UNMOUNT_ALL_AND_WIPE].vKeyModifiers); + ConfigWriteInt ("HotkeyCodeDismountAllWipe", Hotkeys[HK_UNMOUNT_ALL_AND_WIPE].vKeyCode); + ConfigWriteInt ("HotkeyModForceDismountAllWipe", Hotkeys[HK_FORCE_UNMOUNT_ALL_AND_WIPE].vKeyModifiers); + ConfigWriteInt ("HotkeyCodeForceDismountAllWipe", Hotkeys[HK_FORCE_UNMOUNT_ALL_AND_WIPE].vKeyCode); + ConfigWriteInt ("HotkeyModForceDismountAllWipeExit", Hotkeys[HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT].vKeyModifiers); + ConfigWriteInt ("HotkeyCodeForceDismountAllWipeExit", Hotkeys[HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT].vKeyCode); ConfigWriteInt ("HotkeyModMountFavoriteVolumes", Hotkeys[HK_MOUNT_FAVORITE_VOLUMES].vKeyModifiers); @@ -3390,3 +3390,3 @@ static void PreferencesDlgEnableButtons (HWND hwndDlg) BOOL back = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_BKG_TASK_ENABLE)); - BOOL idle = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_INACTIVE)); + BOOL idle = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_INACTIVE)); BOOL installed = !IsNonInstallMode(); @@ -3398,12 +3398,12 @@ static void PreferencesDlgEnableButtons (HWND hwndDlg) EnableWindow (GetDlgItem (hwndDlg, IDC_PREF_LOGON_MOUNT_DEVICES), installed); - EnableWindow (GetDlgItem (hwndDlg, IDT_AUTO_DISMOUNT), back); - EnableWindow (GetDlgItem (hwndDlg, IDT_AUTO_DISMOUNT_ON), back); + EnableWindow (GetDlgItem (hwndDlg, IDT_AUTO_UNMOUNT), back); + EnableWindow (GetDlgItem (hwndDlg, IDT_AUTO_UNMOUNT_ON), back); EnableWindow (GetDlgItem (hwndDlg, IDT_MINUTES), back); - EnableWindow (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_LOGOFF), back); - EnableWindow (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_SESSION_LOCKED), back && wtsEnabled); - EnableWindow (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_POWERSAVING), back); - EnableWindow (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_SCREENSAVER), back); - EnableWindow (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_INACTIVE), back); - EnableWindow (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_INACTIVE_TIME), back && idle); - EnableWindow (GetDlgItem (hwndDlg, IDC_PREF_FORCE_AUTO_DISMOUNT), back); + EnableWindow (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_LOGOFF), back); + EnableWindow (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_SESSION_LOCKED), back && wtsEnabled); + EnableWindow (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_POWERSAVING), back); + EnableWindow (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_SCREENSAVER), back); + EnableWindow (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_INACTIVE), back); + EnableWindow (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_INACTIVE_TIME), back && idle); + EnableWindow (GetDlgItem (hwndDlg, IDC_PREF_FORCE_AUTO_UNMOUNT), back); } @@ -3461,3 +3461,3 @@ BOOL CALLBACK PreferencesDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM - SendMessage (GetDlgItem (hwndDlg, IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT), BM_SETCHECK, + SendMessage (GetDlgItem (hwndDlg, IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT), BM_SETCHECK, bWipeCacheOnAutoDismount ? BST_CHECKED:BST_UNCHECKED, 0); @@ -3488,21 +3488,21 @@ BOOL CALLBACK PreferencesDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM - SendMessage (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_LOGOFF), BM_SETCHECK, + SendMessage (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_LOGOFF), BM_SETCHECK, bDismountOnLogOff ? BST_CHECKED:BST_UNCHECKED, 0); - SendMessage (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_SESSION_LOCKED), BM_SETCHECK, + SendMessage (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_SESSION_LOCKED), BM_SETCHECK, bDismountOnSessionLocked ? BST_CHECKED:BST_UNCHECKED, 0); - SendMessage (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_POWERSAVING), BM_SETCHECK, + SendMessage (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_POWERSAVING), BM_SETCHECK, bDismountOnPowerSaving ? BST_CHECKED:BST_UNCHECKED, 0); - SendMessage (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_SCREENSAVER), BM_SETCHECK, + SendMessage (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_SCREENSAVER), BM_SETCHECK, bDismountOnScreenSaver ? BST_CHECKED:BST_UNCHECKED, 0); - SendMessage (GetDlgItem (hwndDlg, IDC_PREF_FORCE_AUTO_DISMOUNT), BM_SETCHECK, + SendMessage (GetDlgItem (hwndDlg, IDC_PREF_FORCE_AUTO_UNMOUNT), BM_SETCHECK, bForceAutoDismount ? BST_CHECKED:BST_UNCHECKED, 0); - SendMessage (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_INACTIVE), BM_SETCHECK, + SendMessage (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_INACTIVE), BM_SETCHECK, MaxVolumeIdleTime > 0 ? BST_CHECKED:BST_UNCHECKED, 0); - SetDlgItemInt (hwndDlg, IDC_PREF_DISMOUNT_INACTIVE_TIME, abs (MaxVolumeIdleTime), FALSE); + SetDlgItemInt (hwndDlg, IDC_PREF_UNMOUNT_INACTIVE_TIME, abs (MaxVolumeIdleTime), FALSE); @@ -3521,15 +3521,15 @@ BOOL CALLBACK PreferencesDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM // Forced dismount disabled warning - if (lw == IDC_PREF_DISMOUNT_INACTIVE - || lw == IDC_PREF_DISMOUNT_LOGOFF - || lw == IDC_PREF_DISMOUNT_SESSION_LOCKED - || lw == IDC_PREF_DISMOUNT_POWERSAVING - || lw == IDC_PREF_DISMOUNT_SCREENSAVER - || lw == IDC_PREF_FORCE_AUTO_DISMOUNT) - { - BOOL i = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_INACTIVE)); - BOOL l = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_LOGOFF)); - BOOL sl = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_SESSION_LOCKED)); - BOOL p = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_POWERSAVING)); - BOOL s = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_SCREENSAVER)); - BOOL q = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_FORCE_AUTO_DISMOUNT)); + if (lw == IDC_PREF_UNMOUNT_INACTIVE + || lw == IDC_PREF_UNMOUNT_LOGOFF + || lw == IDC_PREF_UNMOUNT_SESSION_LOCKED + || lw == IDC_PREF_UNMOUNT_POWERSAVING + || lw == IDC_PREF_UNMOUNT_SCREENSAVER + || lw == IDC_PREF_FORCE_AUTO_UNMOUNT) + { + BOOL i = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_INACTIVE)); + BOOL l = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_LOGOFF)); + BOOL sl = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_SESSION_LOCKED)); + BOOL p = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_POWERSAVING)); + BOOL s = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_SCREENSAVER)); + BOOL q = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_FORCE_AUTO_UNMOUNT)); @@ -3537,17 +3537,17 @@ BOOL CALLBACK PreferencesDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM { - if (lw == IDC_PREF_FORCE_AUTO_DISMOUNT && (i || l || sl || p || s)) + if (lw == IDC_PREF_FORCE_AUTO_UNMOUNT && (i || l || sl || p || s)) { - if (AskWarnNoYes ("CONFIRM_NO_FORCED_AUTODISMOUNT", hwndDlg) == IDNO) - SetCheckBox (hwndDlg, IDC_PREF_FORCE_AUTO_DISMOUNT, TRUE); + if (AskWarnNoYes ("CONFIRM_NO_FORCED_AUTOUNMOUNT", hwndDlg) == IDNO) + SetCheckBox (hwndDlg, IDC_PREF_FORCE_AUTO_UNMOUNT, TRUE); } - else if ((lw == IDC_PREF_DISMOUNT_INACTIVE && i - || lw == IDC_PREF_DISMOUNT_LOGOFF && l - || lw == IDC_PREF_DISMOUNT_SESSION_LOCKED && sl - || lw == IDC_PREF_DISMOUNT_POWERSAVING && p - || lw == IDC_PREF_DISMOUNT_SCREENSAVER && s)) - Warning ("WARN_PREF_AUTO_DISMOUNT", hwndDlg); + else if ((lw == IDC_PREF_UNMOUNT_INACTIVE && i + || lw == IDC_PREF_UNMOUNT_LOGOFF && l + || lw == IDC_PREF_UNMOUNT_SESSION_LOCKED && sl + || lw == IDC_PREF_UNMOUNT_POWERSAVING && p + || lw == IDC_PREF_UNMOUNT_SCREENSAVER && s)) + Warning ("WARN_PREF_AUTO_UNMOUNT", hwndDlg); } - if (p && lw == IDC_PREF_DISMOUNT_POWERSAVING) - Warning ("WARN_PREF_AUTO_DISMOUNT_ON_POWER", hwndDlg); + if (p && lw == IDC_PREF_UNMOUNT_POWERSAVING) + Warning ("WARN_PREF_AUTO_UNMOUNT_ON_POWER", hwndDlg); } @@ -3574,3 +3574,3 @@ BOOL CALLBACK PreferencesDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM bWipeCacheOnExit = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_WIPE_CACHE_ON_EXIT)); - bWipeCacheOnAutoDismount = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT)); + bWipeCacheOnAutoDismount = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT)); bCacheInDriverDefault = bCacheInDriver = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_CACHE_PASSWORDS)); @@ -3581,9 +3581,9 @@ BOOL CALLBACK PreferencesDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM bCloseBkgTaskWhenNoVolumes = IsNonInstallMode() ? bCloseBkgTaskWhenNoVolumes : IsButtonChecked (GetDlgItem (hwndDlg, IDC_CLOSE_BKG_TASK_WHEN_NOVOL)); - bDismountOnLogOff = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_LOGOFF)); - bDismountOnSessionLocked = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_SESSION_LOCKED)); - bDismountOnPowerSaving = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_POWERSAVING)); - bDismountOnScreenSaver = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_SCREENSAVER)); - bForceAutoDismount = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_FORCE_AUTO_DISMOUNT)); - MaxVolumeIdleTime = GetDlgItemInt (hwndDlg, IDC_PREF_DISMOUNT_INACTIVE_TIME, NULL, FALSE) - * (IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_DISMOUNT_INACTIVE)) ? 1 : -1); + bDismountOnLogOff = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_LOGOFF)); + bDismountOnSessionLocked = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_SESSION_LOCKED)); + bDismountOnPowerSaving = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_POWERSAVING)); + bDismountOnScreenSaver = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_SCREENSAVER)); + bForceAutoDismount = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_FORCE_AUTO_UNMOUNT)); + MaxVolumeIdleTime = GetDlgItemInt (hwndDlg, IDC_PREF_UNMOUNT_INACTIVE_TIME, NULL, FALSE) + * (IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_UNMOUNT_INACTIVE)) ? 1 : -1); bStartOnLogon = IsButtonChecked (GetDlgItem (hwndDlg, IDC_PREF_LOGON_START)); @@ -4992,3 +4992,3 @@ BOOL CALLBACK TravelerDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPa fwprintf (af, L"shell\\start=%s\nshell\\start\\command=VeraCrypt\\VeraCrypt.exe\n", GetString ("IDC_PREF_LOGON_START")); - fwprintf (af, L"shell\\dismount=%s\nshell\\dismount\\command=VeraCrypt\\VeraCrypt.exe /q /d\n", GetString ("DISMOUNT_ALL_TC_VOLUMES")); + fwprintf (af, L"shell\\unmount=%s\nshell\\unmount\\command=VeraCrypt\\VeraCrypt.exe /q /u\n", GetString ("UNMOUNT_ALL_TC_VOLUMES")); @@ -5437,3 +5437,3 @@ void CALLBACK DismountAllThreadProc(void* pArg, HWND hwndDlg) { - *pbResult = DeviceIoControl (hDriver, TC_IOCTL_DISMOUNT_ALL_VOLUMES, punmount, + *pbResult = DeviceIoControl (hDriver, TC_IOCTL_UNMOUNT_ALL_VOLUMES, punmount, sizeof (UNMOUNT_STRUCT), punmount, sizeof (UNMOUNT_STRUCT), pdwResult, NULL); @@ -6869,3 +6869,3 @@ void DisplayDriveListContextMenu (HWND hwndDlg, LPARAM lParam) - AppendMenuW (popup, MF_STRING, IDM_UNMOUNT_VOLUME, GetString ("DISMOUNT")); + AppendMenuW (popup, MF_STRING, IDM_UNMOUNT_VOLUME, GetString ("UNMOUNT")); AppendMenuW (popup, MF_STRING, IDPM_OPEN_VOLUME, GetString ("OPEN")); @@ -7872,3 +7872,3 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa StringCbPrintfW (s, sizeof(s), L"%s %c: (%s)", - GetString (n==0 ? "OPEN" : "DISMOUNT"), + GetString (n==0 ? "OPEN" : "UNMOUNT"), i + L'A', @@ -7912,5 +7912,5 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa wchar_t txt [2048]; - StringCbPrintfW (txt, sizeof(txt), GetString ("VOLUME_MOUNTED_AS_DRIVE_LETTER_X_DISMOUNTED"), sel - TRAYICON_MENU_DRIVE_OFFSET - 26 + L'A'); + StringCbPrintfW (txt, sizeof(txt), GetString ("VOLUME_MOUNTED_AS_DRIVE_LETTER_X_UNMOUNTED"), sel - TRAYICON_MENU_DRIVE_OFFSET - 26 + L'A'); - InfoBalloonDirect (GetString ("SUCCESSFULLY_DISMOUNTED"), txt, hwndDlg); + InfoBalloonDirect (GetString ("SUCCESSFULLY_UNMOUNTED"), txt, hwndDlg); } @@ -8001,3 +8001,3 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa UnmountVolume (hwndDlg, m, TRUE); - WarningBalloon ("HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE", "HOST_DEVICE_REMOVAL_DISMOUNT_WARN", hwndDlg); + WarningBalloon ("HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE", "HOST_DEVICE_REMOVAL_UNMOUNT_WARN", hwndDlg); } @@ -8026,3 +8026,3 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa UnmountVolume (hwndDlg, m, TRUE); - WarningBalloon ("HOST_DEVICE_REMOVAL_DISMOUNT_WARN_TITLE", "HOST_DEVICE_REMOVAL_DISMOUNT_WARN", hwndDlg); + WarningBalloon ("HOST_DEVICE_REMOVAL_UNMOUNT_WARN_TITLE", "HOST_DEVICE_REMOVAL_UNMOUNT_WARN", hwndDlg); } @@ -8215,3 +8215,3 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa { - InfoBalloon ("SUCCESSFULLY_DISMOUNTED", "MOUNTED_VOLUMES_DISMOUNTED", hwndDlg); + InfoBalloon ("SUCCESSFULLY_UNMOUNTED", "MOUNTED_VOLUMES_UNMOUNTED", hwndDlg); } @@ -9172,2 +9172,3 @@ void ExtractCommandLine (HWND hwndDlg, wchar_t *lpszCommandLine) OptionSignalExit, + CommandUnmount, }; @@ -9202,2 +9203,3 @@ void ExtractCommandLine (HWND hwndDlg, wchar_t *lpszCommandLine) { OptionSignalExit, L"/signalExit", NULL, FALSE }, + { CommandUnmount, L"/unmount", L"/u", FALSE }, }; @@ -9345,2 +9347,3 @@ void ExtractCommandLine (HWND hwndDlg, wchar_t *lpszCommandLine) case CommandDismount: + case CommandUnmount: @@ -10134,3 +10137,7 @@ int WINAPI wWinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, wchar_t *lpsz - DetectX86Features (); +#ifndef _M_ARM64 + DetectX86Features(); +#else + DetectArmFeatures(); +#endif @@ -10478,3 +10485,3 @@ skipMount: - SystemFavoritesServiceLogError (wstring (L"The filesystem of the volume mounted as ") + (wchar_t) (drive + L'A') + L": was not cleanly dismounted and needs to be checked for errors."); + SystemFavoritesServiceLogError (wstring (L"The filesystem of the volume mounted as ") + (wchar_t) (drive + L'A') + L": was not cleanly unmounted and needs to be checked for errors."); } @@ -10757,6 +10764,6 @@ static void HandleHotKey (HWND hwndDlg, WPARAM wParam) - case HK_DISMOUNT_ALL: - case HK_DISMOUNT_ALL_AND_WIPE: + case HK_UNMOUNT_ALL: + case HK_UNMOUNT_ALL_AND_WIPE: - if (wParam == HK_DISMOUNT_ALL_AND_WIPE) + if (wParam == HK_UNMOUNT_ALL_AND_WIPE) WipeCache (hwndDlg, TRUE); @@ -10766,3 +10773,3 @@ static void HandleHotKey (HWND hwndDlg, WPARAM wParam) if (bDisplayBalloonOnSuccessfulHkDismount) - InfoBalloon ("SUCCESSFULLY_DISMOUNTED", (wParam == HK_DISMOUNT_ALL_AND_WIPE ? "VOLUMES_DISMOUNTED_CACHE_WIPED" : "MOUNTED_VOLUMES_DISMOUNTED"), hwndDlg); + InfoBalloon ("SUCCESSFULLY_UNMOUNTED", (wParam == HK_UNMOUNT_ALL_AND_WIPE ? "VOLUMES_UNMOUNTED_CACHE_WIPED" : "MOUNTED_VOLUMES_UNMOUNTED"), hwndDlg); @@ -10779,3 +10786,3 @@ static void HandleHotKey (HWND hwndDlg, WPARAM wParam) - case HK_FORCE_DISMOUNT_ALL_AND_WIPE: + case HK_FORCE_UNMOUNT_ALL_AND_WIPE: success = DismountAll (hwndDlg, TRUE, FALSE, UNMOUNT_MAX_AUTO_RETRIES, UNMOUNT_AUTO_RETRY_DELAY); @@ -10785,3 +10792,3 @@ static void HandleHotKey (HWND hwndDlg, WPARAM wParam) if (bDisplayBalloonOnSuccessfulHkDismount) - InfoBalloon ("SUCCESSFULLY_DISMOUNTED", "VOLUMES_DISMOUNTED_CACHE_WIPED", hwndDlg); + InfoBalloon ("SUCCESSFULLY_UNMOUNTED", "VOLUMES_UNMOUNTED_CACHE_WIPED", hwndDlg); @@ -10792,3 +10799,3 @@ static void HandleHotKey (HWND hwndDlg, WPARAM wParam) - case HK_FORCE_DISMOUNT_ALL_AND_WIPE_AND_EXIT: + case HK_FORCE_UNMOUNT_ALL_AND_WIPE_AND_EXIT: success = DismountAll (hwndDlg, TRUE, FALSE, UNMOUNT_MAX_AUTO_RETRIES, UNMOUNT_AUTO_RETRY_DELAY); @@ -10798,3 +10805,3 @@ static void HandleHotKey (HWND hwndDlg, WPARAM wParam) if (bDisplayBalloonOnSuccessfulHkDismount) - InfoBalloon ("SUCCESSFULLY_DISMOUNTED", "VOLUMES_DISMOUNTED_CACHE_WIPED", hwndDlg); + InfoBalloon ("SUCCESSFULLY_UNMOUNTED", "VOLUMES_UNMOUNTED_CACHE_WIPED", hwndDlg); @@ -10893,3 +10900,3 @@ int BackupVolumeHeader (HWND hwndDlg, BOOL bRequireConfirmation, const wchar_t * { - Warning ("DISMOUNT_FIRST", hwndDlg); + Warning ("UNMOUNT_FIRST", hwndDlg); goto ret; @@ -11163,3 +11170,3 @@ int RestoreVolumeHeader (HWND hwndDlg, const wchar_t *lpszVolume) { - Warning ("DISMOUNT_FIRST", hwndDlg); + Warning ("UNMOUNT_FIRST", hwndDlg); return 0; diff --git a/src/Mount/Mount.h b/src/Mount/Mount.h index cd2636b1..c3dab0ed 100644 --- a/src/Mount/Mount.h +++ b/src/Mount/Mount.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Mount/Mount.rc b/src/Mount/Mount.rc index 19b3bbe9..0370f3ae 100644 --- a/src/Mount/Mount.rc +++ b/src/Mount/Mount.rc @@ -59,13 +59,13 @@ BEGIN "Button",BS_AUTOCHECKBOX | WS_TABSTOP,140,75,188,10 - CONTROL "User logs off",IDC_PREF_DISMOUNT_LOGOFF,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,81,104,114,11 - CONTROL "User session locked",IDC_PREF_DISMOUNT_SESSION_LOCKED, + CONTROL "User logs off",IDC_PREF_UNMOUNT_LOGOFF,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,81,104,114,11 + CONTROL "User session locked",IDC_PREF_UNMOUNT_SESSION_LOCKED, "Button",BS_AUTOCHECKBOX | WS_TABSTOP,197,105,130,11 - CONTROL "Screen saver is launched",IDC_PREF_DISMOUNT_SCREENSAVER, + CONTROL "Screen saver is launched",IDC_PREF_UNMOUNT_SCREENSAVER, "Button",BS_AUTOCHECKBOX | WS_TABSTOP,81,116,114,10 - CONTROL "Entering power saving mode",IDC_PREF_DISMOUNT_POWERSAVING, + CONTROL "Entering power saving mode",IDC_PREF_UNMOUNT_POWERSAVING, "Button",BS_AUTOCHECKBOX | WS_TABSTOP,197,115,130,11 - CONTROL "Auto-dismount volume after no data has been read/written to it for",IDC_PREF_DISMOUNT_INACTIVE, + CONTROL "Auto-unmount volume after no data has been read/written to it for",IDC_PREF_UNMOUNT_INACTIVE, "Button",BS_AUTOCHECKBOX | WS_TABSTOP,11,128,246,11 - EDITTEXT IDC_PREF_DISMOUNT_INACTIVE_TIME,258,127,27,12,ES_AUTOHSCROLL | ES_NUMBER,WS_EX_RIGHT - CONTROL "Force auto-dismount even if volume contains open files or directories",IDC_PREF_FORCE_AUTO_DISMOUNT, + EDITTEXT IDC_PREF_UNMOUNT_INACTIVE_TIME,258,127,27,12,ES_AUTOHSCROLL | ES_NUMBER,WS_EX_RIGHT + CONTROL "Force auto-unmount even if volume contains open files or directories",IDC_PREF_FORCE_AUTO_UNMOUNT, "Button",BS_AUTOCHECKBOX | WS_TABSTOP,11,141,294,10 @@ -85,3 +85,3 @@ BEGIN "Button",BS_AUTOCHECKBOX | WS_TABSTOP,11,285,294,11 - CONTROL "Wipe cached passwords on auto-dismount",IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT, + CONTROL "Wipe cached passwords on auto-unmount",IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT, "Button",BS_AUTOCHECKBOX | WS_TABSTOP,11,299,296,11 @@ -95,5 +95,5 @@ BEGIN GROUPBOX "VeraCrypt Background Task",IDT_TASKBAR_ICON,4,33,328,26 - GROUPBOX "Auto-Dismount",IDT_AUTO_DISMOUNT,4,94,328,62 + GROUPBOX "Auto-Unmount",IDT_AUTO_UNMOUNT,4,94,328,62 LTEXT "minutes",IDT_MINUTES,289,129,39,10 - LTEXT "Dismount all when:",IDT_AUTO_DISMOUNT_ON,9,104,71,20 + LTEXT "Unmount all when:",IDT_AUTO_UNMOUNT_ON,9,104,71,20 GROUPBOX "Password Cache",IDT_PW_CACHE_OPTIONS,4,260,328,68 @@ -258,5 +258,5 @@ BEGIN PUSHBUTTON "Remove",IDC_HOTKEY_REMOVE,304,158,59,14 - CONTROL "Play system notification sound after successful hot-key dismount",IDC_HK_DISMOUNT_PLAY_SOUND, + CONTROL "Play system notification sound after successful hot-key unmount",IDC_HK_UNMOUNT_PLAY_SOUND, "Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,201,348,10 - CONTROL "Display balloon tooltip after successful hot-key dismount",IDC_HK_DISMOUNT_BALLOON_TOOLTIP, + CONTROL "Display balloon tooltip after successful hot-key unmount",IDC_HK_UNMOUNT_BALLOON_TOOLTIP, "Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,213,351,10,WS_EX_TRANSPARENT @@ -266,3 +266,3 @@ BEGIN RTEXT "Key to assign:",IDT_HOTKEY_KEY,15,142,86,8 - GROUPBOX "Hot Key Options",IDT_DISMOUNT_ACTION,7,188,375,42 + GROUPBOX "Hot Key Options",IDT_UNMOUNT_ACTION,7,188,375,42 GROUPBOX "Shortcut",IDT_ASSIGN_HOTKEY,7,127,375,53 @@ -562,4 +562,4 @@ END VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,26,17,2 - PRODUCTVERSION 1,26,17,2 + FILEVERSION 1,26,19,0 + PRODUCTVERSION 1,26,19,0 FILEFLAGSMASK 0x17L @@ -580,3 +580,3 @@ BEGIN VALUE "FileDescription", "VeraCrypt" - VALUE "FileVersion", "1.26.17" + VALUE "FileVersion", "1.26.20" VALUE "LegalTrademarks", "VeraCrypt" @@ -584,3 +584,3 @@ BEGIN VALUE "ProductName", "VeraCrypt" - VALUE "ProductVersion", "1.26.17" + VALUE "ProductVersion", "1.26.20" END @@ -653,4 +653,4 @@ BEGIN MENUITEM SEPARATOR - MENUITEM "Dismount Volume", IDM_UNMOUNT_VOLUME - MENUITEM "Dismount All Mounted Volumes", IDM_UNMOUNTALL + MENUITEM "Unmount Volume", IDM_UNMOUNT_VOLUME + MENUITEM "Unmount All Mounted Volumes", IDM_UNMOUNTALL MENUITEM SEPARATOR diff --git a/src/Mount/Resource.h b/src/Mount/Resource.h index fef9da49..860d4f99 100644 --- a/src/Mount/Resource.h +++ b/src/Mount/Resource.h @@ -41,5 +41,5 @@ #define IDC_DIRECTORY 1017 -#define IDC_PREF_DISMOUNT_LOGOFF 1018 +#define IDC_PREF_UNMOUNT_LOGOFF 1018 #define IDC_BROWSE_DIRS 1019 -#define IDC_PREF_DISMOUNT_INACTIVE 1020 +#define IDC_PREF_UNMOUNT_INACTIVE 1020 #define IDC_AUTORUN_DISABLE 1021 @@ -89,10 +89,10 @@ #define IDT_TASKBAR_ICON 1066 -#define IDT_AUTO_DISMOUNT 1067 -#define IDC_PREF_FORCE_AUTO_DISMOUNT 1068 -#define IDC_PREF_DISMOUNT_INACTIVE_TIME 1069 +#define IDT_AUTO_UNMOUNT 1067 +#define IDC_PREF_FORCE_AUTO_UNMOUNT 1068 +#define IDC_PREF_UNMOUNT_INACTIVE_TIME 1069 #define IDT_MINUTES 1070 -#define IDC_PREF_DISMOUNT_SCREENSAVER 1071 -#define IDC_PREF_DISMOUNT_POWERSAVING 1072 -#define IDT_AUTO_DISMOUNT_ON 1073 -#define IDC_PREF_WIPE_CACHE_ON_AUTODISMOUNT 1074 +#define IDC_PREF_UNMOUNT_SCREENSAVER 1071 +#define IDC_PREF_UNMOUNT_POWERSAVING 1072 +#define IDT_AUTO_UNMOUNT_ON 1073 +#define IDC_PREF_WIPE_CACHE_ON_AUTOUNMOUNT 1074 #define IDC_CLOSE_BKG_TASK_WHEN_NOVOL 1075 @@ -104,5 +104,5 @@ #define IDC_SHOW_PASSWORD_CHPWD_NEW 1081 -#define IDC_HK_DISMOUNT_BALLOON_TOOLTIP 1082 +#define IDC_HK_UNMOUNT_BALLOON_TOOLTIP 1082 #define IDC_SHOW_PASSWORD_CHPWD_ORI 1083 -#define IDC_HK_DISMOUNT_PLAY_SOUND 1084 +#define IDC_HK_UNMOUNT_PLAY_SOUND 1084 #define IDC_HOTKEY_ASSIGN 1085 @@ -113,3 +113,3 @@ #define IDC_RESET_HOTKEYS 1090 -#define IDT_DISMOUNT_ACTION 1091 +#define IDT_UNMOUNT_ACTION 1091 #define IDT_ASSIGN_HOTKEY 1092 @@ -159,3 +159,3 @@ #define IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX 1136 -#define IDC_PREF_DISMOUNT_SESSION_LOCKED 1137 +#define IDC_PREF_UNMOUNT_SESSION_LOCKED 1137 #define IDT_NEW_PKCS5_PRF 1138 @@ -1,2 +1,2 @@ -Copyright 2013-2024 IDRIX +Copyright 2013-2025 IDRIX diff --git a/src/Platform/Buffer.cpp b/src/Platform/Buffer.cpp index 5829b1d9..412f06a5 100644 --- a/src/Platform/Buffer.cpp +++ b/src/Platform/Buffer.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Buffer.h b/src/Platform/Buffer.h index a1eb0918..53215bf5 100644 --- a/src/Platform/Buffer.h +++ b/src/Platform/Buffer.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Directory.h b/src/Platform/Directory.h index b960db0e..28eae166 100644 --- a/src/Platform/Directory.h +++ b/src/Platform/Directory.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Event.cpp b/src/Platform/Event.cpp index 86dcdde1..d60b6f4a 100644 --- a/src/Platform/Event.cpp +++ b/src/Platform/Event.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Event.h b/src/Platform/Event.h index 7d1cc2e4..e440a604 100644 --- a/src/Platform/Event.h +++ b/src/Platform/Event.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Exception.cpp b/src/Platform/Exception.cpp index 7bce461f..b6358683 100644 --- a/src/Platform/Exception.cpp +++ b/src/Platform/Exception.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Exception.h b/src/Platform/Exception.h index 36981a74..a768bfda 100644 --- a/src/Platform/Exception.h +++ b/src/Platform/Exception.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -98,3 +98,5 @@ namespace VeraCrypt TC_EXCEPTION (UnknownException); \ - TC_EXCEPTION (UserAbort) + TC_EXCEPTION (UserAbort); \ + TC_EXCEPTION (MountPointBlocked); \ + TC_EXCEPTION (MountPointNotAllowed) diff --git a/src/Platform/File.h b/src/Platform/File.h index a8befe38..28e5f6c9 100644 --- a/src/Platform/File.h +++ b/src/Platform/File.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/FileCommon.cpp b/src/Platform/FileCommon.cpp index 11d23dd2..5f493259 100644 --- a/src/Platform/FileCommon.cpp +++ b/src/Platform/FileCommon.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/FileStream.h b/src/Platform/FileStream.h index 66df1999..7b1dd212 100644 --- a/src/Platform/FileStream.h +++ b/src/Platform/FileStream.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/FilesystemPath.h b/src/Platform/FilesystemPath.h index c92f684e..f4ffadd8 100644 --- a/src/Platform/FilesystemPath.h +++ b/src/Platform/FilesystemPath.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Finally.h b/src/Platform/Finally.h index 63f07109..54c9f27b 100644 --- a/src/Platform/Finally.h +++ b/src/Platform/Finally.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/ForEach.h b/src/Platform/ForEach.h index a6131ebb..1f29e196 100644 --- a/src/Platform/ForEach.h +++ b/src/Platform/ForEach.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Functor.h b/src/Platform/Functor.h index e23e12dd..b88af814 100644 --- a/src/Platform/Functor.h +++ b/src/Platform/Functor.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Memory.cpp b/src/Platform/Memory.cpp index c4afed64..05758c14 100644 --- a/src/Platform/Memory.cpp +++ b/src/Platform/Memory.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Memory.h b/src/Platform/Memory.h index b124022f..441b1da6 100644 --- a/src/Platform/Memory.h +++ b/src/Platform/Memory.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/MemoryStream.cpp b/src/Platform/MemoryStream.cpp index 1bd090b9..f750606f 100644 --- a/src/Platform/MemoryStream.cpp +++ b/src/Platform/MemoryStream.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/MemoryStream.h b/src/Platform/MemoryStream.h index 068e6d6e..a20b12e0 100644 --- a/src/Platform/MemoryStream.h +++ b/src/Platform/MemoryStream.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Mutex.h b/src/Platform/Mutex.h index 83082825..fc58b8cd 100644 --- a/src/Platform/Mutex.h +++ b/src/Platform/Mutex.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Platform.h b/src/Platform/Platform.h index 6f7f791e..72ee9541 100644 --- a/src/Platform/Platform.h +++ b/src/Platform/Platform.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/PlatformBase.h b/src/Platform/PlatformBase.h index e378704c..10f0bb21 100644 --- a/src/Platform/PlatformBase.h +++ b/src/Platform/PlatformBase.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/PlatformTest.cpp b/src/Platform/PlatformTest.cpp index 9a3faae2..df7f447b 100644 --- a/src/Platform/PlatformTest.cpp +++ b/src/Platform/PlatformTest.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/PlatformTest.h b/src/Platform/PlatformTest.h index 64810f85..c17bad7c 100644 --- a/src/Platform/PlatformTest.h +++ b/src/Platform/PlatformTest.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Serializable.cpp b/src/Platform/Serializable.cpp index 4a307e92..ace4a819 100644 --- a/src/Platform/Serializable.cpp +++ b/src/Platform/Serializable.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Serializable.h b/src/Platform/Serializable.h index c92bc170..94b385fb 100644 --- a/src/Platform/Serializable.h +++ b/src/Platform/Serializable.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Serializer.cpp b/src/Platform/Serializer.cpp index 6f428b15..ea245436 100644 --- a/src/Platform/Serializer.cpp +++ b/src/Platform/Serializer.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Serializer.h b/src/Platform/Serializer.h index 3617a83b..81092fe5 100644 --- a/src/Platform/Serializer.h +++ b/src/Platform/Serializer.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/SerializerFactory.cpp b/src/Platform/SerializerFactory.cpp index 4c7f4f7e..87091583 100644 --- a/src/Platform/SerializerFactory.cpp +++ b/src/Platform/SerializerFactory.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/SerializerFactory.h b/src/Platform/SerializerFactory.h index 9c53d309..a36ffa03 100644 --- a/src/Platform/SerializerFactory.h +++ b/src/Platform/SerializerFactory.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/SharedPtr.h b/src/Platform/SharedPtr.h index f80b2167..9b47388a 100644 --- a/src/Platform/SharedPtr.h +++ b/src/Platform/SharedPtr.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/SharedVal.h b/src/Platform/SharedVal.h index fc64f3f3..b88ca3e2 100644 --- a/src/Platform/SharedVal.h +++ b/src/Platform/SharedVal.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Stream.h b/src/Platform/Stream.h index b9862a50..e74350f1 100644 --- a/src/Platform/Stream.h +++ b/src/Platform/Stream.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/StringConverter.cpp b/src/Platform/StringConverter.cpp index 7b3134ee..6a1f23c8 100644 --- a/src/Platform/StringConverter.cpp +++ b/src/Platform/StringConverter.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/StringConverter.h b/src/Platform/StringConverter.h index 8756d5ba..8bd27251 100644 --- a/src/Platform/StringConverter.h +++ b/src/Platform/StringConverter.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/SyncEvent.h b/src/Platform/SyncEvent.h index fde6380f..bfd9e2d1 100644 --- a/src/Platform/SyncEvent.h +++ b/src/Platform/SyncEvent.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/System.h b/src/Platform/System.h index 5024568f..d5fb0e00 100644 --- a/src/Platform/System.h +++ b/src/Platform/System.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/SystemException.h b/src/Platform/SystemException.h index ede3c5cf..2c1ab25a 100644 --- a/src/Platform/SystemException.h +++ b/src/Platform/SystemException.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/SystemInfo.h b/src/Platform/SystemInfo.h index 5e1f63c2..57890d46 100644 --- a/src/Platform/SystemInfo.h +++ b/src/Platform/SystemInfo.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/SystemLog.h b/src/Platform/SystemLog.h index cff3f212..a331e966 100644 --- a/src/Platform/SystemLog.h +++ b/src/Platform/SystemLog.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/TextReader.cpp b/src/Platform/TextReader.cpp index bdaf19c2..2dfc7069 100644 --- a/src/Platform/TextReader.cpp +++ b/src/Platform/TextReader.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/TextReader.h b/src/Platform/TextReader.h index bfeaa524..2b96a8db 100644 --- a/src/Platform/TextReader.h +++ b/src/Platform/TextReader.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Thread.h b/src/Platform/Thread.h index 2f16d2a7..6fca11b3 100644 --- a/src/Platform/Thread.h +++ b/src/Platform/Thread.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Time.h b/src/Platform/Time.h index c85b363c..7f82fbcd 100644 --- a/src/Platform/Time.h +++ b/src/Platform/Time.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Unix/Directory.cpp b/src/Platform/Unix/Directory.cpp index 50de000b..c27af26a 100644 --- a/src/Platform/Unix/Directory.cpp +++ b/src/Platform/Unix/Directory.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Unix/File.cpp b/src/Platform/Unix/File.cpp index 207efb4e..9c35a2e5 100644 --- a/src/Platform/Unix/File.cpp +++ b/src/Platform/Unix/File.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Unix/FilesystemPath.cpp b/src/Platform/Unix/FilesystemPath.cpp index 1230c2aa..90965448 100644 --- a/src/Platform/Unix/FilesystemPath.cpp +++ b/src/Platform/Unix/FilesystemPath.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Unix/Mutex.cpp b/src/Platform/Unix/Mutex.cpp index b69a5c6c..6441ee93 100644 --- a/src/Platform/Unix/Mutex.cpp +++ b/src/Platform/Unix/Mutex.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Unix/Pipe.cpp b/src/Platform/Unix/Pipe.cpp index b05acd7c..41ebb506 100644 --- a/src/Platform/Unix/Pipe.cpp +++ b/src/Platform/Unix/Pipe.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Unix/Pipe.h b/src/Platform/Unix/Pipe.h index eb79d9dd..b0bf0409 100644 --- a/src/Platform/Unix/Pipe.h +++ b/src/Platform/Unix/Pipe.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Unix/Poller.cpp b/src/Platform/Unix/Poller.cpp index 25d2ba71..66ba0ff5 100644 --- a/src/Platform/Unix/Poller.cpp +++ b/src/Platform/Unix/Poller.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Unix/Poller.h b/src/Platform/Unix/Poller.h index a46c0359..8ae6e7ae 100644 --- a/src/Platform/Unix/Poller.h +++ b/src/Platform/Unix/Poller.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Unix/Process.cpp b/src/Platform/Unix/Process.cpp index 46b14a1e..395d4bc9 100644 --- a/src/Platform/Unix/Process.cpp +++ b/src/Platform/Unix/Process.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -29,3 +29,52 @@ namespace VeraCrypt { - string Process::Execute (const string &processName, const list <string> &arguments, int timeOut, ProcessExecFunctor *execFunctor, const Buffer *inputData) + + bool Process::IsExecutable(const std::string& path) { + struct stat sb; + if (stat(path.c_str(), &sb) == 0) { + return S_ISREG(sb.st_mode) && (sb.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)); + } + return false; + } + + // Find executable in system paths + std::string Process::FindSystemBinary(const char* name, std::string& errorMsg) { + if (!name) { + errno = EINVAL; // Invalid argument + errorMsg = "Invalid input: name or paths is NULL"; + return ""; + } + + // Default system directories to search for executables +#ifdef TC_MACOSX + const char* defaultDirs[] = {"/usr/local/bin", "/usr/bin", "/bin", "/user/sbin", "/sbin"}; +#elif TC_FREEBSD + const char* defaultDirs[] = {"/sbin", "/bin", "/usr/sbin", "/usr/bin", "/usr/local/sbin", "/usr/local/bin"}; +#elif TC_OPENBSD + const char* defaultDirs[] = {"/sbin", "/bin", "/usr/sbin", "/usr/bin", "/usr/X11R6/bin", "/usr/local/sbin", "/usr/local/bin"}; +#else + const char* defaultDirs[] = {"/usr/local/sbin", "/usr/local/bin", "/usr/sbin", "/usr/bin", "/sbin", "/bin"}; +#endif + const size_t defaultDirCount = sizeof(defaultDirs) / sizeof(defaultDirs[0]); + + std::string currentPath(name); + + // If path doesn't start with '/', prepend default directories + if (currentPath[0] != '/') { + for (size_t i = 0; i < defaultDirCount; ++i) { + std::string combinedPath = std::string(defaultDirs[i]) + "/" + currentPath; + if (IsExecutable(combinedPath)) { + return combinedPath; + } + } + } else if (IsExecutable(currentPath)) { + return currentPath; + } + + // Prepare error message + errno = ENOENT; // No such file or directory + errorMsg = std::string(name) + " not found in system directories"; + return ""; + } + + string Process::Execute (const string &processNameArg, const list <string> &arguments, int timeOut, ProcessExecFunctor *execFunctor, const Buffer *inputData) { @@ -35,2 +84,14 @@ namespace VeraCrypt + // if execFunctor is null and processName is not absolute path, find it in system paths + string processName; + if (!execFunctor && (processNameArg[0] != '/')) + { + std::string errorMsg; + processName = FindSystemBinary(processNameArg.c_str(), errorMsg); + if (processName.empty()) + throw SystemException(SRC_POS, errorMsg); + } + else + processName = processNameArg; + #if 0 diff --git a/src/Platform/Unix/Process.h b/src/Platform/Unix/Process.h index bb8482f2..83215956 100644 --- a/src/Platform/Unix/Process.h +++ b/src/Platform/Unix/Process.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -33,2 +33,4 @@ namespace VeraCrypt + static bool IsExecutable(const std::string& path); + static std::string FindSystemBinary(const char* name, std::string& errorMsg); static string Execute (const string &processName, const list <string> &arguments, int timeOut = -1, ProcessExecFunctor *execFunctor = nullptr, const Buffer *inputData = nullptr); diff --git a/src/Platform/Unix/SyncEvent.cpp b/src/Platform/Unix/SyncEvent.cpp index 0336164b..f186e555 100644 --- a/src/Platform/Unix/SyncEvent.cpp +++ b/src/Platform/Unix/SyncEvent.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Unix/System.h b/src/Platform/Unix/System.h index 7225dae2..b6a6f092 100644 --- a/src/Platform/Unix/System.h +++ b/src/Platform/Unix/System.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Unix/SystemException.cpp b/src/Platform/Unix/SystemException.cpp index 428edfe7..b29e0370 100644 --- a/src/Platform/Unix/SystemException.cpp +++ b/src/Platform/Unix/SystemException.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Unix/SystemInfo.cpp b/src/Platform/Unix/SystemInfo.cpp index f09674aa..530d3b4b 100644 --- a/src/Platform/Unix/SystemInfo.cpp +++ b/src/Platform/Unix/SystemInfo.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Unix/SystemLog.cpp b/src/Platform/Unix/SystemLog.cpp index 72221375..95b20074 100644 --- a/src/Platform/Unix/SystemLog.cpp +++ b/src/Platform/Unix/SystemLog.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Unix/Thread.cpp b/src/Platform/Unix/Thread.cpp index 099c4658..febf9ab2 100644 --- a/src/Platform/Unix/Thread.cpp +++ b/src/Platform/Unix/Thread.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/Unix/Time.cpp b/src/Platform/Unix/Time.cpp index 356dde74..055938f9 100644 --- a/src/Platform/Unix/Time.cpp +++ b/src/Platform/Unix/Time.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Platform/User.h b/src/Platform/User.h index d5b51aad..6ae91fc3 100644 --- a/src/Platform/User.h +++ b/src/Platform/User.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Readme.txt b/src/Readme.txt index a20ab4f8..d5096cbf 100644 --- a/src/Readme.txt +++ b/src/Readme.txt @@ -234,6 +234,6 @@ Copyright Information This software as a whole: -Copyright (c) 2013-2024 IDRIX. All rights reserved. +Copyright (c) 2013-2025 IDRIX. All rights reserved. Portions of this software: -Copyright (c) 2013-2024 IDRIX. All rights reserved. +Copyright (c) 2013-2025 IDRIX. All rights reserved. Copyright (c) 2003-2012 TrueCrypt Developers Association. All rights reserved. diff --git a/src/Release/Setup Files/Product64.wxs b/src/Release/Setup Files/Product64.wxs index 3c621209..c1c57889 100644 --- a/src/Release/Setup Files/Product64.wxs +++ b/src/Release/Setup Files/Product64.wxs @@ -6,3 +6,3 @@ for upgrades to work ; Windows Installer ignores the 4th part --> - <?define var.FullProductVersion = 1.26.17?> + <?define var.FullProductVersion = 1.26.20?> <?define var.ProductName = VeraCrypt $(var.FullProductVersion)?> @@ -14,3 +14,3 @@ <!-- MUST BE regenerated for each new release --> - <?define var.ProductGuid = {D32BFAD3-7B62-40AD-A9BC-9A66EEC75476}?> + <?define var.ProductGuid = {206DCF7E-CA28-421D-B5DE-0AD30E1132CD}?> @@ -824,3 +824,3 @@ <Component Id="cmp340BBEC25292C3BE778BA8F158DB87B1" Guid="{34107694-BD63-4466-9317-E2745861F0FE}"> - <File Id="filDF64E26B5CFC7EDB198C7CEA46690CA0" KeyPath="yes" Source="$(sys.CURRENTDIR)\docs\html\en\Normal Dismount vs Force Dismount.html" Checksum="yes" DiskId="1" /> + <File Id="filDF64E26B5CFC7EDB198C7CEA46690CA0" KeyPath="yes" Source="$(sys.CURRENTDIR)\docs\html\en\Normal Unmount vs Force Unmount.html" Checksum="yes" DiskId="1" /> </Component> @@ -1479,3 +1479,3 @@ <Component Id="cmp4BC713FA989ECC8EC884548781C4F29D" Guid="{191AF27B-1811-4149-9713-2B3913422D32}"> - <File Id="filB4D109A8E9F7C159C41DA988EF4AE5BD" KeyPath="yes" Source="$(sys.CURRENTDIR)\docs\html\en\ru\Normal Dismount vs Force Dismount.html" Checksum="yes" DiskId="1" /> + <File Id="filB4D109A8E9F7C159C41DA988EF4AE5BD" KeyPath="yes" Source="$(sys.CURRENTDIR)\docs\html\en\ru\Normal Unmount vs Force Unmount.html" Checksum="yes" DiskId="1" /> </Component> diff --git a/src/Release/Setup Files/veracrypt-arm64.cat b/src/Release/Setup Files/veracrypt-arm64.cat Binary files differindex a5563a0d..e9c001f2 100644 --- a/src/Release/Setup Files/veracrypt-arm64.cat +++ b/src/Release/Setup Files/veracrypt-arm64.cat diff --git a/src/Release/Setup Files/veracrypt-arm64.sys b/src/Release/Setup Files/veracrypt-arm64.sys Binary files differindex 881b3dbf..524f8b26 100644 --- a/src/Release/Setup Files/veracrypt-arm64.sys +++ b/src/Release/Setup Files/veracrypt-arm64.sys diff --git a/src/Release/Setup Files/veracrypt-x64.cat b/src/Release/Setup Files/veracrypt-x64.cat Binary files differindex f9d50096..ba3958c0 100644 --- a/src/Release/Setup Files/veracrypt-x64.cat +++ b/src/Release/Setup Files/veracrypt-x64.cat diff --git a/src/Release/Setup Files/veracrypt-x64.sys b/src/Release/Setup Files/veracrypt-x64.sys Binary files differindex 7d0bfec1..f65fb677 100644 --- a/src/Release/Setup Files/veracrypt-x64.sys +++ b/src/Release/Setup Files/veracrypt-x64.sys diff --git a/src/Release/Setup Files/veracrypt.Inf b/src/Release/Setup Files/veracrypt.Inf index a1d06fff..a6bb0d1a 100644 --- a/src/Release/Setup Files/veracrypt.Inf +++ b/src/Release/Setup Files/veracrypt.Inf @@ -4,3 +4,3 @@ ;;; -;;; Copyright (c) 2024, IDRIX +;;; Copyright (c) 2025, IDRIX ;;; @@ -12,3 +12,3 @@ ClassGuid = {a0a701c0-a511-42ff-aa6c-06dc0395576f} ;This value is determine Provider = %ProviderString% -DriverVer = 11/24/2024,1.26.17.2 +DriverVer = 02/03/2025,1.26.20.0 CatalogFile = veracrypt.cat diff --git a/src/Setup/ComSetup.cpp b/src/Setup/ComSetup.cpp index 96734303..9ae0a23d 100644 --- a/src/Setup/ComSetup.cpp +++ b/src/Setup/ComSetup.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Setup/ComSetup.h b/src/Setup/ComSetup.h index 85d0f249..f8253dca 100644 --- a/src/Setup/ComSetup.h +++ b/src/Setup/ComSetup.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Setup/Dir.c b/src/Setup/Dir.c index f0a89ced..01c9c36e 100644 --- a/src/Setup/Dir.c +++ b/src/Setup/Dir.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Setup/Dir.h b/src/Setup/Dir.h index fb9dfc6b..68bb44f0 100644 --- a/src/Setup/Dir.h +++ b/src/Setup/Dir.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Setup/MacOSX/template.dmg.bz2 b/src/Setup/MacOSX/template.dmg.bz2 Binary files differindex fe945152..d22b1578 100644 --- a/src/Setup/MacOSX/template.dmg.bz2 +++ b/src/Setup/MacOSX/template.dmg.bz2 diff --git a/src/Setup/MacOSX/veracrypt.pkgproj b/src/Setup/MacOSX/veracrypt.pkgproj index 287adac6..d300fb6f 100755 --- a/src/Setup/MacOSX/veracrypt.pkgproj +++ b/src/Setup/MacOSX/veracrypt.pkgproj @@ -559,3 +559,3 @@ <key>VERSION</key> - <string>1.26.17</string> + <string>1.26.20</string> </dict> @@ -1027,3 +1027,3 @@ https://osxfuse.github.io/ <key>NAME</key> - <string>VeraCrypt 1.26.17</string> + <string>VeraCrypt 1.26.20</string> <key>PAYLOAD_ONLY</key> diff --git a/src/Setup/MacOSX/veracrypt_Legacy.pkgproj b/src/Setup/MacOSX/veracrypt_Legacy.pkgproj index 4a092975..24d0db36 100755 --- a/src/Setup/MacOSX/veracrypt_Legacy.pkgproj +++ b/src/Setup/MacOSX/veracrypt_Legacy.pkgproj @@ -559,3 +559,3 @@ <key>VERSION</key> - <string>1.26.17</string> + <string>1.26.20</string> </dict> diff --git a/src/Setup/MacOSX/veracrypt_fuse-t.pkgproj b/src/Setup/MacOSX/veracrypt_fuse-t.pkgproj index 5641d95f..e209843f 100755 --- a/src/Setup/MacOSX/veracrypt_fuse-t.pkgproj +++ b/src/Setup/MacOSX/veracrypt_fuse-t.pkgproj @@ -559,3 +559,3 @@ <key>VERSION</key> - <string>1.26.17</string> + <string>1.26.20</string> </dict> @@ -811,3 +811,3 @@ <key>VALUE</key> - <string>FUSE-T seems to be missing on your machine. VeraCrypt requires OSXFuse 1.0 or above. + <string>FUSE-T seems to be missing on your machine. VeraCrypt requires FUSE-T 1.0 or above. Please download the latest FUSE-T version from : @@ -822,3 +822,3 @@ https://github.com/macos-fuse-t/fuse-t/releases</string> <string>FUSE-T semble ne pas être installé sur votre machine. VeraCrypt nécessite FUSE-T 1.0 ou supérieur. -Merci de télécharger la dernière version de OSXFuse à partir de : +Merci de télécharger la dernière version de FUSE-T à partir de : https://github.com/macos-fuse-t/fuse-t/releases @@ -1026,3 +1026,3 @@ https://github.com/macos-fuse-t/fuse-t/releases <key>NAME</key> - <string>VeraCrypt 1.26.17</string> + <string>VeraCrypt 1.26.20</string> <key>PAYLOAD_ONLY</key> diff --git a/src/Setup/Portable.rc b/src/Setup/Portable.rc index 1ecfa8fd..03afff77 100644 --- a/src/Setup/Portable.rc +++ b/src/Setup/Portable.rc @@ -28,4 +28,4 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,26,17,2 - PRODUCTVERSION 1,26,17,2 + FILEVERSION 1,26,20,0 + PRODUCTVERSION 1,26,20,0 FILEFLAGSMASK 0x17L @@ -46,3 +46,3 @@ BEGIN VALUE "FileDescription", "VeraCrypt Portable" - VALUE "FileVersion", "1.26.17" + VALUE "FileVersion", "1.26.20" VALUE "LegalTrademarks", "VeraCrypt" @@ -50,3 +50,3 @@ BEGIN VALUE "ProductName", "VeraCrypt" - VALUE "ProductVersion", "1.26.17" + VALUE "ProductVersion", "1.26.20" END diff --git a/src/Setup/SelfExtract.c b/src/Setup/SelfExtract.c index c672c364..6a2ce21c 100644 --- a/src/Setup/SelfExtract.c +++ b/src/Setup/SelfExtract.c @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Setup/SelfExtract.h b/src/Setup/SelfExtract.h index bcdb6fdb..25491661 100644 --- a/src/Setup/SelfExtract.h +++ b/src/Setup/SelfExtract.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Setup/Setup.c b/src/Setup/Setup.c index ed236616..4e1812f6 100644 --- a/src/Setup/Setup.c +++ b/src/Setup/Setup.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -1722,3 +1722,3 @@ BOOL DoDriverUnload (HWND hwndDlg) bOK = FALSE; - MessageBoxW (hwndDlg, GetString ("DISMOUNT_ALL_FIRST"), lpszTitle, MB_ICONHAND); + MessageBoxW (hwndDlg, GetString ("UNMOUNT_ALL_FIRST"), lpszTitle, MB_ICONHAND); } diff --git a/src/Setup/Setup.h b/src/Setup/Setup.h index 5ab62bb6..e2f455ae 100644 --- a/src/Setup/Setup.h +++ b/src/Setup/Setup.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Setup/Setup.rc b/src/Setup/Setup.rc index 34b138b7..56aa751d 100644 --- a/src/Setup/Setup.rc +++ b/src/Setup/Setup.rc @@ -30,4 +30,4 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,26,17,2 - PRODUCTVERSION 1,26,17,2 + FILEVERSION 1,26,20,0 + PRODUCTVERSION 1,26,20,0 FILEFLAGSMASK 0x17L @@ -48,3 +48,3 @@ BEGIN VALUE "FileDescription", "VeraCrypt Setup" - VALUE "FileVersion", "1.26.17" + VALUE "FileVersion", "1.26.20" VALUE "LegalTrademarks", "VeraCrypt" @@ -52,3 +52,3 @@ BEGIN VALUE "ProductName", "VeraCrypt" - VALUE "ProductVersion", "1.26.17" + VALUE "ProductVersion", "1.26.20" END diff --git a/src/Setup/Wizard.c b/src/Setup/Wizard.c index abf76f69..e00e4475 100644 --- a/src/Setup/Wizard.c +++ b/src/Setup/Wizard.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Setup/Wizard.h b/src/Setup/Wizard.h index 40ff0353..c91c7c70 100644 --- a/src/Setup/Wizard.h +++ b/src/Setup/Wizard.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/SetupDLL/ComSetup.cpp b/src/SetupDLL/ComSetup.cpp index 07c3360a..39a0339e 100644 --- a/src/SetupDLL/ComSetup.cpp +++ b/src/SetupDLL/ComSetup.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/SetupDLL/ComSetup.h b/src/SetupDLL/ComSetup.h index 85d0f249..f8253dca 100644 --- a/src/SetupDLL/ComSetup.h +++ b/src/SetupDLL/ComSetup.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/SetupDLL/Dir.c b/src/SetupDLL/Dir.c index e6a5f153..1451ee9f 100644 --- a/src/SetupDLL/Dir.c +++ b/src/SetupDLL/Dir.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/SetupDLL/Dir.h b/src/SetupDLL/Dir.h index fb9dfc6b..68bb44f0 100644 --- a/src/SetupDLL/Dir.h +++ b/src/SetupDLL/Dir.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/SetupDLL/Setup.c b/src/SetupDLL/Setup.c index 195c9ec3..1f6f414d 100644 --- a/src/SetupDLL/Setup.c +++ b/src/SetupDLL/Setup.c @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is @@ -1472,3 +1472,3 @@ BOOL DoDriverUnload_Dll (MSIHANDLE hInstaller, HWND hwnd) bOK = FALSE; - MSILogAndShow(hInstaller, MSI_WARNING_LEVEL, GetString ("DISMOUNT_ALL_FIRST")); + MSILogAndShow(hInstaller, MSI_WARNING_LEVEL, GetString ("UNMOUNT_ALL_FIRST")); } @@ -3520,2 +3520,2 @@ DllMain( return TRUE; -}
\ No newline at end of file +} diff --git a/src/SetupDLL/Setup.h b/src/SetupDLL/Setup.h index 603c3e63..19448f40 100644 --- a/src/SetupDLL/Setup.h +++ b/src/SetupDLL/Setup.h @@ -8,3 +8,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/SetupDLL/Setup.rc b/src/SetupDLL/Setup.rc index 048b76bf..26a3d4fc 100644 --- a/src/SetupDLL/Setup.rc +++ b/src/SetupDLL/Setup.rc @@ -30,4 +30,4 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,26,17,2 - PRODUCTVERSION 1,26,17,2 + FILEVERSION 1,26,20,0 + PRODUCTVERSION 1,26,20,0 FILEFLAGSMASK 0x17L @@ -48,3 +48,3 @@ BEGIN VALUE "FileDescription", "VeraCryptSetup" - VALUE "FileVersion", "1.26.17" + VALUE "FileVersion", "1.26.20" VALUE "LegalTrademarks", "VeraCrypt" @@ -52,3 +52,3 @@ BEGIN VALUE "ProductName", "VeraCrypt" - VALUE "ProductVersion", "1.26.17" + VALUE "ProductVersion", "1.26.20" END diff --git a/src/Signing/sign.bat b/src/Signing/sign.bat index 8db4b105..1ddb1a70 100644 --- a/src/Signing/sign.bat +++ b/src/Signing/sign.bat @@ -2,4 +2,4 @@ PATH=%PATH%;%WSDK81%\bin\x86;C:\Program Files\7-Zip;C:\Program Files (x86)\7-Zip -set VC_VERSION=1.26.17 -set VC_VERSION_NBRE=1.26.17 +set VC_VERSION=1.26.20 +set VC_VERSION_NBRE=1.26.20 set SIGNINGPATH=%~dp0 diff --git a/src/Signing/sign_TESTSIGNING.bat b/src/Signing/sign_TESTSIGNING.bat index b34e5f26..ce56de3c 100644 --- a/src/Signing/sign_TESTSIGNING.bat +++ b/src/Signing/sign_TESTSIGNING.bat @@ -2,4 +2,4 @@ PATH=%PATH%;%WSDK81%\bin\x86;C:\Program Files\7-Zip;C:\Program Files (x86)\7-Zip -set VC_VERSION=1.26.17 -set VC_VERSION_NBRE=1.26.17 +set VC_VERSION=1.26.20 +set VC_VERSION_NBRE=1.26.20 set SIGNINGPATH=%~dp0 diff --git a/src/Signing/sign_test.bat b/src/Signing/sign_test.bat index bf47c448..4af038a4 100644 --- a/src/Signing/sign_test.bat +++ b/src/Signing/sign_test.bat @@ -1,4 +1,4 @@ PATH=%PATH%;%WSDK81%\bin\x86;C:\Program Files\7-Zip;C:\Program Files (x86)\7-Zip -set VC_VERSION=1.26.17 -set VC_VERSION_NBRE=1.26.17 +set VC_VERSION=1.26.20 +set VC_VERSION_NBRE=1.26.20 set PFXNAME=TestCertificate\idrix_codeSign.pfx diff --git a/src/Signing/sign_test_debug.bat b/src/Signing/sign_test_debug.bat index 2e33dc70..bdf3cc31 100644 --- a/src/Signing/sign_test_debug.bat +++ b/src/Signing/sign_test_debug.bat @@ -1,4 +1,4 @@ PATH=%PATH%;%WSDK81%\bin\x86;C:\Program Files\7-Zip;C:\Program Files (x86)\7-Zip -set VC_VERSION=1.26.17 -set VC_VERSION_NBRE=1.26.17 +set VC_VERSION=1.26.20 +set VC_VERSION_NBRE=1.26.20 set PFXNAME=TestCertificate\idrix_codeSign.pfx diff --git a/src/Volume/Cipher.cpp b/src/Volume/Cipher.cpp index de240544..54bce73d 100644 --- a/src/Volume/Cipher.cpp +++ b/src/Volume/Cipher.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/Cipher.h b/src/Volume/Cipher.h index c53cfbd9..4c0d4893 100644 --- a/src/Volume/Cipher.h +++ b/src/Volume/Cipher.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/Crc32.h b/src/Volume/Crc32.h index ebe7aa83..4b1ee045 100644 --- a/src/Volume/Crc32.h +++ b/src/Volume/Crc32.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/EncryptionAlgorithm.cpp b/src/Volume/EncryptionAlgorithm.cpp index 4a325fe3..5090a254 100644 --- a/src/Volume/EncryptionAlgorithm.cpp +++ b/src/Volume/EncryptionAlgorithm.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/EncryptionAlgorithm.h b/src/Volume/EncryptionAlgorithm.h index e9f9b9ef..7b6f83dc 100644 --- a/src/Volume/EncryptionAlgorithm.h +++ b/src/Volume/EncryptionAlgorithm.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/EncryptionMode.cpp b/src/Volume/EncryptionMode.cpp index 6a63efe5..5519f36a 100644 --- a/src/Volume/EncryptionMode.cpp +++ b/src/Volume/EncryptionMode.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/EncryptionMode.h b/src/Volume/EncryptionMode.h index 0da28fa7..bc9d0a06 100644 --- a/src/Volume/EncryptionMode.h +++ b/src/Volume/EncryptionMode.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/EncryptionModeWolfCryptXTS.h b/src/Volume/EncryptionModeWolfCryptXTS.h index c9f2d59f..e19a5d23 100644 --- a/src/Volume/EncryptionModeWolfCryptXTS.h +++ b/src/Volume/EncryptionModeWolfCryptXTS.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/EncryptionModeXTS.cpp b/src/Volume/EncryptionModeXTS.cpp index 001bfcf8..96427e0c 100644 --- a/src/Volume/EncryptionModeXTS.cpp +++ b/src/Volume/EncryptionModeXTS.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/EncryptionModeXTS.h b/src/Volume/EncryptionModeXTS.h index cbed0d33..80130efd 100644 --- a/src/Volume/EncryptionModeXTS.h +++ b/src/Volume/EncryptionModeXTS.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/EncryptionTest.cpp b/src/Volume/EncryptionTest.cpp index 9009be66..dfa1e5ea 100644 --- a/src/Volume/EncryptionTest.cpp +++ b/src/Volume/EncryptionTest.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/EncryptionTest.h b/src/Volume/EncryptionTest.h index fae07cb2..b8f91c4e 100644 --- a/src/Volume/EncryptionTest.h +++ b/src/Volume/EncryptionTest.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/EncryptionThreadPool.cpp b/src/Volume/EncryptionThreadPool.cpp index 36f8a622..d216df65 100644 --- a/src/Volume/EncryptionThreadPool.cpp +++ b/src/Volume/EncryptionThreadPool.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/EncryptionThreadPool.h b/src/Volume/EncryptionThreadPool.h index a78aee75..1bfa60a1 100644 --- a/src/Volume/EncryptionThreadPool.h +++ b/src/Volume/EncryptionThreadPool.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/Hash.cpp b/src/Volume/Hash.cpp index d2e3e649..a990eec9 100644 --- a/src/Volume/Hash.cpp +++ b/src/Volume/Hash.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/Hash.h b/src/Volume/Hash.h index 5720eb50..8950982b 100644 --- a/src/Volume/Hash.h +++ b/src/Volume/Hash.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/Keyfile.cpp b/src/Volume/Keyfile.cpp index e756cdf1..d38ed523 100644 --- a/src/Volume/Keyfile.cpp +++ b/src/Volume/Keyfile.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/Keyfile.h b/src/Volume/Keyfile.h index 1d87a983..f087fc70 100644 --- a/src/Volume/Keyfile.h +++ b/src/Volume/Keyfile.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/Pkcs5Kdf.cpp b/src/Volume/Pkcs5Kdf.cpp index e7392d0c..7dad9ebc 100644 --- a/src/Volume/Pkcs5Kdf.cpp +++ b/src/Volume/Pkcs5Kdf.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/Pkcs5Kdf.h b/src/Volume/Pkcs5Kdf.h index fc83eb06..399d53fb 100644 --- a/src/Volume/Pkcs5Kdf.h +++ b/src/Volume/Pkcs5Kdf.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/Version.h b/src/Volume/Version.h index b2f9215c..8e00d81f 100644 --- a/src/Volume/Version.h +++ b/src/Volume/Version.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/Volume.cpp b/src/Volume/Volume.cpp index 524f2395..b06279b7 100644 --- a/src/Volume/Volume.cpp +++ b/src/Volume/Volume.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/Volume.h b/src/Volume/Volume.h index 4b91e435..e924df9b 100644 --- a/src/Volume/Volume.h +++ b/src/Volume/Volume.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/Volume.make b/src/Volume/Volume.make index 52d212eb..a4f62562 100644 --- a/src/Volume/Volume.make +++ b/src/Volume/Volume.make @@ -45,2 +45,3 @@ ifneq "$(COMPILE_ASM)" "false" OBJS += ../Crypto/Aes_hw_cpu.o + OBJSEX += ../Crypto/Aes_hw_armv8.oo OBJS += ../Crypto/Aescrypt.o @@ -51,2 +52,3 @@ ifneq "$(COMPILE_ASM)" "false" OBJSEX += ../Crypto/sha512-nayuki.oo + OBJSEX += ../Crypto/sha256_armv8.oo OBJSEX += ../Crypto/sha256_avx1.oo @@ -80,2 +82,6 @@ else ifeq "$(CPU_ARCH)" "x64" OBJS += ../Crypto/sha512_sse4_x64.o +else ifeq "$(CPU_ARCH)" "arm64" + OBJARMV8CRYPTO += ../Crypto/Aes_hw_armv8.oarmv8crypto + OBJS += ../Crypto/Aescrypt.o + OBJARMV8CRYPTO += ../Crypto/sha256_armv8.oarmv8crypto else @@ -142,2 +148,14 @@ ifeq "$(PLATFORM)" "MacOSX" ifneq "$(COMPILE_ASM)" "false" +../Crypto/Aes_hw_armv8.oo: ../Crypto/Aes_hw_armv8.c + @echo Compiling $(<F) + $(CC) $(CFLAGS_ARM64) -c ../Crypto/Aes_hw_armv8.c -o ../Crypto/Aes_hw_armv8_arm64.o + $(CC) $(CFLAGS_X64) -c ../Crypto/Aes_hw_armv8.c -o ../Crypto/Aes_hw_armv8_x64.o + lipo -create ../Crypto/Aes_hw_armv8_arm64.o ../Crypto/Aes_hw_armv8_x64.o -output ../Crypto/Aes_hw_armv8.oo + rm -fr ../Crypto/Aes_hw_armv8_arm64.o ../Crypto/Aes_hw_armv8_x64.o +../Crypto/sha256_armv8.oo: ../Crypto/sha256_armv8.c + @echo Compiling $(<F) + $(CC) $(CFLAGS_ARM64) -c ../Crypto/sha256_armv8.c -o ../Crypto/sha256_armv8_arm64.o + $(CC) $(CFLAGS_X64) -c ../Crypto/sha256_armv8.c -o ../Crypto/sha256_armv8_x64.o + lipo -create ../Crypto/sha256_armv8_arm64.o ../Crypto/sha256_armv8_x64.o -output ../Crypto/sha256_armv8.oo + rm -fr ../Crypto/sha256_armv8_arm64.o ../Crypto/sha256_armv8_x64.o ../Crypto/Aes_asm.oo: ../Crypto/Aes_x86.asm ../Crypto/Aes_x64.asm diff --git a/src/Volume/VolumeException.cpp b/src/Volume/VolumeException.cpp index 0ba9ec34..e1e8fbf8 100644 --- a/src/Volume/VolumeException.cpp +++ b/src/Volume/VolumeException.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/VolumeException.h b/src/Volume/VolumeException.h index 8185fab9..8e88a576 100644 --- a/src/Volume/VolumeException.h +++ b/src/Volume/VolumeException.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/VolumeHeader.cpp b/src/Volume/VolumeHeader.cpp index 2b8699a3..f3eaba9b 100644 --- a/src/Volume/VolumeHeader.cpp +++ b/src/Volume/VolumeHeader.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/VolumeHeader.h b/src/Volume/VolumeHeader.h index 18a52950..95018b71 100644 --- a/src/Volume/VolumeHeader.h +++ b/src/Volume/VolumeHeader.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/VolumeInfo.cpp b/src/Volume/VolumeInfo.cpp index f3b044b7..f982c077 100644 --- a/src/Volume/VolumeInfo.cpp +++ b/src/Volume/VolumeInfo.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/VolumeInfo.h b/src/Volume/VolumeInfo.h index ad6c2ca4..549b9fbd 100644 --- a/src/Volume/VolumeInfo.h +++ b/src/Volume/VolumeInfo.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/VolumeLayout.cpp b/src/Volume/VolumeLayout.cpp index 3600d76f..8077a1ab 100644 --- a/src/Volume/VolumeLayout.cpp +++ b/src/Volume/VolumeLayout.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/VolumeLayout.h b/src/Volume/VolumeLayout.h index 32b646ad..810d387f 100644 --- a/src/Volume/VolumeLayout.h +++ b/src/Volume/VolumeLayout.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/VolumePassword.cpp b/src/Volume/VolumePassword.cpp index 9ba3ebce..28f1daaf 100644 --- a/src/Volume/VolumePassword.cpp +++ b/src/Volume/VolumePassword.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/VolumePassword.h b/src/Volume/VolumePassword.h index c1e6b9b6..ee75636e 100644 --- a/src/Volume/VolumePassword.h +++ b/src/Volume/VolumePassword.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/VolumePasswordCache.cpp b/src/Volume/VolumePasswordCache.cpp index bd87a858..0f7f621d 100644 --- a/src/Volume/VolumePasswordCache.cpp +++ b/src/Volume/VolumePasswordCache.cpp @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/VolumePasswordCache.h b/src/Volume/VolumePasswordCache.h index 21e62804..3e153467 100644 --- a/src/Volume/VolumePasswordCache.h +++ b/src/Volume/VolumePasswordCache.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is diff --git a/src/Volume/VolumeSlot.h b/src/Volume/VolumeSlot.h index 153f34a4..b88ea411 100644 --- a/src/Volume/VolumeSlot.h +++ b/src/Volume/VolumeSlot.h @@ -6,3 +6,3 @@ Modifications and additions to the original source code (contained in this file) - and all other portions of this file are Copyright (c) 2013-2017 IDRIX + and all other portions of this file are Copyright (c) 2013-2025 IDRIX and are governed by the Apache License 2.0 the full text of which is |