diff --git a/CHANGELOG b/CHANGELOG
index c25533f22..4a4c921a2 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,11 @@
+2.4.3 (2019-06-12)
+=========================
+
+- Fix library loading issues in the Snap and macOS releases [#3247]
+- Fix various keyboard navigation issues [#3248]
+- Fix main window toggling regression when clicking the tray icon on KDE [#3258]
+- Add documentation for keyboard shortcuts to source code distribution [#3215]
+
2.4.2 (2019-05-31)
=========================
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 689515a39..74b1a7ff0 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -81,7 +81,7 @@ endif()
set(KEEPASSXC_VERSION_MAJOR "2")
set(KEEPASSXC_VERSION_MINOR "4")
-set(KEEPASSXC_VERSION_PATCH "2")
+set(KEEPASSXC_VERSION_PATCH "3")
set(KEEPASSXC_VERSION "${KEEPASSXC_VERSION_MAJOR}.${KEEPASSXC_VERSION_MINOR}.${KEEPASSXC_VERSION_PATCH}")
set(OVERRIDE_VERSION "" CACHE STRING "Override the KeePassXC Version for Snapshot builds")
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 33bdea6a2..000000000
--- a/Dockerfile
+++ /dev/null
@@ -1,97 +0,0 @@
-# KeePassXC Linux Release Build Dockerfile
-# Copyright (C) 2017-2018 KeePassXC team
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 2 or (at your option)
-# version 3 of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see .
-
-FROM ubuntu:14.04
-
-ENV REBUILD_COUNTER=10
-
-ENV QT5_VERSION=qt510
-ENV QT5_PPA_VERSION=qt-5.10.1
-ENV TERM=xterm-256color
-
-RUN set -x \
- && apt-get update -y \
- && apt-get -y install software-properties-common
-
-RUN set -x \
- && add-apt-repository ppa:beineri/opt-${QT5_PPA_VERSION}-trusty \
- && add-apt-repository ppa:phoerious/keepassxc
-
-RUN set -x \
- && apt-get update -y \
- && apt-get upgrade -y
-
-# build and runtime dependencies
-RUN set -x \
- && apt-get install -y \
- cmake3 \
- curl \
- g++ \
- git \
- libgcrypt20-18-dev \
- libargon2-0-dev \
- libsodium-dev \
- libcurl-no-gcrypt-dev \
- ${QT5_VERSION}base \
- ${QT5_VERSION}tools \
- ${QT5_VERSION}x11extras \
- ${QT5_VERSION}translations \
- ${QT5_VERSION}imageformats \
- ${QT5_VERSION}svg \
- zlib1g-dev \
- libxi-dev \
- libxtst-dev \
- # ubuntu:14.04 has no quazip (it's optional)
- # libquazip5-dev \
- mesa-common-dev \
- libyubikey-dev \
- libykpers-1-dev \
- libqrencode-dev \
- xclip \
- xvfb
-
-ENV PATH="/opt/${QT5_VERSION}/bin:${PATH}"
-ENV CMAKE_PREFIX_PATH="/opt/${QT5_VERSION}/lib/cmake"
-ENV CMAKE_INCLUDE_PATH="/opt/keepassxc-libs/include"
-ENV CMAKE_LIBRARY_PATH="/opt/keepassxc-libs/lib/x86_64-linux-gnu"
-ENV CPATH="${CMAKE_INCLUDE_PATH}"
-ENV LD_LIBRARY_PATH="${CMAKE_LIBRARY_PATH}:/opt/${QT5_VERSION}/lib"
-
-RUN set -x \
- && echo "/opt/${QT5_VERSION}/lib" > /etc/ld.so.conf.d/${QT5_VERSION}.conf \
- && echo "/opt/keepassxc-libs/lib/x86_64-linux-gnu" > /etc/ld.so.conf.d/keepassxc.conf
-
-# AppImage dependencies
-RUN set -x \
- && apt-get install -y \
- curl \
- libfuse2
-
-RUN set -x \
- && curl -L "https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage" > /usr/bin/linuxdeploy \
- && curl -L "https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-x86_64.AppImage" > /usr/bin/linuxdeploy-plugin-qt \
- && curl -L "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage" > /usr/bin/appimagetool \
- && chmod +x /usr/bin/linuxdeploy \
- && chmod +x /usr/bin/linuxdeploy-plugin-qt \
- && chmod +x /usr/bin/appimagetool
-
-RUN set -x \
- && apt-get autoremove --purge \
- && rm -rf /var/lib/apt/lists/*
-
-VOLUME /keepassxc/src
-VOLUME /keepassxc/out
-WORKDIR /keepassxc
diff --git a/INSTALL.md b/INSTALL.md
index 957e6d37d..e3da8bda7 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -141,10 +141,7 @@ DESTDIR=X
Packaging
=========
-You can create a package to redistribute KeePassXC (zip, deb, rpm, dmg, etc..)
-```
-make package
-```
+You can create a package to redistribute KeePassXC (zip, deb, rpm, dmg, etc..). Refer to [keepassxc-packaging](https://github.com/keepassxreboot/keepassxc-packaging)
Testing
diff --git a/README.md b/README.md
index 3048e2ea3..fa0e4575f 100644
--- a/README.md
+++ b/README.md
@@ -34,6 +34,7 @@ so please check out your distribution's package list to see if KeePassXC is avai
- Many bug fixes
For a full list of features and changes, read the [CHANGELOG](CHANGELOG) document.
+For a full list of keyboard shortcuts, see [KEYBINDS](./docs/KEYBINDS.md)
## Building KeePassXC
diff --git a/ci/trusty/Dockerfile b/ci/trusty/Dockerfile
deleted file mode 100644
index 79e054efe..000000000
--- a/ci/trusty/Dockerfile
+++ /dev/null
@@ -1,95 +0,0 @@
-# KeePassXC Linux Release Build Dockerfile
-# Copyright (C) 2017 KeePassXC team
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 2 or (at your option)
-# version 3 of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see .
-
-# TIP: check this Dockerfile using this online tool: https://www.fromlatest.io
-
-FROM ubuntu:14.04
-
-ENV REBUILD_COUNTER=5
-
-ENV QT5_VERSION=qt53
-ENV QT5_PPA_VERSION=${QT5_VERSION}2
-ENV TERM=xterm-256color
-
-RUN set -x \
- && apt-get update -y \
- && apt-get -y install software-properties-common
-
-RUN set -x \
- && add-apt-repository ppa:beineri/opt-${QT5_PPA_VERSION}-trusty \
- && add-apt-repository ppa:phoerious/keepassxc
-
-RUN set -x \
- && apt-get -y update \
- && apt-get -y --no-install-recommends install \
- build-essential \
- clang-3.6 \
- libclang-common-3.6-dev \
- clang-format-3.6 \
- llvm-3.6 \
- cmake3 \
- make \
- libgcrypt20-18-dev \
- libargon2-0-dev \
- libsodium-dev \
- libcurl-no-gcrypt-dev \
- ${QT5_VERSION}base \
- ${QT5_VERSION}tools \
- ${QT5_VERSION}x11extras \
- ${QT5_VERSION}translations \
- ${QT5_VERSION}svg \
- zlib1g-dev \
- libyubikey-dev \
- libykpers-1-dev \
- # ubuntu:14.04 has no quazip (it's optional)
- # libquazip5-dev \
- libxi-dev \
- libxtst-dev \
- libqrencode-dev \
- xclip \
- xvfb
-
-ENV PATH="/opt/${QT5_VERSION}/bin:${PATH}"
-ENV CMAKE_PREFIX_PATH="/opt/${QT5_VERSION}/lib/cmake"
-ENV CMAKE_INCLUDE_PATH="/opt/keepassxc-libs/include"
-ENV CMAKE_LIBRARY_PATH="/opt/keepassxc-libs/lib/x86_64-linux-gnu"
-ENV CPATH="${CMAKE_INCLUDE_PATH}"
-ENV LD_LIBRARY_PATH="${CMAKE_LIBRARY_PATH}:/opt/${QT5_VERSION}/lib"
-
-RUN set -x \
- && echo "/opt/${QT5_VERSION}/lib" > /etc/ld.so.conf.d/${QT5_VERSION}.conf \
- && echo "/opt/keepassxc-libs/lib/x86_64-linux-gnu" > /etc/ld.so.conf.d/keepassxc.conf
-
-# AppImage dependencies
-RUN set -x \
- && apt-get install -y \
- curl \
- libfuse2
-
-RUN set -x \
- && curl -L "https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage" > /usr/bin/linuxdeploy \
- && curl -L "https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-x86_64.AppImage" > /usr/bin/linuxdeploy-plugin-qt \
- && curl -L "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage" > /usr/bin/appimagetool \
- && chmod +x /usr/bin/linuxdeploy \
- && chmod +x /usr/bin/linuxdeploy-plugin-qt \
- && chmod +x /usr/bin/appimagetool
-
-RUN set -x \
- && apt-get autoremove --purge \
- && rm -rf /var/lib/apt/lists/*
-
-VOLUME ["/keepassxc"]
-WORKDIR /keepassxc
diff --git a/docs/KEYBINDS.md b/docs/KEYBINDS.md
new file mode 100644
index 000000000..a5984bfad
--- /dev/null
+++ b/docs/KEYBINDS.md
@@ -0,0 +1,34 @@
+# List of Keyboard Shortcuts for KeepassXC
+
+Actions | Keyboard Shortcuts
+---------------------------|----------------------------
+New Database | Ctrl + Shift + N
+Open Database | Ctrl + O
+Save Database | Ctrl + S
+Save Database As | Ctrl + Shift + S
+Close Database | Ctrl + W
+Lock Databases | Ctrl + L
+Quit | Ctrl + Q
+New Entry | Ctrl + N
+Edit Entry | Ctrl + E
+Delete Entry | Ctrl + D
+Clone Entry | Ctrl + K
+Show TOTP | Ctrl + Shift + T
+Copy TOTP | Ctrl + T
+Copy Username | Ctrl + B
+Copy Password | Ctrl + C
+Trigger AutoType | Ctrl + Shift - V
+Open Url | Ctrl + Shift - U
+Copy Url | Ctrl + U
+Show Minimized | Ctrl + M
+Hide Window | Ctrl + Shift - M
+Select Next Database Tab | Ctrl + Tab *OR* Ctrl + PGDN
+Select Previous Datase Tab | Ctrl + Shift + Tab *OR* Ctrl + PGUP
+Toggle Passwords Hidden | Ctrl + Shift + C
+Toggle Usernames Hidden | Ctrl + Shift + B
+Focus Search | Ctrl + F
+Clear Search | ESC
+
+
+
+
diff --git a/share/linux/org.keepassxc.KeePassXC.appdata.xml b/share/linux/org.keepassxc.KeePassXC.appdata.xml
index 644436a8f..b8e8c36d6 100644
--- a/share/linux/org.keepassxc.KeePassXC.appdata.xml
+++ b/share/linux/org.keepassxc.KeePassXC.appdata.xml
@@ -50,6 +50,16 @@
+
+
+
+
Fix library loading issues in the Snap and macOS releases [#3247]
+
Fix various keyboard navigation issues [#3248]
+
Fix main window toggling regression when clicking the tray icon on KDE [#3258]
+
Add documentation for keyboard shortcuts to source code distribution [#3215]
+
+
+
diff --git a/share/translations/keepassx_ja.ts b/share/translations/keepassx_ja.ts
index 8fb6e259e..9c5903cf8 100644
--- a/share/translations/keepassx_ja.ts
+++ b/share/translations/keepassx_ja.ts
@@ -3158,19 +3158,19 @@ Line %2, column %3
Disabled share %1
-
+ 共有 %1 を無効にするImport from share %1
-
+ 共有 %1 からインポートするExport to share %1
-
+ 共有 %1 にエクスポートするSynchronize with share %1
-
+ 共有 %1 と同期
@@ -5259,11 +5259,11 @@ Available commands:
Multiple import source path to %1 in %2
-
+ %2 の %1 への複数のインポートソースパスConflicting export target path %1 in %2
-
+ %2 のエクスポートターゲットパス %1 が競合していますCould not embed signature: Could not open file to write (%1)
diff --git a/share/translations/keepassx_th.ts b/share/translations/keepassx_th.ts
index a7fbc578f..eebea66af 100644
--- a/share/translations/keepassx_th.ts
+++ b/share/translations/keepassx_th.ts
@@ -11,12 +11,11 @@
Report bugs at: <a href="https://github.com/keepassxreboot/keepassxc/issues" style="text-decoration: underline;">https://github.com</a>
- รายงานข้อผิดพลาดที่: <a href="https://github.com/keepassxreboot/keepassxc/issues" style="text-decoration: underline;">https://github.com</a>
+ รายงานจุดบกพร่องที่ <a href="https://github.com/keepassxreboot/keepassxc/issues" style="text-decoration: underline;">https://github.com</a>KeePassXC is distributed under the terms of the GNU General Public License (GPL) version 2 or (at your option) version 3.
- KeePassXC เผยแพร่ภายใต้เงื่อนไขของสัญญาอนุญาตสาธารณะทั่วไปของกนู (GNU GPL)
-รุ่น 2 หรือรุ่น 3 (คุณสามารถเลือกได้)
+ KeePassXC เผยแพร่ภายใต้เงื่อนไขของสัญญาอนุญาตสาธารณะทั่วไปของกนู (GNU GPL) รุ่น 2 หรือรุ่น 3 (คุณสามารถเลือกได้)Contributors
@@ -28,109 +27,41 @@
Debug Info
- ข้อมูลดีบัก
+ ข้อมูลการแก้จุดบกพร่องInclude the following information whenever you report a bug:
- ใส่ข้อมูลดังต่อไปนี้ทุกครั้งที่คุณรายงานข้อผิดปกติของซอฟต์แวร์:
+ ใส่ข้อมูลดังต่อไปนี้ทุกครั้งที่คุณรายงานจุดบกพร่องของซอฟต์แวร์Copy to clipboard
- คัดลอกไปยังคลิปบอร์ด:
-
-
- Revision: %1
- การปรับปรุง: %1
-
-
- Distribution: %1
- การจัดจำหน่าย: %1
-
-
- Libraries:
- ไลบรารี:
-
-
- Operating system: %1
-CPU architecture: %2
-Kernel: %3 %4
- ระบบปฏิบัติการ: %1
-สถาปัตยกรรม CPU: %2
-เคอร์เนล: %3 %4
-
-
- Enabled extensions:
- ส่วนขยายที่เปิดใช้:
+ คัดลอกไปยังคลิปบอร์ดProject Maintainers:
- ผู้บำรุงรักษาโครงการ:
+ ผู้ดูแลโครงการSpecial thanks from the KeePassXC team go to debfx for creating the original KeePassX.
-
-
-
- Version %1
-
-
-
- Build Type: %1
-
-
-
- Auto-Type
- Auto-Type
-
-
- Browser Integration
- การทำงานร่วมกับเบราว์เซอร์
-
-
- SSH Agent
-
-
-
- YubiKey
-
-
-
- TouchID
-
-
-
- None
-
-
-
- KeeShare (signed and unsigned sharing)
-
-
-
- KeeShare (only signed sharing)
-
-
-
- KeeShare (only unsigned sharing)
-
+ ทีมงาน KeePassXC ขอขอบคุณ debfx สำหรับการสร้างตัวต้นฉบับของ KeePassXAgentSettingsWidgetEnable SSH Agent (requires restart)
-
+ เปิดใช้ตัวแทน SSH (ต้องเริ่มระบบคอมพิวเตอร์ใหม่)Use OpenSSH for Windows instead of Pageant
-
+ ใช้ OpenSSH สำหรับ Windows แทน PageantApplicationSettingsWidgetApplication Settings
- การตั้งค่าแอป
+ การตั้งค่าโปรแกรมGeneral
@@ -138,7 +69,7 @@ Kernel: %3 %4
Security
- ความมั่นคง
+ ความปลอดภัยAccess error for config file %1
@@ -146,23 +77,23 @@ Kernel: %3 %4
Icon only
-
+ ไอคอนเท่านั้นText only
-
+ ข้อความเท่านั้นText beside icon
-
+ ข้อความข้างไอคอนText under icon
-
+ ข้อความข้างล่างไอคอนFollow style
-
+ ปฏิบัติตามสไตล์
@@ -173,39 +104,39 @@ Kernel: %3 %4
Startup
-
+ เริ่มต้นStart only a single instance of KeePassXC
-
+ เริ่มต้นอินสแตนซ์เดี่ยวของ KeePassXC เท่านั้นRemember last databases
- จำฐานข้อมูลล่าสุด
+ จดจำฐานข้อมูลล่าสุดRemember last key files and security dongles
-
+ จดจำไฟล์สำคัญล่าสุดและความปลอดภัยของดองเกิลLoad previous databases on startup
-
+ โหลดฐานข้อมูลก่อนหน้าเมื่อเริ่มต้นระบบMinimize window at application startup
- ย่อหน้าต่างลงเล็กสุดตอนเริ่มแอป
+ ย่อหน้าต่างลงเล็กสุดตอนเริ่มโปรแกรมFile Management
-
+ การจัดการไฟล์Safely save database files (may be incompatible with Dropbox, etc)
-
+ บันทึกไฟล์ฐานข้อมูลอย่างปลอดภัย ( อาจจะไม่ตรงกับ Dropbox และอื่น ๆ )Backup database file before saving
-
+ สำรองไฟล์ฐานข้อมูลก่อนการบันทึกAutomatically save after every change
@@ -217,27 +148,27 @@ Kernel: %3 %4
Don't mark database as modified for non-data changes (e.g., expanding groups)
-
+ ไม่ทำเครื่องหมายบนฐานข้อมูลว่าแก้ไขแล้วสำหรับข้อมูลที่ไม่มีการเปลี่ยนแปลง (เช่น การขยายกลุ่ม)Automatically reload the database when modified externally
-
+ โหลดฐานข้อมูลใหม่โดยอัตโนมัติเมื่อมีการเปลี่ยนแปลงจากภายนอกEntry Management
-
+ การจัดการรายการUse group icon on entry creation
-
+ ใช้ไอคอนกลุ่มบนการสร้างรายการMinimize when copying to clipboard
- ย่อหน้าต่างเมื่อคัดลอกไปยังคลิปบอร์ด
+ ย่อหน้าต่างขณะที่คัดลอกไปยังคลิปบอร์ดHide the entry preview panel
-
+ ซ่อนแผงตัวอย่างแสดงรายการGeneral
@@ -245,23 +176,23 @@ Kernel: %3 %4
Hide toolbar (icons)
-
+ ซ่อนแถบเครื่องมือ (ไอคอน)Minimize instead of app exit
-
+ ย่อหน้าต่างแทนที่การปิดแอปShow a system tray icon
- แสดงไอคอนสำหรับ system tray
+ แสดงไอคอนของซิสเต็มเทรย์Dark system tray icon
-
+ ไอคอนซิสเต็มเทรย์แบบมืดHide window to system tray when minimized
-
+ ซ่อนหน้าต่างในซิสเต็มเทรย์เมื่อถูกย่อLanguage
@@ -273,55 +204,55 @@ Kernel: %3 %4
Use entry title to match windows for global Auto-Type
-
+ ใช้หัวข้อของรายการในการจับคู่หน้าต่างกับ Auto-Type สากลUse entry URL to match windows for global Auto-Type
-
+ ใช้ URL ของรายการในการจับคู่หน้าต่างกับ Auto-Type สากลAlways ask before performing Auto-Type
-
+ ถามก่อนเสมอเมื่อจะทำการ Auto-TypeGlobal Auto-Type shortcut
-
+ ทางลัดสำหรับ Auto-Type สากลAuto-Type typing delay
-
+ การพิมพ์ Auto-Type ล่าช้า msMilliseconds
- มิลลิวิ
+ มิลลิวินาทีAuto-Type start delay
-
+ การเริ่ม Auto-Type ล่าช้าCheck for updates at application startup
-
+ ตรวจสอบการอัปเดตตอนเริ่มแอปพลิเคชันInclude pre-releases when checking for updates
-
+ รวมเวอร์ชันที่ยังไม่เผยแพร่ในการตรวจสอบการอัปเดตMovable toolbar
-
+ แถบเครื่องมือที่เคลื่อนย้ายได้Button style
-
+ สไตล์ปุ่มApplicationSettingsWidgetSecurityTimeouts
-
+ หมดเวลาClear clipboard after
@@ -330,19 +261,19 @@ Kernel: %3 %4
secSeconds
- วิ
+ วินาทีLock databases after inactivity of
- ล็อกฐานข้อมูลหลังไม่มีการใช้งาน
+ ล็อคฐานข้อมูลหลังไม่มีการใช้งาน min
-
+ นาทีForget TouchID after inactivity of
-
+ ไม่จำ TouchID หลังไม่มีการใช้งานConvenience
@@ -350,39 +281,39 @@ Kernel: %3 %4
Lock databases when session is locked or lid is closed
-
+ ล็อคฐานข้อมูลเมื่อเซสชันถูกล็อคหรือฝาถูกปิดForget TouchID when session is locked or lid is closed
-
+ ไม่จำ TouchID เมื่อเซสชันถูกล็อคหรือฝาถูกปิดLock databases after minimizing the window
- ล็อกฐานข้อมูลหลังย่อหน้าต่างลงเล็กสุด
+ ล็อคฐานข้อมูลหลังย่อหน้าต่างลงRe-lock previously locked database after performing Auto-Type
-
+ ล็อคฐานข้อมูลก่อนหน้าอีกครั้งหลังทำการ Auto-TypeDon't require password repeat when it is visible
- ไม่ต้องถามรหัสผ่านซ้ำถ้ามองเห็นรหัสผ่านอยู่
+ ไม่ต้องถามรหัสผ่านซ้ำถ้ามองเห็นรหัสผ่านอยู่แล้วDon't hide passwords when editing them
-
+ ไม่ต้องซ่อนรหัสผ่านขณะกำลังแก้ไขรหัสผ่านDon't use placeholder for empty password fields
-
+ ไม่ต้องแสดงข้อความตัวอย่างในช่องกรอกรหัสผ่านHide passwords in the entry preview panel
-
+ ซ่อนรหัสผ่านในแผงแสดงตัวอย่างรายการHide entry notes by default
-
+ ซ่อนบันทึกรายการเป็นค่าตั้งต้นPrivacy
@@ -390,14 +321,14 @@ Kernel: %3 %4
Use DuckDuckGo as fallback for downloading website icons
-
+ ใช้ DuckDuckGo เป็นตัวแทนสำหรับดาวน์โหลดไอคอนเว็บไซต์AutoTypeCouldn't find an entry that matches the window title:
-
+ ไม่พบรายการที่ตรงกับหัวข้อเว็บไซต์Auto-Type - KeePassXC
@@ -409,19 +340,19 @@ Kernel: %3 %4
The Syntax of your Auto-Type statement is incorrect!
-
+ ไวยากรณ์ของคำสั่ง Auto-Type ไม่ถูกต้องThis Auto-Type command contains a very long delay. Do you really want to proceed?
-
+ คำสั่ง Auto-Type นี้ล่าช้า ต้องการดำเนินการต่อหรือไม่This Auto-Type command contains very slow key presses. Do you really want to proceed?
-
+ คำสั่ง Auto-Type นี้กดแป้นพิมพ์ช้า ต้องการดำเนินการต่อหรือไม่This Auto-Type command contains arguments which are repeated very often. Do you really want to proceed?
-
+ คำสั่ง Auto-Type นี้มีอาร์กิวเมนต์ซ้ำกันหลายครั้ง ต้องการดำเนินการต่อหรือไม่
@@ -466,14 +397,14 @@ Kernel: %3 %4
Select entry to Auto-Type:
-
+ เลือกรายการเพื่อ Auto-TypeBrowserAccessControlDialogKeePassXC-Browser Confirm Access
-
+ เบราว์เซอร์ KeePassXC ยืนยันการเข้าถึงRemember this decision
@@ -490,18 +421,19 @@ Kernel: %3 %4
%1 has requested access to passwords for the following item(s).
Please select whether you want to allow access.
-
+ %1 ต้องการเข้าถึงรหัสผ่านของไอเทมต่อไปนี้
+กรุณาเลือกว่าคุณจะอนุญาตหรือไม่BrowserEntrySaveDialogKeePassXC-Browser Save Entry
-
+ เบราว์เซอร์ KeePassXC บันทึกข้อมูลOk
-
+ โอเคCancel
@@ -510,22 +442,22 @@ Please select whether you want to allow access.
You have multiple databases open.
Please select the correct database for saving credentials.
-
+ คุณเปิดหลายฐานข้อมูล กรุณาเลือกฐานข้อมูลที่ถูกต้องเพื่อบันทึกข้อมูลของคุณBrowserOptionDialogDialog
-
+ หน้าต่างThis is required for accessing your databases with KeePassXC-Browser
-
+ สิ่งนี้จำเป็นเพื่อการเข้าถึงฐานข้อมูลผ่านเบราว์เซอร์ KeePassXCEnable KeepassXC browser integration
- เปิดใช้การผสาน KeepassXC กับเบราว์เซอร์
+ เปิดใช้ KeepassXC ร่วมกับเบราว์เซอร์General
@@ -533,7 +465,7 @@ Please select the correct database for saving credentials.
Enable integration for these browsers:
- เปิดใช้การผสานกับเบราว์เซอร์เหล่านี้:
+ เปิดการใช้เบราว์เซอร์เหล่านี้ร่วมกับ&Google Chrome
@@ -554,37 +486,37 @@ Please select the correct database for saving credentials.
Show a ¬ification when credentials are requestedCredentials mean login data requested via browser extension
-
+ แสดงการแจ้งเตือนเมื่อต้องการข้อมูลประจำตัวสำหรับเข้าระบบRe&quest to unlock the database if it is locked
-
+ คำร้องเพื่อปลดล็อคฐานข้อมูล หากถูกล็อคอยู่Only entries with the same scheme (http://, https://, ...) are returned.
-
+ ข้อมูลรูปแบบเดียวกันเท่านั้น (http://, https://, ...) จะถูกส่งคืน&Match URL scheme (e.g., https://...)
-
+ รูปแบบ URL ตรงกัน (เช่น https://...) ตรงกันOnly returns the best matches for a specific URL instead of all entries for the whole domain.
-
+ ส่งคืนรายการเฉพาะที่ตรงกับ URL มากที่สุด แทนที่จะส่งคืนรายการทั้งหมดของทั้งโดเมน&Return only best-matching credentials
-
+ คืนกลับเมื่อข้อมูลประจำตัวกันตรงกันที่สุดSort &matching credentials by titleCredentials mean login data requested via browser extension
-
+ เรียงลำดับข้อมูลประจำตัวตามหัวข้อSort matching credentials by &usernameCredentials mean login data requested via browser extension
-
+ เรียงลำดับข้อมูลประจำตัวตามชื่อผู้ใช้Advanced
@@ -593,131 +525,139 @@ Please select the correct database for saving credentials.
Never &ask before accessing credentialsCredentials mean login data requested via browser extension
-
+ ไม่เคยและถามก่อนการเข้าถึงเอกสารที่ผ่านการรับรองNever ask before &updating credentialsCredentials mean login data requested via browser extension
-
+ อย่าถามก่อนและระหว่างการอัปโหลดเอกสารที่ผ่านการรับรองOnly the selected database has to be connected with a client.
-
+ ฐานข้อมูลที่ถูกเลือกเท่านั้นที่เชื่อมกับผู้รับบริการSearc&h in all opened databases for matching credentialsCredentials mean login data requested via browser extension
-
+ Searc&h ในฐานข้อมูลทีเปิดแล้วเพื่อจับคู่กับข้อมูลประจำตัวAutomatically creating or updating string fields is not supported.
-
+ ไม่รองรับการสร้างหรืออัพเดท string fields โดยอัตโนมัติ&Return advanced string fields which start with "KPH: "
-
+ &ส่งคืน string fields ขั้นสูงที่เริ่มต้นด้วย "KPH:"Updates KeePassXC or keepassxc-proxy binary path automatically to native messaging scripts on startup.
-
+ ปรับปรุงข้อมูล KeePassXC หรือเส้นทางของไบนารี keepassxc-proxy โดยอัตโนมัติไปยังการส่งข้อความฉบับดั้งเดิมเมื่อเริ่มต้นUpdate &native messaging manifest files at startup
-
+ ปรับปรุงข้อมูลไฟล์รายการให้ทันสมัยเมื่อเริ่มต้นSupport a proxy application between KeePassXC and browser extension.
-
+ สนับสนุน proxy application ระหว่าง KeePassXC และเบราว์เซอร์ส่วนขยาย Use a &proxy application between KeePassXC and browser extension
-
+ ใช้ proxy application ระหว่าง KeePassXC และเบราว์เซอร์ส่วนขยายUse a custom proxy location if you installed a proxy manually.
-
+ ใช้พร็อกซีแบบกำหนดเอง ในกรณีที่คุณติดตั้งพร็อกซีด้วยตนเองUse a &custom proxy locationMeant is the proxy for KeePassXC-Browser
-
+ ใช้ &ตำแหน่งพร็อกซีที่กำหนดเองBrowse...Button for opening file dialog
- ดู...
+ ดู<b>Warning:</b> The following options can be dangerous!
-
+ <b> คำเตือน </b> ตัวเลือกต่อไปนี้อาจจะอันตรายSelect custom proxy location
-
-
-
- We're sorry, but KeePassXC-Browser is not supported for Snap releases at the moment.
-
-
-
- KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2.
-
+ เลือกตำแหน่งพร็อกซีที่กำหนดเอง&Tor Browser
-
+ &Tor Browser<b>Warning</b>, the keepassxc-proxy application was not found!<br />Please check the KeePassXC installation directory or confirm the custom path in advanced options.<br />Browser integration WILL NOT WORK without the proxy application.<br />Expected Path:
-
+ <b>คำเตือน</b> ไม่พบ keepassxc-proxy application <br />กรุณาตรวจสอบการลงข้อมูลไดเรคทอรี KeePassXC หรือยืนยันตัวเลือกขั้นสูงที่คุณกำหนดเอง <br />การรวมเบราว์เซอร์จะไม่ทำงานถ้าไม่มีพร๊อกซี application <br />เส้นทางที่คาดหวังExecutable Files
-
+ ไฟล์ปฏิบัติการAll Files
-
+ ไฟล์ทั้งหมดDo not ask permission for HTTP &Basic AuthAn extra HTTP Basic Auth setting
-
+ ไ่ม่ถามเพื่อขออนุญาติสำหรับ HTTP และ Basic Auth
+
+
+ Due to Snap sandboxing, you must run a script to enable browser integration.<br />You can obtain this script from %1
+ เนื่องจาก Snap sandbox คุณต้องเรียกใช้สคริปต์เพื่อเปิดใช้งานการรวมเบราว์เซอร์ <br /> คุณสามารถรับสคริปต์นี้จาก %1
+
+
+ Please see special instructions for browser extension use below
+ โปรดดูคำแนะนำพิเศษสำหรับการใช้งานส่วนขยายเบราว์เซอร์ด้านล่าง
+
+
+ KeePassXC-Browser is needed for the browser integration to work. <br />Download it for %1 and %2. %3
+ KeePassXC-Browser เป็นสิ่งจำเป็นสำหรับการทำงานร่วมกับเบราว์เซอร์ <br /> Download มันสำหรับ %1 และ %2. %3 BrowserServiceKeePassXC: New key association request
-
+ KeePassXC คำขอกุญแจที่เชื่อมโยงใหม่You have received an association request for the above key.
If you would like to allow it access to your KeePassXC database,
give it a unique name to identify and accept it.
-
+ คุณได้รับคำร้องขอที่เกี่ยวข้องสำหรับกุญแจด้านบน
+
+ถ้าคุณต้องการอนุญาตมันให้เข้าถึงฐานข้อมูล KeePassXC database
+โปรดให้ชื่อเฉพาะเพื่อยืนยันตัวตนและตอบรับมันSave and allow access
-
+ บันทึกและอนุญาติให้เข้าถึงKeePassXC: Overwrite existing key?
- KeePassXC: เขียนทับกุญแจที่มีอยู่เดิม?
+ KeePassXC เขียนทับกุญแจที่มีอยู่เดิมA shared encryption key with the name "%1" already exists.
Do you want to overwrite it?
-
+ กุญแจถอดรหัสลับที่ถูกแบ่งปันด้วยชื่อ "%1" มีอยู่ก่อนแล้ว
+คุณต้องการจะเขียนทับมันหรือไม่KeePassXC: Update Entry
- KeePassXC: ปรับปรุงรายการ
+ KeePassXC ปรับปรุงรายการDo you want to update the information in %1 - %2?
-
+ เธอต้องการจะปรับปรุงข้อมูลให้ทันสมัยใน %1 - %2 หรือไม่Abort
@@ -725,38 +665,51 @@ Do you want to overwrite it?
Converting attributes to custom data…
-
+ กำลังแปลงคุณสมบัติต่างๆเป็นข้อมูลที่กำหนดเอง ...KeePassXC: Converted KeePassHTTP attributes
-
+ KeePassXC: แปลงคุณลักษณะของ KeePassHTTP Successfully converted attributes from %1 entry(s).
Moved %2 keys to custom data.
-
+ แปลงคุณสมบัติจากรายการ %1 สำเร็จ
+ย้าย %2 กุญแจไปยังข้อมูลที่กำหนดเองSuccessfully moved %n keys to custom data.
-
+ ย้ายกุญแจ %n ไปยังข้อมูลที่กำหนดเองได้สำเร็จKeePassXC: No entry with KeePassHTTP attributes found!
-
+ KeePassXC ไม่พบรายการที่มีคุณสมบัติ KeePassHTTPThe active database does not contain an entry with KeePassHTTP attributes.
-
+ ฐานข้อมูลที่ยังใช้งานอยู่ไม่มีรายการตามคุณสมบัติ KeePassHTTP.KeePassXC: Legacy browser integration settings detected
-
+ KeePassXC ตรวจพบการตั้งค่าการรวมเบราว์เซอร์ดั้งเดิม
- Legacy browser integration settings have been detected.
-Do you want to upgrade the settings to the latest standard?
-This is necessary to maintain compatibility with the browser plugin.
-
+ KeePassXC: Create a new group
+ KeePassXC สร้างกลุ่มใหม่
+
+
+ A request for creating a new group "%1" has been received.
+Do you want to create this group?
+
+ ได้รับคำขอสำหรับการสร้างกลุ่มใหม่ "%1".
+คุณต้องการสร้างกลุ่มนี้หรือ?
+
+
+
+ Your KeePassXC-Browser settings need to be moved into the database settings.
+This is necessary to maintain your current browser connections.
+Would you like to migrate your existing settings now?
+ การตั้งค่าเบราว์เซอร์ KeePassXC ของคุณต้องถูกย้ายไปสู่การตั้งค่าฐานข้อมูล นี่จำเป็นต่อการรักษาการเชื่อมต่อเบราว์เซอร์ปัจจุบันของคุณ คุณต้องการย้ายการตั้งค่าที่มีอยู่แล้วตอนนี้หรือไม่
@@ -767,11 +720,11 @@ This is necessary to maintain compatibility with the browser plugin.
Append ' - Clone' to title
- เติม '- โคลน' ต่อท้ายชื่อ
+ เติม '- Clone' ต่อท้ายชื่อReplace username and password with references
- แทนที่ชื่อผู้ใช้และรหัสผ่านด้วยการอ้างอิง
+ แทนที่ชื่อผู้ใช้และรหัสผ่านด้วยข้อมูลอ้างอิงCopy history
@@ -786,7 +739,7 @@ This is necessary to maintain compatibility with the browser plugin.
filename
- ชื่อแฟ้ม
+ ชื่อไฟล์size, rows, columns
@@ -830,19 +783,19 @@ This is necessary to maintain compatibility with the browser plugin.
Column layout
-
+ เค้าโครงหลักNot present in CSV file
-
+ ไม่ปรากฏในไฟล์ CSVImported from CSV file
- นำเข้าจากแฟ้ม CSV แล้ว
+ นำเข้าจากไฟล์ CSV แล้วOriginal data:
- ข้อมูลต้นฉบับ:
+ ข้อมูลต้นฉบับError
@@ -850,24 +803,24 @@ This is necessary to maintain compatibility with the browser plugin.
Empty fieldname %1
-
+ ล้าง fieldname %1column %1
-
+ หลัก %1Error(s) detected in CSV file!
-
+ ตรวจพบข้อผิดพลาดในไฟล์ CSV[%n more message(s) skipped]
-
+ [%n ข้ามข้อความอื่นๆ]CSV import: writer has errors:
%1
-
+ นำเข้า CSV ผู้เขียนมีข้อผิดพลาด %1
@@ -879,15 +832,15 @@ This is necessary to maintain compatibility with the browser plugin.
%1, %2, %3file info: bytes, rows, columns
-
+ %1 %2 %3%n byte(s)
-
+ %n ไบท์%n row(s)
-
+ %n แถว
@@ -899,30 +852,34 @@ This is necessary to maintain compatibility with the browser plugin.
File %1 does not exist.
-
+ ไม่มีไฟล์ %1 Unable to open file %1.
-
+ ไม่สามารถเปิดไฟล์ %1Error while reading the database: %1
-
+ เกิดข้อผิดพลาดระหว่างอ่านฐานข้อมูล %1Could not save, database has no file name.
-
+ ฐานข้อมูลไม่มีชื่อไฟล์ ไม่สามารถบันทึกได้File cannot be written as it is opened in read-only mode.
-
+ ไม่สามารถเขียนไฟล์ได้เนื่องจากถูกเปิดอยู่ในโหมดอ่านเท่านั้น
+
+
+ Key not transformed. This is a bug, please report it to the developers!
+ กุญแจไม่ถูกเปลี่ยนแปลง นี่คือจุดบกพร่อง กรุณารายงานไปที่นักพัฒนาDatabaseOpenDialogUnlock Database - KeePassXC
-
+ ปลดล็อกฐานข้อมูล - KeePassXC
@@ -933,34 +890,36 @@ This is necessary to maintain compatibility with the browser plugin.
Key File:
- แฟ้มกุญแจ:
+ ไฟล์กุญแจคือPassword:
- รหัสผ่าน:
+ รหัสผ่านคือBrowse
- ดู
+ เรียกดูRefresh
- เรียกใหม่
+ รีเฟรชChallenge Response:
- รหัสสอบถาม รหัสตอบกลับ:
+ การตอบกลับของการตรวจสอบ คือ Legacy key file format
-
+ รูปแบบไฟล์กุญแจแบบดั้งเดิมYou are using a legacy key file format which may become
unsupported in the future.
Please consider generating a new key file.
-
+ คุณกำลังใช้รูปแบบไฟล์กุญแจแบบดั้งเดิม ซึ่งอาจไม่ได้รับการสนับสนุนในอนาคต
+
+กรุณาพิจารณาสร้างไฟล์กุญแจใหม่Don't show this warning again
@@ -968,29 +927,31 @@ Please consider generating a new key file.
All files
- ทุกแฟ้ม
+ ทุกไฟล์Key files
- แฟ้มกุญแจ
+ ไฟล์กุญแจSelect key file
- เลือกแฟ้มกุญแจ
+ เลือกไฟล์กุญแจTouchID for quick unlock
-
+ TouchID สำหรับการปลดล็อคแบบเร็วUnable to open the database:
%1
-
+ ไม่สามารถเปิดฐานข้อมูลได้
+%1Can't open key file:
%1
-
+ ไม่สามารถเปิดไฟล์กุญแจได้
+%1
@@ -1004,7 +965,7 @@ Please consider generating a new key file.
DatabaseSettingsDialogAdvanced Settings
-
+ การตั้งค่าขั้นสูงGeneral
@@ -1012,15 +973,15 @@ Please consider generating a new key file.
Security
- ความมั่นคง
+ การรักษาความปลอดภัยMaster Key
-
+ กุญแจมาสเตอร์Encryption Settings
-
+ การตั้งค่าการเข้ารหัสลับBrowser Integration
@@ -1031,57 +992,59 @@ Please consider generating a new key file.
DatabaseSettingsWidgetBrowserKeePassXC-Browser settings
-
+ การตั้งค่าของเบราว์เซอร์ KeePassXC&Disconnect all browsers
- หยุดการเชื่อมต่อกับทุกเบราว์เซอร์ (&D)
+ &หยุดการเชื่อมต่อกับทุกเบราว์เซอร์Forg&et all site-specific settings on entries
-
+ ไม่จดจำการตั้งค่าเฉพาะสำหรับทุกไซต์บนรายการMove KeePassHTTP attributes to KeePassXC-Browser &custom data
-
+ ย้ายลักษณะ KeePassHTTP ไปยังKeePassXC-Browser และข้อมูลตามคำสั่งStored keys
-
+ กุญแจที่ถูกเก็บไว้Remove
- นำออก
+ ลบDelete the selected key?
-
+ ลบกุญแจที่เลือกหรือไม่Do you really want to delete the selected key?
This may prevent connection to the browser plugin.
-
+ คุณต้องการจะลบกุญแจที่เลือกหรือไม่
+สิ่งนี้อาจทำให้การเชื่อมต่อกับโปรแกรมเสริมบนเบราว์เซอร์มีปัญหาKey
-
+ กุญแจValue
-
+ ค่าEnable Browser Integration to access these settings.
-
+ เปิดการใช้ Browser Integration เพื่อเข้าถึงการตั้งค่านี้Disconnect all browsers
-
+ หยุดการเชื่อมต่อกับทุกเบราว์เซอร์Do you really want to disconnect all browsers?
This may prevent connection to the browser plugin.
-
+ คุณต้องการหยุดการเชื่อมต่อกับทุกเบราวเซอร์หรือไม่
+สิ่งนี้อาจทำให้การเชื่อมต่อกับโปรแกรมเสริมบนเบราว์เซอร์มีปัญหาKeePassXC: No keys found
@@ -1089,7 +1052,7 @@ This may prevent connection to the browser plugin.
No shared encryption keys found in KeePassXC settings.
-
+ ไม่พบการแบ่งปันกุญแจที่ถูกเข้ารหัสลับแล้วในการตั้งค่า KeePassXCKeePassXC: Removed keys from database
@@ -1097,49 +1060,50 @@ This may prevent connection to the browser plugin.
Successfully removed %n encryption key(s) from KeePassXC settings.
-
+ ลบ %n กุญแจเข้ารหัสลับจากการตั้งค่า KeePassXC สำเร็จForget all site-specific settings on entries
-
+ ไม่จำการตั้งค่าเฉพาะสำหรับทุกไซต์บนรายการDo you really want forget all site-specific settings on every entry?
Permissions to access entries will be revoked.
-
+ คุณจะไม่จำการตั้งค่าเฉพาะสำหรับทุกไซต์บนทุกรายการหรือไม่
+การอนุญาตให้เข้าถึงรายการต่างๆ จะถูกยกเลิกRemoving stored permissions…
-
+ กำลังลบการอนุญาตที่บันทึกออกAbort
- หยุด
+ ยกเลิกการทำงานKeePassXC: Removed permissions
- KeePassXC: การอนุญาตถูกนำออก
+ KeePassXC: การอนุญาตถูกลบออกSuccessfully removed permissions from %n entry(s).
-
+ ลบการอนุญาตจากรายการ %nKeePassXC: No entry with permissions found!
-
+ KeePassXC: ไม่มีรายการที่ได้รับอนุญาตThe active database does not contain an entry with permissions.
-
+ ฐานข้อมูลที่ปฏิบัติการอยู่ไม่มีรายการที่ได้รับอนุญาตMove KeePassHTTP attributes to custom data
-
+ ย้ายลักษณะ KeePassHTTP ไปยังข้อมูลตามคำสั่งDo you really want to move all legacy browser integration data to the latest standard?
This is necessary to maintain compatibility with the browser plugin.
-
+ คุณต้องการที่จะย้ายข้อมูลผสานในเบราว์เซอร์แบบเดิมไปยังมาตรฐานล่าสุดจริงหรือ นี่เป็นสิ่งที่จำเป็นในการรักษาความเข้ากับโปรแกรเสริมของเบราว์เซอร์
@@ -1150,7 +1114,7 @@ This is necessary to maintain compatibility with the browser plugin.
AES: 256 Bit (default)
- AES: 256 บิต (ค่าปริยาย)
+ AES: 256 บิต (ค่าเริ่มต้น)Twofish: 256 Bit
@@ -1158,83 +1122,84 @@ This is necessary to maintain compatibility with the browser plugin.
Key Derivation Function:
-
+ อนุพันธ์ของฟังก์ชันหลักTransform rounds:
- รอบเปลี่ยนรูป:
+ รอบเปลี่ยนรูปBenchmark 1-second delay
-
+ เกณฑ์มาตรฐานล่าช้า 1 วินาทีMemory Usage:
-
+ การใช้หน่วยความจำParallelism:
-
+ การทำงานแบบขนานDecryption Time:
-
+ เวลาการเข้ารหัสลับ?? s
-
+ ?? วินาทีChange
-
+ เปลี่ยนแปลง100 ms
-
+ 100 มิลลิวินาที5 s
-
+ 5 วินาทีHigher values offer more protection, but opening the database will take longer.
-
+ ค่าที่สูงกว่าจะมีการป้องกันมากกว่า แต่จะใช้เวลาในการเปิดฐานข้อมูลนานกว่าDatabase format:
-
+ รูปแบบฐานข้อมูลThis is only important if you need to use your database with other programs.
-
+ ส่วนนี้สำคัญเฉพาะเมื่อคุณต้องการใช้ฐานข้อมูลกับโปรแกรมอื่นKDBX 4.0 (recommended)
-
+ KDBX 4.0 (แนะนำ)KDBX 3.1
-
+ KDBX 3.1unchangedDatabase decryption time is unchanged
-
+ ไม่เปลี่ยนแปลงNumber of rounds too highKey transformation rounds
-
+ จำนวนรอบยาวเกินไปYou are using a very high number of key transform rounds with Argon2.
If you keep this number, your database may take hours or days (or even longer) to open!
-
+ คุณกำลังใช้จำนวนของรอบการแปลงกุญแจกับ Argon2 สูง
+ถ้าคุณใช้จำนวนนี้ ฐานข้อมูลของคุณอาจจะใช้เวลาหลายชั่วโมง หรือหลายวัน (หรือนานกว่านั้น) เพื่อเปิดUnderstood, keep number
-
+ เข้าใจแล้ว เก็บตัวเลขไว้Cancel
@@ -1243,41 +1208,42 @@ If you keep this number, your database may take hours or days (or even longer) t
Number of rounds too lowKey transformation rounds
-
+ จำนวนรอบต่ำเกินไปYou are using a very low number of key transform rounds with AES-KDF.
If you keep this number, your database may be too easy to crack!
-
+ คุณกำลังใช้จำนวนของรอบการแปลงกุญแจกับ AES-KDF ต่ำ
+ถ้าคุณใช้จำนวนนี้ ฐานข้อมูลของคุณอาจจะถูกถอดได้อย่างง่ายKDF unchanged
-
+ KDF ไม่เปลี่ยนแปลงFailed to transform key with new KDF parameters; KDF unchanged.
-
+ ล้มเหลวการเปลี่ยนกุญแจกับเครื่องวัด KDF ใหม่ KDF จึงไม่เปลี่นแปลง MiBAbbreviation for Mebibytes (KDF settings)
-
+ MiB thread(s)Threads for parallel execution (KDF settings)
-
+ thread(s)%1 msmilliseconds
-
+ %1 มิลลิวินาที%1 sseconds
-
+ %1 วินาที
@@ -1288,15 +1254,15 @@ If you keep this number, your database may be too easy to crack!
Database name:
- ชื่อฐานข้อมูล:
+ ชื่อฐานข้อมูลDatabase description:
- รายละเอียดฐานข้อมูล:
+ รายละเอียดฐานข้อมูลDefault username:
- ชื่อผู้ใช้มาตรฐาน:
+ ค่าเริ่มต้นของชื่อผู้ใช้History Settings
@@ -1304,15 +1270,15 @@ If you keep this number, your database may be too easy to crack!
Max. history items:
- จำนวนมากสุดของรายการประวัติ:
+ จำนวนมากสุดของรายการประวัติMax. history size:
- ขนาดมากสุดของรายการประวัติ:
+ ขนาดมากสุดของรายการประวัติ MiB
- MiB
+ MiBUse recycle bin
@@ -1320,68 +1286,70 @@ If you keep this number, your database may be too easy to crack!
Additional Database Settings
-
+ การตั้งค่าฐานข้อมูลเพิ่มเติมEnable &compression (recommended)
-
+ การเปิดใช้งานและการบีบอัด (แนะนำ)DatabaseSettingsWidgetKeeShareSharing
-
+ แบ่งปันBreadcrumb
-
+ ชิ้นส่วนย่อยType
-
+ ชนิดPath
-
+ เส้นทางLast Signer
-
+ ผู้ลงชื่อเข้าใช้คนล่าสุดCertificates
-
+ ใบรับรอง > Breadcrumb separator
-
+ > DatabaseSettingsWidgetMasterKeyAdd additional protection...
-
+ เพิ่มเติมส่วนป้องกันเพิ่มเติมNo encryption key added
-
+ ไม่มีกุญแจถอดรหัสลับที่เพิ่มเข้ามาYou must add at least one encryption key to secure your database!
-
+ คุณต้องเพิ่มกุญแจเปิดรหัสลับอย่างน้อย 1 อันเพื่อป้องกันฐานข้อมูลของคุณNo password set
-
+ รหัสผ่านยังไม่ได้ติดตั้งWARNING! You have not set a password. Using a database without a password is strongly discouraged!
Are you sure you want to continue without a password?
-
+ คำเตือน! คุณยังไม่ได้ตั้งรหัสผ่าน. การใช้ฐานข้อมูลโดยไม่ใช้รหัสผ่านเป็นเรื่องที่ไม่สนับสนุนเป็นอย่างยิ่ง
+
+คุณแน่ใจหรือไม่ที่จะดำเนินการต่อโดยไม่ใช้รหัสผ่าน?Unknown error
@@ -1389,18 +1357,18 @@ Are you sure you want to continue without a password?
Failed to change master key
-
+ การเปลี่ยนแปลงกุญแจหลักล้มเหลวDatabaseSettingsWidgetMetaDataSimpleDatabase Name:
-
+ ชื่อฐานข้อมูลDescription:
-
+ รายละเอียด
@@ -1411,7 +1379,7 @@ Are you sure you want to continue without a password?
All files
- ทุกแฟ้ม
+ ทุกไฟล์Open database
@@ -1419,7 +1387,7 @@ Are you sure you want to continue without a password?
CSV file
- แฟ้ม CSV
+ ไฟล์ CSVMerge database
@@ -1435,94 +1403,95 @@ Are you sure you want to continue without a password?
Export database to CSV file
- ส่งออกฐานข้อมูลเป็นแฟ้ม CSV
+ ส่งออกฐานข้อมูลเป็นไฟล์ CSVWriting the CSV file failed.
- การเขียนแฟ้ม CSV ล้มเหลว
+ การเขียนไฟล์ CSV ล้มเหลวDatabase creation error
-
+ การสร้างฐานข้อมูลเกิดข้อผิดพลาดThe created database has no key or KDF, refusing to save it.
This is definitely a bug, please report it to the developers.
-
+ ฐานข้อมูลที่สร้างขึ้นไม่มีรหัสหรือ KDF ปฏิเสธที่จะบันทึก
+สิ่งนี้มีจุดบกพร่องแน่นอนโปรดรายงานต่อนักพัฒนาเวปThe database file does not exist or is not accessible.
-
+ ไม่พบไฟล์ฐานข้อมูล หรือไม่สามารถเข้าถึงได้Select CSV file
-
+ เลือกไฟล์ CSVNew Database
-
+ ฐานข้อมูลใหม่%1 [New Database]Database tab name modifier
-
+ %1 [ฐานข้อมูลใหม่]%1 [Locked]Database tab name modifier
-
+ %1 [ถูกล็อก]%1 [Read-only]Database tab name modifier
-
+ %1 [อ่านอย่างเดียว]DatabaseWidgetSearching...
- ค้นหา...
+ กำลังค้นหาDo you really want to delete the entry "%1" for good?
- คุณต้องการจะลบรายการ "%1" ให้หายไปตลอดกาลจริงๆ?
+ คุณต้องการจะลบรายการ "%1" ให้หายไปอย่างถาวรจริงหรือไม่Do you really want to move entry "%1" to the recycle bin?
-
+ คุณต้องการจะย้ายรายการ "%1" ไปยังถังขยะจริงหรือไม่Do you really want to move %n entry(s) to the recycle bin?
-
+ คุณต้องการจะลบ %n รายการไปยังถังขยะจริงหรือไม่Execute command?
-
+ เริ่มดำเนินการตามคำสั่งเลยหรือไม่Do you really want to execute the following command?<br><br>%1<br>
-
+ คุณต้องการดำเนินการตามคำสั่งหรือไม่<br><br>%1<br>Remember my choice
- จำที่ฉันเลือก
+ จำสิ่งที่ฉันเลือกDo you really want to delete the group "%1" for good?
- คุณต้องการจะลบกลุ่ม "%1" ไปตลอดกาลจริงหรือ?
+ คุณต้องการจะลบกลุ่ม "%1" ให้หายไปอย่างถาวรจริงหรือไม่No current database.
- ไม่มีฐานข้อมูลขณะนี้
+ ไม่มีฐานข้อมูลปัจจุบันNo source database, nothing to do.
- ไม่มีฐานข้อมูลต้นทาง ไม่มีงานให้ทำ
+ ไม่มีฐานข้อมูลต้นทาง ไม่ต้องทำอะไรSearch Results (%1)
- ผลลัพธ์การค้นหา (%1)
+ ผลการค้นหา (%1)No Results
@@ -1530,86 +1499,91 @@ This is definitely a bug, please report it to the developers.
File has changed
-
+ ไฟล์เปลี่ยนไปแล้วThe database file has changed. Do you want to load the changes?
-
+ ฐานข้อมูลไฟล์เปลี่ยนไปแล้ว คุณต้องการโหลดการเปลี่ยนแปลงหรือไม่Merge Request
- ผสานคำร้อง
+ คำร้องเพื่อผสานThe database file has changed and you have unsaved changes.
Do you want to merge your changes?
-
+ ไฟล์ฐานข้อมูลเปลี่ยนไปแล้วและคุณได้ยกเลิกบันทึกการเปลี่ยนแปลงแล้ว
+คุณต้องการผสานการเปลี่ยนแปลงของคุณหรือไม่Empty recycle bin?
-
+ ล้างถังขยะหรือไม่Are you sure you want to permanently delete everything from your recycle bin?
-
+ คุณแน่ใจว่าจะลบทุกอย่างออกจากถังขยะของคุณอย่างถาวรหรือไม่Do you really want to delete %n entry(s) for good?
-
+ คุณต้องการจะลบ %n รายการอย่างถาวรหรือไม่Delete entry(s)?
-
+ ลบรายการหรือไม่Move entry(s) to recycle bin?
-
+ ย้ายรายการไปยังถังขยะหรือไม่File opened in read only mode.
- เปิดแฟ้มแล้วในแบบอ่านอย่างเดียว
+ ไฟล์เปิดแล้วอยู่ในโหมดอ่านอย่างเดียวLock Database?
-
+ ล็อคฐานข้อมูลหรือไม่You are editing an entry. Discard changes and lock anyway?
-
+ กำลังอยู่ในระหว่างแก้ไขรายการ คุณต้องการจะยกเลิกการแก้ไขและล็อคตอนนี้จริงหรือไม่"%1" was modified.
Save changes?
- "%1" ถูกแก้ไข
-บันทึกการเปลี่ยนแปลง?
+ "%1" ถูกแก้ไขแล้ว
+บันทึกการเปลี่ยนแปลงหรือไม่Database was modified.
Save changes?
-
+ ฐานข้อมูลถูกแก้ไขแล้ว
+บันทึกการเปลี่ยนแปลงหรือไม่Save changes?
- บันทึกความเปลี่ยนแปลง?
+ บันทึกการเปลี่ยนแปลง?Could not open the new database file while attempting to autoreload.
Error: %1
-
+ ไม่สามารถเปิดไฟล์ฐานข้อมูลใหม่ขณะกำลังพยายามรีโหลดอัตโนมัติ
+ข้อผิดพลาด %1Disable safe saves?
-
+ ปิดการบันทึกแบบปลอดภัยหรือไม่KeePassXC has failed to save the database multiple times. This is likely caused by file sync services holding a lock on the save file.
Disable safe saves and try again?
-
+ KeePassXC ไม่สามารถบันทึกฐานข้อมูลแล้วหลายครั้ง สิ่งนี้อาจทำให้บริการเชื่อมโยงไฟล์ล็อคไฟล์ที่ถูกบันทึกไว้แล้ว
+ปิดการบันทึกแบบปลอดภัยและลองอีกครั้งหรือไม่Writing the database failed.
%1
-
+ การเขียนฐานข้อมูลล้มเหลว
+%1Passwords
@@ -1625,31 +1599,35 @@ Disable safe saves and try again?
Replace references to entry?
-
+ เปลี่ยนแหล่งอ้างอิงของรายการหรือไม่Entry "%1" has %2 reference(s). Do you want to overwrite references with values, skip this entry, or delete anyway?
-
+ รายการ "%1" มี %2 แหล่งอ้างอิง คุณต้องการจะเขียนทับแหล่งอ้างอิงด้วยค่า หรือข้ามรายการนี้ หรือต้องการลบหรือไม่Delete group
-
+ ลบกลุ่มMove group to recycle bin?
-
+ ย้ายกลุ่มไปถังขยะDo you really want to move the group "%1" to the recycle bin?
-
+ คุณต้องการย้ายกลุ่ม "%1" ไปถังขยะจริงหรือไม่Successfully merged the database files.
-
+ รวมไฟล์ฐานข้อมูลเรียบร้อยแล้วDatabase was not modified by merge operation.
-
+ ฐานข้อมูลไม่ถูกเปลี่ยนแปลงโดยการดำเนินการผสาน
+
+
+ Shared group...
+ กลุ่มที่ใช้ร่วมกัน
@@ -1680,11 +1658,11 @@ Disable safe saves and try again?
SSH Agent
-
+ ตัวแทน SSHn/a
- ไม่มีข้อมูล
+ n/a(encrypted)
@@ -1696,11 +1674,11 @@ Disable safe saves and try again?
File too large to be a private key
- แฟ้มใหญ่เกินกว่าจะเป็นกุญแจส่วนตัว
+ ไฟล์ใหญ่เกินกว่าจะเป็นกุญแจส่วนตัวFailed to open private key
- ผิดพลาดระหว่างการเปิดกุญแจส่วนตัว
+ ล้มเหลวระหว่างการเปิดกุญแจส่วนตัวEntry history
@@ -1724,7 +1702,7 @@ Disable safe saves and try again?
Are you sure you want to remove this attribute?
-
+ คุณแน่ใจหรือไม่ว่าต้องการลบคุณสมบัตินี้Tomorrow
@@ -1740,35 +1718,35 @@ Disable safe saves and try again?
Apply generated password?
-
+ ใช้รหัสผ่านที่ถูกสร้างหรือไม่Do you want to apply the generated password to this entry?
-
+ คุณต้องการใช้รหัสผ่านที่ถูกสร้างในรายการนี้หรือไม่Entry updated successfully.
-
+ รายการถูกอัปเดตสำเร็จแล้วEntry has unsaved changes
-
+ รายการมีการเปลี่ยนแปลงที่ไม่ถูกบันทึกNew attribute %1
-
+ คุณสมบัติใหม่ %1[PROTECTED] Press reveal to view or edit
-
+ [ถูกป้องกัน] กดเปิดเผยเพื่อดูหรือแก้ไข%n year(s)
-
+ %n ปีConfirm Removal
-
+ ยืนยันการนำออก
@@ -1803,30 +1781,30 @@ Disable safe saves and try again?
Foreground Color:
-
+ สีพื้นหน้าBackground Color:
-
+ สีพื้นหลังEditEntryWidgetAutoTypeEnable Auto-Type for this entry
-
+ เปิดใช้ Auto -Type สำหรับรายการนี้Inherit default Auto-Type sequence from the &group
-
+ รับช่วงลำดับการตั้งค่าเริ่มต้นAuto-Typeจาก&กลุ่ม&Use custom Auto-Type sequence:
-
+ &ใช้ลำดับการตั้งค่าเริ่มต้น Auto-TypeWindow Associations
-
+ หน้าต่างการเชื่อมโยง+
@@ -1838,11 +1816,11 @@ Disable safe saves and try again?
Window title:
- หัวเรื่องของหน้าต่าง:
+ หัวเรื่องของหน้าต่างUse a specific sequence for this association:
-
+ ใช้ลำดับเฉพาะในการเชื่อมโยง
@@ -1872,15 +1850,15 @@ Disable safe saves and try again?
Password:
- รหัสผ่าน:
+ รหัสผ่านRepeat:
- ทำซ้ำ:
+ ทำซ้ำTitle:
- หัวเรื่อง:
+ หัวเรื่องNotes
@@ -1892,11 +1870,11 @@ Disable safe saves and try again?
Toggle the checkbox to reveal the notes section.
-
+ สลับกล่องกาเครื่องหมายเพื่อแสดงส่วนบันทึกUsername:
- ชื่อผู้ใช้:
+ ชื่อผู้ใช้งานExpires
@@ -1907,11 +1885,11 @@ Disable safe saves and try again?
EditEntryWidgetSSHAgentForm
-
+ จากRemove key from agent after
-
+ ลบกุญแจออกจากตัวแทน seconds
@@ -1919,11 +1897,11 @@ Disable safe saves and try again?
Fingerprint
-
+ ลายนิ้วมือRemove key from agent when database is closed/locked
-
+ ลบกุญแจออกจากตัวแทน เมือฐานข้อมูลถูกปิดหรือล๊อคPublic key
@@ -1931,11 +1909,11 @@ Disable safe saves and try again?
Add key to agent when database is opened/unlocked
-
+ เพิ่มกุญแจไปยังตัวยแทน เมื่อฐานข้อมูลถูกเปิดออกหรือถูกปลดล๊อดComment
- ความเห็น
+ ข้อคิดเห็นDecrypt
@@ -1947,7 +1925,7 @@ Disable safe saves and try again?
Copy to clipboard
- คัดลอกไปยังคลิปบอร์ด:
+ คัดลอกไปยังคลิปบอร์ดPrivate key
@@ -1960,7 +1938,7 @@ Disable safe saves and try again?
Browse...Button for opening file dialog
- ดู...
+ เรียกดู...Attachment
@@ -1968,15 +1946,15 @@ Disable safe saves and try again?
Add to agent
-
+ เพิ่มไปยังตัวแทนRemove from agent
-
+ ลบออกจากตัวแทนRequire user confirmation when this key is used
-
+ จำเป็นต้องยืนยันผู้ใช้เมื่อมีการใช้กุญแจ
@@ -2011,82 +1989,98 @@ Disable safe saves and try again?
Inherit from parent group (%1)
-
+ รับช่วงจากกลุ่มหลัก (%1)EditGroupWidgetKeeShareForm
-
+ จากType:
-
+ ชนิดPath:
-
+ เส้นทาง...
-
+ ...Password:
- รหัสผ่าน:
+ รหัสผ่านInactive
-
+ ไม่มีการใช้งานImport from path
-
+ นำเข้าจากพาทExport to path
-
+ นำออกจากพาทSynchronize with path
-
+ เชื่อมต่อกับพาทYour KeePassXC version does not support sharing your container type. Please use %1.
-
+ รุ่น KeePassXC ของคุณไม่รับรองประเภทของตัวจัดเก็บที่แบ่งปันไว้ กรุณาใช้ %1Database sharing is disabled
-
+ ปิดการใช้งานการแบ่งปันฐานข้อมูลDatabase export is disabled
-
+ ปิดการใช้งานการนำฐานข้อมูลออกDatabase import is disabled
-
+ ปิดการใช้งานการนำฐานข้อมูลเข้าKeeShare unsigned container
-
+ ที่จัดเก็บที่ไม่ได้เซ็นไว้ของKeeShareKeeShare signed container
-
+ ที่จัดเก็บที่เซ็นไว้ของKeeShareSelect import source
-
+ เลือกนำฐานข้อมูลที่นำเข้าSelect export target
-
+ เลือกเป้าหมายที่นำออกSelect import/export file
-
+ เลือกแฟ้มนำเข้า/นำออก
+
+
+ Clear
+ ล้าง
+
+
+ The export container %1 is already referenced.
+ อ้างอิงการส่งออกที่จัดเก็บ %1แล้ว
+
+
+ The import container %1 is already imported.
+ นำเข้าที่จัดเก็บ %1 แล้ว
+
+
+ The container %1 imported and export by different groups.
+ นำเข้าและนำออกที่จัดเก็บ %1 จากกลุ่มต่างๆ
@@ -2113,11 +2107,11 @@ Disable safe saves and try again?
&Use default Auto-Type sequence of parent group
-
+ &ใช้การตั้งค่าลำดับ Auto-Type เริ่มต้นจากกลุ่มหลักSet default Auto-Type se&quence
-
+ ตั้งค่าลำดับ Auto-Type เริ่มต้น
@@ -2144,7 +2138,7 @@ Disable safe saves and try again?
Unable to fetch favicon.
- ไม่สามารถดึง favicon ได้
+ ไม่สามารถดึงข้อมูล favicon ได้Images
@@ -2164,58 +2158,58 @@ Disable safe saves and try again?
Custom icon successfully downloaded
-
+ ดาวน์โหลดไอคอนที่กำหนดเองสำเร็จHint: You can enable DuckDuckGo as a fallback under Tools>Settings>Security
-
+ คำแนะนำ: คุณสามารถใช้ DuckDuckGo แสดงแทนได้ที่ เครื่องมือ>การตั้งค่า>ความปลอดภัย Select Image(s)
-
+ เลือกรูปภาพSuccessfully loaded %1 of %n icon(s)
-
+ การโหลดไอคอน %1 ของ %1 ประสบความสำเร็จNo icons were loaded
-
+ ไอคอนไม่ถูกโหลด%n icon(s) already exist in the database
-
+ %n ไอคอนมีอยู่แล้วในฐานข้อมูลThe following icon(s) failed:
-
+ ไอคอนต่อไปนี้ล้มเหลวThis icon is used by %n entry(s), and will be replaced by the default icon. Are you sure you want to delete it?
-
+ ไอคอนนี้ถูกใช้โดย %n เอ็นทรี และจะถูกแทนที่ด้วยไอคอนตั้งต้น คุณแน่ใจหรือไม่ว่าคุณต้องการลบไอคอนEditWidgetPropertiesCreated:
- สร้าง:
+ สร้างModified:
- แก้ไข:
+ แก้ไขAccessed:
- เข้าถึง:
+ เข้าถึงUuid:
- Uuid:
+ UuidPlugin Data
-
+ ข้อมูลโปรแกรมเสริมRemove
@@ -2223,27 +2217,28 @@ Disable safe saves and try again?
Delete plugin data?
-
+ ลบข้อมูลโปรแกรมเสริมหรือไม่Do you really want to delete the selected plugin data?
This may cause the affected plugins to malfunction.
-
+ คุณต้องการลบข้อมูลโปรแกรมเสริมที่เลือกไว้หรือไม่
+การกระทำนี้อาจจะกระทบโปรแกรมเสริมให้ทำงานผิดพลาดKey
-
+ กุญแจValue
-
+ ค่าEntry%1 - Clone
-
+ %1 -ลอกแบบ
@@ -2261,7 +2256,7 @@ This may cause the affected plugins to malfunction.
EntryAttachmentsWidgetForm
-
+ รูปแบบAdd
@@ -2285,7 +2280,7 @@ This may cause the affected plugins to malfunction.
Are you sure you want to remove %n attachment(s)?
-
+ คุณแน่ใจหรือไม่ว่าคุณต้องการลบไฟล์แนบSave attachments
@@ -2294,11 +2289,12 @@ This may cause the affected plugins to malfunction.
Unable to create directory:
%1
-
+ ไม่สามารถสร้างไดเรคทอรี
+%1Are you sure you want to overwrite the existing file "%1" with the attachment?
-
+ คุณแน่ใจหรือว่าจะเขียนทับแฟ้มที่มีอยู่ "1%" ด้วยแฟ้มแนบConfirm overwrite
@@ -2324,12 +2320,12 @@ This may cause the affected plugins to malfunction.
Confirm remove
-
+ ยืนยันการลบUnable to open file(s):
%1
-
+ ไม่สามารถเปิดไฟล์
@@ -2363,7 +2359,7 @@ This may cause the affected plugins to malfunction.
Ref: Reference abbreviation
- อ้างอิง:
+ อ้างอิงGroup
@@ -2399,15 +2395,15 @@ This may cause the affected plugins to malfunction.
Created
- สร้าง
+ ถูกสร้างModified
-
+ แก้ไขAccessed
-
+ เข้าถึงAttachments
@@ -2415,11 +2411,11 @@ This may cause the affected plugins to malfunction.
Yes
-
+ ใช่TOTP
-
+ TOTP
@@ -2466,7 +2462,7 @@ This may cause the affected plugins to malfunction.
Autotype
-
+ AutotypeWindow
@@ -2499,7 +2495,7 @@ This may cause the affected plugins to malfunction.
<b>%1</b>: %2attributes line
-
+ <b>%1</b>: %2Enabled
@@ -2511,38 +2507,38 @@ This may cause the affected plugins to malfunction.
Share
-
+ แบ่งปันEntryViewCustomize View
-
+ มุมมองที่กำหนดHide Usernames
-
+ ซ่อนชื่อผู้ใช้Hide Passwords
-
+ ซ่อนรหัสผ่านFit to window
-
+ พอดีกับ windowFit to contents
-
+ พอดีกับเนื้อหาReset to defaults
-
+ เริ่มใหม่เป็นค่าเริ่มต้นAttachments (icon)
-
+ ไฟล์แนบ (ไอคอน)
@@ -2554,26 +2550,18 @@ This may cause the affected plugins to malfunction.
[empty]group has no children
-
-
-
-
- GroupModel
-
- %1
- Template for name without annotation
-
+ (ที่ว่าง)HostInstallerKeePassXC: Cannot save file!
- KeePassXC: ไม่สามารถบันทึกแฟ้ม!
+ KeePassXC: ไม่สามารถบันทึกแฟ้มCannot save the native messaging script file.
-
+ ไม่สามารถบันทึกไฟล์สคริปการส่งข้อความดั้งเดิม
@@ -2591,42 +2579,42 @@ This may cause the affected plugins to malfunction.
Kdbx3ReaderUnable to calculate master key
- ไม่สามารถคำนวญกุญแมาสเตอร์ได้
+ ไม่สามารถคำนวญกุญแจมาสเตอร์ได้Unable to issue challenge-response.
-
+ ไม่สามารถส่งออก รหัสสอบถาม-รหัสตอบกลับWrong key or database file is corrupt.
-
+ รหัสผิดหรือแฟ้มฐานข้อมูลเสียหายmissing database headers
-
+ ฐานข้อมูลส่วนหัวหายไปHeader doesn't match hash
-
+ ส่วนหัวไม่ตรงกับรายละเอียดInvalid header id size
-
+ ขนาดบัญชีส่วนหัวไม่ถูกต้องInvalid header field length
-
+ ความยาวของฟิลด์ส่วนหัวไม่ถูกต้องInvalid header data length
-
+ ความยาวของข้อมูลส่วนหัวไม่ถูกต้องKdbx3WriterUnable to issue challenge-response.
-
+ ไม่สามารถส่งออก รหัสสอบถาม-รหัสตอบกลับUnable to calculate master key
@@ -2637,135 +2625,135 @@ This may cause the affected plugins to malfunction.
Kdbx4Readermissing database headers
-
+ ฐานข้อมูลส่วนหัวหายไปUnable to calculate master key
- ไม่สามารถคำนวญกุญแมาสเตอร์ได้
+ ไม่สามารถคำนวญกุญแจมาสเตอร์ได้Invalid header checksum size
-
+ ขนาดผลรวมหัวข้อไม่ถูกต้องHeader SHA256 mismatch
-
+ หัวข้อ SHA256 ไม่ตรงกันWrong key or database file is corrupt. (HMAC mismatch)
-
+ กุญแจผิดหรือไฟล์ฐานข้อมูลเสียหาย (HMAC ไม่ตรงกัน)Unknown cipher
-
+ การเข้ารหัสที่ไม่รู้จักInvalid header id size
-
+ ขนาด ID ส่วนหัวไม่ถูกต้องInvalid header field length
-
+ ความยาวฟิลด์ส่วนหัวไม่ถูกต้องInvalid header data length
-
+ ความยาวข้อมูลส่วนหัวไม่ถูกต้องFailed to open buffer for KDF parameters in header
-
+ ไม่สามารถเปิดบัฟเฟอร์สำหรับพารามิเตอร์ KDF ในส่วนต้นUnsupported key derivation function (KDF) or invalid parameters
-
+ ไม่รองรับฟังก์ชั่นการค้นพบกุญแจ (KDF) หรือพารามิเตอร์ที่ไม่ถูกต้องLegacy header fields found in KDBX4 file.
-
+ หัวข้อฟิลด์เลกาซีในไฟล์ KDBX4Invalid inner header id size
-
+ ขนาดบัญชีส่วนหัวด้านในไม่ถูกต้องInvalid inner header field length
-
+ ความยาวของสนามวงในไม่ถูกต้องInvalid inner header binary size
-
+ ขนาดไบนารีส่วนหัวภายในไม่ถูกต้องUnsupported KeePass variant map version.Translation: variant map = data structure for storing meta data
-
+ ไม่รองรับ KeePass รุ่น variant mapInvalid variant map entry name lengthTranslation: variant map = data structure for storing meta data
-
+ ความยาวชื่อรายการ variant map ไม่ถูกต้องInvalid variant map entry name dataTranslation: variant map = data structure for storing meta data
-
+ ข้อมูลชื่อรายการ variant map ไม่ถูกต้องInvalid variant map entry value lengthTranslation: variant map = data structure for storing meta data
-
+ ความยาวรายการ variant map ไม่ถูกต้องInvalid variant map entry value dataTranslation comment: variant map = data structure for storing meta data
-
+ ข้อมูลรายการเริ่มต้น variant map ไม่ถูกต้องInvalid variant map Bool entry value lengthTranslation: variant map = data structure for storing meta data
-
+ ความยาวค่ารายการ Bool variant map ไม่ถูกต้องInvalid variant map Int32 entry value lengthTranslation: variant map = data structure for storing meta data
-
+ ความยาวค่ารายการ Int32 variant map ไม่ถูกต้องInvalid variant map UInt32 entry value lengthTranslation: variant map = data structure for storing meta data
-
+ ความยาวค่ารายการ UInt32 variant map ไม่ถูกต้องInvalid variant map Int64 entry value lengthTranslation: variant map = data structure for storing meta data
-
+ ความยาวค่ารายการ Int64 variant map ไม่ถูกต้องInvalid variant map UInt64 entry value lengthTranslation: variant map = data structure for storing meta data
-
+ ความยาวค่ารายการ UInt64 variant map ไม่ถูกต้องInvalid variant map entry typeTranslation: variant map = data structure for storing meta data
-
+ ประเภทรายการ variant map ไม่ถูกต้องInvalid variant map field type sizeTranslation: variant map = data structure for storing meta data
-
+ ขนาดชนิดของเขตข้อมูล variant map ไม่ถูกต้องKdbx4WriterInvalid symmetric cipher algorithm.
-
+ ขั้นตอนการเข้ารหัสแบบสมมาตรไม่ถูกต้องInvalid symmetric cipher IV size.IV = Initialization Vector for symmetric cipher
-
+ ขนาด IV การเข้ารหัสแบบสมมาตรไม่ถูกต้องUnable to calculate master key
@@ -2774,46 +2762,46 @@ This may cause the affected plugins to malfunction.
Failed to serialize KDF parameters variant mapTranslation comment: variant map = data structure for storing meta data
-
+ ล้มเหลวในการลำดับแผนที่แปรผันพารามิเตอร์ KDF KdbxReaderUnsupported cipher
-
+ ไม่รองรับการเข้ารหัสInvalid compression flags length
-
+ ความยาวแฟล็กบีบอัดไม่ถูกต้องUnsupported compression algorithm
-
+ อัลกอริทีมการบีบอัดไม่รองรับInvalid master seed size
-
+ การแปลงขนาดมาสเตอร์ไม่ถูกต้องInvalid transform seed size
-
+ การแปลงขนาดค่าเริ่มต้นไม่ถูกต้องInvalid transform rounds size
-
+ ขนาดรอบการแปลงไม่ถูกต้องInvalid start bytes size
-
+ ขนาดของไบต์เริ่มต้นไม่ถูกต้องInvalid random stream id size
-
+ ขนาด ID สตรีมแบบสุ่มไม่ถูกต้องInvalid inner random stream cipher
-
+ การเข้ารหัสสตรีมแบบสุ่มด้านในไม่ถูกต้องNot a KeePass database.
@@ -2824,149 +2812,156 @@ This may cause the affected plugins to malfunction.
You can import it by clicking on Database > 'Import KeePass 1 database...'.
This is a one-way migration. You won't be able to open the imported database with the old KeePassX 0.4 version.
-
+ ไฟล์ที่เลือกเป็นฐานข้อมูล KeePass 1 เก่า (.kdb)
+
+คุณสามารถนำเข้าได้โดยคลิกที่ฐานข้อมูล นำเข้าฐานข้อมูล KeePass 1
+นี่คือการโอนย้ายทางเดียว คุณจะไม่สามารถเปิดฐานข้อมูลที่นำเข้าด้วยรุ่น KeePassX 0.4 รุ่นเก่าได้Unsupported KeePass 2 database version.
-
+ ไม่สนับสนุนรุ่นฐานข้อมูล KeePass 2Invalid cipher uuid length: %1 (length=%2)
-
+ ความยาวรหัสตัวเลขไม่ถูกต้อง:% 1 (ความยาว =% 2)Unable to parse UUID: %1
-
+ ไม่สามารถแยกวิเคราะห์ UUID :% 1Failed to read database file.
-
+ ไม่สามารถอ่านไฟล์ฐานข้อมูลKdbxXmlReaderXML parsing failure: %1
-
+ การแยกวิเคราะห์ XML ล้มเหลว : % 1No root group
-
+ ไม่มีกลุ่มรูตMissing icon uuid or data
-
+ ไอคอน uuid หรือ ข้อมูล หายไปMissing custom data key or value
-
+ ไม่มีข้อมูลกุญแจหรือค่าที่กำหนดเองMultiple group elements
-
+ กลุ่มองค์ประกอบหลายฐานข้อมูลNull group uuid
-
+ กลุ่ม uuid ที่ว่างInvalid group icon number
-
+ กลุ่มตัวเลขไอคอนไม่ถูกต้องInvalid EnableAutoType value
-
+ ค่า EnableAutoType ไม่ถูกต้องInvalid EnableSearching value
-
+ ค่า EnableSearching ไม่ถูกต้องNo group uuid found
-
+ ไม่พบกลุ่ม uuidNull DeleteObject uuid
-
+ DeleteObject uuid ที่ว่างMissing DeletedObject uuid or time
-
+ ไม่มี DeleteObject uuid หรือ เวลาNull entry uuid
-
+ รายการ uuid ที่ว่างInvalid entry icon number
-
+ ตัวเลขไอคอนไม่ถูกต้องHistory element in history entry
-
+ ประวัติของส่วนประกอบในประวัติรายการNo entry uuid found
-
+ ไม่พบรายการ uuidHistory element with different uuid
-
+ ประวัติของส่วนประกอบที่ uuid ต่างกันDuplicate custom attribute found
-
+ ค้นพบคัดลอกคุณสมบัติที่กำหนดเองEntry string key or value missing
-
+ รายการสายกุญแจหรือค่าที่หายไปDuplicate attachment found
-
+ พบสำเนาเอกสารแนบEntry binary key or value missing
-
+ รายการกุญแจไบนารีหรือค่าที่หายไปAuto-type association window or sequence missing
-
+ ไม่พบการพิมพ์อัตโนมัติของหน้าต่างที่เชื่อมต่อ หรือลำดับInvalid bool value
-
+ ค่าบูลไม่ถูกต้องInvalid date time value
-
+ ค่าวันที่และเวลาไม่ถูกต้องInvalid color value
-
+ ค่าสีไม่ถูกต้องInvalid color rgb part
-
+ ค่าสีส่วนRGBไม่ถูกต้องInvalid number value
-
+ ค่าตัวเลขไม่ถูกต้องInvalid uuid value
-
+ ค่า uuid ไม่ถูกต้องUnable to decompress binaryTranslator meant is a binary data inside an entry
-
+ การขยายไบนารีล้มเหลวXML error:
%1
Line %2, column %3
-
+ XML ผิดพลาด
+%1
+บรรทัด %2
+หลัก %3
+
@@ -2992,40 +2987,40 @@ Line %2, column %3
Unsupported encryption algorithm.
-
+ อัลกอริทีมเข้ารหัสลับไม่รองรับUnsupported KeePass database version.
-
+ รุ่นของฐานข้อมูล Keepass ไม่รองรับUnable to read encryption IVIV = Initialization Vector for symmetric cipher
-
+ ไม่สามารถอ่านการเข้ารหัสลับ IVInvalid number of groups
-
+ จำนวนกลุ่มไม่ถูกต้องInvalid number of entries
-
+ จำนวนรายการไม่ถูกต้องInvalid content hash size
-
+ ขนาดเนื้อหาโดยละเอียดไม่ถูกต้องInvalid transform seed size
-
+ การแปลงขนาดค่าเริ่มต้นไม่ถูกต้องInvalid number of transform rounds
-
+ การแปลงจำนวนรอบของการเปลี่ยนแปลงไม่ถูกต้องUnable to construct group tree
-
+ ไม่สามารถสร้าง group treeRoot
@@ -3033,137 +3028,153 @@ Line %2, column %3
Unable to calculate master key
- ไม่สามารถคำนวญกุญแมาสเตอร์ได้
+ ไม่สามารถคำนวญกุญแจมาสเตอร์ได้Wrong key or database file is corrupt.
-
+ รหัสผิดหรือแฟ้มฐานข้อมูลเสียหายKey transformation failed
-
+ การแปลงรหัสล้มเหลวInvalid group field type number
-
+ กรุ๊ปตัวเลขฟิลด์ไทป์ไม่ถูกต้องInvalid group field size
-
+ ขนาดกรุ๊ปฟิลด์ไม่ถูกต้องRead group field data doesn't match size
-
+ ข้อมูลการอ่านกรุ๊ปฟิลด์ฟิลด์จับคู่ไม่ได้ขนาดIncorrect group id field size
-
+ ขนาดกรุ๊ปไอดีฟิลด์ไม่ถูกต้องIncorrect group creation time field size
-
+ เวลาการสร้างกรุ๊ปฟิลด์ไม่ถูกต้องIncorrect group modification time field size
-
+ การแก้ไขเวลากรุ๊ปฟิลด์ไม่ถูกต้องIncorrect group access time field size
-
+ เวลาการเข้าถึงกรุ๊ปฟิลด์ไม่ถูกต้องIncorrect group expiry time field size
-
+ เวลาหมดอายุของกรุ๊ปฟิลด์ไม่ถูกต้องIncorrect group icon field size
-
+ ขนาดกรุ๊ปฟิลด์ไอคอนไม่ถูกต้องIncorrect group level field size
-
+ ขนาดเลเวลกรุ๊ปฟิลด์ไม่ถูกต้องInvalid group field type
-
+ กลุ่มกรุ๊ปฟิลด์ไม่ถูกต้องMissing group id or level
-
+ บัญชีกลุ่มหรือเลเวลหายไปMissing entry field type number
-
+ ตัวเลขเอ็นทรีฟิลด์ไทป์หายไปInvalid entry field size
-
+ ขนาดเอ็นทรีฟิลด์ไม่ถูกต้องRead entry field data doesn't match size
-
+ ขนาดการอ่านข้อมูลเอ็นทรีฟิลด์ไม่เหมาะสมกับขนาดInvalid entry uuid field size
-
+ ขนาดฟิลด์ UUID เอ็นทรีไม่ถูกต้องInvalid entry group id field size
-
+ ขนาดบัญชีเอ็นทรีกรุ๊ปไม่ถูกต้องInvalid entry icon field size
-
+ ขนาดฟิลด์ไอคอนเอ็นทรีไม่ถูกต้องInvalid entry creation time field size
-
+ เวลาสร้างขนาดฟิลด์เอ็นทรีไม่ถูกต้องInvalid entry modification time field size
-
+ เวลาแก้ไขขนาดฟิลด์เอ็นทรีไม่ถูกต้องInvalid entry expiry time field size
-
+ เวลาหมดอายุขนาดฟิลด์เอ็นทรีไม่ถูกต้องInvalid entry field type
-
+ กลุ่มเอ็นทรีฟิลด์ไม่ถูกต้องunable to seek to content position
-
+ ไม่สามารถที่จะหาตำแหน่งเนื้อหาได้KeeShareDisabled share
-
+ ไม่สามารถแบ่งปันได้Import from
-
+ นำเข้ามาจากExport to
-
+ นำออกไปที่Synchronize with
-
+ เชื่อมต่อกับ
+
+
+ Disabled share %1
+ ไม่สามารถแบ่งปัน %1
+
+
+ Import from share %1
+ นำเข้ามาจากส่วนแบ่ง %1
+
+
+ Export to share %1
+ นำออกไปที่ส่วนแบ่ง %1
+
+
+ Synchronize with share %1
+ เชื่อมต่อกับส่วนแบ่ง %1KeyComponentWidgetKey Component
-
+ ส่วนโปรแกรมหลักKey Component Description
-
+ คำบรรยายส่วนโปรแกรมหลักCancel
@@ -3171,27 +3182,27 @@ Line %2, column %3
Key Component set, click to change or remove
-
+ จัดตั้งส่วนโปรแกรมหลักสำเร็จ คลิกเพื่อเปลี่ยนแปลงหรือลบออกAdd %1Add a key component
-
+ เพิ่ม %1Change %1Change a key component
-
+ เปลี่ยนแปลง %1Remove %1Remove a key component
-
+ ลบออก %1%1 set, click to change or removeChange or remove a key component
-
+ ตั้งค่า %1 คลิกเพื่อเปลี่ยนแปลงหรือยกเลิก
@@ -3206,27 +3217,30 @@ Line %2, column %3
Key File
-
+ แฟ้มกุญแจ<p>You can add a key file containing random bytes for additional security.</p><p>You must keep it secret and never lose it or you will be locked out!</p>
-
+ <p>คุณสามารถเพิ่มแฟ้มกุญแจที่ประกอบไปด้วยไบต์แบบสุ่มเพื่อความปลอดภัยที่มากขึ้น</p><p>คุณต้องเก็บข้อมูลเป็นความลับห้ามทำหาย ไม่เช่นนั้นจะหลุดออกจากระบบLegacy key file format
-
+ นามสกุลไฟล์ของแฟ้มกุญแจYou are using a legacy key file format which may become
unsupported in the future.
Please go to the master key settings and generate a new key file.
-
+ คุณกำลังใช้งานนามสกุลไฟล์ของแฟ้มกุญแจที่
+อาจไม่รับรองในอนาคต
+กรุณาไปที่การตั้งค่ากุญแจมาสเตอร์และสร้างแฟ้มกุญแจใหม่Error loading the key file '%1'
Message: %2
-
+ มีปัญหาในการโหลดแฟ้มกุญแจ %1
+ข้อความ %2 Key files
@@ -3242,11 +3256,11 @@ Message: %2
Error creating key file
-
+ พบปัญหาในการสร้างแฟ้มกุญแจUnable to create key file: %1
-
+ ไม่สามารถสร้างแฟ้มกุญแจ %1Select a key file
@@ -3269,7 +3283,7 @@ Message: %2
E&ntries
-
+ รายการ (&E)&Groups
@@ -3353,7 +3367,7 @@ Message: %2
Copy title to clipboard
-
+ คัดลอกหัวข้อไปยังคลิปบอร์ด&URL
@@ -3361,7 +3375,7 @@ Message: %2
Copy URL to clipboard
-
+ คัดลอก URL ไปยัง คลิปบอร์ด&Notes
@@ -3369,7 +3383,7 @@ Message: %2
Copy notes to clipboard
-
+ คัดลอกข้อมูลไปยังคลิปบอร์ด&Export to CSV file...
@@ -3385,7 +3399,7 @@ Message: %2
E&mpty recycle bin
- เทถังรีไซเคิลทิ้ง (&M)
+ ล้างถังรีไซเคิลClear history
@@ -3415,207 +3429,210 @@ Message: %2
WARNING: You are using an unstable build of KeePassXC!
There is a high risk of corruption, maintain a backup of your databases.
This version is not meant for production use.
-
+ คำเตือน คุณกำลังใช้งานที่ไม่เสถียรของ KeePassXC!
+มีความเสี่ยงสูงในการเกิดความเสียหาย เก็บสำรองข้อมูลของคุณ
+รุ่นนี้ไม่ได้มีไว้สำหรับการใช้&Donate
-
+ บริจาคReport a &bug
-
+ รายงาน &ข้อผิดปกติWARNING: Your Qt version may cause KeePassXC to crash with an On-Screen Keyboard!
We recommend you use the AppImage available on our downloads page.
-
+ คำเตือน รุ่น Qt ของคุณอาจทำให้ KeePassXC ขัดข้องกับบนหน้าจอคีย์บอร์ท
+พวกเราแนะนำให้คุณใช้ Applmage อยู่หน้าดาวน์โหลด&Import
-
+ &นำเข้าCopy att&ribute...
-
+ คัดลอก att&ributeTOTP...
-
+ TOTP&New database...
-
+ ฐานข้อมูลใหม่Create a new database
-
+ สร้างฐานข้อมูลใหม่&Merge from database...
-
+ รวมฐานข้อมูลMerge from another KDBX database
-
+ รวมฐานข้อมูลKDBXอีกชุด&New entry
-
+ รายการใหม่Add a new entry
-
+ เพิ่มรายการใหม่&Edit entry
-
+ แก้ไขรายการView or edit entry
-
+ ดู หรือ แก้ไขรายการ&New group
-
+ กลุ่มใหม่Add a new group
-
+ เพิ่มกลุ่มใหม่Change master &key...
-
+ เปลี่ยนแปลงกุญแจมาสเตอร์&Database settings...
-
+ ติดตั้งฐานข้อมูลCopy &password
-
+ คัดลอกรหัสผ่านPerform &Auto-Type
-
+ ดำเนินการและพิมพ์อัตโนมัติOpen &URL
-
+ เปิดและ URLKeePass 1 database...
-
+ ฐานข้อมูล KeePass1Import a KeePass 1 database
-
+ นำเข้า ฐานข้อมูล KeePass1...CSV file...
-
+ แฟ้ม CSVImport a CSV file
-
+ นำเข้า แฟ้ม CSV Show TOTP...
-
+ แสดง TOTPShow TOTP QR Code...
-
+ แสดง TOTP QR CodeCheck for Updates...
-
+ คลิ๊กเพื่ออัพเดตShare entry
-
+ แบ่งปัน รายการNOTE: You are using a pre-release version of KeePassXC!
Expect some bugs and minor issues, this version is not meant for production use.
-
+ หมายเหตุ คุณกำลังใช้งาน KeePassXC รุ่นก่อนวางจำหน่าย คาดว่าข้อบกพร่องบางอย่างและปัญหาเล็กน้อย รุ่นนี้ไม่ได้มีไว้สำหรับการใช้งานจริงCheck for updates on startup?
-
+ ตรวจสอบการอัปเดทเมื่อเริ่มโปรแกรมWould you like KeePassXC to check for updates on startup?
-
+ คุณต้องการให้ KeePassXC ตรวจสอบเพื่ออัปเดตคลิกที่ปุ่มเปิดYou can always check for updates manually from the application menu.
-
+ คุณสามารถตรวจสอบการอัปเดตได้ด้วยตนเองจากเมนูแอปพลิเคชันMergerCreating missing %1 [%2]
-
+ กำลังสร้างส่วนที่หายไป %1 [%2]Relocating %1 [%2]
-
+ ย้าย% 1 [% 2]Overwriting %1 [%2]
-
+ เขียนทับ % 1 [% 2]older entry merged from database "%1"
-
+ รวมข้อมูลที่เก่ากว่าเข้ากับฐานข้อมูล "% 1"Adding backup for older target %1 [%2]
-
+ กำลังเพิ่มการสำรองข้อมูลสำหรับเป้าหมายที่เก่ากว่า% 1 [% 2]Adding backup for older source %1 [%2]
-
+ กำลังเพิ่มการสำรองข้อมูลสำหรับแหล่งข้อมูลที่เก่ากว่า% 1 [% 2]Reapplying older target entry on top of newer source %1 [%2]
-
+ การนำรายการแหล่งข้อมูลเก่ามาใช้ใหม่ที่ด้านบนของฐานข้อมูลใหม่กว่า% 1 [% 2]Reapplying older source entry on top of newer target %1 [%2]
-
+ การนำรายการแหล่งข้อมูลเก่ามาใช้ใหม่ที่ด้านบนของเป้าหมายใหม่กว่า% 1 [% 2]Synchronizing from newer source %1 [%2]
-
+ เชื่อมต่อจากฐานข้อมูลใหม่ %1 [%2]Synchronizing from older source %1 [%2]
-
+ เชื่อมต่อจากฐานข้อมูลเดิม %1 [%2]Deleting child %1 [%2]
-
+ ลบข้อมูลลูก %1 [%2]Deleting orphan %1 [%2]
-
+ ลบข้อมูลกำพร้า %1 [%2]Changed deleted objects
-
+ เปลี่ยนสิ่งที่ถูกลบAdding missing icon %1
-
+ เพิ่มไอคอนขาดหายไป % 1NewDatabaseWizardCreate a new KeePassXC database...
-
+ สร้าง ฐานข้อมูล Keepass XC ใหม่Root
@@ -3627,166 +3644,166 @@ Expect some bugs and minor issues, this version is not meant for production use.
NewDatabaseWizardPageWizardPage
-
+ วิซาร์ดเพจEn&cryption Settings
-
+ ตั้งค่าการเข้ารหัสHere you can adjust the database encryption settings. Don't worry, you can change them later in the database settings.
-
+ ที่นี่คุณสามารถปรับการตั้งค่าการเข้ารหัสฐานข้อมูล ไม่ต้องกังวลคุณสามารถเปลี่ยนได้ในภายหลังในการตั้งค่า ฐานข้อมูลAdvanced Settings
-
+ การตั้งค่าขั้นสูงSimple Settings
-
+ การตั้งค่าพื้นฐานNewDatabaseWizardPageEncryptionEncryption Settings
-
+ การตั้งค่าการเข้ารหัสHere you can adjust the database encryption settings. Don't worry, you can change them later in the database settings.
-
+ ที่นี่คุณสามารถปรับการตั้งค่าการเข้ารหัสฐานข้อมูล ไม่ต้องกังวลคุณสามารถเปลี่ยนได้ในภายหลังในการตั้งค่าฐานข้อมูลNewDatabaseWizardPageMasterKeyDatabase Master Key
-
+ ฐานข้อมูล กุญแจมาสเตอร์A master key known only to you protects your database.
-
+ กุญแจมาสเตอร์ ที่คุณรู้จักเท่านั้นที่คุณจะปกป้อง ฐานข้อมูล NewDatabaseWizardPageMetaDataGeneral Database Information
-
+ ข้อมูล ฐานข้อมูล ทั่วไปPlease fill in the display name and an optional description for your new database:
-
+ กรุณากรอกชื่อที่แสดง และคำอธิบายเพิ่มเติมสำหรับ ฐานข้อมูล ใหม่ของคุณOpenSSHKeyInvalid key file, expecting an OpenSSH key
-
+ แฟ้มกุญแจ ไม่ถูกต้อง คาดว่าจะมี กุญแจ OpenSSHPEM boundary mismatch
-
+ เงื่อนไข PEM ไม่ตรงกันBase64 decoding failed
-
+ การถอดรหัส Base64 ล้มเหลวKey file way too small.
-
+ แฟ้มกุญแจ มีขนาดเล็กมากKey file magic header id invalid
-
+ รหัสหัวไฟล์กุญแจเมจิกไม่ถูกต้องFound zero keys
-
+ ไมพบกุญแจFailed to read public key.
-
+ ไม่สามารถอ่านกุญแจสาธารณะCorrupted key file, reading private key failed
-
+ ไฟล์กุญแจเสียหาย การอ่านกุญแจส่วนตัวล้มเหลวNo private key payload to decrypt
-
+ ไม่มีส่วนข้อมูลของกุญแจส่วนตัวเพื่อถอดรหัสลับTrying to run KDF without cipher
-
+ พยายามจะเรียกใช้ KDF โดยไม่ใช้การเข้ารหัสPassphrase is required to decrypt this key
-
+ จำเป็นต้องใช้วลีรหัสผ่านเพื่อถอดรหัสผ่านกุญแจนี้Key derivation failed, key file corrupted?
-
+ การสร้างกุญแจล้มเหลว ไฟล์กุญแจมีปัญหาหรือไม่Decryption failed, wrong passphrase?
-
+ การถอดรหัสลับล้มเหลว ใส่วลีรหัสผ่านผิดหรือไม่Unexpected EOF while reading public key
-
+ เกิด EOF ที่ไม่คาดคิดขณะอ่านกุญแจสาธารณะUnexpected EOF while reading private key
-
+ เกิด EOF ที่ไม่คาดคิดขณะอ่านกุญแจส่วนตัวCan't write public key as it is empty
-
+ ไม่สามารถเขียนกุญแจสาธารณะได้เนื่องจากไม่มีUnexpected EOF when writing public key
-
+ เกิด EOF ที่ไม่คาดคิดขณะเขียนกุญแจสาธารณะCan't write private key as it is empty
-
+ ไม่สามารถเขียนกุญแจส่วนตัวได้เนื่องจากไม่มีUnexpected EOF when writing private key
-
+ เกิด EOF ที่ไม่คาดคิดขณะเขียนกุญแจส่วนตัวUnsupported key type: %1
-
+ ชนิดกุญแจที่ไม่รองรับ: %1Unknown cipher: %1
-
+ การเข้ารหัสที่ไม่รู้จัก: %1Cipher IV is too short for MD5 kdf
-
+ การเข้ารหัส IV สั้นเกินไปสำหรับ MD5 kdfUnknown KDF: %1
-
+ KDF ที่ไม่รู้จัก: %1Unknown key type: %1
-
+ ประเภทกุญแจที่ไม่รู้จัก: %1PasswordEditWidgetEnter password:
- ป้อนรหัสผ่าน:
+ กรอกรหัสผ่านConfirm password:
-
+ ยืนยันรหัสผ่านPassword
@@ -3794,19 +3811,15 @@ Expect some bugs and minor issues, this version is not meant for production use.
<p>A password is the primary method for securing your database.</p><p>Good passwords are long and unique. KeePassXC can generate one for you.</p>
-
-
-
- Password cannot be empty.
-
+ <p>รหัสผ่านเป็นวิธีพื้นฐานในการปกป้องฐานข้อมูลของคุณ</p><p>รหัสผ่านที่ดีควรยาวและมีเอกลักษณ์ KeePassXC สร้างรหัสผ่านให้คุณได้</p>Passwords do not match.
-
+ รหัสผ่านไม่ตรงGenerate master password
-
+ สร้างรหัสผ่านหลัก
@@ -3817,7 +3830,7 @@ Expect some bugs and minor issues, this version is not meant for production use.
Password:
- รหัสผ่าน:
+ รหัสผ่านstrength
@@ -3854,7 +3867,8 @@ Expect some bugs and minor issues, this version is not meant for production use.
Extended ASCII
-
+ Extended ASCII
+Exclude look-alike characters
@@ -3866,7 +3880,7 @@ Expect some bugs and minor issues, this version is not meant for production use.
&Length:
- ความยาว (&L):
+ ความยาว (&L)Passphrase
@@ -3874,11 +3888,11 @@ Expect some bugs and minor issues, this version is not meant for production use.
Wordlist:
- รายการคำ:
+ รายการคำWord Separator:
- ตัวแบ่งคำ:
+ ตัวแบ่งคำCopy
@@ -3922,11 +3936,11 @@ Expect some bugs and minor issues, this version is not meant for production use.
ExtendedASCII
-
+ ExtendedASCIISwitch to advanced mode
-
+ เปลี่ยนเป็นโหมดใช้งานขั้นสูงAdvanced
@@ -3934,7 +3948,7 @@ Expect some bugs and minor issues, this version is not meant for production use.
Upper Case Letters A to F
-
+ ตัวอักษรตัวพิมพ์ใหญ่ A ถึง FA-Z
@@ -3942,7 +3956,7 @@ Expect some bugs and minor issues, this version is not meant for production use.
Lower Case Letters A to F
-
+ ตัวอักษรตัวพิมพ์เล็ก A ถึง Fa-z
@@ -3954,108 +3968,108 @@ Expect some bugs and minor issues, this version is not meant for production use.
Braces
-
+ วงเล็บปีกกา{[(
-
+ {[(Punctuation
-
+ วรรคตอน.,:;
-
+ .,:;Quotes
-
+ คำพูด" '
-
+ " 'Math
-
+ คณิตศาสตร์<*+!?=
-
+ <*+!?=Dashes
-
+ ขีดคั่นตรงกลาง\_|-/
-
+ \_|-/Logograms
-
+ สัญลักษณ์หรือตัวอักษรที่ใช้แทนคำ#$%&&@^`~
-
+ #$%&&@^`~Switch to simple mode
-
+ สลับเป็นโหมดง่ายSimple
-
+ อย่างง่ายCharacter set to exclude from generated password
-
+ ชุดอักขระที่ต้องการยกเว้นจากรหัสผ่านที่สร้างขึ้นDo not include:
-
+ ไม่รวมAdd non-hex letters to "do not include" list
-
+ เพิ่มตัวอักขระที่ไม่ใช่เลขฐานสิบหกในรายการ "ห้ามรวม"Hex
-
+ เลขฐานสิบหกExcluded characters: "0", "1", "l", "I", "O", "|", "﹒"
-
+ อักขระที่ยกเว้น: "0", "1", "l", "I", "O", "|", "﹒"Word Co&unt:
-
+ คำ Co&unt คือRegenerate
-
+ สร้างใหม่QApplicationKeeShare
-
+ KeeShareQFileDialogSelect
-
+ เลือกQMessageBoxOverwrite
-
+ เขียนทับDelete
@@ -4063,11 +4077,11 @@ Expect some bugs and minor issues, this version is not meant for production use.
Move
-
+ เคลื่อนย้ายEmpty
-
+ ว่างเปล่าRemove
@@ -4075,7 +4089,7 @@ Expect some bugs and minor issues, this version is not meant for production use.
Skip
-
+ ข้ามไปDisable
@@ -4083,34 +4097,34 @@ Expect some bugs and minor issues, this version is not meant for production use.
Merge
-
+ ผสานQObjectDatabase not opened
-
+ ไม่ได้เปิดฐานข้อมูลDatabase hash not available
-
+ ฐานข้อมูล hash ไม่พร้อมใช้งานClient public key not received
-
+ ไม่ได้รับกุญแจสาธารณะของผู้รับบริการCannot decrypt message
-
+ ไม่สามารถถอดรหัสข้อความAction cancelled or denied
-
+ การกระทำถูกยกเลิกหรือปฏิเสธKeePassXC association failed, try again
-
+ การเชื่อมโยง KeePassXC ล้มเหลว ลองอีกครั้งEncryption key is not recognized
@@ -4118,31 +4132,31 @@ Expect some bugs and minor issues, this version is not meant for production use.
Incorrect action
- การกระทำที่ไม่ถูกต้อง
+ การดำเนินการที่ไม่ถูกต้องEmpty message received
-
+ ได้รับข้อความว่างเปล่าNo URL provided
- ไม่มี URL ให้มา
+ ไม่ได้ระบุ URLNo logins found
-
+ ไม่พบการเข้าสู่ระบบUnknown error
- ความผิดพลาดที่ไม่รู้จัก
+ ความผิดพลาดที่ไม่อาจระบุได้Add a new entry to a database.
-
+ เพิ่มรายการใหม่ไปยังฐานข้อมูลPath of the database.
-
+ เส้นทางของฐานข้อมูลKey file of the database.
@@ -4150,11 +4164,11 @@ Expect some bugs and minor issues, this version is not meant for production use.
path
-
+ เส้นทางUsername for the entry.
-
+ ชื่อผู้ใช้สำหรับรายการusername
@@ -4162,7 +4176,7 @@ Expect some bugs and minor issues, this version is not meant for production use.
URL for the entry.
-
+ URL สำหรับรายการ.URL
@@ -4170,15 +4184,15 @@ Expect some bugs and minor issues, this version is not meant for production use.
Prompt for the entry's password.
-
+ พร้อมสำหรับรหัสผ่านของรายการGenerate a password for the entry.
-
+ สร้างรหัสผ่านสำหรับรายการLength for the generated password.
-
+ ความยาวสำหรับรหัสผ่านที่สร้างขึ้นlength
@@ -4186,74 +4200,80 @@ Expect some bugs and minor issues, this version is not meant for production use.
Path of the entry to add.
-
+ เส้นทางของรายการที่จะเพิ่มCopy an entry's password to the clipboard.
-
+ คัดลอกรหัสผ่านของรายการไปยังคลิปบอร์ดPath of the entry to clip.clip = copy to clipboard
-
+ เส้นทางของรายการไปยังคลิปTimeout in seconds before clearing the clipboard.
-
+ ใกล้หมดเวลาก่อนที่จะล้างคลิปบอร์ดEdit an entry.
-
+ แก้ไขรายการTitle for the entry.
-
+ หัวข้อสำหรับรายการtitle
- หัวเรื่อง
+ หัวข้อPath of the entry to edit.
-
+ เส้นทางของรายการที่จะแก้ไขEstimate the entropy of a password.
-
+ คาดคะเนเอนโทรปีของรหัสผ่านPassword for which to estimate the entropy.
-
+ รหัสผ่านสำหรับคาดคะเนเอนโทรปีPerform advanced analysis on the password.
-
+ วิเคราะห์รหัสผ่านชั้นสูงExtract and print the content of a database.
- สกัดและพิมพ์เนื้อหาของฐานข้อมูล
+ แตกไฟล์และพิมพ์เนื้อหาของฐานข้อมูลPath of the database to extract.
- path ของฐานข้อมูลที่จะสกัดเนื้อหา
+ เส้นทางของฐานข้อมูลที่จะสกัดเนื้อหาInsert password to unlock %1:
-
+ กรอกรหัสผ่านเพื่อปลดล็อค %1WARNING: You are using a legacy key file format which may become
unsupported in the future.
Please consider generating a new key file.
-
+ คำเตือน คุณกำลังใช้รูปแบบไฟล์กุญแจแบบดั้งเดิมซึ่งอาจจะ
+ไม่ได้รับการสนับสนุนในอนาคต
+
+กรุณาพิจารณาสร้างไฟล์กุญแจใหม่
Available commands:
-
+
+
+คำสั่งที่พร้อมใช้งานคือ
+Name of the command to execute.
@@ -4261,51 +4281,51 @@ Available commands:
List database entries.
- แจงรายการฐานข้อมูล
+ แสดงรายการฐานข้อมูลPath of the group to list. Default is /
-
+ เส้นทางของกลุ่มที่จะสร้างรายการ ค่าเริ่มต้นคือFind entries quickly.
-
+ ค้นหารายการอย่างรวดเร็วSearch term.
- คำค้น
+ คำที่ใช้ค้นหาMerge two databases.
- ผสานสองฐานข้อมูล
+ ผสานสองฐานข้อมูลเข้าด้วยกันPath of the database to merge into.
-
+ เส้นทางของฐานข้อมูลที่จะผสานเข้าไปPath of the database to merge from.
-
+ เส้นทางของฐานข้อมูลที่จะเอามาผสานUse the same credentials for both database files.
-
+ ใช้ข้อมูลประจำตัวชุดเดียวกันเพื่อเข้าระบบสำหรับไฟล์ฐานข้อมูลทั้งคู่Key file of the database to merge from.
-
+ ไฟล์กุญแจของฐานข้อมูลที่จะเอามาผสานShow an entry's information.
-
+ แสดงข้อมูลของรายการNames of the attributes to show. This option can be specified more than once, with each attribute shown one-per-line in the given order. If no attributes are specified, a summary of the default attributes is given.
-
+ ชื่อของคุณสมบัติที่จะแสดง ตัวเลือกนี้สามารถถูกระบุได้มากกว่าหนึ่งครั้ง โดยคุณสมบัติถูกแสดงบรรทัดอันหนึ่งอันตามลำดับ ถ้าไม่มีคุณสมบัติใดถูกระบุ คุณสมบัติเริ่มต้นจะถูกเลือกแทนattribute
-
+ คุณสมบัติName of the entry to show.
@@ -4317,7 +4337,7 @@ Available commands:
error reading from device
-
+ ข้อผิดพลาดการอ่านจากอุปกรณ์malformed string
@@ -4325,7 +4345,7 @@ Available commands:
missing closing quote
- ไม่มีเครื่องหมายคำพูดปิด
+ เครื่องหมายปิดคำพูดหายไปGroup
@@ -4333,7 +4353,7 @@ Available commands:
Title
- หัวเรื่อง
+ หัวข้อUsername
@@ -4349,11 +4369,11 @@ Available commands:
Last Modified
- แก้ไขล่าสุด
+ ถูกแก้ไขล่าสุดCreated
- สร้าง
+ ถูกสร้างBrowser Integration
@@ -4361,336 +4381,337 @@ Available commands:
YubiKey[%1] Challenge Response - Slot %2 - %3
-
+ YubiKey[%1] การตอบกลับของการตรวจสอบ - Slot %2 - %3Press
-
+ กดPassive
-
+ แพสซีฟSSH Agent
-
+ ตัวแทน SSHGenerate a new random diceware passphrase.
-
+ สร้างวลีรหัสผ่าน diceware ใหม่แบบสุ่มWord count for the diceware passphrase.
-
+ จำนวนคำสำหรับวลีรหัสผ่าน dicewareWordlist for the diceware generator.
[Default: EFF English]
-
+ รายการคำสำหรับการสร้าง diceware
+[ค่าเริ่มต้น: EFF ภาษาอังกฤษ]Generate a new random password.
-
+ สร้างรหัสผ่านใหม่แบบสุ่มInvalid value for password length %1.
-
+ ค่าไม่ถูกต้องสำหรับความยาวของรหัสผ่าน %1Could not create entry with path %1.
-
+ ไม่สามารถสร้างรายการด้วยเส้นทาง %1Enter password for new entry:
-
+ ใส่รหัสผ่านสำหรับรายการใหม่Writing the database failed %1.
-
+ การเขียนฐานข้อมูลล้มเหลว %1Successfully added entry %1.
-
+ เพิ่มรายการ %1 สำเร็จแล้วCopy the current TOTP to the clipboard.
-
+ คัดลอก TOTP ปัจจุบันไปยังคลิปบอร์ดInvalid timeout value %1.
-
+ ค่าหมดเวลาไม่ถูกต้อง %1Entry %1 not found.
-
+ ไม่พบรายการ %1 Entry with path %1 has no TOTP set up.
-
+ รายการด้วยเส้นทาง %1 ไม่มีการตั้งค่า TOTPEntry's current TOTP copied to the clipboard!
-
+ TOTP ปัจจุบันของรายการถูกคัดลอกไปยังคลิปบอร์ดEntry's password copied to the clipboard!
-
+ รหัสผ่านของรายการถูกคัดลอกไปยังคลิปบอร์ดClearing the clipboard in %1 second(s)...
-
+ ล้างข้อมูลคลิปบอร์ดใน %1 วินาทีClipboard cleared!
-
+ คลิปบอร์ดถูกล้างแล้วSilence password prompt and other secondary outputs.
-
+ รหัสผ่านเงียบพร้อมท์และผลลัพธ์รองอื่นcountCLI parameter
-
+ การนับจำนวนInvalid value for password length: %1
-
+ ค่าความยาวรหัสผ่านไม่ถูกต้อง %1Could not find entry with path %1.
-
+ ไม่สามารถหารายการสำหรับเส้นทาง %1Not changing any field for entry %1.
-
+ ไม่มีการเปลี่ยนแปลงฟิลด์ของรายการ %1Enter new password for entry:
-
+ ใส่รหัสผ่านใหม่สำหรับรายการWriting the database failed: %1
-
+ เขียนฐานข้อมูลล้มเหลว %1Successfully edited entry %1.
-
+ แก้ไขรายการสำเร็จแล้ว %1Length %1
-
+ ความยาว %1Entropy %1
-
+ เอนโทรปี %1Log10 %1
-
+ Log10 %1Multi-word extra bits %1
-
+ Multi-word บิตมากพิเศษ %1Type: Bruteforce
-
+ ชนิด บรู๊ทฟอร์สType: Dictionary
-
+ ชนิด ไดเรคทอรีType: Dict+Leet
-
+ ชนิด: พจนานุกรม+ลีทType: User Words
-
+ ชนิด: User WordsType: User+Leet
-
+ ชนิด: ผู้ใช้+ ลีทType: Repeated
-
+ ชนิด: คำซ้ำType: Sequence
-
+ ชนิด: ลำดับType: Spatial
-
+ ชนิด: เชิงพื้นที่Type: Date
-
+ ชนิด: วันที่Type: Bruteforce(Rep)
-
+ ชนิด: บรู๊ทฟอร์ส(Rep)Type: Dictionary(Rep)
-
+ พิมพ์: Dictionary(Rep)Type: Dict+Leet(Rep)
-
+ พิมพ์: Dict+Leet(Rep)Type: User Words(Rep)
-
+ พิมพ์: User Words(Rep)Type: User+Leet(Rep)
-
+ พิมพ์: User+Leet(Rep)Type: Repeated(Rep)
-
+ พิมพ์: Repeated(Rep)Type: Sequence(Rep)
-
+ พิมพ์: Sequence(Rep)Type: Spatial(Rep)
-
+ พิมพ์: Spatial(Rep)Type: Date(Rep)
-
+ พิมพ์: Date(Rep)Type: Unknown%1
-
+ ชนิด: ไม่รู้จัก%1Entropy %1 (%2)
-
+ เอนโทรปี: %1 (%2)*** Password length (%1) != sum of length of parts (%2) ***
-
+ ***รหัสผ่านความยาว (%1) != sum of length of parts (%2) ***Failed to load key file %1: %2
-
+ การโหลดไฟล์กุญแจล้มเหลว %1: %2File %1 does not exist.
-
+ ไม่มีไฟล์ %1 Unable to open file %1.
-
+ ไม่สามารถเปิดไฟล์ %1Error while reading the database:
%1
-
+ เกิดความล้มเหลวขณะอ่านฐานข้อมูล: %1Error while parsing the database:
%1
-
+ เกิดความล้มเหลวขณะแจงส่วนฐานข้อมูล: %1Length of the generated password
-
+ ความยาวของรหัสผ่านที่สร้างแล้วUse lowercase characters
-
+ ใช้ตัวพิมพ์เล็กUse uppercase characters
-
+ ใช้ตัวพิมพ์ใหญ่Use numbers.
-
+ ใช้ตัวเลขUse special characters
-
+ ใช้อักขระพิเศษUse extended ASCII
-
+ ใช้ extended ASCIIExclude character set
-
+ ไม่รวมชุดตัวอักษรchars
-
+ อักขระExclude similar looking characters
-
+ ไม่รวมตัวอักษรที่ดูคล้ายกันInclude characters from every selected group
-
+ รวมตัวอักษรจากทุกกลุ่มที่เลือกไว้Recursively list the elements of the group.
-
+ สร้างรายกายส่วนประกอบของกลุ่มซ้ำไปมาCannot find group %1.
-
+ ไม่สามารถหากลุ่ม %1Error reading merge file:
%1
-
+ การอ่านไฟล์ที่รวมกันล้มเหลวคือ %1Unable to save database to file : %1
-
+ ไม่สามารถบันทึกฐานข้อมูลไปยังไฟล์คือ %1Unable to save database to file: %1
-
+ ไม่สามารถบันทึกฐานข้อมูลไปยังไฟล์คือ %1Successfully recycled entry %1.
-
+ รายการรีไซเคิลสำเร็จ %1Successfully deleted entry %1.
-
+ ลบรายการสำเร็จ %1Show the entry's current TOTP.
-
+ แสดงรายการ TOTP ปัจจุบันERROR: unknown attribute %1.
-
+ ข้อผิดพลาด: ไม่รู้จักคุณสมบัติ %1No program defined for clipboard manipulation
-
+ ไม่มีโปรแกรมกำหนดสำหรับการจัดการคลิปบอร์ดUnable to start program %1
-
+ ไม่สามารถเริ่มโปรแกรม %1file empty
-
+ ไฟล์ว่างเปล่า%1: (row, col) %2,%3
-
+ %1: (row, col) %2,%3AES: 256-bit
@@ -4719,72 +4740,72 @@ Available commands:
Invalid SettingsTOTP
-
+ การตั้งค่าไม่ถูกต้องInvalid KeyTOTP
-
+ กุญแจไม่ถูกต้องMessage encryption failed.
-
+ การเข้ารหัสลับข้อความล้มเหลวNo groups found
-
+ ไม่พบกลุ่มCreate a new database.
-
+ สร้างฐานข้อมูลใหม่File %1 already exists.
-
+ มีไฟล์ %1 อยู่แล้วLoading the key file failed
-
+ การโหลดไฟล์กุญแจล้มเหลวNo key is set. Aborting database creation.
-
+ ไม่มีการตั้งค่ากุญแจ ยกเลิกการสร้างฐานข้อมูลFailed to save the database: %1.
-
+ การบันทึกฐานข้อมูลล้มเหลว % 1Successfully created new database.
-
+ การสร้างฐานข้อมูลใหม่ประสบความสำเร็จInsert password to encrypt database (Press enter to leave blank):
-
+ ใส่รหัสผ่านเพื่อเข้ารหัสลับฐานข้อมูล (กด Enter เพื่อเว้นว่างไว้)Creating KeyFile %1 failed: %2
-
+ การสร้างกุญแจไฟล์ %1 ล้มเหลว: %2Loading KeyFile %1 failed: %2
-
+ การโหลดกุญแจไฟล์ % 1 ล้มเหลว:% 2Remove an entry from the database.
-
+ ลบรายการออกจากฐานข้อมูลPath of the entry to remove.
-
+ เส้นทางของรายการที่จะลบExisting single-instance lock file is invalid. Launching new instance.
-
+ ไฟล์ single-instance lock ที่มีอยู่ไม่ถูกต้อง เปิด instance ใหม่The lock file could not be created. Single-instance mode disabled.
-
+ ไม่สามารถสร้าง lock file ได้ โหมด Single-instance ถูกปิดใช้งานKeePassXC - cross-platform password manager
@@ -4792,11 +4813,11 @@ Available commands:
filenames of the password databases to open (*.kdbx)
-
+ ชื่อไฟล์ของรหัสผ่านฐานข้อมูลที่จะเปิด (*.kdbx)path to a custom config file
-
+ เส้นทางไปยังไฟล์ปรับแต่งที่กำหนดเองkey file of the database
@@ -4804,19 +4825,19 @@ Available commands:
read password of the database from stdin
-
+ อ่านรหัสผ่านของฐานข้อมูลจาก stdinParent window handle
-
+ จัดการหน้าต่างหลักAnother instance of KeePassXC is already running.
-
+ อีกอินสแตนซ์ของ KeePassXC กำลังทำงานอยู่Fatal error while testing the cryptographic functions.
-
+ เกิดข้อผิดพลาดร้ายแรงขณะทดสอบฟังก์ชั่นการเข้ารหัสKeePassXC - Error
@@ -4824,131 +4845,135 @@ Available commands:
Database password:
-
+ รหัสผ่านฐานข้อมูล
+
+
+ Cannot create new group
+ ไม่สามารถสร้างกลุ่มใหม่ได้QtIOCompressorInternal zlib error when compressing:
-
+ เกิดข้อผิดพลาด zlib ภายในในระหว่างการบีบอัดError writing to underlying device:
-
+ เกิดข้อผิดพลาดในการเขียนไปยังอุปกรณ์ที่รองรับError opening underlying device:
-
+ เกิดข้อผิดพลาดในการเปิดอุปกรณ์อ้างอิงError reading data from underlying device:
-
+ เกิดข้อผิดพลาดในการอ่านอุปกรณ์อ้างอิงInternal zlib error when decompressing:
-
+ ข้อผิดพลาด zlib ภายในเมื่อคลายการบีบอัดQtIOCompressor::openThe gzip format not supported in this version of zlib.
-
+ รูปแบบ gzip ไม่รองรับ zlib เวอร์ชั่นนี้Internal zlib error:
- ความผิดพลาดภายในของ zlib:
+ ความผิดพลาดภายในของ zlibSSHAgentAgent connection failed.
-
+ การเชื่อมต่อตัวแทนล้มเหลวAgent protocol error.
-
+ ตัวแทนโพรโทคอลผิดพลาดNo agent running, cannot add identity.
-
+ ไม่มีการเรียกใช้ตัวแทน ไม่สามารถเพิ่มตัวตนNo agent running, cannot remove identity.
-
+ ไม่มีการใช้ตัวแทน ไม่สามารถลบตัวตนAgent refused this identity. Possible reasons include:
-
+ ตัวแทนปฏิเสธตัวตนนี้ เหตุผลที่เป็นไปได้คือThe key has already been added.
-
+ เพิ่มกุญแจแล้วRestricted lifetime is not supported by the agent (check options).
-
+ ไม่รับรองอายุการใช้งานที่จำกัดโดยตัวแทน ตรวจสอบตัวเลือกA confirmation request is not supported by the agent (check options).
-
+ ไม่รองรับการยืนยันคำร้องโดยตัวแทน ตรวจสอบตัวเลือกSearchHelpWidgetSearch Help
-
+ ตัวช่วยค้นหาSearch terms are as follows: [modifiers][field:]["]term["]
-
+ คำค้นมีดังนี้: [modifiers][field:]["]term["]Every search term must match (ie, logical AND)
-
+ คำค้นทุกคำต้องสอดคล้อง เช่น โลจิคัล ANDModifiers
-
+ ตัวแก้ไขexclude term from results
-
+ แยกคำออกจากผลลัพธ์match term exactly
-
+ การจับคู่คำสอดคล้องกันuse regex in term
-
+ ใช้ regex ในคำFields
-
+ ฟิลด์Term Wildcards
-
+ อักขระตัวแทนคำmatch anything
-
+ จับคู่ทุกๆอย่างmatch one
-
+ จับคู่หนึ่งlogical OR
-
+ โลจิคัล ORExamples
-
+ ตัวอย่าง
@@ -4963,55 +4988,55 @@ Available commands:
Limit search to selected group
- จำกัดการค้นไว้เฉพาะในกลุ่มที่เลือก
+ จำกัดการค้นไว้สำหรับเฉพาะกลุ่มที่เลือกSearch Help
-
+ ตัวช่วยค้นหาSearch (%1)...Search placeholder text, %1 is the keyboard shortcut
-
+ ค้นหา %1Case sensitive
-
+ คำนึงถึงอักษรทั้งตัวใหญ่และเล็กSettingsWidgetKeeShareActive
-
+ ใช้งานอยู่Allow export
-
+ อนุญาติให้นำออกAllow import
-
+ อนุญาติให้นำเข้าOwn certificate
-
+ เป็นเจ้าของใบรับรองFingerprint:
-
+ ลายนิ้วมือCertificate:
-
+ ใบรับรองSigner
-
+ ผู้เซ็นชื่อKey:
- กุญแจ:
+ กุญแจGenerate
@@ -5023,23 +5048,23 @@ Available commands:
Export
-
+ นำออกImported certificates
-
+ นำเข้าใบรับรองแล้วTrust
-
+ น่าเชื่อถือAsk
-
+ ถามUntrust
-
+ ไม่น่าเชื่อถือRemove
@@ -5047,188 +5072,203 @@ Available commands:
Path
-
+ เส้นทางStatus
-
+ สถานะFingerprint
-
+ ลายนิ้วมือCertificate
-
+ ใบรับรองTrusted
-
+ เชื่อถือได้Untrusted
-
+ เชื่อถือไม่ได้Unknown
-
+ ไม่รู้จักkey.shareFiletype for KeeShare key
-
+ แบ่งปันกุญแจKeeShare key file
-
+ แฟ้มกุญแจ KeeShare หลักAll files
- ทุกแฟ้ม
+ ทุกไฟล์Select path
-
+ เลือกเส้นทางExporting changed certificate
-
+ นำออกใบรับรองที่เปลี่ยนแปลงแล้วThe exported certificate is not the same as the one in use. Do you want to export the current certificate?
-
+ ใบรับรองที่นำออกแล้วไม่ใช่ฉบับเดียวกับที่ใช้งานอยู่ คุณต้องการนำใบรับรองปัจจุบันออกหรือไม่
- %1.%2
- Template for KeeShare key file
-
+ Signer:
+ ผู้ลงชื่อShareObserverImport from container without signature
-
+ นำเข้าจากที่จัดเก็บโดยไม่มีลายเซ็นWe cannot verify the source of the shared container because it is not signed. Do you really want to import from %1?
-
+ เราไม่สามารถยืนยันความถูกต้องของฐานข้อมูลในที่จัดเก็บที่แบ่งปันไว้ เพราะไม่ถูกเซ็น คุณต้องการนำเข้าจาก %1 จริงๆหรือไม่Import from container with certificate
-
-
-
- Do you want to trust %1 with the fingerprint of %2 from %3
-
+ นำเข้าที่จัดเก็บด้วยใบรับรองNot this time
-
+ ไม่ใช่เวลานี้Never
- ไม่เลย
+ ไม่เคยAlways
-
+ เสมอJust this time
-
+ เวลานี้Import from %1 failed (%2)
-
+ นำเข้า 1% ล้มเหลว 2%Import from %1 successful (%2)
-
+ นำเข้าจาก 1% สำเร็จ 2%Imported from %1
-
+ นำเข้า จาก 1%Signed share container are not supported - import prevented
-
+ ไม่รองรับที่จัดเก็บแบ่งปันที่เซ็นไว้ - ไม่อนุญาตการนำเข้าFile is not readable
-
+ ไฟล์ไม่สามารถอ่านได้Invalid sharing container
-
+ ที่จัดเก็บที่แชร์ไม่ถูกต้องUntrusted import prevented
-
+ การนำเข้าไม่น่าเชื่อถือSuccessful signed import
-
+ การนำเข้าลายเซ็นสำเร็จUnexpected error
-
+ ข้อผิดพลาดที่ไม่คาดคิดUnsigned share container are not supported - import prevented
-
+ ไม่รองรับที่จัดเก็บแบ่งปันที่ไม่ได้เซ็นไว้ -ไม่อนุญาตการนำเข้าSuccessful unsigned import
-
+ การนำเข้าลายเซ็นสำเร็จFile does not exist
-
+ ไม่มีไฟล์Unknown share container type
-
+ การแบ่งปันที่จัดเก็บจากแหล่งที่ไม่รู้จักOverwriting signed share container is not supported - export prevented
-
+ ไม่สามารถเขียนทับที่จัดเก็บ ที่แบ่งปันไว้ และเซ็นแล้ว- ไม่อนุญาตการนำออกCould not write export container (%1)
-
-
-
- Could not embed signature (%1)
-
-
-
- Could not embed database (%1)
-
+ ไม่สามารถเขียนที่จัดเก็บที่ส่งออกได้ (%1)Overwriting unsigned share container is not supported - export prevented
-
+ ไม่รองรับการเขียนทับการแชร์ที่จัดเก็บที่ไม่ได้ลงชื่อ - ป้องกันการส่งออกCould not write export container
-
+ ไม่สามารถนำออกที่จัดเก็บได้Unexpected export error occurred
-
+ เกิดข้อผิดพลาดในการส่งออกที่ไม่คาดคิดExport to %1 failed (%2)
-
+ การส่งออก %1 ไม่สำเร็จ (%2)Export to %1 successful (%2)
-
+ การนำออก %1 สำเร็จ (%2)Export to %1
-
+ นำออก %1
+
+
+ Do you want to trust %1 with the fingerprint of %2 from %3?
+ คุณเชื่อถือ %1 การพิมพ์ลายนิ้วมือ %2 จาก%3? {1 ?} {2 ?}
+
+
+ Multiple import source path to %1 in %2
+ นำเข้าจากแหล่งพาทหลายแห่งไปยัง %1 ใน %2
+
+
+ Conflicting export target path %1 in %2
+ การนำเป้าหมายพาทออกขัดแย้งกัน %1 ใน %2
+
+
+ Could not embed signature: Could not open file to write (%1)
+ ไม่สามารถฝังลายเซ็น ไม่สามารถเปิดไฟล์เพือเขียน (%1)
+
+
+ Could not embed signature: Could not write file (%1)
+ ไม่สามารถฝังลายเซ็น ไม่สามารถเขียนไฟล์ (%1)
+
+
+ Could not embed database: Could not open file to write (%1)
+ ไม่สามารถฝังฐานข้อมูล ไม่สามารถเปิดไฟล์เพื่อทำการเขียน (%1)
+
+
+ Could not embed database: Could not write file (%1)
+ ไม่สามารถฝังฐานข้อมูล ไม่สามารถเขียนไฟล์ได้ (%1)
@@ -5247,7 +5287,7 @@ Available commands:
Expires in <b>%n</b> second(s)
-
+ หมดอายุภายใน <b>%n</b> วินาที
@@ -5259,15 +5299,15 @@ Available commands:
NOTE: These TOTP settings are custom and may not work with other authenticators.TOTP QR code dialog warning
-
+ บันทึก การตั้งค่า TOTP เป็นแบบกำหนดเอง อาจไม่สามารถใช้งานกับตัวรับรองความถูกต้องอื่นๆThere was an error creating the QR code.
-
+ มีข้อผิดพลาดในการสร้าง QR codeClosing in %1 seconds.
-
+ กำลังปิดภายใน %1 วินาที
@@ -5278,15 +5318,15 @@ Available commands:
Key:
- กุญแจ:
+ กุญแจDefault RFC 6238 token settings
-
+ การตั้งค่าโทเค็น RFC 6238 ตั้งต้นSteam token settings
-
+ การตั้งค่าสตีมโทเค็นUse custom settings
@@ -5294,20 +5334,20 @@ Available commands:
Custom Settings
-
+ การตั้งค่าแบบปรับแต่งเองTime step:
- ขั้นเวลา:
+ ขั้นเวลา secSeconds
- วิ
+ วินาทีCode size:
- ขนาดรหัส:
+ ขนาดรหัส6 digits
@@ -5315,7 +5355,7 @@ Available commands:
7 digits
-
+ เจ็ดหลัก8 digits
@@ -5326,11 +5366,11 @@ Available commands:
UpdateCheckDialogChecking for updates
-
+ ตรวจสอบการอัปเดทChecking for updates...
-
+ ตรวจสอบการอัปเดท...Close
@@ -5338,46 +5378,46 @@ Available commands:
Update Error!
-
+ การอัปเดทผิดพลาดAn error occurred in retrieving update information.
-
+ ข้อผิดพลาดที่เกิดขึ้นในการอัปเดตเรียกใช้ข้อมูลPlease try again later.
-
+ กรุณาลองอีกครั้งภายหลังSoftware Update
-
+ อัปเดทซอฟต์แวร์A new version of KeePassXC is available!
-
+ KeePassXC เวอร์ชั่นใหม่พร้อมใช้แล้วKeePassXC %1 is now available — you have %2.
-
+ KeePassXC %1 มีให้ใช้แล้ว — คุณมี %2Download it at keepassxc.org
-
+ ดาวน์โหลดได้ที่ keepassxc.orgYou're up-to-date!
-
+ คุณอัปเดตแล้วKeePassXC %1 is currently the newest version available
-
+ KeePassXC %1 เป็นรุ่นใหม่ล่าสุดที่พร้อมใช้งานแล้วWelcomeWidgetStart storing your passwords securely in a KeePassXC database
-
+ เริ่มเก็บรหัสผ่านของคุณให้ปลอดภัยในฐานข้อมูลของ KeePassXCCreate new database
@@ -5401,7 +5441,7 @@ Available commands:
Welcome to KeePassXC %1
-
+ ยินดีต้อนรับสู่ KeePassXC %1
@@ -5412,19 +5452,19 @@ Available commands:
YubiKey Challenge-Response
-
+ YubiKey ตอบกลับการตรวจสอบไม่ถูกต้อง<p>If you own a <a href="https://www.yubico.com/">YubiKey</a>, you can use it for additional security.</p><p>The YubiKey requires one of its slots to be programmed as <a href="https://www.yubico.com/products/services-software/personalization-tools/challenge-response/">HMAC-SHA1 Challenge-Response</a>.</p>
-
+ <p>หากคุณเป็นเจ้าของ<a href="https://www.yubico.com/">YubiKey</a>คุณสามารถใช้มันสำหรับความปลอดภัยเพิ่มเติมได้</p><p>YubiKeyจำเป็นต้องใช้ช่องว่างเพื่อลงโปรแกรมเป็น<a href="https://www.yubico.com/products/services-software/personalization-tools/challenge-response/">HMAC-SHA1 Challenge-Response</a></p>No YubiKey detected, please ensure it's plugged in.
-
+ ไม่พบ YubiKey โปรดตรวจสอบว่าได้ทำการเสียบเรียบร้อยNo YubiKey inserted.
-
+ ไม่ได้เสียบ YubiKey
\ No newline at end of file
diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml
index c509d4c55..2a8bb0294 100644
--- a/snap/snapcraft.yaml
+++ b/snap/snapcraft.yaml
@@ -1,5 +1,5 @@
name: keepassxc
-version: 2.4.2
+version: 2.4.3
grade: stable
summary: Community-driven port of the Windows application “KeePass Password Safe”
description: |
@@ -86,6 +86,7 @@ parts:
- libusb-1.0-0
- qtwayland5
- qt5-gtk-platformtheme # for theming, font settings, cursor and to use gtk3 file chooser
+ - libqrencode3
override-build: |
snapcraftctl build
sed -i 's|Icon=keepassxc|Icon=${SNAP}/usr/share/icons/hicolor/256x256/apps/keepassxc.png|g' $SNAPCRAFT_PART_INSTALL/usr/share/applications/org.keepassxc.KeePassXC.desktop
@@ -121,6 +122,7 @@ parts:
- shared-mime-info
- libqt5gui5
- libgdk-pixbuf2.0-0
+ - libgtk2.0-0
- libqt5svg5 # for loading icon themes which are svg
- try: [appmenu-qt5] # not available on core18
- locales-all
diff --git a/src/gui/MainWindow.cpp b/src/gui/MainWindow.cpp
index 334d4fed1..7ee6aadea 100644
--- a/src/gui/MainWindow.cpp
+++ b/src/gui/MainWindow.cpp
@@ -25,6 +25,7 @@
#include
#include
#include
+#include
#include "config-keepassx.h"
@@ -155,9 +156,9 @@ MainWindow::MainWindow()
setAcceptDrops(true);
// Setup the search widget in the toolbar
- auto* search = new SearchWidget();
- search->connectSignals(m_actionMultiplexer);
- m_searchWidgetAction = m_ui->toolBar->addWidget(search);
+ m_searchWidget = new SearchWidget();
+ m_searchWidget->connectSignals(m_actionMultiplexer);
+ m_searchWidgetAction = m_ui->toolBar->addWidget(m_searchWidget);
m_searchWidgetAction->setEnabled(false);
m_countDefaultAttributes = m_ui->menuEntryCopyAttribute->actions().size();
@@ -253,7 +254,9 @@ MainWindow::MainWindow()
m_ui->actionEntryCopyURL->setShortcutVisibleInContextMenu(true);
#endif
+ connect(m_ui->menuEntries, SIGNAL(aboutToShow()), SLOT(obtainContextFocusLock()));
connect(m_ui->menuEntries, SIGNAL(aboutToHide()), SLOT(releaseContextFocusLock()));
+ connect(m_ui->menuGroups, SIGNAL(aboutToShow()), SLOT(obtainContextFocusLock()));
connect(m_ui->menuGroups, SIGNAL(aboutToHide()), SLOT(releaseContextFocusLock()));
// Control window state
@@ -308,9 +311,9 @@ MainWindow::MainWindow()
// Notify search when the active database changes or gets locked
connect(m_ui->tabWidget,
SIGNAL(activateDatabaseChanged(DatabaseWidget*)),
- search,
+ m_searchWidget,
SLOT(databaseChanged(DatabaseWidget*)));
- connect(m_ui->tabWidget, SIGNAL(databaseLocked(DatabaseWidget*)), search, SLOT(databaseChanged()));
+ connect(m_ui->tabWidget, SIGNAL(databaseLocked(DatabaseWidget*)), m_searchWidget, SLOT(databaseChanged()));
connect(m_ui->tabWidget, SIGNAL(tabNameChanged()), SLOT(updateWindowTitle()));
connect(m_ui->tabWidget, SIGNAL(currentChanged(int)), SLOT(updateWindowTitle()));
@@ -545,9 +548,10 @@ void MainWindow::setMenuActionState(DatabaseWidget::Mode mode)
switch (mode) {
case DatabaseWidget::Mode::ViewMode: {
- // bool inSearch = dbWidget->isInSearchMode();
- bool singleEntrySelected = dbWidget->numberOfSelectedEntries() == 1 && (m_contextMenuFocusLock || dbWidget->currentEntryHasFocus());
- bool entriesSelected = dbWidget->numberOfSelectedEntries() > 0 && (m_contextMenuFocusLock || dbWidget->currentEntryHasFocus());
+ bool hasFocus = m_contextMenuFocusLock || menuBar()->hasFocus() || m_searchWidget->hasFocus()
+ || dbWidget->currentEntryHasFocus();
+ bool singleEntrySelected = dbWidget->numberOfSelectedEntries() == 1 && hasFocus;
+ bool entriesSelected = dbWidget->numberOfSelectedEntries() > 0 && hasFocus;
bool groupSelected = dbWidget->isGroupSelected();
bool recycleBinSelected = dbWidget->isRecycleBinSelected();
@@ -990,6 +994,11 @@ void MainWindow::updateTrayIcon()
}
}
+void MainWindow::obtainContextFocusLock()
+{
+ m_contextMenuFocusLock = true;
+}
+
void MainWindow::releaseContextFocusLock()
{
m_contextMenuFocusLock = false;
@@ -997,13 +1006,11 @@ void MainWindow::releaseContextFocusLock()
void MainWindow::showEntryContextMenu(const QPoint& globalPos)
{
- m_contextMenuFocusLock = true;
m_ui->menuEntries->popup(globalPos);
}
void MainWindow::showGroupContextMenu(const QPoint& globalPos)
{
- m_contextMenuFocusLock = true;
m_ui->menuGroups->popup(globalPos);
}
@@ -1082,9 +1089,16 @@ void MainWindow::processTrayIconTrigger()
toggleWindow();
} else if (m_trayIconTriggerReason == QSystemTrayIcon::Trigger
|| m_trayIconTriggerReason == QSystemTrayIcon::MiddleClick) {
- // On single/middle click focus the window if it is not hidden
- // and did not have focus less than a second ago, otherwise toggle
- if (isHidden() || (Clock::currentSecondsSinceEpoch() - m_lastFocusOutTime) <= 1) {
+ // Toggle window if hidden
+ // If on windows, check if focus switched within the last second because
+ // clicking the tray icon removes focus from main window
+ // If on Linux or macOS, check if the window is active
+ if (isHidden()
+#ifdef Q_OS_WIN
+ || (Clock::currentSecondsSinceEpoch() - m_lastFocusOutTime) <= 1) {
+#else
+ || windowHandle()->isActive()) {
+#endif
toggleWindow();
} else {
bringToFront();
diff --git a/src/gui/MainWindow.h b/src/gui/MainWindow.h
index 95405f475..a07933c41 100644
--- a/src/gui/MainWindow.h
+++ b/src/gui/MainWindow.h
@@ -34,6 +34,7 @@ namespace Ui
}
class InactivityTimer;
+class SearchWidget;
class MainWindow : public QMainWindow
{
@@ -117,6 +118,7 @@ private slots:
void selectPreviousDatabaseTab();
void togglePasswordsHidden();
void toggleUsernamesHidden();
+ void obtainContextFocusLock();
void releaseContextFocusLock();
private:
@@ -144,6 +146,7 @@ private:
int m_countDefaultAttributes;
QSystemTrayIcon* m_trayIcon;
ScreenLockListener* m_screenLockListener;
+ QPointer m_searchWidget;
Q_DISABLE_COPY(MainWindow)
diff --git a/src/gui/SearchWidget.cpp b/src/gui/SearchWidget.cpp
index 5667852b0..4b910f4c7 100644
--- a/src/gui/SearchWidget.cpp
+++ b/src/gui/SearchWidget.cpp
@@ -35,6 +35,7 @@ SearchWidget::SearchWidget(QWidget* parent)
, m_clearSearchTimer(new QTimer(this))
{
m_ui->setupUi(this);
+ setFocusProxy(m_ui->searchEdit);
m_helpWidget = new PopupHelpWidget(m_ui->searchEdit);
m_helpWidget->setOffset(QPoint(0, 1));
diff --git a/src/proxy/CMakeLists.txt b/src/proxy/CMakeLists.txt
index bdbfa3b74..61dfd1b25 100755
--- a/src/proxy/CMakeLists.txt
+++ b/src/proxy/CMakeLists.txt
@@ -44,6 +44,8 @@ if(WITH_XC_BROWSER)
"@executable_path/../Frameworks/QtNetwork.framework/Versions/5/QtNetwork"
-change /usr/local/opt/qt/lib/QtNetwork.framework/Versions/5/QtNetwork
"@executable_path/../Frameworks/QtNetwork.framework/Versions/5/QtNetwork"
+ -change /usr/local/opt/libsodium/lib/libsodium.23.dylib
+ "@executable_path/../Frameworks/libsodium.23.dylib"
keepassxc-proxy
COMMENT "Changing linking of keepassxc-proxy")